:root {
    --bg: #0c111f;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.14);
    --ink: #eaf0ff;
    --muted: #9fb1d0;
    --accent: #ff7a2f;
    --accent-2: #6ee7ff;
    --border: rgba(255, 255, 255, 0.14);
    --glow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(255, 122, 47, 0.15), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(110, 231, 255, 0.18), transparent 25%),
        linear-gradient(135deg, #0c111f 0%, #0d1326 50%, #0b1322 100%);
    color: var(--ink);
    letter-spacing: -0.01em;
    padding: 0 18px 48px;
}

.shell {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(12, 17, 31, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 18px 0 24px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--glow);
}

.logo {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
}

nav {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 180ms ease;
}

nav a:hover {
    color: var(--ink);
    border-color: var(--border);
    background: var(--panel);
}

nav .cta {
    background: linear-gradient(120deg, var(--accent), #ffb347);
    color: #0c111f;
    border: none;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(255, 122, 47, 0.35);
}

main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

section {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    background: var(--panel);
    box-shadow: var(--glow);
}

.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 6px;
}

.quick-links a {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 160ms ease;
}

.quick-links a:hover {
    color: var(--ink);
    border-style: solid;
    background: rgba(255, 255, 255, 0.06);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    color: var(--accent-2);
    font-weight: 700;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin: 0 0 14px;
    line-height: 1.05;
}

h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
}

h3 {
    margin: 6px 0 10px;
    font-size: 22px;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.hero {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 12px;
}

.tagline span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.content_p {
    font-size: 18px;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-visual__frame {
    width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(255, 122, 47, 0.16), rgba(110, 231, 255, 0.14)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(12, 17, 31, 0.85)),
        radial-gradient(circle at 20% 30%, rgba(255, 122, 47, 0.32), transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(110, 231, 255, 0.28), transparent 45%);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow);
}

.hero-visual__frame::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.hero-visual__frame img:hover {
    transform: translateY(-4px);
    border-color: var(--border);

}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.button {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 180ms ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button.primary {
    background: linear-gradient(120deg, var(--accent), #ffb347);
    color: #0c111f;
    box-shadow: 0 10px 40px rgba(255, 122, 47, 0.4);
    border: none;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.06);
}

.button.tertiary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--border);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.stat-card {
    background: var(--panel-strong);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
}

.stat-card .label {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 6px;
}

.stat-card .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
}

.availability {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(110, 231, 255, 0.12);
    color: var(--ink);
    border: 1px solid rgba(110, 231, 255, 0.35);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.availability::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6ee7ff;
    box-shadow: 0 0 12px rgba(110, 231, 255, 0.8);
}

.projects-section {
    position: relative;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.section-sub {
    margin: 0;
    color: var(--muted);
    max-width: 520px;
    font-size: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.project-card {
    position: relative;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(12, 17, 31, 0.85));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 47, 0.12), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(110, 231, 255, 0.14), transparent 30%);
    pointer-events: none;
    opacity: 0.9;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}

.project-card h3 {
    position: relative;
    z-index: 1;
}

.project-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.project-label {
    font-size: 13px;
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-year {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.project-summary {
    position: relative;
    z-index: 1;
    margin: 0;
}

.project-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.07);
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
}

.project-overlay {
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    padding: 14px;
    background: rgba(12, 17, 31, 0.92);
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.project-overlay .button {
    width: fit-content;
    padding-inline: 14px;
}

.opportunities {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.opportunities-cta {
    background: linear-gradient(135deg, rgba(255, 122, 47, 0.12), rgba(110, 231, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

.news {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 140ms ease, border-color 140ms ease;
}

.news-card:hover,
.news-card:focus-within {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.news-date {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.pill.small {
    padding: 6px 10px;
    font-size: 12px;
}

.text-link {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
}

.tool_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
}

.testimonials .quote {
    margin-bottom: 12px;
}

.quote-meta {
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
    padding-left: 16px;
}

.list li {
    line-height: 1.5;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 900px) {
    header {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .availability {
        position: static;
        margin-top: 14px;
        width: fit-content;
    }

    section {
        padding: 22px;
    }
}

@media (max-width: 720px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 18px;
    }

    .project-overlay {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: none;
        border-style: dashed;
        margin-top: 6px;
    }

    .split-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}