@import url('brand-home-link.css');

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

        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        body {
            font-family: var(--font-body);
            font-size: var(--text-base);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            transition: background-color var(--motion-duration-normal) ease, color var(--motion-duration-normal) ease;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        h1,
        h2,
        h3,
        .section-title,
        .card-title,
        .features-title {
            font-family: var(--font-display);
            letter-spacing: -0.02em;
        }

        .theme-toggle-btn {
            position: fixed;
            top: 20px;
            right: 124px;
            z-index: 999;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-secondary);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition:
                border-color var(--motion-duration-fast) ease,
                background-color var(--motion-duration-fast) ease,
                transform var(--motion-duration-fast) ease,
                box-shadow var(--motion-duration-fast) ease;
            box-shadow: var(--shadow-sm);
        }

        .theme-toggle-btn:hover {
            transform: translateY(-1px);
            background-color: var(--bg-tertiary);
        }

        .theme-toggle-btn:focus-visible {
            outline: var(--focus-ring);
            outline-offset: var(--focus-offset);
        }

        .language-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 7px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.15);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(8px);
        }

        .language-selector img {
            width: 36px;
            height: 24px;
            border-radius: 7px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
            opacity: 0.62;
            filter: saturate(0.84);
        }

        .language-selector img:hover {
            transform: translateY(-1px) scale(1.04);
            opacity: 0.9;
            filter: saturate(1);
        }

        .language-selector img.is-active {
            opacity: 1;
            filter: saturate(1.08);
            box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.6), 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .header {
            padding: 80px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .header::after {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .logo {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--accent-cyan);
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .title {
            font-size: var(--text-hero);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-warm));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 680px;
            margin: 0 auto 24px;
            font-weight: 600;
        }

        .hero-badges,
        .hero-actions,
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .hero-badges {
            margin: 0 auto 18px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(10px);
        }

        .hero-actions {
            margin: 0 auto 20px;
        }

        .hero-stats {
            margin-top: 8px;
        }

        .hero-stat {
            min-width: 140px;
            padding: 14px 16px;
            border-radius: var(--ui-radius-card);
            background: linear-gradient(135deg, rgba(19, 25, 46, 0.84), rgba(26, 40, 71, 0.7));
            border: 1px solid var(--ui-stroke-mid);
            box-shadow: var(--ui-inset), var(--shadow-sm);
        }

        .hero-stat strong {
            display: block;
            font-size: 1.35rem;
            color: var(--text-primary);
        }

        .hero-stat span {
            display: block;
            margin-top: 4px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .main {
            flex: 1;
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .section-shell {
            background: linear-gradient(135deg, var(--bg-secondary), rgba(26, 40, 71, 0.7));
            border: 1px solid var(--ui-stroke);
            border-radius: var(--ui-radius-shell);
            padding: 32px;
            margin: 32px 0;
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(0, 0, 0, 0.18), var(--shadow-md);
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 22px;
        }

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

        .step-card,
        .faq-card {
            border-radius: var(--ui-radius-card);
            border: 1px solid var(--ui-stroke-mid);
            background: rgba(255, 255, 255, 0.05);
            padding: 18px;
            box-shadow: var(--ui-inset), 0 1px 0 rgba(0, 0, 0, 0.12);
        }

        .step-card strong,
        .faq-card strong {
            display: block;
            margin-bottom: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .step-card p,
        .faq-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-warm));
            color: #fff;
            font-weight: 800;
        }

        .cta-banner {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
            align-items: stretch;
            gap: 18px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(251, 191, 36, 0.22);
            background: linear-gradient(135deg, rgba(24, 19, 7, 0.96), rgba(32, 24, 10, 0.92) 42%, rgba(18, 30, 46, 0.92) 100%);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(251, 191, 36, 0.08);
        }

        [data-theme="light"] .cta-banner {
            border-color: rgba(217, 119, 6, 0.18);
            background: linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(255, 247, 237, 0.96) 45%, rgba(248, 250, 252, 0.96) 100%);
            box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(245, 158, 11, 0.05);
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 32%),
                        radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.10), transparent 42%);
            pointer-events: none;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
        }

        .cta-banner-copy,
        .cta-banner-actions {
            position: relative;
            z-index: 1;
        }

        .cta-banner-copy {
            max-width: 680px;
        }

        .cta-banner-copy p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-top: 8px;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            padding: 7px 12px;
            border-radius: 999px;
            border: 1px solid rgba(251, 191, 36, 0.34);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(245, 158, 11, 0.10));
            color: #fde68a;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12);
        }

        [data-theme="light"] .cta-badge {
            color: #b45309;
            background: rgba(245, 158, 11, 0.10);
            border-color: rgba(217, 119, 6, 0.20);
        }

        .cta-list {
            display: grid;
            gap: 8px;
            margin-top: 16px;
        }

        .cta-list-item {
            color: var(--text-secondary);
            font-size: 0.94rem;
            line-height: 1.5;
        }

        .cta-banner-actions {
            display: grid;
            gap: 10px;
            align-content: center;
            padding: 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
        }

        [data-theme="light"] .cta-banner-actions {
            background: rgba(255, 255, 255, 0.65);
            border-color: rgba(15, 23, 42, 0.06);
        }

        .cta-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            text-align: center;
        }

        #cta-premium-btn {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #241406;
            box-shadow: 0 10px 22px rgba(245, 158, 11, 0.24);
        }

        #cta-premium-btn:hover {
            box-shadow: 0 14px 28px rgba(245, 158, 11, 0.30);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        .card {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-lg);
        }

        .card.card-highlight {
            border-color: rgba(251, 191, 36, 0.55);
            box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.28), 0 18px 40px rgba(14, 165, 233, 0.28);
        }

        [data-theme="light"] .card.card-highlight {
            border-color: rgba(217, 119, 6, 0.45);
            box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.2), 0 16px 34px rgba(2, 132, 199, 0.18);
        }

        .card-content {
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .card-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .card-description {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .card-footer {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: none;
            font-family: inherit;
            border-radius: 12px;
            padding: 12px 22px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition:
                transform var(--motion-duration-fast) var(--ease-standard),
                box-shadow var(--motion-duration-fast) var(--ease-standard),
                filter var(--motion-duration-fast) var(--ease-standard);
            white-space: nowrap;
        }

        .btn:focus-visible {
            outline: var(--focus-ring);
            outline-offset: var(--focus-offset);
        }

        .btn:disabled {
            opacity: 0.55;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn:active:not(:disabled) {
            transform: translateY(0);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            color: #04131f;
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--accent-warm), #ec4899);
            color: #fff;
        }

        .btn-tertiary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
            color: #1f1203;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .features {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 60px 40px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .features-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .features-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: var(--text-primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .feature-title {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .feature-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 40px 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: auto;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--accent-cyan);
        }

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

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }

        /* ── Scroll reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-child > * {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal-child.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
        .reveal-child.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .reveal-child.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }

        /* ── Showcase gallery ── */

        /* ── Social proof / testimonials ── */

        @media (max-width: 768px) {
            .top-brand-link {
                top: 12px;
                left: 12px;
                padding: 11px 15px 11px 12px;
                gap: 10px;
            }
            .top-brand-link .brand-home-link__wordmark {
                font-size: 0.98rem;
            }
            .top-brand-link .brand-home-link__icon {
                width: 40px;
                height: 40px;
            }

            .header {
                padding: 88px 16px 22px;
            }

            .main {
                padding: 18px 16px 28px;
            }

            .hero-actions .btn,
            .cta-banner .btn {
                width: 100%;
            }

            .cta-banner {
                align-items: stretch;
            }
        }

        /* ── Home redesign overrides ── */
        .theme-toggle-btn {
            display: none !important;
        }

        /* ── Hero background ── */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 35%;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(180deg,
                    rgba(10, 14, 39, 0.52) 0%,
                    rgba(10, 14, 39, 0.68) 40%,
                    rgba(10, 14, 39, 0.90) 82%,
                    var(--bg-primary) 100%),
                radial-gradient(ellipse at 20% 50%, rgba(34, 211, 238, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.10) 0%, transparent 50%);
        }

        [data-theme="light"] .hero-overlay {
            background:
                linear-gradient(180deg,
                    rgba(248, 250, 252, 0.48) 0%,
                    rgba(248, 250, 252, 0.68) 40%,
                    rgba(248, 250, 252, 0.92) 82%,
                    var(--bg-primary) 100%),
                radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
        }

        /* ── Floating orbs ── */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-orb-1 {
            width: 420px;
            height: 420px;
            top: -80px;
            right: -60px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
            animation: orbFloat1 14s ease-in-out infinite;
        }

        .hero-orb-2 {
            width: 350px;
            height: 350px;
            bottom: 10%;
            left: -80px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 70%);
            animation: orbFloat2 18s ease-in-out infinite;
        }

        .hero-orb-3 {
            width: 280px;
            height: 280px;
            top: 40%;
            right: 15%;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 70%);
            animation: orbFloat3 20s ease-in-out infinite;
        }

        @keyframes orbFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-30px, 20px) scale(1.08); }
            66% { transform: translate(20px, -15px) scale(0.95); }
        }

        @keyframes orbFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            40% { transform: translate(25px, -20px) scale(1.06); }
            70% { transform: translate(-15px, 10px) scale(0.97); }
        }

        @keyframes orbFloat3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-20px, 25px); }
        }

        /* ── Header ── */
        .header {
            min-height: 100vh;
            min-height: 100dvh;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header::before,
        .header::after {
            display: none;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 960px;
            margin: 0 auto;
            padding: 100px 24px 60px;
        }

        /* ── Brand pill ── */
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 22px;
            padding: 8px 20px;
            border-radius: 999px;
            border: 1px solid rgba(34, 211, 238, 0.25);
            background: rgba(34, 211, 238, 0.08);
            color: var(--accent-cyan);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            backdrop-filter: blur(12px);
        }

        /* ── Title shimmer ── */
        .title {
            font-size: clamp(2.8rem, 7vw, 4.2rem);
            font-weight: 900;
            line-height: 1.08;
            margin-bottom: 18px;
            background: linear-gradient(
                135deg,
                var(--accent-cyan) 0%,
                var(--accent-blue) 30%,
                var(--accent-warm) 65%,
                var(--accent-cyan) 100%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 6s ease-in-out infinite;
        }

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

        /* ── Subtitle ── */
        .subtitle {
            font-size: clamp(1.05rem, 2.5vw, 1.25rem);
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 26px;
        }

        /* ── Badges ── */
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 0 auto 28px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-secondary);
            font-size: 0.84rem;
            font-weight: 600;
            backdrop-filter: blur(12px);
            box-shadow: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .hero-badge:hover {
            border-color: rgba(34, 211, 238, 0.3);
            background: rgba(34, 211, 238, 0.08);
        }

        /* ── Hero actions ── */
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin: 0 auto 48px;
            max-width: 720px;
        }

        .hero-actions .btn {
            padding: 14px 32px;
            font-size: 1rem;
            border-radius: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .hero-actions .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            color: #041926;
            border: 1px solid rgba(34, 211, 238, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 16px 34px rgba(14, 165, 233, 0.28);
            min-width: 250px;
        }

        .hero-actions .btn-primary:hover {
            filter: brightness(1.05);
            border-color: rgba(34, 211, 238, 0.9);
            box-shadow: 0 20px 42px rgba(14, 165, 233, 0.34);
        }

        .hero-actions .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 20px rgba(2, 8, 23, 0.16);
        }

        .hero-actions .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(2, 8, 23, 0.22);
        }

        [data-theme="light"] .hero-actions .btn-primary {
            background: rgba(124, 58, 237, 0.08);
            color: var(--accent-warm);
            border-color: rgba(124, 58, 237, 0.25);
        }

        [data-theme="light"] .hero-actions .btn-primary:hover {
            background: rgba(124, 58, 237, 0.15);
            border-color: rgba(124, 58, 237, 0.40);
        }

        [data-theme="light"] .hero-actions .btn-secondary {
            background: rgba(8, 145, 178, 0.08);
            color: var(--accent-cyan);
            border-color: rgba(8, 145, 178, 0.25);
        }

        [data-theme="light"] .hero-actions .btn-secondary:hover {
            background: rgba(124, 58, 237, 0.15);
            border-color: rgba(124, 58, 237, 0.40);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(8px);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* ── Hero entry-point cards ── */
        .hero-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            max-width: 880px;
            margin: 0 auto;
        }

        .hero-card {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 24px 20px;
            border-radius: var(--ui-radius-shell);
            border: 1px solid var(--ui-stroke-mid);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            text-align: center;
            box-shadow: var(--ui-inset), 0 1px 0 rgba(0, 0, 0, 0.15);
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .hero-card:hover {
            transform: translateY(-6px);
            border-color: rgba(34, 211, 238, 0.4);
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(34, 211, 238, 0.2), 0 20px 50px rgba(0, 0, 0, 0.35);
        }

        .hero-card.hero-card-highlight {
            border-color: rgba(168, 85, 247, 0.38);
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(168, 85, 247, 0.18), 0 12px 36px rgba(14, 165, 233, 0.2);
        }

        .hero-card.hero-card-highlight:hover {
            border-color: rgba(168, 85, 247, 0.52);
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(168, 85, 247, 0.28), 0 20px 50px rgba(14, 165, 233, 0.28);
        }

        [data-theme="light"] .hero-card {
            background: rgba(255, 255, 255, 0.70);
            border-color: var(--ui-stroke-mid);
            box-shadow: var(--ui-inset), 0 1px 0 rgba(15, 23, 42, 0.06);
        }

        [data-theme="light"] .hero-card:hover {
            border-color: rgba(8, 145, 178, 0.34);
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(8, 145, 178, 0.12), 0 16px 40px rgba(15, 23, 42, 0.12);
        }

        .hero-card .card-icon {
            font-size: 36px;
            margin-bottom: 2px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
            filter: drop-shadow(0 0 0 transparent);
        }

        .hero-card:hover .card-icon {
            transform: scale(1.2) translateY(-3px);
            filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.45));
        }

        .hero-card.hero-card-highlight:hover .card-icon {
            filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.50));
        }

        .hero-card .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0;
            color: var(--text-primary);
            position: relative;
            display: inline-block;
        }

        .hero-card .card-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -3px;
            width: 0;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-warm));
            transition: width 0.35s ease, left 0.35s ease;
        }

        .hero-card:hover .card-title::after {
            width: 100%;
            left: 0;
        }

        .hero-card .card-description {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 6px;
        }

        .hero-card .btn {
            margin-top: auto;
            width: 100%;
            padding: 11px 20px;
            font-size: 0.92rem;
            border-radius: 12px;
        }

        /* ── Scroll indicator ── */
        .hero-scroll-hint {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            opacity: 0.6;
            animation: hintBounce 2.5s ease-in-out infinite;
        }

        .hero-scroll-hint span {
            display: block;
            width: 22px;
            height: 34px;
            border-radius: 12px;
            border: 2px solid var(--text-muted);
            position: relative;
        }

        .hero-scroll-hint span::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            border-radius: 4px;
            background: var(--text-muted);
            animation: scrollDot 2.5s ease-in-out infinite;
        }

        @keyframes hintBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        @keyframes scrollDot {
            0%, 100% { opacity: 1; top: 6px; }
            50% { opacity: 0.3; top: 16px; }
        }

        /* ── Section overrides ── */
        .panel-kicker,
        .section-kicker {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-cyan);
        }

        .main {
            max-width: 1180px;
            padding-top: 10px;
        }

        .section-shell {
            padding: 24px 26px;
            margin: 0 0 18px;
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(0, 0, 0, 0.14), var(--shadow-sm);
        }

        .simple-overview .section-subtitle {
            max-width: 760px;
        }

        .mini-checklist-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .mini-check-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 14px 16px;
            border-radius: var(--ui-radius-pill);
            border: 1px solid var(--ui-stroke-mid);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: var(--ui-inset);
        }

        .mini-check-item span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            flex-shrink: 0;
            font-size: 0.78rem;
            font-weight: 800;
            color: #06131d;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-warm));
        }

        .mini-check-item p {
            color: var(--text-secondary);
            line-height: 1.55;
            font-size: 0.92rem;
        }

        .steps-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .step-card {
            background: rgba(255, 255, 255, 0.04);
        }

        .path-grid,
        .compare-grid,
        .trust-grid {
            display: grid;
            gap: 14px;
            margin-top: 18px;
        }

        .path-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .compare-grid,
        .trust-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .simple-card,
        .compare-card,
        .trust-card {
            border-radius: var(--ui-radius-card);
            border: 1px solid var(--ui-stroke-mid);
            background: rgba(255, 255, 255, 0.04);
            padding: 18px;
            box-shadow: var(--ui-inset), 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .simple-card strong,
        .compare-card strong,
        .trust-card strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .simple-card p,
        .compare-card p,
        .trust-card p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.55;
            font-size: 0.93rem;
        }

        .compare-card.card-highlight {
            border-color: rgba(251, 191, 36, 0.4);
            box-shadow: var(--ui-inset), 0 0 0 1px rgba(251, 191, 36, 0.18);
        }

        .compare-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-secondary);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .compare-list,
        .trust-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
            display: grid;
            gap: 10px;
        }

        .compare-list li,
        .trust-list li {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 0.92rem;
            padding-left: 18px;
            position: relative;
        }

        .compare-list li::before,
        .trust-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6em;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-warm));
        }

        .section-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }

        .cta-banner-actions .btn {
            width: 100%;
        }

        .cta-banner {
            padding: 20px 24px;
        }

        .cta-banner-copy {
            max-width: 620px;
        }

        @media (max-width: 980px) {
            .hero-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .path-grid,
            .compare-grid,
            .mini-checklist-grid,
            .trust-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .section-shell {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .header {
                min-height: auto;
            }

            .header-content {
                padding: 120px 16px 28px;
            }

            .hero-badges,
            .hero-actions {
                gap: 10px;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .hero-scroll-hint {
                display: none;
            }

            .top-brand-link {
                position: static;
                margin: 0 auto 18px;
                padding: 11px 16px 11px 12px;
                gap: 10px;
                display: inline-flex;
            }
            .top-brand-link .brand-home-link__wordmark {
                font-size: 0.98rem;
            }
            .top-brand-link .brand-home-link__icon {
                width: 40px;
                height: 40px;
            }

            .main {
                padding: 18px 16px 28px;
            }

            .hero-actions .btn,
            .cta-banner .btn {
                width: 100%;
            }

            .cta-banner {
                align-items: stretch;
                padding: 18px;
            }

            .language-selector {
                top: 14px;
                right: 14px;
                padding: 6px;
            }

            .language-selector img {
                width: 32px;
                height: 22px;
            }
        }

        @media (max-width: 520px) {
            .header-content {
                padding-top: 104px;
            }

            .hero-card {
                padding: 18px 16px;
            }

            .hero-actions {
                margin-bottom: 26px;
            }

            .logo {
                margin-bottom: 16px;
                padding: 7px 14px;
                font-size: 0.74rem;
                letter-spacing: 1.8px;
            }

            .title {
                font-size: clamp(2.2rem, 10vw, 2.9rem);
            }

            .subtitle {
                font-size: 0.98rem;
                line-height: 1.55;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-orb,
            .title,
            .hero-scroll-hint,
            .hero-scroll-hint span::after,
            .fade-in {
                animation: none !important;
            }

            .fade-in,
            .delay-1,
            .delay-2,
            .delay-3 {
                animation-delay: 0s !important;
                opacity: 1 !important;
                transform: none !important;
            }

            .reveal,
            .reveal-child,
            .reveal-child > * {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            .hero-card,
            .btn,
            .top-brand-link,
            .language-selector img {
                transition: none !important;
            }
        }

        .section-shell,
        .cta-banner {
            content-visibility: auto;
            contain-intrinsic-size: 1px 420px;
        }
