        @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Spectral:wght@400;600;700&display=swap');

        :root {
            --ink: #0b1b2b;
            --ink-soft: #1c2b3a;
            --accent: #0d7c66;
            --accent-2: #d97706;
            --paper: #f5f1e8;
            --mist: #e7f1ee;
            --card: #ffffff;
            --stroke: rgba(11, 27, 43, 0.12);
            --shadow: 0 20px 60px rgba(11, 27, 43, 0.14);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Manrope', sans-serif;
            color: var(--ink);
            background: radial-gradient(1100px 600px at 20% -10%, #fff7e0 0%, transparent 60%),
                        radial-gradient(900px 600px at 110% 10%, #d9f4ec 0%, transparent 55%),
                        linear-gradient(160deg, var(--paper) 0%, var(--mist) 100%);
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
                              radial-gradient(circle at 80% 20%, rgba(13, 124, 102, 0.08), transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .page {
            width: min(1200px, 92vw);
            margin: 0 auto;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 4vw;
            margin: 16px auto 0;
            width: min(1200px, 92vw);
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid var(--stroke);
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(11, 27, 43, 0.08);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .brand img {
            height: 44px;
            width: auto;
            border-radius: 10px;
            object-fit: contain;
            border: 1px solid var(--stroke);
            background: white;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .nav-links a {
            padding: 8px 14px;
            border-radius: 999px;
            transition: all 0.2s ease;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: var(--ink);
            color: white;
        }

        .hero {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 48px;
            align-items: center;
            padding: 80px 0 40px;
        }

        .hero h1 {
            font-family: 'Spectral', serif;
            font-size: clamp(2.5rem, 4vw, 4rem);
            margin: 0 0 16px;
            line-height: 1.05;
            letter-spacing: -0.5px;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--ink-soft);
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        .btn {
            padding: 12px 22px;
            border-radius: 999px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 12px 30px rgba(13, 124, 102, 0.25);
        }

        .btn-secondary {
            border-color: var(--ink);
            color: var(--ink);
            background: rgba(255, 255, 255, 0.6);
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
        }

        .hero-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 32px;
        }

        .highlight {
            padding: 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--stroke);
            font-size: 0.95rem;
        }

        .hero-media {
            position: relative;
            padding: 24px;
        }

        .hero-media::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(13, 124, 102, 0.18), rgba(217, 119, 6, 0.12));
            transform: rotate(-2deg);
            z-index: 0;
        }

        .hero-media img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            border-radius: 24px;
            border: 1px solid var(--stroke);
            box-shadow: var(--shadow);
            background: white;
        }

        .section {
            margin: 70px 0;
            padding: 32px 0;
        }

        .section-head {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 28px;
        }

        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            color: var(--accent-2);
            font-weight: 700;
        }

        .section-title {
            font-family: 'Spectral', serif;
            font-size: clamp(2rem, 3vw, 2.8rem);
            margin: 0;
        }

        .section-desc {
            color: var(--ink-soft);
            max-width: 700px;
            line-height: 1.7;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .card {
            background: var(--card);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid var(--stroke);
            box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(11, 27, 43, 0.12);
        }

        .card h3 {
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

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

        .research-card {
            background: var(--card);
            border-radius: 24px;
            border: 1px solid var(--stroke);
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .research-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(11, 27, 43, 0.12);
        }

        .research-media {
            padding: 16px;
            background: rgba(255, 255, 255, 0.9);
        }

        .research-media img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 18px;
            border: 1px solid var(--stroke);
            background: white;
        }

        .research-body {
            padding: 20px 24px 26px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .research-body h3 {
            margin: 0;
            font-size: 1.2rem;
        }

        .research-body p {
            margin: 0;
            color: var(--ink-soft);
            line-height: 1.6;
        }

        .research-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            padding: 6px 10px;
            background: rgba(13, 124, 102, 0.12);
            color: var(--accent);
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.4px;
        }

        .research-links {
            margin-top: auto;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .resource-list {
            display: grid;
            gap: 16px;
        }

        .resource-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 18px 22px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 18px;
            border: 1px solid var(--stroke);
        }

        .resource-item h3 {
            margin: 6px 0 4px;
            font-size: 1.1rem;
        }

        .resource-meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--ink-soft);
        }

        .capability-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .capability-card {
            background: var(--card);
            border-radius: 20px;
            padding: 22px;
            border: 1px solid var(--stroke);
            box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cap-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            letter-spacing: 0.5px;
            background: rgba(13, 124, 102, 0.14);
            color: var(--accent);
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 22px;
            padding: 24px;
            border: 1px solid var(--stroke);
        }

        .stat-card h3 {
            margin: 0 0 8px;
            font-size: 1.2rem;
        }

        .text-link {
            font-weight: 700;
            color: var(--ink);
            border-bottom: 2px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .text-link:hover,
        .text-link:focus-visible {
            color: var(--accent-2);
            border-color: var(--accent-2);
        }

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

        .process-step {
            padding: 24px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px dashed rgba(13, 124, 102, 0.3);
        }

        .process-step span {
            display: inline-block;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .about {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            align-items: center;
        }

        .about-panel {
            background: var(--card);
            border-radius: 24px;
            padding: 28px;
            border: 1px solid var(--stroke);
            box-shadow: 0 16px 40px rgba(11, 27, 43, 0.08);
        }

        .contact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            align-items: center;
        }

        .contact-card {
            background: linear-gradient(135deg, rgba(13, 124, 102, 0.12), rgba(217, 119, 6, 0.1));
            border-radius: 24px;
            padding: 28px;
            border: 1px solid var(--stroke);
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-decoration: none;
            color: var(--ink);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-card:hover,
        .contact-card:focus-visible {
            transform: translateY(-4px);
            box-shadow: 0 16px 30px rgba(11, 27, 43, 0.12);
        }

        .contact-action {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--accent);
        }

        footer {
            margin: 80px 0 40px;
            padding: 24px 0;
            border-top: 1px solid var(--stroke);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--ink-soft);
        }

        @keyframes rise {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            animation: rise 0.9s ease both;
        }

        .reveal.delay-1 { animation-delay: 0.15s; }
        .reveal.delay-2 { animation-delay: 0.3s; }
        .reveal.delay-3 { animation-delay: 0.45s; }

        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-media {
                order: -1;
            }

            .nav {
                flex-direction: column;
                gap: 12px;
                border-radius: 24px;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .hero-highlights {
                grid-template-columns: 1fr;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .resource-item {
                flex-direction: column;
                align-items: flex-start;
            }

            footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }
    
