 /* ── Reset & Base ──────────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #08081a;
            color: #e4e4f0;
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── Noise overlay ─────────────────────────────────── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.028;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        /* ── Aurora palette tokens ─────────────────────────── */
        :root {
            --aurora-blue: #3633FF;
            --aurora-purple: #6E42EE;
            --aurora-pink: #E94CAF;
            --aurora-teal: #00E6CA;
            --aurora-dark: #08081a;
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.12);
        }

        /* ── Aurora text gradient ──────────────────────────── */
        .aurora-text {
            background-image: linear-gradient(90deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 100%;
            animation: aurora-shift 12s ease infinite;
        }

        .aurora-text-reverse {
            background-image: linear-gradient(90deg, var(--aurora-pink), var(--aurora-purple), var(--aurora-blue), var(--aurora-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 100%;
            animation: aurora-shift 12s ease infinite;
        }

        @keyframes aurora-shift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* ── Aurora gradient fill ──────────────────────────── */
        .aurora-gradient {
            background: linear-gradient(125deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
            background-size: 300% 300%;
            animation: aurora-shift 12s ease infinite;
        }

        /* ── Glass panel ───────────────────────────────────── */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(24px) saturate(1.3);
            -webkit-backdrop-filter: blur(24px) saturate(1.3);
            border: 1px solid var(--glass-border);
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
                0 8px 32px rgba(0, 0, 0, 0.35);
        }

        .glass-strong {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(40px) saturate(1.4);
            -webkit-backdrop-filter: blur(40px) saturate(1.4);
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
                0 16px 48px rgba(0, 0, 0, 0.4);
        }

        /* ── Animated gradient border ──────────────────────── */
        .gradient-border {
            position: relative;
            isolation: isolate;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink), var(--aurora-teal));
            background-size: 400% 400%;
            animation: aurora-shift 8s ease infinite;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            opacity: 0.6;
            transition: opacity 0.4s ease;
        }

        .gradient-border:hover::before {
            opacity: 1;
        }

        /* ── Layout helpers ────────────────────────────────── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        /* ── Floating background orbs ──────────────────────── */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
            will-change: transform;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: var(--aurora-purple);
            opacity: 0.12;
            top: -100px;
            left: -150px;
            animation: float-orb 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--aurora-teal);
            opacity: 0.08;
            top: 200px;
            right: -100px;
            animation: float-orb 25s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: var(--aurora-pink);
            opacity: 0.07;
            bottom: -50px;
            left: 30%;
            animation: float-orb 18s ease-in-out infinite 3s;
        }

        .orb-4 {
            width: 300px;
            height: 300px;
            background: var(--aurora-blue);
            opacity: 0.10;
            top: 50%;
            right: 10%;
            animation: float-orb 22s ease-in-out infinite 5s;
        }

        @keyframes float-orb {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(30px, -40px) scale(1.05);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }

            75% {
                transform: translate(40px, 30px) scale(1.02);
            }
        }

        /* ── Particle canvas ───────────────────────────────── */
        #particle-canvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        /* ── Navbar ────────────────────────────────────────── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .navbar.scrolled {
            padding: 10px 0;
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-glass {
            background: rgba(8, 8, 26, 0.5);
            backdrop-filter: blur(30px) saturate(1.4);
            -webkit-backdrop-filter: blur(30px) saturate(1.4);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 12px 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .navbar.scrolled .navbar-glass {
            border-radius: 12px;
            background: rgba(8, 8, 26, 0.7);
        }

        .brand {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .brand-tagline {
            font-size: 0.6rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        /* ── Buttons ───────────────────────────────────────── */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            background: linear-gradient(125deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
            background-size: 300% 300%;
            animation: aurora-shift 8s ease infinite;
            box-shadow: 0 4px 20px rgba(110, 66, 238, 0.25);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 0 24px rgba(110, 66, 238, 0.45), 0 0 60px rgba(110, 66, 238, 0.15);
        }

        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* ── Hero ──────────────────────────────────────────── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(4rem, 12vw, 9rem);
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 0.95;
            margin-bottom: 16px;
            text-shadow: 0 0 80px rgba(110, 66, 238, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            font-weight: 300;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-subtitle strong {
            font-weight: 700;
            color: #fff;
        }

        .hero-description {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.45);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 24px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--aurora-teal);
            box-shadow: 0 0 8px var(--aurora-teal);
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.85);
            }
        }

        /* ── Section headers ───────────────────────────────── */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 16px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25));
        }

        .section-label::after {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 300;
            line-height: 1.2;
        }

        .section-title strong {
            font-weight: 800;
        }

        /* ── Video section ─────────────────────────────────── */
        .video-wrap {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .video-wrap::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
            background-size: 300% 300%;
            animation: aurora-shift 10s ease infinite;
            z-index: -1;
            opacity: 0.4;
        }

        .video-wrap video {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* ── Expertise grid ────────────────────────────────── */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 992px) {
            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .expertise-grid {
                grid-template-columns: 1fr;
            }
        }

        .expertise-card {
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .expertise-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: radial-gradient(circle at 50% 0%, rgba(110, 66, 238, 0.08), transparent 60%);
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        .expertise-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(110, 66, 238, 0.08);
        }

        .expertise-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 20px;
            background: inherit;
            opacity: 0.25;
            filter: blur(12px);
        }

        .card-icon svg {
            width: 26px;
            height: 26px;
            stroke: #fff;
            fill: none;
            stroke-width: 1.8;
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .card-text {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
        }

        /* ── Awards grid ───────────────────────────────────── */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 992px) {
            .awards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .awards-grid {
                grid-template-columns: 1fr;
            }
        }

        .award-card {
            border-radius: 20px;
            padding: 36px 24px;
            text-align: center;
            transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .award-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
        }

        .award-img-wrap {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            border-radius: 50%;
        }

        .award-img-wrap::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue), var(--aurora-purple), var(--aurora-pink));
            background-size: 300% 300%;
            animation: aurora-shift 6s ease infinite;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .award-card:hover .award-img-wrap::before {
            opacity: 1;
        }

        .award-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            position: relative;
            z-index: 1;
            border: 3px solid rgba(8, 8, 26, 0.8);
        }

        .award-title {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .award-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
        }

        .award-text strong {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
        }

        /* ── CTA banner ────────────────────────────────────── */
        .cta-banner {
            border-radius: 24px;
            padding: 56px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: radial-gradient(ellipse at 50% 0%, rgba(110, 66, 238, 0.12), transparent 70%);
        }

        .cta-title {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            font-weight: 300;
            line-height: 1.4;
            position: relative;
        }

        .cta-title strong {
            font-weight: 800;
        }

        .nodic-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            position: relative;
        }

        /* ── Divider ───────────────────────────────────────── */
        .section-divider {
            height: 1px;
            max-width: 200px;
            margin: 0 auto;
            background: linear-gradient(90deg, transparent, var(--aurora-purple), transparent);
            opacity: 0.3;
        }

        /* ── Footer ────────────────────────────────────────── */
        .footer {
            padding: 32px 0;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.25);
        }

        .footer a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        /* ── Scroll reveal ─────────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.08s;
        }

        .reveal-delay-2 {
            transition-delay: 0.16s;
        }

        .reveal-delay-3 {
            transition-delay: 0.24s;
        }

        .reveal-delay-4 {
            transition-delay: 0.32s;
        }

        .reveal-delay-5 {
            transition-delay: 0.40s;
        }

        .reveal-delay-6 {
            transition-delay: 0.48s;
        }

        /* ── Glow hover for icons ──────────────────────────── */
        .icon-teal {
            background: linear-gradient(135deg, rgba(0, 230, 202, 0.25), rgba(0, 230, 202, 0.10));
        }

        .icon-blue {
            background: linear-gradient(135deg, rgba(54, 51, 255, 0.30), rgba(54, 51, 255, 0.12));
        }

        .icon-purple {
            background: linear-gradient(135deg, rgba(110, 66, 238, 0.30), rgba(110, 66, 238, 0.12));
        }

        .icon-pink {
            background: linear-gradient(135deg, rgba(233, 76, 175, 0.30), rgba(233, 76, 175, 0.12));
        }

        /* ── Responsive fine-tuning ────────────────────────── */
        @media (max-width: 768px) {
            .section {
                padding: 64px 0;
            }

            .hero {
                padding-top: 60px;
            }

            .cta-banner {
                padding: 40px 24px;
            }

            .navbar-glass {
                padding: 10px 20px;
            }
        }

        /* ── Shimmer hover effect on cards ─────────────────── */
        .shimmer {
            position: relative;
            overflow: hidden;
        }

        .shimmer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
            transform: rotate(25deg);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .shimmer:hover::after {
            left: 120%;
        }

        /* ── Stats row in hero ─────────────────────────────── */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ── Scrollbar ─────────────────────────────────────── */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(110, 66, 238, 0.3);
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(110, 66, 238, 0.5);
        }