:root {
    /* Scriblr App Theme Colors - Light Mode */
    --bg-primary: #FDF8F3;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F5F0EB;
    --bg-matcha: #FDF8F3;
    --text-primary: #5D4037;
    --text-secondary: #8D6E63;
    --text-tertiary: #A1887F;
    --matcha: #E8A61D;
    --matcha-dark: #D4941A;
    --matcha-light: #F4B342;
    --matcha-soft: rgba(232, 166, 29, 0.12);
    --cream: #FDF8F3;
    --silk: #F5F0EB;
    --accent: #E8A61D;
    --success: #A5D6A7;
    --warning: #FF9500;
    --danger: #FF3B30;
    --border: rgba(93, 64, 55, 0.08);
    --border-strong: rgba(93, 64, 55, 0.15);
    --shadow-sm: 0 1px 2px rgba(93, 64, 55, 0.04);
    --shadow-md: 0 4px 16px rgba(93, 64, 55, 0.06);
    --shadow-lg: 0 12px 40px rgba(93, 64, 55, 0.08);
    --shadow-xl: 0 24px 64px rgba(93, 64, 55, 0.1);

    /* Typography */
    --font-sans: 'Noto Sans Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-logo: 'Agbalumo', cursive;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Touch targets */
    --min-touch: 44px;
}

/* Dark mode - auto detect */
@media (prefers-color-scheme: dark) {
    :root:not(.light) {
        --bg-primary: #181818;
        --bg-secondary: #262626;
        --bg-tertiary: #2E2E2E;
        --bg-matcha: #1E1E1E;
        --text-primary: #F5F5F5;
        --text-secondary: rgba(245, 245, 245, 0.6);
        --text-tertiary: rgba(245, 245, 245, 0.4);
        --matcha: #F4B342;
        --matcha-dark: #F4B342;
        --matcha-light: #E8A61D;
        --matcha-soft: rgba(244, 179, 66, 0.15);
        --cream: #262626;
        --silk: #2E2E2E;
        --border: rgba(255, 255, 255, 0.1);
        --border-strong: rgba(255, 255, 255, 0.15);
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
        --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    }
}

/* Dark mode - manual override */
:root.dark {
    --bg-primary: #181818;
    --bg-secondary: #262626;
    --bg-tertiary: #2E2E2E;
    --bg-matcha: #1E1E1E;
    --text-primary: #F5F5F5;
    --text-secondary: rgba(245, 245, 245, 0.6);
    --text-tertiary: rgba(245, 245, 245, 0.4);
    --matcha: #F4B342;
    --matcha-dark: #F4B342;
    --matcha-light: #E8A61D;
    --matcha-soft: rgba(244, 179, 66, 0.15);
    --cream: #262626;
    --silk: #2E2E2E;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--matcha);
    color: white;
    padding: var(--space-sm) var(--space-md);
    z-index: 1000;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0;
    clip: rect(0, 0, 0, 0);
}
.skip-link:focus { top: 0; clip: auto; }

::selection { background: var(--matcha); color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
.display-xl { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1.05; }
.display-lg { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; }
.text-lg { font-size: 1.125rem; line-height: 1.7; max-width: 65ch; }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--matcha-dark); font-size: 1.15em; }

/* Navigation */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(253, 248, 243, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
@media (prefers-color-scheme: dark) { .nav { background: rgba(24, 24, 24, 0.8); } }
:root.dark .nav { background: rgba(24, 24, 24, 0.8); }
:root.light .nav { background: rgba(253, 248, 243, 0.8); }
.nav.visible { transform: translateY(0); visibility: visible; opacity: 1; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    font-family: var(--font-logo); font-size: 1.5rem; color: #5D4037;
    text-decoration: none; display: flex; align-items: center; gap: var(--space-sm);
    min-height: var(--min-touch);
}
@media (prefers-color-scheme: dark) { .nav-logo { color: #F5F5F5; } }
:root.dark .nav-logo { color: #F5F5F5; }
:root.light .nav-logo { color: #5D4037; }
.nav-icon { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: var(--space-xl); }
.nav-links a {
    color: #8D6E63; text-decoration: none; font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; min-height: var(--min-touch); display: flex; align-items: center;
}
@media (prefers-color-scheme: dark) { .nav-links a { color: rgba(245, 245, 245, 0.6); } }
:root.dark .nav-links a { color: rgba(245, 245, 245, 0.6); }
:root.light .nav-links a { color: #8D6E63; }
.nav-links a:hover { color: var(--matcha-dark); }
.nav-actions {
    display: flex; align-items: center; gap: var(--space-xs);
}
.nav-cta {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md); background: var(--matcha); color: white;
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    border-radius: var(--radius-full); transition: all 0.3s; min-height: var(--min-touch);
}
.nav-cta:hover { background: var(--matcha-dark); transform: scale(1.02); box-shadow: var(--shadow-lg); }
.nav-cta svg { width: 18px; height: 18px; }

/* Mobile menu */
.nav-toggle {
    display: none; width: var(--min-touch); height: var(--min-touch);
    background: none; border: none; cursor: pointer; padding: var(--space-sm); position: relative;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s; position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.active span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

.mobile-nav {
    position: fixed; top: 65px; left: 0; right: 0;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border);
    padding: 0 var(--space-lg); box-shadow: var(--shadow-lg); z-index: 99;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-nav.active { max-height: 400px; opacity: 1; padding: var(--space-lg); }
.mobile-nav a {
    display: block; padding: var(--space-md); color: var(--text-primary);
    text-decoration: none; font-size: 1rem; font-weight: 500; text-align: right;
    border-radius: var(--radius-md); min-height: var(--min-touch); transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--matcha-soft); }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-cta-text { display: none; }
    .nav-cta { padding: var(--space-sm); border-radius: var(--radius-md); }
}

/* Theme toggle */
.theme-toggle {
    width: var(--min-touch); height: var(--min-touch);
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none;
    cursor: pointer; transition: all 0.3s; margin-right: var(--space-sm);
}
.theme-toggle:hover { background: transparent; }
.theme-toggle svg { width: 20px; height: 20px; color: var(--text-secondary); transition: all 0.3s; }
.theme-toggle:hover svg { color: var(--matcha); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
:root.dark .theme-toggle .sun { display: block; }
:root.dark .theme-toggle .moon { display: none; }
@media (prefers-color-scheme: dark) {
    :root:not(.light) .theme-toggle .sun { display: block; }
    :root:not(.light) .theme-toggle .moon { display: none; }
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl); font-size: 1rem; font-weight: 500;
    text-decoration: none; border-radius: var(--radius-full);
    transition: all 0.3s; cursor: pointer; border: none; min-height: var(--min-touch);
}
.btn-primary { background: var(--matcha); color: white; }
.btn-primary:hover { background: var(--matcha-dark); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 2px solid var(--border-strong); }
.btn-secondary:hover { background: var(--bg-secondary); border-color: var(--matcha-light); }
.btn svg { width: 20px; height: 20px; }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding: var(--space-5xl) 0 var(--space-4xl); position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-matcha) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: var(--space-3xl); align-items: center; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-content { position: relative; z-index: 2; }
.hero-phone { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
@media (max-width: 1024px) { .hero-phone { display: none; } }
.phone-mockup {
    width: 280px; height: 580px; background: var(--bg-secondary);
    border-radius: 40px; border: 4px solid var(--text-primary);
    box-shadow: var(--shadow-xl), inset 0 0 20px rgba(0,0,0,0.05);
    position: relative; overflow: hidden;
}
.phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 28px; background: var(--text-primary); border-radius: 20px;
}
.phone-screen {
    position: absolute; top: 50px; left: 12px; right: 12px; bottom: 12px;
    background: var(--bg-primary); border-radius: 28px; overflow: hidden;
    display: flex; flex-direction: column;
}
.phone-header {
    padding: var(--space-md); background: var(--matcha-soft);
    border-bottom: 1px solid var(--border); text-align: center;
}
.phone-header h4 { font-size: 0.9rem; color: var(--matcha-dark); margin: 0; }
.phone-header span { font-size: 0.7rem; color: var(--text-tertiary); }
.phone-transcript { flex: 1; padding: var(--space-md); overflow: hidden; }
.phone-message {
    display: flex; gap: var(--space-sm); margin-bottom: var(--space-md);
    opacity: 0; animation: fadeInMessage 0.5s ease forwards;
}
.phone-message:nth-child(1) { animation-delay: 0.5s; }
.phone-message:nth-child(2) { animation-delay: 1s; }
.phone-message:nth-child(3) { animation-delay: 1.5s; }
.phone-message:nth-child(4) { animation-delay: 2s; }
@keyframes fadeInMessage { to { opacity: 1; } }
.phone-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 600; flex-shrink: 0;
}
.phone-avatar.blue { background: #E0F2FE; color: #0369A1; }
.phone-avatar.pink { background: #FCE7F3; color: #BE185D; }
.phone-bubble { flex: 1; }
.phone-bubble .name { font-size: 0.65rem; font-weight: 600; color: var(--text-tertiary); margin-bottom: 2px; }
.phone-bubble .text { font-size: 0.75rem; color: var(--text-primary); line-height: 1.4; }
.phone-recording {
    padding: var(--space-md); background: var(--bg-secondary);
    border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: center; gap: var(--space-sm);
}
.phone-record-btn {
    width: 48px; height: 48px; background: var(--danger);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    animation: pulse-record 2s infinite;
}
.phone-record-btn::after {
    content: ''; width: 16px; height: 16px; background: white; border-radius: 4px;
}
@keyframes pulse-record {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
}
.phone-time { font-size: 0.8rem; font-weight: 600; color: var(--danger); font-variant-numeric: tabular-nums; }
.hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md); background: var(--matcha-soft);
    color: var(--matcha-dark); border-radius: var(--radius-full);
    font-size: 0.875rem; font-weight: 500; margin-bottom: var(--space-xl);
    border: 1px solid rgba(232, 166, 29, 0.2);
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { margin-bottom: var(--space-lg); }
.hero h1 span { display: block; }
.hero-subtitle { margin-bottom: var(--space-2xl); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-xl); }

/* Social proof */
.social-proof { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-2xl); }
.social-proof-stars { display: flex; gap: 2px; }
.social-proof-stars svg { width: 16px; height: 16px; fill: var(--warning); }
.social-proof-text { font-size: 0.875rem; color: var(--text-secondary); }

/* Trust row */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-xl); }
.trust-item { display: flex; align-items: center; gap: var(--space-sm); color: var(--text-secondary); font-size: 0.9rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--success); }

/* Decorative */
.matcha-pattern {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    opacity: 0.03; pointer-events: none;
    background-image: radial-gradient(circle at 2px 2px, var(--matcha) 1px, transparent 0);
    background-size: 40px 40px;
}
.leaf { position: fixed; opacity: 0.1; pointer-events: none; z-index: 0; }
.leaf-1 { width: 300px; height: 300px; }
.leaf-2 { width: 200px; height: 200px; }
.leaf svg { width: 100%; height: 100%; fill: var(--matcha); }

.scroll-indicator {
    position: absolute; bottom: var(--space-2xl); left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
    color: var(--text-tertiary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.scroll-indicator .mouse {
    width: 24px; height: 36px; border: 2px solid var(--matcha-light);
    border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: var(--matcha); border-radius: 2px;
    animation: scroll-mouse 2s infinite;
}
@keyframes scroll-mouse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(6px); }
}
@media (max-height: 700px) { .scroll-indicator { display: none; } }

/* Stats section */
.stats {
    padding: var(--space-4xl) 0; background: var(--bg-secondary);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
    content: ''; position: absolute; right: calc(var(--space-xl) / -2);
    top: 50%; transform: translateY(-50%);
    width: 1px; height: 48px; background: var(--border-strong);
}
.stat-value {
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -0.03em;
    color: var(--matcha-dark); line-height: 1; margin-bottom: var(--space-sm);
}
.stat-value svg { width: 1em; height: 1em; stroke-width: 2.5; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); }

/* Sections */
.section { padding: var(--space-5xl) 0; overflow: hidden; }
.section-alt { background: var(--bg-tertiary); }
.section-dark { background: #3E2723; color: #F5F5F5; }
.section-matcha { background: linear-gradient(180deg, var(--bg-matcha) 0%, var(--bg-secondary) 100%); }
.section-header { max-width: 700px; margin-bottom: var(--space-4xl); }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--matcha); margin-bottom: var(--space-md);
}
.section-dark .section-label { color: #F4B342; }

/* Comparison cards */
.comparison-grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: var(--space-xl); margin-top: var(--space-3xl); align-items: stretch; }
.comparison-vs { display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--text-tertiary); font-size: 1.25rem; }
.comparison-card { padding: var(--space-2xl); border-radius: var(--radius-xl); border: 1px solid var(--border); }
.comparison-card.highlight { background: var(--matcha-soft); border-color: var(--matcha); }
.comparison-card.muted { background: var(--bg-tertiary); opacity: 0.9; }
.comparison-card h3 { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-lg); }
.comparison-card h3 svg { width: 32px; height: 32px; }
.comparison-card.highlight h3 svg { color: var(--matcha); }
.comparison-card.muted h3 svg { color: var(--text-tertiary); }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-md); }
.comparison-list li { display: flex; align-items: flex-start; gap: var(--space-md); font-size: 0.95rem; }
.comparison-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.comparison-card.highlight .comparison-list svg { color: var(--success); }
.comparison-card.muted .comparison-list svg { color: var(--text-tertiary); }
.location-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-xl); }
.location-tag {
    padding: var(--space-xs) var(--space-md); background: var(--bg-secondary);
    border: 1px solid var(--matcha); border-radius: var(--radius-full);
    font-size: 0.8rem; color: var(--matcha-dark);
}

/* Privacy comparison */
.privacy-grid {
    display: grid; grid-template-columns: 1fr 80px 1fr;
    gap: var(--space-xl); align-items: center; margin-top: var(--space-3xl);
}
.privacy-column { padding: var(--space-2xl); border-radius: var(--radius-xl); height: 100%; }
.privacy-column.scriblr {
    background: var(--matcha-soft); border: 1px solid var(--matcha);
}
.privacy-column.others { background: var(--bg-tertiary); border: 1px solid var(--border); opacity: 0.9; }
.privacy-column h3 { margin-bottom: var(--space-lg); display: flex; align-items: center; gap: var(--space-sm); }
.privacy-column.scriblr h3 { color: var(--matcha-dark); }
.privacy-column.others h3 { color: var(--text-secondary); }
.privacy-vs { text-align: center; font-weight: 600; color: var(--text-tertiary); font-size: 1.25rem; }
.data-flow {
    margin-top: var(--space-xl); padding: var(--space-lg);
    background: var(--matcha-soft); border-radius: var(--radius-lg); text-align: center;
}
.data-flow-bad { background: rgba(220, 38, 38, 0.1); }
.data-flow svg { width: 48px; height: 48px; margin-bottom: var(--space-sm); }
.data-flow.scriblr svg { color: var(--matcha); }
.data-flow-bad svg { color: var(--danger); }
.data-flow p { font-size: 0.875rem; color: var(--text-secondary); }
.competitors-list { margin-top: var(--space-lg); font-size: 0.85rem; color: var(--text-tertiary); }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.feature-card {
    padding: var(--space-2xl); background: var(--bg-secondary);
    border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--matcha-light); }
.feature-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--matcha-soft); border-radius: var(--radius-md); margin-bottom: var(--space-lg);
}
.feature-icon svg { width: 24px; height: 24px; color: var(--matcha); }
.feature-card h3 { font-size: 1.125rem; margin-bottom: var(--space-sm); }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; max-width: 65ch; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

/* Speaker section */
.speaker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; }
.speaker-visual {
    background: linear-gradient(135deg, var(--cream), var(--bg-matcha));
    border-radius: var(--radius-xl); padding: var(--space-2xl); border: 1px solid var(--border);
}
.speaker-demo { display: flex; flex-direction: column; gap: var(--space-md); }
.speaker-bubble {
    display: flex; align-items: flex-start; gap: var(--space-md);
    padding: var(--space-md); background: var(--bg-secondary);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.speaker-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.875rem; flex-shrink: 0;
}
.speaker-avatar.s1 { background: #E0F2FE; color: #0369A1; }
.speaker-avatar.s2 { background: #FCE7F3; color: #BE185D; }
.speaker-avatar.s3 { background: #D1FAE5; color: #047857; }
.speaker-text { flex: 1; }
.speaker-name { font-size: 0.75rem; font-weight: 600; color: var(--text-tertiary); margin-bottom: var(--space-xs); }
.speaker-message { font-size: 0.9rem; color: var(--text-primary); }

/* Summary cards */
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); margin-top: var(--space-3xl); }
.summary-card {
    display: flex; align-items: flex-start; gap: var(--space-lg);
    padding: var(--space-2xl); background: var(--bg-secondary);
    border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.3s;
}
.summary-card:hover { border-color: var(--matcha); transform: translateX(4px); }
.summary-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-matcha); border-radius: var(--radius-md); flex-shrink: 0;
}
.summary-icon svg { width: 22px; height: 22px; color: var(--matcha-dark); }
.summary-content h3 { font-size: 1rem; margin-bottom: var(--space-xs); }
.summary-content p { font-size: 0.875rem; color: var(--text-secondary); }

/* Sharing cards */
.sharing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); margin-top: var(--space-3xl); }
.sharing-card {
    text-align: center; padding: var(--space-2xl); background: var(--bg-secondary);
    border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.3s;
}
.sharing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sharing-icon {
    width: 56px; height: 56px; margin: 0 auto var(--space-md);
    display: flex; align-items: center; justify-content: center;
    background: var(--matcha-soft); border-radius: var(--radius-lg);
}
.sharing-icon svg { width: 28px; height: 28px; color: var(--matcha); }
.sharing-card h3 { font-size: 1rem; margin-bottom: var(--space-xs); }
.sharing-card p { font-size: 0.85rem; color: var(--text-secondary); }

/* Language cloud */
.language-cloud {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-sm); max-width: 900px; margin: 0 auto; padding: var(--space-3xl) 0;
}
.language-tag {
    padding: var(--space-sm) var(--space-md); background: var(--bg-secondary);
    border: 1px solid var(--border); border-radius: var(--radius-full);
    font-size: 0.875rem; color: var(--text-secondary); transition: all 0.3s;
    min-height: var(--min-touch); display: flex; align-items: center;
}
.language-tag:hover {
    background: var(--matcha-soft); color: var(--matcha-dark);
    border-color: var(--matcha); transform: scale(1.05);
}
.language-tag.featured { background: var(--matcha-soft); color: var(--matcha-dark); border-color: var(--matcha); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-4xl); }
.step { text-align: center; position: relative; }
.step-number {
    width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
    background: rgba(244, 179, 66, 0.15); border-radius: 50%;
    font-size: 1.5rem; font-weight: 600; margin: 0 auto var(--space-lg); color: #F4B342;
}
.section-dark .step h3 { color: #F5F5F5; }
.section-dark .step p { color: rgba(245, 245, 245, 0.7); font-size: 0.95rem; }
.step-connector {
    position: absolute; top: 32px; left: calc(50% + 40px);
    width: calc(100% - 80px); height: 1px; background: rgba(244, 179, 66, 0.2);
}
.step:last-child .step-connector { display: none; }

/* Pricing */
.pricing { padding: var(--space-5xl) 0; background: var(--bg-secondary); overflow: hidden; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); max-width: 1100px; margin: 0 auto; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
    background: var(--bg-primary); border-radius: var(--radius-xl); padding: var(--space-2xl);
    border: 1px solid var(--border); position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border: 2px solid var(--matcha); background: var(--bg-matcha);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--matcha); color: white; font-size: 0.75rem; font-weight: 600;
    padding: var(--space-xs) var(--space-md); border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: var(--space-sm); color: var(--text-primary); }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-xs); }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-tertiary); }
.pricing-card .price-note { font-size: 0.875rem; color: var(--text-tertiary); margin-bottom: var(--space-lg); }
.pricing-features { list-style: none; margin-bottom: var(--space-xl); }
.pricing-features li {
    display: flex; align-items: flex-start; gap: var(--space-sm);
    padding: var(--space-sm) 0; color: var(--text-secondary); font-size: 0.95rem;
}
.pricing-features li svg { width: 20px; height: 20px; color: var(--matcha); flex-shrink: 0; margin-top: 2px; }
.pricing-features li.disabled { color: var(--text-tertiary); }
.pricing-features li.disabled svg { color: var(--text-tertiary); }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card.featured .btn-primary { background: var(--matcha-dark); }
.pricing-card.featured .btn-primary:hover { background: var(--matcha); }
.pricing-note { text-align: center; margin-top: var(--space-xl); color: var(--text-tertiary); font-size: 0.875rem; }

/* Scroll to Top FAB */
.scroll-top {
    position: fixed; bottom: var(--space-xl); right: var(--space-xl);
    width: 48px; height: 48px; border-radius: var(--radius-full);
    background: var(--matcha); color: white; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.3s ease;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--matcha-dark); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.scroll-top svg { width: 24px; height: 24px; }
@media (max-width: 768px) { .scroll-top { bottom: var(--space-lg); right: var(--space-lg); } }

/* Who Scriblr is For */
.audience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg);
    margin-top: var(--space-3xl);
}
.audience-card {
    background: var(--bg-secondary); border-radius: var(--radius-xl); padding: var(--space-xl);
    border: 1px solid var(--border); text-align: center; transition: all 0.3s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--matcha-soft); }
.audience-icon {
    width: 64px; height: 64px; margin: 0 auto var(--space-md);
    background: var(--matcha-soft); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}
.audience-icon svg { width: 32px; height: 32px; color: var(--matcha); }
.audience-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.audience-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 1024px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .audience-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta { padding: var(--space-5xl) 0; text-align: center; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-matcha) 100%); overflow: hidden; }
.cta-card {
    padding: var(--space-4xl); background: var(--bg-secondary);
    border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.cta h2 { margin-bottom: var(--space-lg); }
.cta p { max-width: 500px; margin: 0 auto var(--space-2xl); color: var(--text-secondary); }

/* App Store Badge */
.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--matcha);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s;
    white-space: nowrap;
}
.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--matcha-dark);
}
.app-store-badge svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}
.app-store-small {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.95;
}
.app-store-large {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Footer */
.footer { padding: var(--space-4xl) 0 var(--space-xl); background: var(--bg-secondary); border-top: 1px solid var(--border); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-3xl); margin-bottom: var(--space-4xl); }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: var(--space-md); max-width: 280px; }
.footer-links h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: var(--space-md); color: var(--text-primary); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.875rem;
    transition: color 0.2s; min-height: var(--min-touch); display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--matcha-dark); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: var(--space-xl); border-top: 1px solid var(--border);
    font-size: 0.875rem; color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2)::after { display: none; }
    .comparison-grid, .speaker-grid, .privacy-grid { grid-template-columns: 1fr; }
    .comparison-vs, .privacy-vs { display: none; }
    .summary-grid { grid-template-columns: 1fr; }
    .sharing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .step-connector { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .leaf { width: 150px; height: 150px; opacity: 0.12; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .sharing-grid { grid-template-columns: 1fr; }
    .leaf { width: 100px; height: 100px; opacity: 0.1; }
    .footer { padding: var(--space-2xl) 0 var(--space-lg); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg) var(--space-md); margin-bottom: var(--space-xl); }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand p { max-width: 100%; margin: var(--space-sm) auto 0; font-size: 0.85rem; }
    .footer-links h4 { margin-bottom: var(--space-sm); font-size: 0.8rem; }
    .footer-links ul { gap: 0; }
    .footer-links a { min-height: 36px; font-size: 0.8rem; }
    .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; font-size: 0.8rem; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); }
.fade-in-left { opacity: 0; transform: translateX(-30px); }
.fade-in-right { opacity: 0; transform: translateX(30px); }
.scale-in { opacity: 0; transform: scale(0.95); }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in, .fade-in-left, .fade-in-right, .scale-in { opacity: 1; transform: none; }
}
