        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --navy: #0d1b2e;
            --navy-mid: #132338;
            --navy-light: #1c3050;
            --accent: #2dd4bf;
            --accent-dim: rgba(45, 212, 191, 0.15);
            --accent-glow: rgba(45, 212, 191, 0.35);
            --white: #f0f4f8;
            --muted: #8fa3b8;
            --border: rgba(45, 212, 191, 0.18);
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.2rem 2rem;
            background: rgba(13, 27, 46, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s;
        }

        .nav-logo {
            font-family: 'Fraunces', serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--white);
            letter-spacing: 0.02em;
            text-decoration: none;
        }

        .nav-logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10rem 4rem 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(ellipse 70% 60% at 75% 40%, rgba(45, 212, 191, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 20% 70%, rgba(19, 35, 56, 0.9) 0%, transparent 60%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, black 30%, transparent 80%);
            opacity: 0.4;
        }

        .hero-eyebrow {
            position: relative;
            z-index: 1;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero-eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--accent);
        }

        .hero h1 {
            position: relative;
            z-index: 1;
            font-family: 'Fraunces', serif;
            font-size: clamp(2.8rem, 6vw, 5.2rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.02em;
            max-width: 760px;
            margin-bottom: 2rem;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-sub {
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.7;
            color: var(--muted);
            max-width: 520px;
            margin-bottom: 3rem;
        }

        .hero-cta {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2rem;
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .hero-cta:hover {
            background: var(--accent);
            color: var(--navy);
            box-shadow: 0 0 24px var(--accent-glow);
        }

        .hero-stat-row {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 3.5rem;
            margin-top: 5rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--border);
        }

        .hero-stat-num {
            font-family: 'Fraunces', serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-num span {
            color: var(--accent);
        }

        .hero-stat-label {
            font-size: 0.82rem;
            color: var(--muted);
            margin-top: 0.4rem;
            letter-spacing: 0.04em;
        }

        /* ── SECTION SHELL ── */
        section {
            padding: 7rem 4rem;
        }

        .section-tag {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .section-tag::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: var(--accent);
        }

        .section-title {
            font-family: 'Fraunces', serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .section-body {
            font-size: 1.05rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--muted);
            max-width: 600px;
        }

        /* ── ABOUT ── */
        #about {
            background: var(--navy-mid);
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .about-card {
            padding: 1.8rem 2rem;
            border: 1px solid var(--border);
            background: rgba(45, 212, 191, 0.04);
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--accent);
        }

        .about-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .about-card p {
            font-size: 0.92rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── CAPABILITIES ── */
        #capabilities {
            background: var(--navy);
        }

        .cap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5px;
            margin-top: 4rem;
            border: 1.5px solid var(--border);
        }

        .cap-item {
            padding: 2.5rem 2rem;
            background: var(--navy-mid);
            border: 1.5px solid var(--border);
            transition: background 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cap-item:hover {
            background: rgba(45, 212, 191, 0.06);
            transform: translateY(-2px);
        }

        .cap-icon {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .cap-item h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .cap-item p {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── APPROACH ── */
        #approach {
            background: var(--navy-mid);
        }

        .approach-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .approach-step {
            display: flex;
            gap: 1.5rem;
            padding: 2rem 0;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .approach-step:last-child {
            border-bottom: none;
        }

        .step-num {
            font-family: 'Fraunces', serif;
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 0.15em;
            min-width: 36px;
            padding-top: 0.15rem;
        }

        .step-content h3 {
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step-content p {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── VALUES ── */
        #values {
            background: var(--navy);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .value-card {
            padding: 2.5rem;
            border: 1px solid var(--border);
            background: var(--navy-mid);
            transition: border-color 0.3s;
        }

        .value-card:hover {
            border-color: var(--accent);
        }

        .value-num {
            font-family: 'Fraunces', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-dim);
            margin-bottom: 1rem;
            line-height: 1;
            -webkit-text-stroke: 1px var(--accent);
            color: transparent;
        }

        .value-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .value-card p {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ── CONTACT ── */
        #contact {
            background: var(--navy-mid);
            text-align: center;
            padding: 8rem 4rem;
        }

        #contact .section-tag {
            justify-content: center;
        }

        #contact .section-tag::before {
            display: none;
        }

        #contact .section-title {
            text-align: center;
        }

        #contact .section-body {
            margin: 0 auto 3rem;
            text-align: center;
        }

        .contact-email {
            display: inline-block;
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 0.2rem;
            transition: opacity 0.2s;
        }

        .contact-email:hover {
            opacity: 0.7;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--navy);
            padding: 2.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border);
        }

        .footer-logo {
            font-family: 'Fraunces', serif;
            font-weight: 800;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .footer-logo span {
            color: var(--accent);
        }

        footer p {
            font-size: 0.8rem;
            color: var(--muted);
        }

        /* ── ANIMATIONS ── */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            nav {
                padding: 1rem 1.2rem;
            }

            .nav-logo {
                font-size: 0.65rem;
                white-space: normal;
                max-width: 5rem;
                line-height: 1.3;
            }

            .nav-links {
                gap: 1rem;
            }

            .nav-links a {
                font-size: 0.75rem;
            }

            .hero {
                padding: 8rem 1.5rem 4rem;
            }

            .hero h1 {
                font-size: clamp(2.3rem, 8vw, 3rem);
            }

            section {
                padding: 5rem 1.5rem;
            }

            #about .container,
            #approach .container {
                grid-template-columns: 1fr !important;
                gap: 3rem !important;
            }

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

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

            footer .container {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

