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

        :root {
            /* Primary — Deep Plum / Midnight Indigo */
            --ink: #2A2642;
            --ink-deep: #1E1B33;
            --ink-light: #3D3860;
            --ink-soft: rgba(42, 38, 66, 0.06);
            --ink-muted: rgba(42, 38, 66, 0.12);
            /* Accent — Warm Terracotta / Burnt Sienna */
            --terra: #C4724F;
            --terra-dark: #A85E3F;
            --terra-light: #D98E6E;
            --terra-glow: rgba(196, 114, 79, 0.12);
            /* Warm Neutrals */
            --sand: #F7F2EC;
            --sand-warm: #F0E8DD;
            --sand-deep: #E5D9CA;
            --linen: #FDFAF6;
            --white: #ffffff;
            /* Text */
            --text: #1C1C1C;
            --text-secondary: #555;
            --text-muted: #999;
            --text-faint: #bbb;
            /* System */
            --border: rgba(0,0,0,0.06);
            --shadow-xs: 0 1px 3px rgba(0,0,0,0.03);
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
            --shadow-md: 0 6px 30px rgba(0,0,0,0.06);
            --shadow-lg: 0 16px 50px rgba(0,0,0,0.09);
            --shadow-xl: 0 24px 70px rgba(0,0,0,0.13);
            --radius: 14px;
            --radius-lg: 22px;
            --radius-xl: 32px;
            --radius-pill: 100px;
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: var(--sand);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
            line-height: 1.15;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

        /* Animate */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ═══════════════ GLOBAL AESTHETICS ═══════════════ */
        /* Soft gradient dividers between sections */
        .section-divider {
            height: 1px; border: none; margin: 0;
            background: linear-gradient(90deg, transparent 0%, var(--sand-deep) 20%, var(--terra-light) 50%, var(--sand-deep) 80%, transparent 100%);
            opacity: 0.4;
        }
        /* Accent highlight */
        .hl { color: var(--terra); }
        /* Subtle grain overlay on body */
        body::after {
            content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        /* Smooth section transitions */
        section { position: relative; }
        /* Glow behind section headings */
        .glow-heading { position: relative; display: inline-block; }
        .glow-heading::after {
            content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
            width: 60px; height: 3px; border-radius: 3px;
            background: linear-gradient(90deg, transparent, var(--terra), transparent);
        }

        /* ═══════════════ FLOATING SPARKLES ═══════════════ */
        .sparkles-canvas {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 9999;
        }
        .sparkle-particle {
            position: absolute; border-radius: 50%;
            background: radial-gradient(circle, rgba(196,114,79,0.5) 0%, transparent 70%);
            animation: floatUp linear infinite;
            pointer-events: none;
        }
        .sparkle-particle.gold {
            background: radial-gradient(circle, rgba(245,196,81,0.45) 0%, transparent 70%);
        }
        .sparkle-particle.plum {
            background: radial-gradient(circle, rgba(61,56,96,0.3) 0%, transparent 70%);
        }
        .sparkle-star {
            position: absolute; pointer-events: none;
            animation: twinkle ease-in-out infinite;
        }
        .sparkle-star::before, .sparkle-star::after {
            content: ''; position: absolute;
            background: rgba(196,114,79,0.35);
        }
        .sparkle-star::before {
            width: 2px; height: 10px; left: 4px; top: 0; border-radius: 1px;
        }
        .sparkle-star::after {
            width: 10px; height: 2px; left: 0; top: 4px; border-radius: 1px;
        }
        .sparkle-star.gold::before, .sparkle-star.gold::after { background: rgba(245,196,81,0.4); }
        @keyframes floatUp {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
            50% { opacity: 1; transform: scale(1) rotate(45deg); }
        }

        /* ═══════════════ HEADER ═══════════════ */
        .site-header {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(253,250,246,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }
        .site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
        .header-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
            display: flex; align-items: center; justify-content: space-between; height: 68px;
        }
        .logo { display: flex; align-items: center; }
        .logo img {
            height: 100px; width: auto; margin-top: 13px;
        }
        .site-header.scrolled .logo img {  }
        .header-nav { display: flex; align-items: center; gap: 2rem; }
        .header-nav a:not(.btn) {
            color: var(--text-secondary); font-size: 1rem; font-weight: 500;
            transition: color 0.2s;
        }
        .header-nav a:not(.btn):hover { color: var(--text); }
        .btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.65rem 1.6rem;
            background: var(--ink);
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem; font-weight: 700;
            border: none; border-radius: var(--radius-pill);
            cursor: pointer; transition: all 0.3s;
        }
        .btn:hover { background: var(--ink-deep); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(42,38,66,0.25); }
        .btn-warm { background: var(--terra); position: relative; overflow: hidden; }
        .btn-warm::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: none; animation: btnShine 3s ease-in-out infinite;
        }
        @keyframes btnShine { 0%, 100% { left: -100%; } 50% { left: 120%; } }
        .btn-warm:hover { background: var(--terra-dark); box-shadow: 0 6px 24px rgba(196,114,79,0.3); }
        .btn-lg { padding: 0.95rem 2.4rem; font-size: 0.95rem; }

        /* ═══════════════ HERO ═══════════════ */
        .hero {
            position: relative; overflow: hidden;
            min-height: 600px;
        }
        /* Sliding background images */
        .hero-slider {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-slide {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }
        .hero-slide.active { opacity: 1; }
        /* Transparent indigo overlay */
        .hero-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(
                105deg,
                rgba(42, 38, 66, 0.55) 0%,
                rgba(42, 38, 66, 0.78) 50%,
                rgba(42, 38, 66, 0.92) 100%
            );
        }
        .hero-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
            display: flex; justify-content: flex-start; align-items: center;
            position: relative; z-index: 2;
            min-height: 600px;
        }
        .hero-content {
            max-width: 520px; padding: 4rem 0;
        }
        .hero-pills { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
        .hero-pill {
            padding: 0.3rem 1.3rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-pill);
            font-size: 0.72rem; font-weight: 600;
            color: rgba(255,255,255,0.85);
        }
        .hero-pill-star { display: flex; align-items: center; gap: 0.35rem; }
        .hero-pill-star .stars { color: #F5C451; font-size: 0.72rem; letter-spacing: 1px; }
        .hero h1 {
            font-size: 70px;
            color: white; margin-bottom: 1.3rem;
            line-height: 53px;
        }
        .hero h1 em { font-style: italic; color: var(--terra-light); }
        .hero-desc {
            font-size: 1.2rem; color: rgba(255,255,255,0.65);
            line-height: 1.4; max-width: 440px; margin-bottom: 1.75rem;
        }
        .hero-btn-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
        .btn-hero-warm {
            padding: 1.3rem 2.5rem;
            background: var(--terra); color: white;
            font-size: 1.3rem; font-weight: 700;
            border: none; border-radius: var(--radius-pill);
            cursor: pointer; transition: all 0.35s;
            box-shadow: 0 6px 28px rgba(196,114,79,0.4);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        .btn-hero-warm:hover {
            background: var(--terra-dark); transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(196,114,79,0.5);
        }
        .hero-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
        /* Wave divider */
        .hero-wave {
            position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
        }
        .hero-wave svg { display: block; width: 100%; }

        /* ═══════════════ PRESS BAR ═══════════════ */
        .press-bar {
            background: var(--sand); padding: 1.75rem 0;
            border-bottom: 1px solid var(--border);
        }
        .press-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
            display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap;
        }
        .press-label {
            font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
            text-transform: uppercase; letter-spacing: 0.15em;
        }
        .press-logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
        .press-logo { font-weight: 700; color: var(--text); opacity: 0.18; transition: opacity 0.3s; white-space: nowrap; }
        .press-logo:hover { opacity: 0.45; }
        .pl-1 { font-weight: 800; font-size: 1.2rem; letter-spacing: 0.06em; text-transform: uppercase; }
        .pl-2 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; font-style: italic; }
        .pl-3 { font-weight: 800; font-size: 1.1.3rem; letter-spacing: 0.1em; }
        .pl-4 { font-weight: 600; font-size: 0.95rem; font-style: italic; }
        .pl-5 { font-weight: 800; font-size: 1.15rem; }
        .pl-6 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.3rem; }

        /* ═══════════════ BOOK SHOWCASE BANNER ═══════════════ */
        .book-showcase {
            background: var(--ink);
            overflow: hidden;
            position: relative;
            max-height: 420px;
        }
        .book-showcase::after {
            content: ''; position: absolute; inset: 0; z-index: 1;
            background: rgba(196, 114, 79, 0.15);
            pointer-events: none;
        }
        .book-showcase img {
            width: 100%;
            height: 420px;
            display: block;
            object-fit: cover;
            object-position: center 35%;
        }

        /* ═══════════════ STATS + REVIEWS ═══════════════ */
        .stats-section { padding: 4.5rem 0 4rem; background: var(--sand); text-align: center; }
        .stats-section h2 {
            font-size: 50px; margin-bottom: 0.5rem;
        }
        .stats-section h2 .hl {
            font-style: italic; position: relative; display: inline-block;
        }
        .stats-section h2 .hl::after {
            content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px;
            height: 8px; background: var(--terra-glow); border-radius: 4px; z-index: -1;
        }
        .stats-sub { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2.5rem; }
        .stats-cta { margin-bottom: 2.5rem; }

        .mini-reviews {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .mini-r { text-align: center; }
        .mini-r .stars { color: #F5C451; font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
        .mini-r h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 0.5rem; }
        .mini-r p {
            font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
            max-width: 280px; margin: 0 auto 0.6rem;
        }
        .mini-r .author { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
        .trust-row {
            margin-top: 2.5rem; display: flex; align-items: center;
            justify-content: center; gap: 2rem; flex-wrap: wrap;
        }
        .trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: var(--text-muted); font-weight: 500; }
        .trust-item strong { color: var(--text); }
        .trust-div { width: 1px; height: 22px; background: var(--sand-deep); }

        /* ═══════════════ HOW IT WORKS ═══════════════ */
        .how { padding: 4.5rem 0; background: var(--white); }
        .how-head { text-align: center; margin-bottom: 0.5rem; }
        .how-head h2 { font-size: 50px; }
        .how-sub { text-align: center; color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 680px; margin-left: auto; margin-right: auto; }
        .how-steps {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .how-step {
            text-align: center; background: var(--linen); border-radius: var(--radius-lg);
            padding: 1.75rem 1.25rem 2rem; border: 1px solid var(--border);
            transition: all 0.4s ease;
        }
        .how-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .step-label {
            font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.12em; color: var(--terra); margin-bottom: 1.3rem;
        }
        .step-img {
            width: 100%; aspect-ratio: 4/3;
            border-radius: var(--radius); overflow: hidden;
            margin-bottom: 1.25rem;
        }
        .step-img img { width: 100%; height: 100%; object-fit: cover; }
        .how-step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
        .how-step p { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; max-width: 280px; margin: 0 auto; }

        /* ═══════════════ WHAT'S INCLUDED ═══════════════ */
        .included { padding: 3.5rem 0 3rem; background: var(--sand); }
        .inc-header {
            text-align: center; margin-bottom: 1.5rem;
        }
        .inc-header .inc-pill {
            display: inline-block; padding: 0.3rem 1.3rem; border-radius: var(--radius-pill);
            background: var(--terra-glow); color: var(--terra);
            font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
            margin-bottom: 0.6rem;
        }
        .inc-header h2 {
            font-size: 50px; margin-bottom: 0.35rem;
        }
        .inc-header h2 .price-hl {
            color: var(--terra); position: relative;
        }
        .inc-header .sub { font-size: 1.3rem; color: var(--text-secondary); max-width: 840px; margin: 0 auto 1.3rem; line-height: 1.6; }
        .inc-grid {
            max-width: 1000px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
        }
        .inc-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .inc-features li {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 1rem; line-height: 1.45;
        }
        .inc-check {
            width: 20px; height: 20px; background: var(--ink);
            color: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.55rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
        }
        .inc-right { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 24px; }
        .ic-card {
            background: var(--white); border-radius: var(--radius); padding: 0.9rem;
            box-shadow: var(--shadow-xs); transition: transform 0.3s, box-shadow 0.3s;
            display: flex; align-items: flex-start; gap: 0.6rem;
        }
        .ic-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .ic-icon {
            width: 32px; height: 32px; background: var(--terra-glow);
            border-radius: 8px; display: flex; align-items: center;
            justify-content: center; font-size: 1.3rem; flex-shrink: 0;
        }
        .ic-icon svg { width: 15px; height: 15px; stroke: var(--terra); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .ic-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.1.3rem; }
        .ic-card p { font-size: 0.68rem; color: var(--text-muted); line-height: 1.4; }
        .badges-row {
            max-width: 1000px; margin: 1.5rem auto 0;
            display: flex; align-items: center; justify-content: center; gap: 1.3rem; flex-wrap: wrap;
        }
        .badge {
            display: flex; align-items: center; gap: 0.4rem;
            padding: 0.4rem 1.3rem; background: var(--white);
            border-radius: var(--radius-pill); box-shadow: var(--shadow-xs);
            font-size: 1rem; font-weight: 600; color: var(--text-secondary);
        }
        .badge .outlet { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--text); font-size: 0.75rem; }

        /* ═══════════════ TOOLKIT — CSS UI MOCKUPS ═══════════════ */
        .toolkit {
            padding: 4.5rem 0;
            background: var(--terra);
            position: relative; overflow: hidden;
        }
        .toolkit::before {
            content: ''; position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .toolkit-inner { position: relative; z-index: 1; }
        .toolkit-header { text-align: center; margin-bottom: 2.5rem; }
        .toolkit-header h2 {
            font-size: 50px; color: white; margin-bottom: 0.5rem;
            font-style: italic;
        }
        .toolkit-header p { color: rgba(255,255,255,0.65); font-size: 1.2rem; max-width: 780px; margin: 0 auto; line-height: 1.65; }

        .tk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
        .tk-col { text-align: center; display: flex; flex-direction: column; }
        .tk-col h3 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 700;
            color: white; margin-bottom: 0.35rem;
        }
        .tk-col .tk-desc {
            font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.6;
            margin-bottom: 1.5rem; max-width: 280px; margin-left: auto; margin-right: auto;
        }
        /* CSS UI Mockup cards */
        .tk-mockup {
            background: var(--white); border-radius: var(--radius-lg);
            padding: 2rem 1.5rem; box-shadow: var(--shadow-lg);
            height: 320px; display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            transition: transform 0.4s; overflow: hidden;
        }
        .tk-mockup:hover { transform: translateY(-6px); }

        /* Card 1 — Question prompt */
        .mock-q-badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.3rem 0.8rem; background: var(--sand);
            border-radius: var(--radius-pill);
            font-size: 0.7rem; font-weight: 600; color: var(--text-secondary);
            margin-bottom: 1.25rem;
        }
        .mock-q-badge .sparkle { color: var(--terra); }
        .mock-q-text {
            font-family: 'DM Serif Display', serif;
            font-size: 1.3rem; line-height: 1.35;
            color: var(--text); text-align: center;
            margin-bottom: 1.25rem;
        }
        .mock-q-start {
            font-size: 0.82rem; color: var(--text-muted);
        }

        /* Card 2 — Voice recorder */
        .mock-wave {
            display: flex; align-items: center; gap: 3px;
            margin-bottom: 1.25rem; height: 50px;
        }
        .mock-wave-bar {
            width: 4px; border-radius: 2px;
            background: var(--ink); opacity: 0.2;
            animation: waveAnim 1.2s ease-in-out infinite;
        }
        .mock-wave-bar:nth-child(odd) { animation-delay: 0.15s; }
        .mock-wave-bar:nth-child(3n) { animation-delay: 0.3s; }
        .mock-wave-bar:nth-child(4n) { animation-delay: 0.45s; }
        @keyframes waveAnim {
            0%, 100% { height: 12px; opacity: 0.2; }
            50% { height: 40px; opacity: 0.5; }
        }
        .mock-player {
            display: flex; align-items: center; gap: 0.75rem;
            padding: 0.5rem 1.3rem; background: var(--sand);
            border-radius: var(--radius-pill); width: 100%;
        }
        .mock-play-btn {
            width: 32px; height: 32px; background: var(--ink);
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; flex-shrink: 0;
        }
        .mock-play-btn::after {
            content: ''; width: 0; height: 0;
            border-style: solid; border-width: 5px 0 5px 9px;
            border-color: transparent transparent transparent white;
            margin-left: 2px;
        }
        .mock-progress {
            flex: 1; height: 4px; background: var(--sand-deep);
            border-radius: 2px; overflow: hidden;
        }
        .mock-progress-fill {
            width: 35%; height: 100%;
            background: var(--ink); border-radius: 2px;
        }
        .mock-transcript {
            margin-top: 1.25rem; text-align: left; width: 100%;
        }
        .mock-transcript .big-o {
            font-family: 'DM Serif Display', serif;
            font-size: 2.5rem; float: left;
            line-height: 1; margin-right: 0.3rem; color: var(--text);
        }
        .mock-transcript p {
            font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6;
        }

        /* Card 3 — Spell checker */
        .mock-lines {
            width: 100%; display: flex; flex-direction: column; gap: 0.6rem;
            margin-bottom: 1.25rem;
        }
        .mock-line {
            height: 8px; background: var(--sand-deep); border-radius: 4px;
        }
        .mock-line:nth-child(1) { width: 100%; }
        .mock-line:nth-child(2) { width: 85%; }
        .mock-line:nth-child(3) { width: 92%; }
        .mock-line:nth-child(4) { width: 60%; }
        .mock-spell-highlight {
            display: inline-flex; align-items: center;
            padding: 0.3rem 0.7rem; background: var(--terra-glow);
            border: 1.5px solid var(--terra-light);
            border-radius: 6px; font-size: 0.78rem; font-weight: 600;
            color: var(--terra-dark); margin-bottom: 0.75rem;
        }
        .mock-correction {
            background: var(--white); border: 1.5px solid var(--sand-deep);
            border-radius: var(--radius); padding: 0.75rem;
            box-shadow: var(--shadow-sm); width: 100%;
        }
        .mock-correction .suggestion {
            font-size: 0.82rem; font-weight: 500; color: var(--text);
            margin-bottom: 0.6rem;
        }
        .mock-correction .btns {
            display: flex; gap: 0.5rem;
        }
        .mock-btn-reject, .mock-btn-accept {
            flex: 1; padding: 0.4rem;
            border-radius: 8px; border: none;
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
        }
        .mock-btn-reject { background: var(--sand); color: var(--text-secondary); }
        .mock-btn-accept { background: var(--ink); color: white; }

        /* ═══════════════ ROTATING QUESTIONS ═══════════════ */
        .questions { padding: 4.5rem 0; background: var(--white); }
        .q-header { text-align: center; margin-bottom: 0.5rem; }
        .q-header h2 { font-size: 50px; }
        .q-sub { text-align: center; color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.65; }
        .q-track { width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
        .q-slider {
            display: flex; gap: 1.25rem;
            animation: qScroll 40s linear infinite;
            width: max-content;
        }
        .q-slider:hover { animation-play-state: paused; }
        @keyframes qScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .q-card {
            min-width: 260px; max-width: 260px; flex-shrink: 0;
            border-radius: var(--radius-lg); padding: 2rem 1.5rem;
            min-height: 180px; display: flex; flex-direction: column;
            justify-content: center; transition: transform 0.3s;
        }
        .q-card:hover { transform: translateY(-3px); }
        .q-card.c1 { background: var(--ink); color: white; }
        .q-card.c2 { background: var(--terra); color: white; }
        .q-card.c3 { background: var(--sand); color: var(--text); }
        .q-card.c4 { background: #7A8B6F; color: white; }
        .q-card.c5 { background: #8B6F7A; color: white; }
        .q-card.c6 { background: #6F7A8B; color: white; }
        .q-card.c7 { background: #8B7A6F; color: white; }
        .q-card.c8 { background: #6F8B7A; color: white; }
        .q-card p { font-family: 'DM Serif Display', serif; font-size: 1.5rem; line-height: 1.45; }

        /* ═══════════════ FOUNDER ═══════════════ */
        .founder { padding: 4.5rem 0; background: var(--sand); }
        .founder-grid {
            max-width: 920px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1.1fr;
            gap: 3rem; align-items: center;
        }
        .founder-img-wrap { position: relative; }
        .founder-img {
            border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .founder-img img { width: 100%; display: block; }
        .founder-accent {
            position: absolute; bottom: -12px; right: -12px;
            width: 80px; height: 80px; background: var(--terra-glow);
            border-radius: 50%; z-index: -1;
        }
        .founder-content h2 { font-size: 1.4rem; margin-bottom: 1.3rem; line-height: 1.3; }
        .founder-quote {
            font-size: 1rem; color: var(--text-secondary); line-height: 1.8;
            margin-bottom: 1.25rem; border-left: 3px solid var(--terra); padding-left: 1.25rem;
            font-style: italic;
        }
        .founder-attr { font-size: 0.8rem; font-weight: 600; }
        .founder-attr span { color: var(--text-muted); font-weight: 400; }

        /* ═══════════════ VIDEO REVIEWS ═══════════════ */
        .videos { padding: 4.5rem 0; background: var(--white); }
        .vid-header { text-align: center; margin-bottom: 0.5rem; }
        .vid-header h2 { font-size: 50px; }
        .vid-sub { text-align: center; color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 2.5rem; }
        .vid-grid {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
        }
        .vid-card {
            border-radius: var(--radius-lg); overflow: hidden;
            position: relative; aspect-ratio: 3/4;
            box-shadow: var(--shadow-md); cursor: pointer;
            transition: transform 0.4s, box-shadow 0.4s;
        }
        .vid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
        .vid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .vid-card:hover img { transform: scale(1.05); }
        .vid-play {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 52px; height: 52px; background: rgba(255,255,255,0.92);
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .vid-play::after {
            content: ''; width: 0; height: 0;
            border-style: solid; border-width: 8px 0 8px 14px;
            border-color: transparent transparent transparent var(--ink);
            margin-left: 3px;
        }
        .vid-card:hover .vid-play { transform: translate(-50%, -50%) scale(1.1); }
        .vid-info {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 2.5rem 1.25rem 1.25rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white;
        }
        .vid-info .name { font-size: 0.82rem; font-weight: 700; }
        .vid-info .desc { font-size: 0.72rem; opacity: 0.75; margin-top: 0.1.3rem; }

        /* ═══════════════ TRUST ═══════════════ */
        .trust-section {
            padding: 5rem 0; text-align: center; color: white; position: relative; overflow: hidden;
            background: var(--ink);
            background-image:
                radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196,114,79,0.12) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 20%, rgba(61,56,96,0.4) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 50% 50%, rgba(196,114,79,0.06) 0%, transparent 50%);
        }
        .trust-section::before {
            content: ''; position: absolute; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none; z-index: 0;
        }
        .trust-section::after {
            content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(196,114,79,0.1) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        .trust-section > .container { position: relative; z-index: 1; }
        .trust-section h2 { font-size: 50px; color: white; margin-bottom: 0.5rem; }
        .trust-section .trust-sub { font-size: 1.2rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }
        .trust-cards {
            max-width: 1050px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
        }
        .t-card {
            text-align: center; padding: 2.5rem 1.75rem 2rem;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; transition: all 0.4s ease;
            position: relative; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        }
        .t-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
        .t-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, rgba(196,114,79,0.2), rgba(196,114,79,0.05));
            border: 1px solid rgba(196,114,79,0.15);
            border-radius: 16px; display: inline-flex; align-items: center;
            justify-content: center; margin-bottom: 1.25rem;
        }
        .t-icon svg { width: 40px; height: 40px; stroke: var(--terra); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .t-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
        .t-card p { font-size: 1.3rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; margin: 0 auto; }

        /* ═══════════════ FINAL CTA ═══════════════ */
        .final-cta {
            padding: 8rem 0 7rem; text-align: center; position: relative; overflow: hidden;
            min-height: 600px; display: flex; align-items: center; justify-content: center;
        }
        .final-cta-slider { position: absolute; inset: 0; z-index: 0; }
        .final-cta-slide {
            position: absolute; inset: 0; background-size: cover; background-position: center 30%;
            opacity: 0; transition: opacity 2s ease-in-out;
        }
        .final-cta-slide.active { opacity: 1; }
        .final-cta-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(180deg, rgba(42,38,66,0.35) 0%, rgba(42,38,66,0.55) 100%);
        }
        .final-cta .container { position: relative; z-index: 2; }
        .final-cta h2 { font-size: 50px; margin-bottom: 0.5rem; color: white; }
        .final-cta p { color: rgba(255,255,255,0.7); font-size: 1.2rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
        .final-cta .art-credit {
            margin-top: 2.5rem; font-size: 0.7rem; color: rgba(255,255,255,0.3);
            font-style: italic;
        }

        /* ═══════════════ EMAIL BAR ═══════════════ */
        .email-bar { background: var(--ink-deep); padding: 2.5rem 0; }
        .email-inner {
            max-width: 750px; margin: 0 auto; padding: 0 2.5rem;
            display: flex; align-items: center; justify-content: space-between;
            gap: 2rem; flex-wrap: wrap;
        }
        .email-text strong { color: white; font-size: 0.92rem; display: block; margin-bottom: 0.15rem; }
        .email-text span { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
        .email-form { display: flex; gap: 0.5rem; }
        .email-form input {
            padding: 0.7rem 1.25rem; background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-pill);
            color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem;
            width: 260px; outline: none; transition: border-color 0.3s;
        }
        .email-form input::placeholder { color: rgba(255,255,255,0.3); }
        .email-form input:focus { border-color: var(--terra); }
        .email-form button {
            padding: 0.7rem 1.5rem; background: var(--terra); color: white;
            border: none; border-radius: var(--radius-pill);
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 700;
            cursor: pointer; transition: background 0.3s;
        }
        .email-form button:hover { background: var(--terra-dark); }

        /* ═══════════════ FOOTER ═══════════════ */
        .site-footer { background: #0D0D0D; color: rgba(255,255,255,0.45); padding: 4rem 0 1.5rem; }
        .footer-grid {
            max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
            display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; gap: 3rem;
        }
        .footer-brand p { font-size: 0.82rem; line-height: 1.65; margin-top: 0.75rem; max-width: 260px; }
        .footer-col h4 {
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.12em;
            color: rgba(255,255,255,0.25); margin-bottom: 1.25rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            max-width: 1200px; margin: 3rem auto 0; padding: 1.5rem 2.5rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.72rem; color: rgba(255,255,255,0.25);
        }
        .footer-legal { display: flex; gap: 1.5rem; }
        .footer-legal a { color: rgba(255,255,255,0.25); }
        .footer-legal a:hover { color: rgba(255,255,255,0.5); }

        /* ═══════════════ RESPONSIVE ═══════════════ */
        @media (max-width: 1024px) {
            .hero-inner { justify-content: center; }
            .hero-content { text-align: center; }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .hero-pills { justify-content: center; }
            .hero-btn-row { justify-content: center; }
            .inc-grid { grid-template-columns: 1fr; }
            .founder-grid { grid-template-columns: 1fr; text-align: center; }
            .founder-quote { text-align: left; }
            .vid-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .container, .header-inner { padding: 0 1.5rem; }
            .header-nav a:not(.btn) { display: none; }
            .book-showcase, .book-showcase img { max-height: 280px; height: 280px; }
            .mini-reviews { grid-template-columns: 1fr; gap: 2rem; }
            .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
            .inc-right { grid-template-columns: 1fr; }
            .tk-grid { grid-template-columns: 1fr; gap: 3rem; }
            .tk-mockup { height: 300px; }
            .q-card { min-width: 230px; max-width: 230px; }
            .trust-cards { grid-template-columns: 1fr; gap: 2rem; }
            .vid-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .footer-brand { grid-column: span 2; }
            .email-inner { flex-direction: column; text-align: center; }
            .email-form { width: 100%; }
            .email-form input { flex: 1; width: auto; }
            .trust-row { flex-direction: column; gap: 1.3rem; }
            .trust-div { display: none; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .book-showcase, .book-showcase img { max-height: 200px; height: 200px; }
            .q-card { min-width: 220px; max-width: 220px; }
            .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .footer-brand { grid-column: auto; }
            .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
        }
