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

        :root {
            --green: #0ef0a0;
            --green-dim: #0bbf7d;
            --green-glow: rgba(14, 240, 160, 0.15);
            --bg: #020d08;
            --surface: #071a10;
            --text: #e8f5ef;
            --muted: #3a5a47;
            --border: rgba(14, 240, 160, 0.2);
        }

        html,
        body {
            height: 100%;
            background: var(--bg);
            color: var(--text);
            font-family: 'Syne', sans-serif;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom cursor */
        .cursor {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--green);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s, width 0.2s, height 0.2s;
            mix-blend-mode: screen;
        }

        .cursor-ring {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 1px solid var(--green);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
            opacity: 0.5;
        }

        body:hover .cursor {
            opacity: 1;
        }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            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)' opacity='0.04'/%3E%3C/svg%3E");
            background-size: 200px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.6;
        }

        /* Grid lines */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
        }

        /* Top nav bar */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 52px;
            background: rgba(2, 13, 8, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--green-dim);
        }

        .topbar-left {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .topbar-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--green);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 8px var(--green);
            }

            50% {
                opacity: 0.4;
                box-shadow: 0 0 2px var(--green);
            }
        }

        /* Main layout */
        main {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding:  80px 40px 40px;
        }

        /* Glow blob */
        .glow-blob {
            position: absolute;
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(14, 240, 160, 0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }

        .content-wrap {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1280px;
            text-align: center;
        }

        /* Eyebrow label */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.2s;
        }

        .eyebrow-line {
            display: block;
            width: 30px;
            height: 1px;
            background: var(--green);
            opacity: 0.6;
        }

        /* Headline */
        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(72px, 14vw, 190px);
            line-height: 0.88;
            letter-spacing: -0.01em;
            text-transform: uppercase;
            color: var(--text);
            opacity: 0;
            animation: fadeUp 0.7s ease forwards 0.4s;
        }

        h1 .accent {
            color: var(--green);
            display: block;
            position: relative;
        }

        h1 .accent::after {
            content: 'Bengaluru';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            color: var(--green);
            text-shadow: 0 0 80px rgba(14, 240, 160, 0.5), 0 0 20px rgba(14, 240, 160, 0.3);
            clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
            animation: glitch 5s steps(1) infinite;
            opacity: 0.6;
        }

        @keyframes glitch {

            0%,
            89% {
                clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
                transform: translateX(0);
            }

            90% {
                clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
                transform: translateX(-3px);
            }

            91% {
                clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
                transform: translateX(3px);
            }

            92% {
                clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
                transform: translateX(0);
            }

            100% {
                clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
                transform: translateX(0);
            }
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 36px auto;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.6s;
        }

        .divider-line {
            flex: 1;
            max-width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--muted));
        }

        .divider-line.right {
            background: linear-gradient(90deg, var(--muted), transparent);
        }

        .divider-icon {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            color: var(--muted);
            letter-spacing: 0.3em;
        }

        /* Sub-headline */
        .sub {
            font-size: clamp(16px, 2.5vw, 24px);
            font-weight: 400;
            color: #6b8f7b;
            line-height: 1.6;
            max-width: 720px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.7s;
        }

        .sub strong {
            color: var(--text);
            font-weight: 700;
        }

        /* Stats row */
        .stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 36px auto;
            max-width: 700px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 0.9s;
                background: rgba(7, 27, 17, 0.77);
        }

        .stat {
            flex: 1;
            padding: 16px;
            border: 1px solid var(--border);
            position: relative;
            background: rgba(7, 26, 16, 0.5);
        }

        .stat+.stat {
            border-left: none;
        }

        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 42px;
            color: var(--green);
            line-height: 1;
            letter-spacing: 0.02em;
        }

        .stat-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 6px;
        }

        /* CTA */
        .cta-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards 1.1s;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--green);
            color: #020d08;
            padding: 18px 44px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: none;
            border: none;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-110%) skewX(-15deg);
            transition: transform 0.4s ease;
        }

        .btn-primary:hover::before {
            transform: translateX(110%) skewX(-15deg);
        }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(14, 240, 160, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 18px 28px;
            border: 1px solid var(--border);
            color: var(--muted);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: none;
            background: transparent;
            transition: border-color 0.3s, color 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--green);
            color: var(--green);
        }

        /* Launch badge */
        .launch-badge {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%) rotate(90deg) translateX(50%);
            transform-origin: right center;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--muted);
            z-index: 10;
            writing-mode: vertical-rl;
            transform: translateY(-50%);
            right: 20px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.4s;
        }

        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 44px;
            border-top: 1px solid var(--border);
            background: rgba(2, 13, 8, 0.7);
            backdrop-filter: blur(8px);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.25em;
            color: var(--muted);
            text-transform: uppercase;
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Scan line sweep */
        .scanline {
            position: fixed;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(14, 240, 160, 0.015) 50%);
            background-size: 100% 4px;
            pointer-events: none;
            z-index: 1;
            animation: scan 8s linear infinite;
        }

        @keyframes scan {
            from {
                background-position: 0 0;
            }

            to {
                background-position: 0 100vh;
            }
        }

        @media (max-width: 640px) {
            .topbar-left span:not(:first-child) {
                display: none;
            }

           

            .stat+.stat {
                border-left: 1px solid var(--border);
                border-top: none;
            }

            footer {
                padding: 0 20px;
                font-size: 9px;
            }

            .launch-badge {
                display: none;
            }

            main {
                padding: 80px 20px 60px;
            }
        }