/* Critical font fallback - prevents FOUT/CLS while Inter loads */
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400 800;
            font-display: swap;
            src: local('Inter'), local('Arial'), local('Helvetica Neue'), local('sans-serif');
        }
        /* When the announcement banner is dismissed, collapse the offset everywhere it's used */
        html.banner-dismissed { --announce-h: 0px; }

        /* Font fallback to prevent layout shift */
        @font-face {
            font-family: 'Inter-fallback';
            src: local('Arial');
            ascent-override: 90%;
            descent-override: 22%;
            line-gap-override: 0%;
            size-adjust: 107%;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

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

        html {
            scroll-behavior: smooth;
            max-width: 100vw;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            max-width: 100vw;
            overflow-x: hidden;
        }

        /* Apple-style loading animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        /* Initial hidden state for animated elements */
        .animate-on-load {
            opacity: 0;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* Scroll-triggered zoom animation */
        .scroll-zoom {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scroll-zoom.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered row animations for grid */
        .grid-row-animate {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .grid-row-animate.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Market Analysis Block Styles */
        .market-analysis-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 4rem 2rem;
            font-family: var(--font-sans);
        }

        .analysis-card {
            background: rgba(13, 13, 18, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 0;
            width: 90%;
            max-width: 550px;
            backdrop-filter: blur(12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }

        .analysis-card .card-header,
        .analysis-card .comparison-grid {
            padding: 0 24px;
        }

        .analysis-card .card-header {
            padding-top: 24px;
            margin-bottom: 20px;
        }

        .analysis-card .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .analysis-card .badge {
            background: linear-gradient(90deg, #4f46e5, #818cf8);
            color: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .analysis-card .version {
            color: #555;
            font-family: var(--font-mono);
            font-size: 11px;
        }

        .analysis-card .card-header h3 {
            color: #fff;
            margin: 12px 0 0 0;
            font-size: 20px;
            font-weight: 600;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 1.2fr;
            gap: 16px;
            align-items: center;
            margin-bottom: 30px;
        }

        .grid-header {
            font-size: 10px;
            text-transform: uppercase;
            color: #555;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .grid-header.highlight {
            color: #818cf8;
        }

        .grid-header.dimmed {
            color: #555;
        }

        .grid-label {
            color: #aaa;
            font-size: 13px;
            font-weight: 500;
        }

        .grid-value {
            font-size: 13px;
            font-weight: 500;
        }

        .grid-value.dim {
            color: #555;
        }

        .grid-value.negative {
            color: #f87171;
        }

        .grid-value.positive {
            color: #4ade80;
            font-weight: 700;
        }

        .grid-value.highlight {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .product-pitch {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 24px;
        }

        .product-pitch .divider {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: #4f46e5;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .product-pitch .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: rgba(79, 70, 229, 0.3);
            margin-left: 10px;
        }

        .product-pitch h4 {
            margin: 0 0 8px 0;
            color: #fff;
            font-size: 16px;
        }

        .pitch-text {
            color: #ccc;
            font-size: 14px;
            line-height: 1.5;
            margin: 0 0 20px 0;
        }

        .accent-text {
            color: #4ade80;
            font-weight: 600;
        }

        .tech-specs {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .spec-item {
            display: flex;
            gap: 12px;
            font-size: 13px;
            color: #aaa;
            align-items: start;
        }

        .spec-item .code {
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 4px;
            border-radius: 4px;
            font-family: var(--font-mono);
            color: #e2e8f0;
            font-size: 12px;
        }

        .spec-item strong {
            color: #fff;
        }

        .analysis-card .footer-note {
            background: #050505;
            padding: 12px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .analysis-card .footer-note p {
            margin: 0;
            font-size: 10px;
            color: #555;
            line-height: 1.4;
        }

        @media (max-width: 480px) {
            .comparison-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .comparison-grid .grid-header {
                display: none;
            }
            .comparison-grid .grid-label {
                grid-column: span 2;
                margin-top: 10px;
                color: #fff;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                padding-bottom: 8px;
            }
            .product-pitch {
                padding: 20px;
            }
            .analysis-card .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Hero elements animate immediately on render (CSS-only, no JS needed) */
        .hero-badge {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
        }

        .hero h1 {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        .hero-subtitle {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        .hero-buttons {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
        }

        .navbar {
            opacity: 0;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
        }

        /* Announcement Banner */
        .announce-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            height: var(--announce-h);
            padding: 0 3rem 0 1rem;
            background: rgba(17, 12, 26, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(168, 85, 247, 0.25);
            white-space: nowrap;
            overflow: hidden;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        html.banner-dismissed .announce-bar { display: none; }

        .announce-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            text-decoration: none;
            font-size: 0.85rem;
            min-width: 0;
            overflow: hidden;
        }

        .announce-pill {
            flex-shrink: 0;
            font-family: var(--font-mono);
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff;
            background: var(--accent-gradient);
            padding: 0.2rem 0.55rem;
            border-radius: 100px;
            box-shadow: 0 0 16px var(--accent-glow);
        }

        .announce-text {
            color: var(--text-secondary);
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .announce-text strong { color: var(--text-primary); font-weight: 600; }

        .announce-cta {
            flex-shrink: 0;
            font-weight: 600;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .announce-link:hover .announce-cta { text-decoration: underline; }

        .announce-close {
            position: absolute;
            right: 0.6rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border: none;
            border-radius: 50%;
            background: transparent;
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1;
            cursor: pointer;
            transition: color 0.2s, background 0.2s;
        }
        .announce-close:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.08); }

        @media (max-width: 600px) {
            .announce-bar { padding: 0 2.5rem 0 0.75rem; gap: 0.5rem; }
            .announce-link { font-size: 0.78rem; }
            .announce-pill { display: none; }
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: var(--announce-h);
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
        }

        /* While the mobile menu is open, lift the navbar (and its hamburger/close-X)
           above the overlay so the X is actually clickable */
        body.menu-open .navbar { z-index: 10001; }

        /* Offset anchored sections so their headings clear the fixed banner + navbar */
        section[id] { scroll-margin-top: calc(var(--announce-h) + 4.75rem); }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            width: 100%;
            padding: 0.75rem 16px;
        }

        .logo {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            white-space: nowrap;
            text-decoration: none;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }

        .nav-icon-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: color 0.2s;
        }

        .nav-icon-link:hover {
            color: #5865F2;
        }

        .nav-icon-link svg {
            width: 20px;
            height: 20px;
        }

        /* Desktop nav dropdowns */
        .nav-item {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 0.25rem 0;
            transition: color 0.2s;
        }

        .dropdown-toggle:hover,
        .nav-item.dropdown.open .dropdown-toggle {
            color: var(--text-primary);
        }

        .dropdown-toggle .chev {
            width: 0.5em;
            height: 0.5em;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translate(-1px, -2px);
            transition: transform 0.25s ease, opacity 0.2s;
            opacity: 0.65;
        }

        .nav-item.dropdown:hover .chev,
        .nav-item.dropdown.open .chev {
            transform: rotate(225deg) translate(-1px, -1px);
            opacity: 1;
        }

        /* Invisible hover bridge so the menu doesn't close in the gap */
        .nav-item.dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 0.9rem;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.8rem);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            min-width: 224px;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            background: rgba(17, 17, 19, 0.98);
            backdrop-filter: blur(14px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            box-shadow: 0 24px 55px -20px rgba(0, 0, 0, 0.9);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease;
            z-index: 1002;
        }

        .nav-item.dropdown:hover .dropdown-menu,
        .nav-item.dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.55rem 0.75rem;
            border-radius: 8px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            white-space: nowrap;
            transition: background 0.15s, color 0.15s;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus-visible {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
        }

        .dropdown-menu a .mi {
            width: 1.25em;
            text-align: center;
            opacity: 0.85;
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px var(--accent-glow), 0 10px 40px rgba(168, 85, 247, 0.3);
        }

        .btn-secondary {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--bg-card-hover);
            border-color: var(--text-muted);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: calc(8rem + var(--announce-h)) 16px 4rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 800px;
        }

        .hero h1 span {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        /* Slot Machine Effect */
        .hero-word-rotator {
            display: inline-block;
            vertical-align: bottom;
            height: 1.1em; /* Matches h1 line-height */
            min-height: 1.1em;
            flex: 0 0 auto;
            overflow: hidden;
            position: relative;
            margin-bottom: -0.1em; /* Visual alignment fix */
        }

        .hero-word-wrapper {
            display: flex;
            flex-direction: column;
            /* Transition will be handled in JS for the slot machine effect */
        }

        .hero-word {
            display: block;
            height: 1.1em;
            flex: 0 0 auto;
            min-height: 1.1em;
            text-align: center;
            white-space: nowrap;
            padding: 0 0.06em;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .bento-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .bento-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--text-muted);
            transform: translateY(-4px);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        .bento-card.featured {
            grid-column: span 2;
        }

        .bento-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .bento-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .bento-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Tech Stack Section */
        .tech-stack {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
        }

        .tech-stack-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .terminal {
            background: #0c0c0c;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .terminal-header {
            background: var(--bg-tertiary);
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-dot.red { background: #ff5f56; }
        .terminal-dot.yellow { background: #ffbd2e; }
        .terminal-dot.green { background: #27c93f; }

        .terminal-title {
            flex: 1;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            font-family: var(--font-mono);
        }

        .terminal-body {
            padding: 1.5rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .terminal-line {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-prompt {
            color: var(--accent-purple);
        }

        .terminal-command {
            color: var(--text-primary);
        }

        .terminal-output {
            color: var(--text-muted);
            margin-left: 1rem;
        }

        .terminal-success {
            color: var(--success);
        }

        .tech-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .tech-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .tech-pill:hover {
            border-color: var(--accent-purple);
            color: var(--text-primary);
        }

        .tech-pill-icon {
            font-size: 1rem;
        }

        /* Sustainability Index Card - Enhanced Styles */
        .sustainability-section {
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 0;
        }

        .sustainability-card {
            background: rgba(13, 13, 18, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 48px;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            backdrop-filter: blur(16px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .sustainability-card .card-subtitle {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-purple);
            margin-bottom: 12px;
        }

        .sustainability-card .card-headline {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        /* Comparison Table */
        .comparison-table {
            display: grid;
            grid-template-columns: 1.5fr 1.2fr 1.2fr;
            gap: 0;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
        }

        .table-header {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .table-header.highlight {
            color: #818cf8;
        }

        .table-cell {
            padding: 20px;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .table-cell.label {
            color: var(--text-primary);
            font-weight: 600;
            background: rgba(255, 255, 255, 0.02);
        }

        .table-cell.negative {
            color: #f87171;
        }

        .table-cell.neutral {
            color: var(--text-muted);
        }

        .table-cell.positive {
            color: #4ade80;
            font-weight: 600;
        }

        .table-row-animate {
            opacity: 0;
            transform: translateY(20px);
            filter: blur(8px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .table-row-animate.visible {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        /* Commitments Section */
        .commitments-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
        }

        .commitments-header {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-purple);
            margin-bottom: 24px;
        }

        .commitment-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateX(-20px);
            filter: blur(8px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .commitment-item.visible {
            opacity: 1;
            transform: translateX(0);
            filter: blur(0);
        }

        .commitment-item:last-child {
            border-bottom: none;
        }

        .commitment-icon {
            width: 40px;
            height: 40px;
            background: rgba(99, 102, 241, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .commitment-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .commitment-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .sustainability-footer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            /* Reduce section spacing */
            .sustainability-section {
                padding: 2rem 1rem;
            }
            
            .sustainability-card {
                padding: 20px 16px;
                border-radius: 16px;
            }
            
            .sustainability-card .card-subtitle {
                font-size: 10px;
                letter-spacing: 0.1em;
            }
            
            .sustainability-card .card-headline {
                font-size: 1.75rem;
                margin-bottom: 20px;
            }
            
            /* Force visibility - disable scroll animations on mobile */
            .table-row-animate,
            .commitment-item {
                opacity: 1 !important;
                transform: none !important;
                filter: none !important;
            }
            
            /* Transform table into grouped metric cards */
            .comparison-table {
                display: block;
                border: none;
                border-radius: 0;
                margin-bottom: 20px;
            }
            
            /* Hide all headers */
            .table-header {
                display: none;
            }
            
            /* Metric label - subtle gray header inside card */
            .table-cell.label {
                background: #1a1a1a;
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-bottom: none;
                border-radius: 10px 10px 0 0;
                padding: 10px 14px 6px;
                font-size: 0.65rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                color: #71717a;
                margin-top: 12px;
            }
            
            .table-cell.label:first-of-type {
                margin-top: 0;
            }
            
            /* Value cells - minimal list view */
            .table-cell:not(.label) {
                background: #1a1a1a;
                border-left: 1px solid rgba(255, 255, 255, 0.08);
                border-right: 1px solid rgba(255, 255, 255, 0.08);
                padding: 4px 14px;
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 0.9rem;
                line-height: 1.4;
            }
            
            .table-cell:not(.label)::before {
                flex-shrink: 0;
                font-size: 12px;
            }
            
            /* Big Tech row - subtle red */
            .table-cell.negative {
                color: #a1a1aa;
                border-bottom: none;
            }
            
            .table-cell.negative::before {
                content: "❌";
                margin-right: 4px;
            }
            
            /* Us row - bright green emphasis */
            .table-cell.positive {
                color: #f4f4f5;
                font-weight: 500;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 0 0 10px 10px;
                padding-bottom: 10px;
            }
            
            .table-cell.positive::before {
                content: "✅";
                margin-right: 4px;
            }
            
            /* Commitments section mobile */
            .commitments-section {
                padding-top: 20px;
                border-top-color: rgba(255, 255, 255, 0.06);
            }
            
            .commitments-header {
                font-size: 10px;
                margin-bottom: 12px;
            }
            
            .commitment-item {
                padding: 10px 0;
                gap: 12px;
                border-bottom-color: rgba(255, 255, 255, 0.04);
            }
            
            .commitment-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
                border-radius: 8px;
            }
            
            .commitment-content h4 {
                font-size: 0.95rem;
                margin-bottom: 2px;
            }
            
            .commitment-content p {
                font-size: 0.8rem;
                line-height: 1.4;
            }
            
            .sustainability-footer {
                margin-top: 16px;
                padding-top: 12px;
                font-size: 0.65rem;
            }
        }

        /* CTA Section */
        .cta {
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .cta p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .footer {
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-left {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--text-primary);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 0;
            cursor: pointer;
            z-index: 10000;
            background: none;
            border: none;
            flex-shrink: 0;
            margin-left: auto;
            width: 44px;
            height: 44px;
            justify-content: center;
            align-items: flex-end;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(8px);
            z-index: 9999;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 0;
            padding: calc(var(--announce-h) + 4.75rem) 1.25rem 3rem;
            overflow-y: auto;
            display: none;
        }

        .mobile-menu.active {
            display: flex !important;
        }

        .mobile-menu-inner {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: var(--accent-purple);
        }

        .mobile-menu .btn {
            margin-top: 1rem;
            font-size: 1rem;
            padding: 0.875rem 1.75rem;
        }

        /* Mobile category groups (native <details> accordions) */
        .mobile-home-link {
            font-size: 1.15rem !important;
            font-weight: 600;
            padding: 0.9rem 0.25rem !important;
            border-bottom: 1px solid var(--border-subtle);
        }

        .mobile-group {
            border-bottom: 1px solid var(--border-subtle);
        }

        .mobile-group > summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.9rem 0.25rem;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
            user-select: none;
            -webkit-user-select: none;
        }

        .mobile-group > summary::-webkit-details-marker { display: none; }

        .mobile-group > summary .grp-chev {
            width: 0.55em;
            height: 0.55em;
            border-right: 2px solid var(--text-muted);
            border-bottom: 2px solid var(--text-muted);
            transform: rotate(45deg);
            transition: transform 0.25s ease;
            flex-shrink: 0;
            margin-right: 0.4rem;
        }

        .mobile-group[open] > summary { color: var(--accent-purple); }
        .mobile-group[open] > summary .grp-chev {
            transform: rotate(225deg);
            border-color: var(--accent-purple);
        }

        .mobile-group-links {
            display: flex;
            flex-direction: column;
            padding: 0.15rem 0 0.75rem;
        }

        .mobile-menu .mobile-group-links a {
            font-size: 1rem !important;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 0.6rem 0.9rem !important;
        }

        .mobile-menu .mobile-group-links a:hover {
            color: var(--accent-purple);
        }

        .mobile-menu .mobile-cta {
            align-self: center;
            margin-top: 1.75rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-card.featured {
                grid-column: span 1;
            }

            .nav-links {
                display: none !important;
            }

            .hamburger {
                display: flex !important;
            }
            
            .navbar-inner {
                max-width: 100%;
                padding: 0.5rem 16px;
            }
        }

        @media (max-width: 600px) {
            .hero {
                padding: calc(5rem + var(--announce-h)) 16px 3rem;
            }

            .hero h1 {
                font-size: 2rem;
                padding: 0 0.5rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.1em;
            }

            /* Put the rotating word on its own centered line so long
               words (Presentation, Conversation…) never wrap or clip */
            .hero-word-rotator {
                margin-bottom: 0;
                max-width: 100%;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 0.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
                padding: 0 1rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .terminal-body {
                font-size: 0.75rem;
                padding: 1rem;
            }
        }

/* ---- extracted from inline style="" attributes (kept last so they win
   by source order; NO !important so JS-set inline styles still override) ---- */
.il-index-1.il-index-1.il-index-1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
}
.il-index-2.il-index-2.il-index-2 {
  width:18px;
  height:18px;
  vertical-align:-3px;
  margin-right:0.4rem;
}
.il-index-3.il-index-3.il-index-3 {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 0.75rem;
}
.il-index-4.il-index-4.il-index-4 {
  padding-top: 3rem;
}
.il-index-5.il-index-5.il-index-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.il-index-6.il-index-6.il-index-6 {
  text-align: center;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.il-index-7.il-index-7.il-index-7 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.il-index-8.il-index-8.il-index-8 {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.il-index-9.il-index-9.il-index-9 {
  margin-top: 0.5rem;
}
.il-index-10.il-index-10.il-index-10 {
  color: var(--accent-purple);
}
.il-index-11.il-index-11.il-index-11 {
  margin: 2rem auto;
  max-width: 500px;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.il-index-12.il-index-12.il-index-12 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  text-align: center;
}
.il-index-13.il-index-13.il-index-13 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: center;
}
.il-index-14.il-index-14.il-index-14 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.il-index-15.il-index-15.il-index-15 {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.il-index-16.il-index-16.il-index-16 {
  padding: 0.75rem 1.5rem;
}
.il-index-17.il-index-17.il-index-17 {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}
.il-index-18.il-index-18.il-index-18 {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.il-index-19.il-index-19.il-index-19 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.il-index-20.il-index-20.il-index-20 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.il-index-21.il-index-21.il-index-21 {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.il-index-22.il-index-22.il-index-22 {
  color: var(--accent);
  text-decoration: underline;
}
.il-index-23.il-index-23.il-index-23 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.il-index-24.il-index-24.il-index-24 {
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  font-size: 0.75rem;
}
.il-index-25.il-index-25.il-index-25 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.il-index-26.il-index-26.il-index-26 {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}
.il-index-27.il-index-27.il-index-27 {
  padding: 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.il-index-28.il-index-28.il-index-28 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.il-index-29.il-index-29.il-index-29 {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}
.il-index-30.il-index-30.il-index-30 {
  margin-bottom: 0.75rem;
}
.il-index-31.il-index-31.il-index-31 {
  color: var(--text-primary);
}
.il-index-32.il-index-32.il-index-32 {
  padding-left: 1.5rem;
  margin: 0;
}
.il-index-33.il-index-33.il-index-33 {
  text-align: center;
  padding: 1rem 0 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
