        /* =========================
           DESIGN TOKENS — LIGHT THEME
           ========================= */
        :root {
            /* Warm cream off-white base — premium, not generic */
            --bg-base: #faf8f3;
            --bg-elev: #ffffff;
            --bg-warm: #f3efe4;
            --bg-deep: #ebe7da;

            --ink-1: #0d1410;
            --ink-2: rgba(13,20,16,0.72);
            --ink-3: rgba(13,20,16,0.5);
            --ink-4: rgba(13,20,16,0.3);
            --ink-on-emerald: #f5fdf9;

            --line: rgba(13,20,16,0.07);
            --line-strong: rgba(13,20,16,0.13);

            --emerald-deep: #064e3b;
            --emerald-1: #047857;
            --emerald-2: #059669;
            --emerald-3: #10b981;
            --emerald-4: #34d399;
            --emerald-soft: #d1fae5;
            --emerald-bg: #ecfdf5;

            --accent-coral: #ef6f5e;
            --accent-amber: #f59e0b;

            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 36px;

            --shadow-xs: 0 1px 2px rgba(13,20,16,0.04);
            --shadow-sm: 0 2px 8px rgba(13,20,16,0.05), 0 0 0 1px rgba(13,20,16,0.04);
            --shadow-md: 0 10px 30px -8px rgba(13,20,16,0.10), 0 0 0 1px rgba(13,20,16,0.04);
            --shadow-lg: 0 30px 60px -20px rgba(13,20,16,0.18), 0 0 0 1px rgba(13,20,16,0.05);
            --shadow-emerald: 0 18px 40px -12px rgba(4,120,87,0.35);

            --ease: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

            --font-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: "JetBrains Mono", ui-monospace, monospace;
        }

        /* =========================
           RESET / BASE
           ========================= */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        body {
            font-family: var(--font-body);
            font-weight: 400;
            background: var(--bg-base);
            color: var(--ink-1);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; }
        img, svg { display: block; max-width: 100%; }
        button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
        ::selection { background: var(--emerald-3); color: white; }
        section[id] { scroll-margin-top: 90px; }

        /* =========================
           ATMOSPHERIC BACKGROUND
           ========================= */
        .bg-grid {
            position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background-image:
                linear-gradient(rgba(13,20,16,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(13,20,16,0.025) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
        }
        .bg-grain {
            position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.022 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
        }
        .bg-glow {
            position: fixed; z-index: 0; pointer-events: none; border-radius: 50%;
            filter: blur(80px);
        }
        .bg-glow--1 { display: none; }
        .bg-glow--2 { width: 500px; height: 500px; top: 1300px; left: -150px; background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%); }
        .bg-glow--3 { width: 600px; height: 600px; top: 2800px; right: -180px; background: radial-gradient(circle, rgba(239,111,94,0.16), transparent 60%); }
        .bg-glow--4 { width: 700px; height: 700px; top: 4500px; left: 30%; background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 60%); }

        /* =========================
           PRELOADER
           ========================= */
        .preloader {
            position: fixed; inset: 0; z-index: 9999; background: var(--bg-base);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity .7s var(--ease), visibility .7s;
        }
        .preloader.is-done { opacity: 0; visibility: hidden; }
        .preloader-mark { width: 64px; height: 64px; position: relative; }
        .preloader-mark svg { width: 100%; height: 100%; }
        .preloader-mark circle { fill: none; stroke: var(--emerald-2); stroke-width: 2; transform-origin: 50% 50%; animation: pl-rotate 1.6s linear infinite; stroke-linecap: round; }
        .preloader-mark .pl-c1 { stroke-dasharray: 60 200; }
        .preloader-mark .pl-c2 { stroke: var(--emerald-deep); stroke-dasharray: 24 100; animation-duration: 2s; animation-direction: reverse; }
        .preloader-bar { margin-top: 28px; width: 180px; height: 1px; background: rgba(13,20,16,0.1); position: relative; overflow: hidden; }
        .preloader-bar::before {
            content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%;
            background: linear-gradient(90deg, transparent, var(--emerald-2), transparent);
            animation: pl-bar 1.6s var(--ease) infinite;
        }
        .preloader-label { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em; color: var(--ink-3); text-transform: uppercase; }
        @keyframes pl-rotate { to { transform: rotate(360deg); } }
        @keyframes pl-bar { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

        /* =========================
           LAYOUT
           ========================= */
        .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
        @media (max-width: 640px) { .container { padding: 0 20px; } }
        section { position: relative; z-index: 2; }

        /* =========================
           NAVIGATION
           ========================= */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 20px 0; transition: padding .3s var(--ease), background .3s, backdrop-filter .3s, border-color .3s;
            border-bottom: 1px solid transparent;
        }
        .nav.is-scrolled {
            background: rgba(250,248,243,0.78);
            backdrop-filter: blur(20px) saturate(140%);
            -webkit-backdrop-filter: blur(20px) saturate(140%);
            border-bottom-color: var(--line);
            padding: 12px 0;
        }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
        .logo {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-display); font-weight: 600; font-size: 22px;
            font-variation-settings: "opsz" 24, "wdth" 100;
            letter-spacing: -0.025em;
            color: var(--ink-1);
        }
        .logo-mark {
            width: 32px; height: 32px; position: relative; display: inline-grid; place-items: center;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1));
            border-radius: 8px;
            box-shadow: 0 6px 20px -4px rgba(16,185,129,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
        }
        .logo-mark svg { width: 17px; height: 17px; color: white; position: relative; z-index: 1; }
        .nav-menu { display: flex; align-items: center; gap: 6px; }
        @media (max-width: 860px) { .nav-menu .nav-links { display: none; } }
        @media (max-width: 540px) { .nav-menu .lang-switch { display: none; } }
        .nav-links { display: flex; gap: 2px; margin-right: 14px; }
        .nav-links a {
            font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 8px 14px; border-radius: 100px;
            transition: color .2s, background .2s;
        }
        .nav-links a:hover { color: var(--ink-1); background: rgba(13,20,16,0.04); }

        .lang-switch {
            display: inline-flex; align-items: center;
            border: 1px solid var(--line); border-radius: 100px;
            padding: 3px; gap: 2px; margin-right: 4px;
            background: rgba(255,255,255,0.6);
        }
        .lang-switch a {
            padding: 5px 10px; font-size: 11px; font-family: var(--font-mono); letter-spacing: .1em;
            color: var(--ink-3); border-radius: 100px; transition: color .2s, background .2s;
        }
        .lang-switch a:hover { color: var(--ink-1); }
        .lang-switch a.is-active { background: var(--ink-1); color: white; }

        /* =========================
           BUTTONS
           ========================= */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 12px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
            font-family: var(--font-body);
            transition: all .25s var(--ease);
            position: relative; overflow: hidden;
            white-space: nowrap;
        }
        .btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
        .btn--ghost { color: var(--ink-1); }
        .btn--ghost:hover { background: rgba(13,20,16,0.05); }
        .btn--outline {
            border: 1px solid var(--line-strong); color: var(--ink-1); background: white;
        }
        .btn--outline:hover { border-color: var(--ink-1); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn--dark {
            background: var(--ink-1); color: white;
        }
        .btn--dark:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(13,20,16,0.4); }
        .btn--dark:hover svg { transform: translateX(3px); }
        .btn--emerald {
            background: linear-gradient(180deg, var(--emerald-2), var(--emerald-1));
            color: white;
            box-shadow: var(--shadow-emerald), inset 0 1px 0 rgba(255,255,255,0.2);
        }
        .btn--emerald::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3), transparent 70%);
            transform: translateX(-110%); transition: transform .7s var(--ease);
        }
        .btn--emerald:hover::before { transform: translateX(110%); }
        .btn--emerald:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -12px rgba(4,120,87,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
        .btn--emerald:hover svg { transform: translateX(3px); }
        .btn--lg { padding: 16px 30px; font-size: 15px; }

        /* =========================
           HERO
           ========================= */
        .hero { padding: 170px 0 80px; position: relative; }
        @media (max-width: 768px) { .hero { padding: 130px 0 60px; } }

        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 5px 14px 5px 5px; border-radius: 100px;
            border: 1px solid var(--line-strong);
            background: rgba(255,255,255,0.7);
            font-size: 12px; font-weight: 600; letter-spacing: .04em;
            color: var(--ink-2); text-transform: uppercase;
            margin-bottom: 36px;
            box-shadow: var(--shadow-xs);
        }
        .hero-eyebrow-dot {
            width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1));
            color: white; position: relative;
        }
        .hero-eyebrow-dot::after {
            content: ''; position: absolute; inset: -3px; border-radius: 50%;
            background: var(--emerald-3); opacity: 0.4;
            animation: pulse 2s var(--ease) infinite;
        }
        .hero-eyebrow-dot svg { width: 11px; height: 11px; position: relative; z-index: 1; }
        @keyframes pulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.8); opacity: 0; } }

        .hero-title {
            font-family: var(--font-display);
            font-weight: 500;
            font-variation-settings: "opsz" 96, "wdth" 92;
            font-size: clamp(36px, 5.4vw, 72px);
            line-height: 1.02;
            letter-spacing: -0.035em;
            color: var(--ink-1);
            max-width: 22ch;
            margin-bottom: 28px;
        }
        .hero-title em {
            font-style: normal;
            font-variation-settings: "opsz" 96, "wdth" 110, "wght" 600;
            color: var(--emerald-1);
            position: relative;
        }
        .hero-title em::after {
            content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
            height: 0.18em; background: var(--emerald-soft); z-index: -1;
            transform: scaleX(0); transform-origin: left; opacity: 0;
            animation: underline-grow 1.2s var(--ease) 1.6s forwards;
        }
        @keyframes underline-grow { to { transform: scaleX(1); opacity: 1; } }
        .hero-title .reveal-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.05em; }
        .hero-title .reveal-word > span { display: inline-block; transform: translateY(110%); animation: wordReveal 1.1s var(--ease) forwards; }
        @keyframes wordReveal { to { transform: translateY(0); } }

        .hero-sub {
            font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; color: var(--ink-2);
            max-width: 56ch; margin-bottom: 40px; font-weight: 400;
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 1s var(--ease) .8s forwards;
        }
        @keyframes fadeUp { to { opacity: 1; transform: none; } }

        .hero-cta {
            display: flex; gap: 14px; flex-wrap: wrap;
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 1s var(--ease) 1s forwards;
        }

        .hero-meta {
            display: flex; gap: 30px; margin-top: 56px; flex-wrap: wrap;
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 1s var(--ease) 1.2s forwards;
        }
        .hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); font-weight: 500; }
        .hero-meta-item svg { width: 16px; height: 16px; color: var(--emerald-2); }

        /* =========================
           HERO MOCKUP
           ========================= */
        .hero-mockup-wrap {
            margin-top: 90px; position: relative;
            opacity: 0; transform: translateY(40px);
            animation: fadeUp 1.4s var(--ease) 1.4s forwards;
        }
        .hero-mockup {
            position: relative; max-width: 1100px; margin: 0 auto;
            border-radius: var(--radius-xl);
            background: white;
            box-shadow: var(--shadow-lg), 0 60px 100px -40px rgba(4,120,87,0.18);
            border: 1px solid var(--line);
            overflow: hidden;
        }
        .mockup-chrome {
            display: flex; align-items: center; gap: 14px;
            padding: 12px 18px; border-bottom: 1px solid var(--line);
            background: var(--bg-warm);
        }
        .mockup-dots { display: flex; gap: 6px; }
        .mockup-dots span { width: 11px; height: 11px; border-radius: 50%; }
        .mockup-dots span:nth-child(1) { background: #ff5f57; }
        .mockup-dots span:nth-child(2) { background: #febc2e; }
        .mockup-dots span:nth-child(3) { background: #28c840; }
        .mockup-url {
            flex: 1; max-width: 460px; margin: 0 auto;
            padding: 6px 14px; background: white; border-radius: 8px;
            font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
            display: flex; align-items: center; gap: 8px;
            border: 1px solid var(--line);
        }
        .mockup-url svg { width: 12px; height: 12px; color: var(--emerald-2); flex-shrink: 0; }
        .mockup-url b { color: var(--ink-1); font-weight: 600; }
        .mockup-body { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; background: white; }
        @media (max-width: 768px) { .mockup-body { grid-template-columns: 1fr; } .mockup-side { display: none; } }
        .mockup-side { padding: 22px 14px; border-right: 1px solid var(--line); background: #fcfaf5; }
        .mockup-school-id {
            display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px;
            background: var(--emerald-bg); border: 1px solid rgba(16,185,129,0.18);
            margin-bottom: 22px;
        }
        .mockup-school-id-mark {
            width: 32px; height: 32px; border-radius: 8px;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1));
            display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: white;
        }
        .mockup-school-id-info b { display: block; font-size: 13px; color: var(--ink-1); font-weight: 600; }
        .mockup-school-id-info span { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); }
        .mockup-nav { display: flex; flex-direction: column; gap: 2px; }
        .mockup-nav-item {
            display: flex; align-items: center; gap: 10px;
            padding: 8px 10px; border-radius: 7px; font-size: 13px; color: var(--ink-2); font-weight: 500;
        }
        .mockup-nav-item svg { width: 14px; height: 14px; }
        .mockup-nav-item.is-active { background: rgba(13,20,16,0.06); color: var(--ink-1); }
        .mockup-nav-item.is-active svg { color: var(--emerald-1); }

        .mockup-main { padding: 26px; display: flex; flex-direction: column; gap: 18px; }
        .mockup-h { display: flex; justify-content: space-between; align-items: center; }
        .mockup-h h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -.02em; font-variation-settings: "opsz" 24, "wdth" 100; }
        .mockup-h-stat { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
        .mockup-h-stat b { color: var(--emerald-1); }

        .mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        @media (max-width: 520px) { .mockup-stats { grid-template-columns: 1fr 1fr; } }
        .mockup-stat-card {
            padding: 14px; border-radius: 12px; background: var(--bg-base);
            border: 1px solid var(--line);
        }
        .mockup-stat-card .lbl { font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; font-weight: 500; }
        .mockup-stat-card .lbl svg { width: 12px; height: 12px; }
        .mockup-stat-card .val { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -.02em; font-variation-settings: "opsz" 32, "wdth" 100; }
        .mockup-stat-card .delta { font-size: 11px; color: var(--emerald-1); font-family: var(--font-mono); font-weight: 500; }

        .mockup-chart {
            height: 140px; border-radius: 12px; padding: 16px;
            background: var(--bg-base); border: 1px solid var(--line);
            position: relative; overflow: hidden;
        }
        .mockup-chart svg { width: 100%; height: 100%; }
        .mockup-chart-label { position: absolute; top: 12px; left: 16px; font-size: 11px; color: var(--ink-3); font-weight: 500; }

        .mockup-courses { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
        @media (max-width: 520px) { .mockup-courses { grid-template-columns: 1fr; } }
        .mockup-course-card {
            padding: 12px; border-radius: 10px; background: var(--bg-base);
            border: 1px solid var(--line); display: flex; align-items: center; gap: 12px;
        }
        .mockup-course-icon {
            width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center;
            background: var(--emerald-bg);
            border: 1px solid rgba(16,185,129,0.2);
        }
        .mockup-course-icon svg { width: 16px; height: 16px; color: var(--emerald-1); }
        .mockup-course-info { flex: 1; min-width: 0; }
        .mockup-course-info b { display: block; font-size: 13px; color: var(--ink-1); font-weight: 600; }
        .mockup-course-info span { font-size: 11px; color: var(--ink-3); }
        .mockup-progress { width: 60px; height: 4px; border-radius: 4px; background: var(--bg-deep); overflow: hidden; }
        .mockup-progress > div { height: 100%; background: linear-gradient(90deg, var(--emerald-2), var(--emerald-3)); }

        .mockup-float {
            position: absolute; z-index: 3;
            padding: 12px 16px; border-radius: 14px;
            background: white;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 12px;
            animation: float-y 6s var(--ease) infinite alternate;
        }
        @keyframes float-y { from { transform: translateY(0); } to { transform: translateY(-12px); } }
        .mockup-float-1 { top: 14%; left: -40px; animation-delay: 0s; }
        .mockup-float-2 { bottom: 16%; right: -30px; animation-delay: -3s; }
        @media (max-width: 1080px) { .mockup-float { display: none; } }
        .mockup-float-icon {
            width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1)); color: white;
        }
        .mockup-float-icon svg { width: 18px; height: 18px; }
        .mockup-float-2 .mockup-float-icon { background: linear-gradient(135deg, var(--accent-amber), #d97706); }
        .mockup-float-info b { display: block; font-size: 13px; color: var(--ink-1); font-weight: 600; }
        .mockup-float-info span { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); }

        /* =========================
           SECTION COMMONS
           ========================= */
        .section { padding: 120px 0; }
        @media (max-width: 768px) { .section { padding: 80px 0; } }
        .section-eyebrow {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-mono); font-size: 11px; color: var(--emerald-1);
            letter-spacing: .25em; text-transform: uppercase; margin-bottom: 24px;
            font-weight: 500;
        }
        .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--emerald-1); }
        .section-title {
            font-family: var(--font-display);
            font-variation-settings: "opsz" 72, "wdth" 95;
            font-weight: 500;
            font-size: clamp(36px, 5vw, 60px);
            line-height: 1.02;
            letter-spacing: -0.03em;
            max-width: 20ch;
            margin-bottom: 24px;
            color: var(--ink-1);
        }
        .section-title em {
            font-style: normal;
            font-variation-settings: "opsz" 72, "wdth" 115, "wght" 600;
            color: var(--emerald-1);
        }
        .section-sub {
            font-size: 18px; color: var(--ink-2); max-width: 60ch; margin-bottom: 64px; line-height: 1.55;
        }

        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
        .reveal.is-visible { opacity: 1; transform: none; }
        .reveal[data-delay="100"] { transition-delay: .1s; }
        .reveal[data-delay="200"] { transition-delay: .2s; }
        .reveal[data-delay="300"] { transition-delay: .3s; }

        /* =========================
           SOCIAL PROOF — LOGO STRIP
           ========================= */
        .social-proof {
            padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
            background: rgba(255,255,255,0.4);
        }
        .social-proof-label {
            text-align: center; font-family: var(--font-mono); font-size: 11px;
            letter-spacing: .2em; text-transform: uppercase;
            color: var(--ink-3); margin-bottom: 32px; font-weight: 500;
        }
        .logo-strip {
            display: flex; align-items: center; justify-content: center;
            gap: 60px; flex-wrap: wrap;
        }
        .logo-strip-item {
            display: inline-flex; align-items: center; gap: 10px;
            font-family: var(--font-display); font-weight: 600; font-size: 22px;
            color: var(--ink-3); letter-spacing: -.02em;
            font-variation-settings: "opsz" 24, "wdth" 100;
            opacity: 0.85; transition: opacity .3s, color .3s;
        }
        .logo-strip-item:hover { opacity: 1; color: var(--ink-1); }
        .logo-strip-item svg { width: 22px; height: 22px; }
        @media (max-width: 600px) { .logo-strip { gap: 30px; } .logo-strip-item { font-size: 18px; } }

        /* =========================
           PAIN / SOLUTIONS
           ========================= */
        .pain-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
            border-radius: var(--radius-lg); overflow: hidden;
            border: 1px solid var(--line);
            background: white;
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
        .pain-col { padding: 50px 44px; }
        @media (max-width: 600px) { .pain-col { padding: 36px 28px; } }
        .pain-col--bad { background: white; border-right: 1px solid var(--line); }
        .pain-col--good { background: linear-gradient(180deg, var(--emerald-bg), white); }
        @media (max-width: 760px) {
            .pain-col--bad { border-right: none; border-bottom: 1px solid var(--line); }
        }
        .pain-col h3 {
            font-family: var(--font-display); font-weight: 600; font-size: 24px;
            letter-spacing: -.02em; margin-bottom: 8px;
            font-variation-settings: "opsz" 32, "wdth" 100;
            display: flex; align-items: center; gap: 12px;
        }
        .pain-col--bad h3 { color: var(--ink-1); }
        .pain-col--good h3 { color: var(--emerald-deep); }
        .pain-col-mark {
            width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
        }
        .pain-col--bad .pain-col-mark { background: #fef2f2; color: var(--accent-coral); }
        .pain-col--good .pain-col-mark { background: var(--emerald-soft); color: var(--emerald-1); }
        .pain-col-mark svg { width: 16px; height: 16px; }
        .pain-col p.intro { font-size: 14px; color: var(--ink-3); margin-bottom: 28px; }
        .pain-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .pain-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--ink-1); font-weight: 500; }
        .pain-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
        .pain-col--bad .pain-list li svg { color: var(--accent-coral); }
        .pain-col--good .pain-list li svg { color: var(--emerald-1); }

        /* =========================
           STATS BAR
           ========================= */
        .stats-bar {
            display: grid; grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--line); border-radius: var(--radius-lg);
            background: white;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 760px) { .stats-bar { grid-template-columns: 1fr 1fr; } }
        .stats-cell { padding: 36px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
        .stats-cell:last-child { border-right: none; }
        @media (max-width: 760px) {
            .stats-cell:nth-child(2) { border-right: none; }
            .stats-cell:nth-last-child(-n+2) { border-bottom: none; }
        }
        .stats-cell .val {
            font-family: var(--font-display);
            font-variation-settings: "opsz" 96, "wdth" 90;
            font-weight: 600;
            font-size: clamp(40px, 4vw, 56px);
            line-height: 1; letter-spacing: -.03em;
            margin-bottom: 10px;
            color: var(--ink-1);
        }
        .stats-cell .val em { font-style: normal; color: var(--emerald-1); font-variation-settings: "opsz" 96, "wdth" 110; }
        .stats-cell .lbl { font-size: 13px; color: var(--ink-3); line-height: 1.4; }

        /* =========================
           FEATURES BENTO
           ========================= */
        .features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
        @media (max-width: 1080px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
        .feature {
            position: relative; padding: 32px 28px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: white;
            overflow: hidden;
            transition: border-color .3s, transform .4s var(--ease), box-shadow .4s var(--ease);
            box-shadow: var(--shadow-xs);
        }
        .feature::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(500px at var(--mx,50%) var(--my,50%), rgba(16,185,129,0.10), transparent 60%);
            opacity: 0; transition: opacity .3s; pointer-events: none;
        }
        .feature:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .feature:hover::before { opacity: 1; }
        .feature--wide { grid-column: span 3; min-height: 280px; }
        .feature--tall { grid-column: span 2; min-height: 320px; }
        .feature--small { grid-column: span 2; }
        @media (max-width: 1080px) { .feature--wide, .feature--tall, .feature--small { grid-column: span 1; } }

        .feature-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: grid; place-items: center;
            background: var(--emerald-bg);
            border: 1px solid rgba(16,185,129,0.18);
            color: var(--emerald-1);
            margin-bottom: 20px;
        }
        .feature-icon svg { width: 20px; height: 20px; }
        .feature h3 {
            font-family: var(--font-display); font-weight: 600;
            font-variation-settings: "opsz" 32, "wdth" 100;
            font-size: 22px; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.18; color: var(--ink-1);
        }
        .feature p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

        .feature-domain-tag {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 14px; border-radius: 100px;
            background: var(--bg-base); border: 1px solid var(--line);
            font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);
            margin-top: 20px;
        }
        .feature-domain-tag svg { width: 12px; height: 12px; color: var(--emerald-1); }
        .feature-domain-tag b { color: var(--emerald-deep); font-weight: 600; }

        .feature-tg { display: flex; gap: 10px; margin-top: 18px; }
        .feature-tg-msg { padding: 10px 14px; border-radius: 14px; font-size: 13px; max-width: 75%; font-weight: 500; }
        .feature-tg-msg--in { background: var(--bg-warm); border-bottom-left-radius: 4px; color: var(--ink-1); }
        .feature-tg-msg--out { background: linear-gradient(135deg, var(--emerald-1), var(--emerald-2)); color: white; border-bottom-right-radius: 4px; align-self: flex-end; margin-left: auto; }

        .feature-lang-chips { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
        .feature-lang-chip {
            padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px;
            font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-weight: 500;
            background: var(--bg-base);
        }
        .feature-lang-chip.is-active { color: var(--emerald-1); border-color: rgba(16,185,129,0.3); background: var(--emerald-bg); }

        .feature-brand-row { display: flex; gap: 6px; margin-top: 18px; }
        .feature-brand-row span { width: 24px; height: 24px; border-radius: 6px; box-shadow: var(--shadow-xs); }

        .feature-trust-pill {
            margin-top: 18px; display: flex; align-items: center; gap: 10px;
            padding: 12px 14px; border-radius: 12px;
            background: var(--bg-base); border: 1px solid var(--line);
        }
        .feature-trust-pill svg { width: 16px; height: 16px; color: var(--emerald-1); flex-shrink: 0; }
        .feature-trust-pill span { font-size: 13px; color: var(--ink-2); font-weight: 500; }

        /* =========================
           USE CASES
           ========================= */
        .use-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        @media (max-width: 900px) { .use-cases { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 560px) { .use-cases { grid-template-columns: 1fr; } }
        .use-case {
            padding: 28px;
            border-radius: var(--radius-md);
            background: white;
            border: 1px solid var(--line);
            transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
            position: relative; overflow: hidden;
        }
        .use-case::before {
            content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
            background: radial-gradient(circle at top right, var(--emerald-bg), transparent 70%);
            opacity: 0; transition: opacity .3s; pointer-events: none;
        }
        .use-case:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow-md); }
        .use-case:hover::before { opacity: 1; }
        .use-case-icon {
            width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
            background: var(--emerald-bg); color: var(--emerald-1);
            margin-bottom: 16px;
        }
        .use-case-icon svg { width: 18px; height: 18px; }
        .use-case h4 {
            font-family: var(--font-display); font-weight: 600; font-size: 19px;
            letter-spacing: -.015em; margin-bottom: 8px;
            font-variation-settings: "opsz" 24, "wdth" 100;
        }
        .use-case p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
        .use-case-tag {
            display: inline-block; margin-top: 14px; padding: 4px 10px; border-radius: 100px;
            background: var(--emerald-bg); color: var(--emerald-deep);
            font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
            font-weight: 500;
        }

        /* =========================
           STEPS
           ========================= */
        .steps {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
            counter-reset: step;
        }
        @media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
        .step {
            padding: 32px 28px 36px;
            border: 1px solid var(--line); border-radius: var(--radius-lg);
            background: white;
            position: relative; overflow: hidden;
            box-shadow: var(--shadow-xs);
        }
        .step::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            position: absolute; top: -20px; right: 14px;
            font-family: var(--font-display);
            font-variation-settings: "opsz" 96, "wdth" 75, "wght" 700;
            font-size: 140px; line-height: 1; color: var(--bg-warm);
            pointer-events: none;
        }
        .step-icon {
            width: 42px; height: 42px; border-radius: 12px;
            background: var(--emerald-bg);
            border: 1px solid rgba(16,185,129,0.18);
            color: var(--emerald-1);
            display: grid; place-items: center;
            margin-bottom: 22px; position: relative; z-index: 1;
        }
        .step-icon svg { width: 18px; height: 18px; }
        .step h3 {
            font-family: var(--font-display); font-weight: 600;
            font-variation-settings: "opsz" 32, "wdth" 100;
            font-size: 22px; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.2;
            position: relative; z-index: 1;
        }
        .step p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; position: relative; z-index: 1; }
        .step-code {
            margin-top: 18px; padding: 10px 12px;
            font-family: var(--font-mono); font-size: 12px;
            border-radius: 8px; background: var(--bg-base); border: 1px solid var(--line);
            color: var(--ink-2); position: relative; z-index: 1;
        }
        .step-code b { color: var(--emerald-1); font-weight: 600; }

        /* =========================
           COMPARISON TABLE
           ========================= */
        .compare {
            border-radius: var(--radius-lg); overflow: hidden;
            border: 1px solid var(--line); background: white;
            box-shadow: var(--shadow-sm);
        }
        .compare-row {
            display: grid; grid-template-columns: 2fr 1fr 1fr;
            border-bottom: 1px solid var(--line);
            transition: background .2s;
        }
        .compare-row:last-child { border-bottom: none; }
        .compare-row:not(.compare-row--head):hover { background: rgba(16,185,129,0.025); }
        .compare-cell { padding: 22px 24px; display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
        .compare-row--head .compare-cell { background: var(--bg-warm); font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; padding-top: 26px; padding-bottom: 26px; }
        .compare-row--head .compare-cell:nth-child(3) { background: var(--emerald-bg); color: var(--emerald-deep); }
        .compare-cell--label { color: var(--ink-1); font-weight: 500; }
        .compare-cell--center { justify-content: center; text-align: center; border-left: 1px solid var(--line); }
        .compare-cell svg { width: 18px; height: 18px; }
        .compare-cell .no { color: var(--accent-coral); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 13px; }
        .compare-cell .yes { color: var(--emerald-1); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; }
        @media (max-width: 760px) {
            .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
            .compare-cell { padding: 16px 14px; font-size: 13px; }
        }

        /* =========================
           INTEGRATIONS
           ========================= */
        .integrations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
        @media (max-width: 900px) { .integrations { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 460px) { .integrations { grid-template-columns: 1fr; } }
        .integration {
            padding: 22px; border-radius: var(--radius-md);
            border: 1px solid var(--line); background: white;
            display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
            transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
        }
        .integration:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
        .integration-icon {
            width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
            background: var(--bg-base); border: 1px solid var(--line); color: var(--ink-1);
        }
        .integration-icon svg { width: 20px; height: 20px; }
        .integration h5 { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
        .integration p { font-size: 13px; color: var(--ink-3); margin-top: -8px; line-height: 1.4; }

        /* =========================
           MIGRATION CTA BLOCK
           ========================= */
        .migration {
            position: relative;
            padding: 60px;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, #fffaf2, #fdf6e7);
            border: 1px solid rgba(245,158,11,0.18);
            overflow: hidden;
            display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
        }
        @media (max-width: 800px) { .migration { grid-template-columns: 1fr; padding: 40px 28px; } }
        .migration::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px; border-radius: 50%;
            background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%);
        }
        .migration-content { position: relative; z-index: 1; }
        .migration-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 5px 12px 5px 5px; border-radius: 100px;
            background: white; border: 1px solid rgba(245,158,11,0.25);
            font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
            color: #b45309; margin-bottom: 20px;
        }
        .migration-eyebrow-dot {
            width: 20px; height: 20px; border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-amber), #d97706); color: white;
            display: grid; place-items: center;
        }
        .migration-eyebrow-dot svg { width: 11px; height: 11px; }
        .migration h2 {
            font-family: var(--font-display); font-weight: 600;
            font-variation-settings: "opsz" 72, "wdth" 95;
            font-size: clamp(28px, 3.5vw, 42px); line-height: 1.05; letter-spacing: -.025em;
            color: var(--ink-1); margin-bottom: 16px;
        }
        .migration h2 em { font-style: normal; color: #b45309; }
        .migration p { font-size: 16px; color: var(--ink-2); line-height: 1.55; max-width: 48ch; margin-bottom: 24px; }
        .migration-visual {
            position: relative; z-index: 1;
            background: white; border-radius: var(--radius-md);
            padding: 24px; border: 1px solid rgba(245,158,11,0.2);
            box-shadow: var(--shadow-md);
        }
        .migration-visual-step { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
        .migration-visual-step:last-child { border-bottom: none; }
        .migration-visual-step .num {
            width: 28px; height: 28px; border-radius: 50%;
            background: var(--emerald-bg); color: var(--emerald-deep);
            display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; flex-shrink: 0;
        }
        .migration-visual-step.is-done .num { background: var(--emerald-1); color: white; }
        .migration-visual-step .text { font-size: 14px; color: var(--ink-1); font-weight: 500; }
        .migration-visual-step.is-done .text { color: var(--ink-3); text-decoration: line-through; }

        /* =========================
           PRICING
           ========================= */
        .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        @media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
        .price-card {
            padding: 36px 32px;
            border: 1px solid var(--line); border-radius: var(--radius-lg);
            background: white;
            position: relative;
            box-shadow: var(--shadow-xs);
            transition: transform .3s var(--ease), box-shadow .3s;
        }
        .price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .price-card--featured {
            background: linear-gradient(180deg, #f4fffb, white);
            border-color: rgba(16,185,129,0.3);
            box-shadow: 0 30px 80px -30px rgba(4,120,87,0.3), inset 0 0 0 1px rgba(16,185,129,0.06);
        }
        .price-card--featured::before {
            content: 'Самый выбираемый';
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            padding: 5px 14px; border-radius: 100px;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1));
            color: white; font-size: 11px; font-weight: 600;
            font-family: var(--font-mono); letter-spacing: .05em; text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 8px 20px -6px rgba(4,120,87,0.4);
        }
        .price-name {
            font-family: var(--font-display); font-weight: 600;
            font-variation-settings: "opsz" 24, "wdth" 100;
            font-size: 20px; letter-spacing: -.015em; margin-bottom: 8px;
        }
        .price-tag-line { font-size: 13px; color: var(--ink-3); margin-bottom: 28px; min-height: 36px; }
        .price-value {
            font-family: var(--font-display);
            font-variation-settings: "opsz" 96, "wdth" 90, "wght" 600;
            font-size: 56px; line-height: 1; letter-spacing: -.03em;
            display: flex; align-items: baseline; gap: 6px;
            margin-bottom: 28px; color: var(--ink-1);
        }
        .price-value sup { font-family: var(--font-body); font-size: 18px; color: var(--ink-3); top: -16px; position: relative; font-weight: 500; }
        .price-value small { font-family: var(--font-body); font-size: 14px; color: var(--ink-3); font-weight: 500; }
        .price-list { list-style: none; margin-bottom: 32px; }
        .price-list li {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 9px 0; font-size: 14px; color: var(--ink-1); font-weight: 500;
            border-bottom: 1px dashed var(--line);
        }
        .price-list li:last-child { border-bottom: none; }
        .price-list li svg { width: 16px; height: 16px; color: var(--emerald-1); flex-shrink: 0; margin-top: 2px; }
        .price-list li.is-muted { color: var(--ink-4); font-weight: 400; }
        .price-list li.is-muted svg { color: var(--ink-4); }
        .price-card .btn { width: 100%; }
        .price-guarantee {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 14px; font-size: 11px; color: var(--ink-3); font-weight: 500;
        }
        .price-guarantee svg { width: 13px; height: 13px; color: var(--emerald-1); }

        /* =========================
           TESTIMONIALS
           ========================= */
        .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        @media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
        .testimonial {
            padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
            background: white;
            display: flex; flex-direction: column; gap: 18px;
            transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
            box-shadow: var(--shadow-xs);
        }
        .testimonial:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .testimonial-stars { display: flex; gap: 2px; color: var(--accent-amber); }
        .testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
        .testimonial-quote {
            font-family: var(--font-display);
            font-variation-settings: "opsz" 24, "wdth" 100;
            font-weight: 500;
            font-size: 17px; line-height: 1.5;
            color: var(--ink-1); letter-spacing: -.005em;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
        .testimonial-avatar {
            width: 42px; height: 42px; border-radius: 50%;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1));
            display: grid; place-items: center;
            font-family: var(--font-display); font-weight: 700; color: white;
            font-size: 16px;
        }
        .testimonial-author b { display: block; font-size: 14px; color: var(--ink-1); font-weight: 600; }
        .testimonial-author span { font-size: 12px; color: var(--ink-3); }

        /* =========================
           FOUNDER STORY
           ========================= */
        .founder {
            display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: center;
            padding: 60px;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--bg-warm), var(--bg-elev));
            border: 1px solid var(--line);
            position: relative; overflow: hidden;
        }
        @media (max-width: 760px) { .founder { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; } }
        .founder::before {
            content: ''; position: absolute; top: 0; right: 0;
            width: 300px; height: 300px;
            background: radial-gradient(circle at top right, rgba(16,185,129,0.12), transparent 60%);
            pointer-events: none;
        }
        .founder-avatar {
            width: 220px; height: 220px; border-radius: 50%; flex-shrink: 0;
            background: linear-gradient(135deg, var(--emerald-3), var(--emerald-deep));
            display: grid; place-items: center;
            position: relative; z-index: 1;
            box-shadow: var(--shadow-emerald);
        }
        @media (max-width: 760px) { .founder-avatar { width: 140px; height: 140px; margin: 0 auto; } }
        .founder-avatar-initials {
            font-family: var(--font-display); font-weight: 600;
            font-size: 84px; color: white; letter-spacing: -.04em;
            font-variation-settings: "opsz" 96, "wdth" 95;
        }
        @media (max-width: 760px) { .founder-avatar-initials { font-size: 56px; } }
        .founder-avatar-badge {
            position: absolute; bottom: 12px; right: 12px;
            width: 44px; height: 44px; border-radius: 50%;
            background: white; display: grid; place-items: center;
            box-shadow: var(--shadow-md);
        }
        @media (max-width: 760px) { .founder-avatar-badge { width: 32px; height: 32px; bottom: 6px; right: 6px; } }
        .founder-avatar-badge svg { width: 22px; height: 22px; color: var(--emerald-1); }
        @media (max-width: 760px) { .founder-avatar-badge svg { width: 16px; height: 16px; } }
        .founder-content { position: relative; z-index: 1; }
        .founder-content .quote-mark {
            font-family: var(--font-display); font-size: 80px; line-height: 0.3;
            color: var(--emerald-1); margin-bottom: 4px; display: block; font-weight: 700;
        }
        .founder-content blockquote {
            font-family: var(--font-display);
            font-variation-settings: "opsz" 48, "wdth" 100;
            font-weight: 500;
            font-size: clamp(20px, 2.2vw, 26px);
            line-height: 1.35; letter-spacing: -.015em;
            color: var(--ink-1); margin-bottom: 24px;
        }
        .founder-meta { display: flex; align-items: center; gap: 12px; }
        @media (max-width: 760px) { .founder-meta { justify-content: center; } }
        .founder-meta b { font-size: 15px; font-weight: 600; color: var(--ink-1); }
        .founder-meta span { font-size: 13px; color: var(--ink-3); }
        .founder-divider { width: 1px; height: 24px; background: var(--line-strong); }

        /* =========================
           FAQ
           ========================= */
        .faq-list {
            max-width: 760px; margin: 0 auto;
            border-top: 1px solid var(--line);
        }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q {
            width: 100%; padding: 22px 0;
            display: flex; align-items: center; justify-content: space-between; gap: 24px;
            font-family: var(--font-display); font-weight: 600;
            font-variation-settings: "opsz" 24, "wdth" 100;
            font-size: 18px; letter-spacing: -.015em; color: var(--ink-1);
            text-align: left;
            transition: color .2s;
        }
        .faq-q:hover { color: var(--emerald-1); }
        .faq-toggle {
            width: 30px; height: 30px; border-radius: 50%;
            border: 1px solid var(--line-strong); background: white;
            display: grid; place-items: center; flex-shrink: 0;
            transition: transform .3s var(--ease), background .3s, border-color .3s;
        }
        .faq-toggle svg { width: 14px; height: 14px; color: var(--ink-2); transition: color .3s; }
        .faq-item.is-open .faq-toggle { transform: rotate(45deg); background: var(--emerald-1); border-color: var(--emerald-1); }
        .faq-item.is-open .faq-toggle svg { color: white; }
        .faq-a {
            max-height: 0; overflow: hidden;
            transition: max-height .5s var(--ease), padding .3s;
            color: var(--ink-2); font-size: 15px; line-height: 1.6;
        }
        .faq-item.is-open .faq-a { max-height: 240px; padding: 0 0 22px; }

        /* =========================
           FINAL CTA
           ========================= */
        .final-cta {
            position: relative;
            padding: 100px 60px;
            border-radius: var(--radius-xl);
            background:
                radial-gradient(ellipse at top, rgba(16,185,129,0.18), transparent 65%),
                linear-gradient(180deg, var(--bg-elev), var(--bg-warm));
            border: 1px solid var(--line-strong);
            text-align: center;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        @media (max-width: 600px) { .final-cta { padding: 60px 24px; } }
        .final-cta::before {
            content: ''; position: absolute; inset: 0; pointer-events: none;
            background-image:
                linear-gradient(rgba(13,20,16,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(13,20,16,0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse at center, black, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
        }
        .final-cta h2 {
            position: relative;
            font-family: var(--font-display);
            font-variation-settings: "opsz" 96, "wdth" 90;
            font-weight: 600;
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1; letter-spacing: -.03em;
            margin-bottom: 22px;
            color: var(--ink-1);
        }
        .final-cta h2 em {
            font-style: normal;
            color: var(--emerald-1);
            font-variation-settings: "opsz" 96, "wdth" 110, "wght" 700;
        }
        .final-cta p {
            position: relative;
            font-size: 17px; color: var(--ink-2); max-width: 50ch;
            margin: 0 auto 36px; line-height: 1.55;
        }
        .final-cta .cta-group { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .final-cta-trust {
            position: relative; margin-top: 32px;
            display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
            font-size: 13px; color: var(--ink-3);
        }
        .final-cta-trust span { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
        .final-cta-trust svg { width: 15px; height: 15px; color: var(--emerald-1); }

        /* =========================
           FOOTER
           ========================= */
        .footer { padding: 80px 0 40px; border-top: 1px solid var(--line); margin-top: 100px; background: var(--bg-warm); }
        .footer-grid {
            display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px;
            padding-bottom: 50px; border-bottom: 1px solid var(--line);
        }
        @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: span 2; } }
        .footer-brand-col p { color: var(--ink-3); font-size: 14px; line-height: 1.55; max-width: 38ch; margin-top: 18px; }
        .footer-col h4 {
            font-family: var(--font-mono); font-size: 11px; font-weight: 600;
            letter-spacing: .15em; color: var(--ink-3); text-transform: uppercase;
            margin-bottom: 16px;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col ul a { font-size: 14px; color: var(--ink-2); transition: color .2s; font-weight: 500; }
        .footer-col ul a:hover { color: var(--emerald-1); }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center; gap: 20px;
            padding-top: 30px; font-size: 13px; color: var(--ink-3); flex-wrap: wrap;
        }
        .footer-bottom .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; font-weight: 500; }

        /* =========================
           ANNOUNCEMENT BAR
           ========================= */
        .announce-bar {
            position: relative; z-index: 101;
            background: linear-gradient(90deg, var(--emerald-deep), var(--emerald-1), var(--emerald-deep));
            background-size: 200% 100%;
            animation: gradientShift 8s ease-in-out infinite;
            color: white; font-size: 13px; font-weight: 500;
            padding: 10px 20px;
            display: flex; align-items: center; justify-content: center; gap: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
        .announce-bar.is-hidden { display: none; }
        .announce-bar-content { display: inline-flex; align-items: center; gap: 10px; }
        .announce-bar-content svg { width: 16px; height: 16px; color: #fde68a; }
        .announce-bar-content b { font-weight: 700; }
        .announce-bar-content a { text-decoration: underline; text-underline-offset: 3px; opacity: 0.95; transition: opacity .2s; }
        .announce-bar-content a:hover { opacity: 1; }
        .announce-close {
            position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
            width: 22px; height: 22px; border-radius: 50%;
            display: grid; place-items: center;
            color: rgba(255,255,255,0.7); transition: background .2s, color .2s;
        }
        .announce-close:hover { background: rgba(255,255,255,0.15); color: white; }
        .announce-close svg { width: 12px; height: 12px; }
        @media (max-width: 640px) { .announce-bar { font-size: 12px; padding: 9px 40px 9px 14px; } }

        body.has-announce .nav { top: 38px; }
        @media (max-width: 640px) { body.has-announce .nav { top: 36px; } }
        /* Когда юзер заскроллил — announce уже уехал из вьюпорта (он position:relative),
           поэтому фиксированный nav должен прижаться к top:0 независимо от has-announce */
        body.has-announce .nav.is-scrolled,
        .nav.is-scrolled { top: 0 !important; }
        body.has-announce .preloader { /* preloader covers all */ }

        /* =========================
           HERO — ORBITAL DECORATION
           ========================= */
        .hero-orbit {
            position: absolute; top: 0; right: -200px; width: 900px; height: 900px;
            pointer-events: none; z-index: 0;
            opacity: 0; transform: scale(0.9);
            animation: orbitAppear 1.6s var(--ease) .3s forwards;
        }
        @keyframes orbitAppear { to { opacity: 1; transform: scale(1); } }
        @media (max-width: 1080px) { .hero-orbit { display: none; } }
        .hero-orbit svg { width: 100%; height: 100%; }
        .hero-orbit-ring { animation: orbitRotate 60s linear infinite; transform-origin: 50% 50%; }
        .hero-orbit-ring-reverse { animation: orbitRotate 80s linear infinite reverse; transform-origin: 50% 50%; }
        @keyframes orbitRotate { to { transform: rotate(360deg); } }
        .hero-orbit-icon {
            position: absolute; width: 56px; height: 56px; border-radius: 16px;
            background: white; box-shadow: var(--shadow-md);
            display: grid; place-items: center;
            color: var(--emerald-1);
        }
        .hero-orbit-icon svg { width: 22px; height: 22px; }
        .hero-orbit-icon.io-1 { top: 8%; left: 22%; animation: floatX 8s ease-in-out infinite alternate; }
        .hero-orbit-icon.io-2 { top: 28%; left: 78%; animation: floatX 9s ease-in-out -2s infinite alternate; background: linear-gradient(135deg, var(--emerald-3), var(--emerald-1)); color: white; }
        .hero-orbit-icon.io-3 { top: 62%; left: 12%; animation: floatX 11s ease-in-out -4s infinite alternate; }
        .hero-orbit-icon.io-4 { top: 78%; left: 70%; animation: floatX 10s ease-in-out -6s infinite alternate; background: linear-gradient(135deg, var(--accent-amber), #d97706); color: white; }
        @keyframes floatX { from { transform: translate(0,0); } to { transform: translate(8px, -14px); } }

        /* =========================
           HERO — SPARKLES
           ========================= */
        .sparkle {
            position: absolute; pointer-events: none;
            color: var(--emerald-3);
            animation: sparkleAnim 3.2s ease-in-out infinite;
        }
        .sparkle svg { width: 100%; height: 100%; }
        .sparkle.sp-1 { width: 22px; height: 22px; top: -14px; right: -8px; animation-delay: 0s; color: var(--accent-amber); }
        .sparkle.sp-2 { width: 14px; height: 14px; bottom: 12px; right: 8%; animation-delay: -1s; }
        .sparkle.sp-3 { width: 18px; height: 18px; top: 20%; left: -18px; animation-delay: -2s; color: var(--accent-coral); }
        .sparkle.sp-4 { width: 12px; height: 12px; bottom: -10px; left: 30%; animation-delay: -1.5s; }
        @keyframes sparkleAnim {
            0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
            50% { transform: scale(1) rotate(180deg); opacity: 1; }
        }

        /* =========================
           HERO — TYPEWRITER
           ========================= */
        .word-rotator {
            display: inline-block; position: relative;
            min-width: 8ch;
            color: var(--emerald-1);
            font-variation-settings: "opsz" 96, "wdth" 110, "wght" 600;
        }
        .word-rotator::after {
            content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
            height: 0.16em; background: var(--emerald-soft); z-index: -1;
            transform: scaleX(0); transform-origin: left; opacity: 0;
            animation: underline-grow 1.2s var(--ease) 1.8s forwards;
        }
        .word-rotator-text {
            display: inline-block;
            transition: transform .4s var(--ease), opacity .4s var(--ease);
        }
        .word-rotator-cursor {
            display: inline-block; width: 3px; height: 0.85em;
            background: var(--emerald-1); margin-left: 4px; vertical-align: -0.05em;
            animation: blinkCursor 0.9s steps(2) infinite;
            border-radius: 2px;
        }
        @keyframes blinkCursor { 50% { opacity: 0; } }

        /* =========================
           HERO — SOCIAL PROOF ROW
           ========================= */
        .hero-social {
            display: inline-flex; align-items: center; gap: 16px;
            margin-bottom: 40px;
            padding: 8px 18px 8px 8px;
            border-radius: 100px;
            background: white; border: 1px solid var(--line);
            box-shadow: var(--shadow-xs);
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 1s var(--ease) .9s forwards;
        }
        .avatar-stack { display: inline-flex; }
        .avatar-stack span {
            width: 32px; height: 32px; border-radius: 50%;
            border: 2px solid white; margin-left: -10px;
            display: grid; place-items: center;
            font-family: var(--font-display); font-weight: 700;
            color: white; font-size: 13px;
            box-shadow: 0 2px 4px rgba(13,20,16,0.1);
        }
        .avatar-stack span:first-child { margin-left: 0; }
        .avatar-stack span:nth-child(1) { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #10b981, #047857); }
        .avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #ef6f5e, #b91c1c); }
        .avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #3b82f6, #1e40af); }
        .avatar-stack span:nth-child(5) { background: linear-gradient(135deg, #14b8a6, #0f766e); }
        .hero-social-rating { display: flex; flex-direction: column; gap: 2px; }
        .hero-social-stars { display: flex; gap: 1px; color: var(--accent-amber); }
        .hero-social-stars svg { width: 13px; height: 13px; fill: currentColor; }
        .hero-social-stars b { font-size: 12px; font-weight: 700; color: var(--ink-1); margin-left: 4px; }
        .hero-social-label { font-size: 12px; color: var(--ink-3); font-weight: 500; }

        /* =========================
           HERO — HAND-DRAWN ARROW
           ========================= */
        .cta-arrow-wrap {
            position: relative; display: inline-flex; align-items: center;
        }
        .cta-arrow-annotation {
            position: absolute; left: calc(100% + 16px); top: 50%;
            transform: translateY(-50%) rotate(-4deg);
            display: flex; align-items: center; gap: 8px;
            white-space: nowrap;
            font-family: var(--font-display);
            font-variation-settings: "opsz" 24, "wdth" 90, "wght" 600;
            font-style: italic;
            font-size: 15px; color: var(--emerald-1);
            opacity: 0; transform-origin: left center;
            animation: annotationAppear 1s var(--ease) 1.8s forwards;
        }
        @keyframes annotationAppear { to { opacity: 1; transform: translateY(-50%) rotate(-4deg) scale(1); } }
        .cta-arrow-annotation svg { width: 48px; height: 32px; flex-shrink: 0; }
        .cta-arrow-annotation svg path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: drawArrow 1.2s var(--ease) 2s forwards; }
        @keyframes drawArrow { to { stroke-dashoffset: 0; } }
        @media (max-width: 900px) { .cta-arrow-annotation { display: none; } }

        /* =========================
           HERO — STAT CHIP / LIVE COUNTER
           ========================= */
        .hero-stat-chip {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 7px 14px 7px 7px;
            border-radius: 100px;
            background: white;
            border: 1px solid var(--line-strong);
            box-shadow: var(--shadow-xs);
            font-size: 13px; color: var(--ink-2); font-weight: 500;
        }
        .hero-stat-chip-dot {
            width: 22px; height: 22px; border-radius: 50%;
            background: var(--emerald-bg); display: grid; place-items: center;
            color: var(--emerald-1);
        }
        .hero-stat-chip-dot svg { width: 12px; height: 12px; }
        .hero-stat-chip b {
            font-family: var(--font-mono); color: var(--ink-1); font-weight: 600;
            font-variant-numeric: tabular-nums;
        }
        .live-pulse {
            position: relative; width: 8px; height: 8px; border-radius: 50%;
            background: var(--emerald-3); margin-left: 4px;
        }
        .live-pulse::after {
            content: ''; position: absolute; inset: -3px; border-radius: 50%;
            background: var(--emerald-3); opacity: 0.5;
            animation: pulse 1.6s var(--ease) infinite;
        }

        /* =========================
           HERO — FLOATING GEOMETRIC SHAPES
           ========================= */
        .hero-shape {
            position: absolute; pointer-events: none; z-index: 1;
            animation: shapeFloat 12s ease-in-out infinite alternate;
        }
        .hero-shape svg { width: 100%; height: 100%; }
        .hero-shape.sh-1 { top: 12%; left: -20px; width: 48px; height: 48px; animation-delay: 0s; }
        .hero-shape.sh-2 { top: 28%; right: 8%; width: 32px; height: 32px; animation-delay: -3s; }
        .hero-shape.sh-3 { bottom: 30%; left: 12%; width: 24px; height: 24px; animation-delay: -6s; }
        @keyframes shapeFloat {
            from { transform: translate(0,0) rotate(0deg); }
            to { transform: translate(20px, -20px) rotate(15deg); }
        }
        @media (max-width: 900px) { .hero-shape { display: none; } }

        /* =========================
           HERO — EXTRA MOCKUP BADGES
           ========================= */
        .mockup-float-3 {
            position: absolute; z-index: 3;
            padding: 10px 14px; border-radius: 12px;
            background: white;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 10px;
            top: 50%; left: -50px;
            font-size: 12px;
            animation: float-y 7s var(--ease) -1.5s infinite alternate;
        }
        @media (max-width: 1080px) { .mockup-float-3 { display: none; } }
        .mockup-float-3-stars { display: flex; gap: 1px; color: var(--accent-amber); }
        .mockup-float-3-stars svg { width: 12px; height: 12px; fill: currentColor; }
        .mockup-float-3 b { font-weight: 700; color: var(--ink-1); margin-right: 4px; }

        .mockup-float-4 {
            position: absolute; z-index: 3;
            padding: 8px 12px 8px 8px; border-radius: 100px;
            background: white;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            display: inline-flex; align-items: center; gap: 8px;
            top: -16px; right: 12%;
            font-size: 12px; font-weight: 600; color: var(--ink-1);
            animation: float-y 5s var(--ease) -2s infinite alternate;
        }
        @media (max-width: 1080px) { .mockup-float-4 { display: none; } }
        .mockup-float-4 .live-pulse { width: 8px; height: 8px; margin: 0; }
        .mockup-float-4 .live-pulse::after { background: #ef4444; }
        .mockup-float-4 .live-pulse { background: #ef4444; }

        /* =========================
           HERO — LIVE ACTIVITY TICKER
           ========================= */
        .ticker {
            margin-top: 90px;
            padding: 14px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
            opacity: 0;
            animation: fadeUp 1s var(--ease) 1.6s forwards;
        }
        .ticker-track {
            display: flex; gap: 50px; width: max-content;
            animation: tickerScroll 40s linear infinite;
        }
        .ticker:hover .ticker-track { animation-play-state: paused; }
        @keyframes tickerScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .ticker-item {
            display: inline-flex; align-items: center; gap: 10px;
            font-size: 13px; color: var(--ink-2); font-weight: 500; white-space: nowrap;
        }
        .ticker-item-icon {
            width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
            background: var(--emerald-bg); color: var(--emerald-1);
        }
        .ticker-item-icon svg { width: 13px; height: 13px; }
        .ticker-item b { color: var(--ink-1); font-weight: 600; }
        .ticker-item .amount { color: var(--emerald-1); font-family: var(--font-mono); font-weight: 600; }
        .ticker-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-4); align-self: center; }

/* =========================
   HERO LAYOUT: текст слева + фото-иллюстрация справа (отдельный <img>, не background)
   Картинка прижата к верху и совпадает по высоте с h1, не реагирует на длину контента.
   ВАЖНО: НЕ создаём новый stacking context на .hero-top (без z-index),
   иначе декорации orbit/shape будут под картинкой.
   ========================= */
.hero-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 540px);
    gap: 40px;
    align-items: start;
    position: relative;
    /* Без z-index, чтобы не создавать новый stacking context */
}
.hero-text { max-width: 720px; min-width: 0; position: relative; z-index: 4; }
.hero-photo {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    margin-left: auto;
    align-self: start;
    pointer-events: none;
    /* без position/z-index — остаётся самым нижним слоем в потоке */
}

/* Декорации в hero — гарантированно поверх картинки */
.hero-orbit { z-index: 5 !important; }
.hero-shape { z-index: 6 !important; }

/* Стабилизация высоты h1: фиксируем минимальную высоту контейнера с
   word-rotator, чтобы при смене слов h1 не «прыгал» по высоте.
   На desktop одна строка ≈ 96px, заголовок из 3 строк ≈ 280–320px. */
.hero-title { min-height: 280px; }

/* Зона ротатора (одно слово) — также фиксируем строку */
.word-rotator { display: inline-block; min-width: 8ch; min-height: 1.05em; }

/* Планшеты: уменьшаем колонку картинки */
@media (max-width: 1100px) {
    .hero-top { grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: 28px; }
    .hero-text { max-width: 100%; }
    .hero-photo { max-width: 400px; }
    .hero-title { min-height: 240px; }
}

/* Мобильные: убираем фото целиком, чтобы не сжимало текст */
@media (max-width: 820px) {
    .hero-top { grid-template-columns: 1fr; }
    .hero-photo { display: none; }
    .hero-text { max-width: 100%; }
    .hero-title { min-height: 0; }
}

/* Legacy: старые элементы оставляем скрытыми */
.hero-img-wrap, .hero-img, .hero-img-glow { display: none !important; }
