/* ================================================================
   SpeakUp Landing Page — "Paper Typewriter"
   Monospace typewriter aesthetic + purple-to-blue gradient CTAs
   Founder-approved direction: paper feeling, typewriter, EU identity
   DO NOT MODIFY without founder approval.
   ================================================================ */

:root {
    --font-main: 'SF Mono', SFMono-Regular, ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    --bg: #FAFAFA;
    --bg-raised: #FFFFFF;
    --bg-dark: #0A0A0A;
    --text: #0A0A0A;
    --text-secondary: #555555;
    --text-muted: #767676;
    --text-on-dark: #FAFAFA;
    --text-on-dark-secondary: #b0c4de;
    --accent: #4F46E5;
    --accent-blue: #4A8FE7;
    --border: #E5E5E5;
    --border-strong: #0A0A0A;
    --shadow: rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    font-weight: 400;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================
   Skip Link
   ================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 16px;
    background: var(--text);
    color: var(--bg);
    z-index: 1000;
    font-family: var(--font-main);
    font-size: 13px;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ================================
   Navigation
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: background 0.2s, backdrop-filter 0.2s;
}

.nav.scrolled {
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
}

.nav-logo img {
    width: 18px;
    height: 18px;
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
}

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

.nav-link-cta {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    padding: 8px 20px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    border: 1.5px solid var(--text);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link-cta:hover {
    background: var(--text);
    color: var(--bg);
}

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.15s;
    white-space: nowrap;
}

.nav-dropdown-trigger:hover {
    color: var(--text);
}

.nav-dropdown-trigger::after {
    content: " \25BE";
    font-size: 9px;
    opacity: 0.5;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    padding: 6px 0;
    z-index: 200;
    background: var(--bg-raised);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    min-width: 180px;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    transition: background 0.1s;
    white-space: nowrap;
    border-radius: 6px;
    margin: 2px 6px;
}

.nav-dropdown-menu a:hover {
    background: rgba(79, 70, 229, 0.06);
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 4px;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: calc(52px + var(--banner-height, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-raised);
    border-bottom: 2px solid var(--border-strong);
    padding: 16px 32px;
    z-index: 99;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
}

body.menu-open [id*="featurebase"],
body.menu-open [class*="featurebase"] {
    display: none !important;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-menu a {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child {
    border-bottom: none;
}

.nav-mobile-menu .nav-link-cta {
    display: inline-block;
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    background: transparent;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: color 0.15s;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    color: var(--text);
    font-weight: 700;
}

.lang-divider {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================
   Buttons — physical, tactile, gradient
   ================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #4F46E5 0%, #4A8FE7 100%);
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 5px 5px 0 0 var(--shadow);
    transform: translate(0, 0);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary:hover {
    box-shadow: 3px 3px 0 0 var(--shadow);
    transform: translate(2px, 2px);
}

.btn-primary:active {
    box-shadow: 0 0 0 0 var(--shadow);
    transform: translate(5px, 5px);
}

/* Inverted button for dark sections */
.btn-primary-inv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: #FFFFFF;
    color: var(--accent);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 5px 5px 0 0 rgba(255,255,255,0.2);
    transform: translate(0, 0);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary-inv:hover {
    box-shadow: 3px 3px 0 0 rgba(255,255,255,0.2);
    transform: translate(2px, 2px);
}

.btn-primary-inv:active {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.2);
    transform: translate(5px, 5px);
}

/* ================================
   Hero
   ================================ */

.hero {
    padding: 96px 0 64px;
    text-align: center;
}

.hero-origin {
    font-size: 12px;
    font-weight: 700;
    color: #003399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

.title {
    font-size: clamp(36px, 5.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.hero-req {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Platform Roadmap (hero) */
.platform-roadmap {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.platform-item.platform-available {
    color: var(--text);
    font-weight: 500;
}

.platform-icon {
    font-size: 13px;
    line-height: 1;
}

.platform-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.platform-badge-live {
    color: #22C55E;
}

.platform-badge-soon {
    color: var(--text-muted);
}

.platform-item.platform-cooking {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.platform-item.platform-cooking:hover {
    opacity: 0.7;
}

.platform-badge-cooking {
    color: #F59E0B;
    animation: pulse-cooking 2s ease-in-out infinite;
}

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

@media (max-width: 640px) {
    .platform-roadmap {
        gap: 12px;
    }

    .platform-item {
        font-size: 11px;
    }
}

/* ================================
   Bridge Section (problem statement)
   ================================ */

.bridge-section {
    padding: 48px 0;
    text-align: center;
    background: var(--bg-dark);
    border-top: 4px solid #FFD700;
}

.bridge-text {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ================================
   How It Works (spec sheet rows)
   ================================ */

.steps-section {
    padding: 48px 0;
}

.step-row {
    display: grid;
    grid-template-columns: 40px 1fr 1.2fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

.step-row:first-child {
    border-top: 1px solid var(--border);
}

.step-num {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.step-action {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.step-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ================================
   Animated Demo
   ================================ */

.demo-section {
    padding: 48px 0;
    overflow: visible;
}

/* ===== MacBook Pro Frame ===== */
.demo-macbook-wrapper {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.demo-macbook {
    position: relative;
    width: 740px;
    height: 434px;
    margin: 0 auto;
    transform-origin: top center;
}

@media (max-width: 800px) {
    .demo-macbook { transform: scale(0.85); margin-bottom: -65px; }
}
@media (max-width: 640px) {
    .demo-macbook { transform: scale(0.6); margin-bottom: -174px; }
}
@media (max-width: 440px) {
    .demo-macbook { transform: scale(0.44); margin-bottom: -243px; }
}

.demo-device-frame {
    background: #0d0d0d;
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #c9cacc;
    height: 418px;
    margin: 0 auto;
    padding: 9px 9px 23px 9px;
    position: relative;
    width: 618px;
}

.demo-device-frame::after {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    border-radius: 0 0 20px 20px;
    bottom: 2px;
    content: "";
    height: 24px;
    left: 2px;
    position: absolute;
    width: 614px;
}

.demo-device-notch {
    background: #0d0d0d;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 12px;
    left: 50%;
    margin-left: -32px;
    position: absolute;
    top: 11px;
    width: 64px;
    z-index: 2;
}

.demo-device-notch::after,
.demo-device-notch::before {
    content: "";
    height: 4px;
    position: absolute;
    top: 0;
    width: 4px;
}

.demo-device-notch::after {
    background: radial-gradient(circle at bottom left, transparent 0, transparent 75%, #0d0d0d 75%, #0d0d0d 100%);
    left: -4px;
}

.demo-device-notch::before {
    background: radial-gradient(circle at bottom right, transparent 0, transparent 75%, #0d0d0d 75%, #0d0d0d 100%);
    right: -4px;
}

.demo-device-screen {
    border: 2px solid #111;
    border-radius: 10px 10px 0 0;
    height: 375px;
    width: 600px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(74, 143, 231, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%),
        #E8E6F0;
}

.demo-device-body {
    background: radial-gradient(circle at center, #e2e3e4 85%, #c9cacc 100%);
    border: solid #969799;
    border-radius: 2px 2px 12px 12px;
    border-width: 1px 2px 0 2px;
    box-shadow: inset 0 -2px 8px 0 #8a8b8d;
    height: 24px;
    margin-top: -10px;
    position: relative;
    width: 740px;
    z-index: 9;
}

.demo-device-body::after {
    background: #c3c4c5;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0 0 4px 2px #b5b6b8;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -60px;
    position: absolute;
    top: 0;
    width: 120px;
}

.demo-device-body::before {
    background: transparent;
    border-radius: 0 0 3px 3px;
    bottom: -2px;
    box-shadow: -300px 0 #1a1a1a, 300px 0 #1a1a1a;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    width: 40px;
}

/* ===== Screen Content (light mode) ===== */
.demo-menubar {
    display: flex;
    align-items: center;
    padding: 2px 12px;
    height: 22px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.demo-menubar-app { font-weight: 600; }
.demo-menubar-item { opacity: 0.55; }
.demo-menubar-right { margin-left: auto; opacity: 0.55; }

.demo-window {
    margin: 12px 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #FFFFFF;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
}

.demo-toolbar {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #F6F6F6;
    border-bottom: 1px solid #E0E0E0;
}

.demo-dots {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-dot-red { background: #FF5F57; }
.demo-dot-yellow { background: #FEBC2E; }
.demo-dot-green { background: #28C840; }

.demo-doc-title {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
}

.demo-editor {
    background: #FFFFFF;
    padding: 16px 20px;
    min-height: 200px;
    position: relative;
}

.demo-existing {
    font-family: var(--font-main);
    font-size: 13px;
    color: rgba(0, 0, 0, 0.35);
    line-height: 1.8;
    margin-bottom: 6px;
}

.demo-line {
    font-family: var(--font-main);
    font-size: 13px;
    color: #0A0A0A;
    line-height: 1.8;
    min-height: 1.8em;
}

.demo-cursor {
    display: inline-block;
    width: 2px;
    height: 15px;
    background: #4F46E5;
    vertical-align: text-bottom;
    animation: demo-blink 1s step-end infinite;
}

@keyframes demo-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Listening Pill (light, glass) ===== */
.demo-pill {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    width: 220px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    box-shadow: inset 0 0 0 9999px rgba(77, 77, 217, 0.04), 0 2px 12px rgba(0, 0, 0, 0.1), 0 0 0 0.5px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.demo-pill.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.demo-pill-indicator {
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-pill-dots {
    display: flex;
    gap: 4px;
}

.demo-pill-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #818CF8;
    opacity: 0.3;
    transform: scale(0.8);
}

.demo-pill.active .demo-pill-dots span {
    animation: demo-dot-pulse 1.4s ease-in-out infinite;
}

.demo-pill.active .demo-pill-dots span:nth-child(1) { animation-delay: 0s; }
.demo-pill.active .demo-pill-dots span:nth-child(2) { animation-delay: 0.12s; }
.demo-pill.active .demo-pill-dots span:nth-child(3) { animation-delay: 0.24s; }
.demo-pill.active .demo-pill-dots span:nth-child(4) { animation-delay: 0.36s; }
.demo-pill.active .demo-pill-dots span:nth-child(5) { animation-delay: 0.48s; }

@keyframes demo-dot-pulse {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.15); }
}

.demo-pill-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Audio bars (interactive recording) */
.demo-audio-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 26px;
}

.demo-audio-bar {
    width: 5px;
    border-radius: 2.5px;
    background: linear-gradient(to bottom, #4D4DD9, #4740C7);
    min-height: 8px;
    transition: height 0.06s ease-out;
}

.demo-audio-bar.active {
    box-shadow: 0 0 5px rgba(77, 77, 217, 0.5);
}

.demo-audio-bar.idle {
    background: rgba(77, 77, 217, 0.5);
}

/* Pulsing dots (transcribing) */
.demo-pulsing-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 20px;
}

.demo-pulsing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4D4DD9;
    box-shadow: 0 0 4px rgba(77, 77, 217, 0.4);
    animation: demo-pulsing 0.6s ease-in-out infinite alternate;
}

.demo-pulsing-dot:nth-child(2) { animation-delay: 0.15s; }
.demo-pulsing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes demo-pulsing {
    0% { transform: scale(0.5); opacity: 0.35; }
    100% { transform: scale(1.0); opacity: 1.0; }
}

/* Key indicator */
.demo-key {
    position: absolute;
    bottom: 12px;
    right: 14px;
}

.demo-keycap {
    display: inline-block;
    padding: 4px 10px;
    background: #F0F0F0;
    color: rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 0 0 #D0D0D0;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.demo-key.pressed .demo-keycap {
    transform: translateY(2px);
    box-shadow: 0 0 0 0 #D0D0D0;
    background: #4F46E5;
    color: #FFFFFF;
}

/* ===== Interactive CTA ===== */
.demo-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(232, 230, 240, 0.98) 0%, rgba(232, 230, 240, 0.6) 60%, transparent 100%);
    z-index: 20;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.demo-cta-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.demo-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.demo-cta-hint {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
    animation: demo-hint-fade 2s ease-in-out infinite alternate;
}

@keyframes demo-hint-fade {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.demo-disclosure {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #aaa;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.demo-disclosure a {
    color: rgba(79, 70, 229, 0.6);
    text-decoration: none;
}

.demo-disclosure a:hover {
    color: rgba(79, 70, 229, 0.9);
    text-decoration: underline;
}

.demo-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4F46E5, #4A8FE7);
    border: none;
    border-radius: 9999px;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.2px;
    position: relative;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: demo-cta-bounce 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-cta-btn:hover {
    background: linear-gradient(135deg, #5B54F0, #5A9BF2);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(79, 70, 229, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

@keyframes demo-cta-bounce {
    0%, 100% { transform: translateY(0); }
    15% { transform: translateY(-6px); }
    30% { transform: translateY(0); }
    45% { transform: translateY(-3px); }
    60% { transform: translateY(0); }
}

.demo-cta-btn::before,
.demo-cta-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(79, 70, 229, 0.5);
    animation: demo-cta-ripple 2.5s ease-out infinite;
    pointer-events: none;
}

.demo-cta-btn::after { animation-delay: 1.25s; }

@keyframes demo-cta-ripple {
    0% { inset: -4px; opacity: 0.6; }
    100% { inset: -20px; opacity: 0; }
}

.demo-cta-mobile {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

.demo-cta-mobile .demo-cta-btn {
    padding: 16px 36px;
    font-size: 17px;
}

@media (max-width: 640px) {
    .demo-cta-overlay { display: none; }
    .demo-cta-mobile { display: flex; }
}

.demo-cta-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== Click hint + Guide toast ===== */
.demo-click-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.demo-click-hint.visible {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.demo-click-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: demo-ring-pulse 2s ease-in-out infinite;
}

.demo-click-ring svg {
    width: 28px;
    height: 28px;
    fill: rgba(79, 70, 229, 0.8);
}

@keyframes demo-ring-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.3); transform: scale(1); }
    50% { box-shadow: 0 0 0 12px rgba(79, 70, 229, 0); transform: scale(1.05); }
}

.demo-click-text {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 0.3px;
}

.demo-guide-toast {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: #4F46E5;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
}

.demo-guide-toast.visible { opacity: 1; }

.demo-guide-toast::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #4F46E5;
}

/* Error */
.demo-error {
    text-align: center;
    color: #FF4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

/* ================================
   Features (spec sheet)
   ================================ */

.features-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.feature-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

.feature-row:first-child {
    border-top: 1px solid var(--border);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.feature-value {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   Flag Strip (language row)
   ================================ */

.flag-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1;
}

.flag-strip .flag-eu {
    font-size: 24px;
    margin-right: 4px;
}

/* ================================
   App Icon Strip (works-in row)
   ================================ */

.app-icon-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.15s;
}

.app-icon:hover {
    opacity: 1;
}

.app-icon svg {
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag-strip .flag-more {
    font-family: var(--font-main);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-left: 2px;
}

/* ================================
   Persona Section
   ================================ */

.persona-section {
    padding: 48px 0;
    background: linear-gradient(160deg, #0a1628 0%, #0d2347 40%, #122d5c 100%);
    text-align: center;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    text-align: left;
}

.persona-item {
    padding: 0;
    border: none;
    background: none;
}

.persona-item::before {
    display: none;
}

/* ================================
   Comparison Table
   ================================ */

.comparison-section {
    padding: 64px 0;
    background: #F8F8F8;
}

.comparison-section .section-label {
    margin-bottom: 24px;
}

.comparison-table {
    max-width: 560px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.comparison-row:hover {
    background: #F5F3FF;
}

.comparison-cell {
    font-size: 14px;
    color: var(--text-secondary);
}

.comparison-feature {
    font-weight: 400;
}

.comparison-header .comparison-us,
.comparison-header .comparison-them {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.comparison-header .comparison-us {
    color: var(--accent);
}

.comparison-header .comparison-them {
    color: var(--text);
}

.comparison-us {
    text-align: center;
    color: #22C55E;
    font-weight: 700;
}

.comparison-them {
    text-align: center;
    color: #EF4444;
    font-weight: 700;
}

.comparison-them.amber {
    color: #F59E0B;
}

.comparison-them.green {
    color: #22C55E;
}

/* 4-column comparison table (homepage) */
.comparison-table-4col {
    max-width: 720px;
}

.comparison-table-4col .comparison-header,
.comparison-table-4col .comparison-row {
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
}

.comparison-table-4col .comparison-cell {
    font-size: 13px;
}

.comparison-table-4col .comparison-us,
.comparison-table-4col .comparison-them {
    font-size: 12px;
}

.comparison-links {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.comparison-links a {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.comparison-links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .comparison-table-4col .comparison-header,
    .comparison-table-4col .comparison-row {
        grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 0.8fr;
    }

    .comparison-table-4col .comparison-cell {
        font-size: 11px;
    }

    .comparison-table-4col .comparison-header .comparison-us,
    .comparison-table-4col .comparison-header .comparison-them {
        font-size: 10px;
    }

    .comparison-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ================================
   Pricing Anchor
   ================================ */

.pricing-anchor {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 32px;
    margin-top: 4px;
}

/* ================================
   Privacy Bullets (legacy — unused)
   ================================ */

/* ================================
   Testimonials
   ================================ */

.testimonials-section {
    padding: 64px 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.persona-section .section-label {
    color: #FFD700;
    text-align: center;
    letter-spacing: 0.15em;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

blockquote.testimonial-card {
    margin: 0;
    quotes: none;
}

.testimonial-card {
    padding: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
    margin-right: 2px;
}

.testimonial-text::after {
    content: '\201D';
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
    margin-left: 2px;
}

.testimonial-author {
    display: block;
    font-size: 12px;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   Privacy Promise — replaces testimonials until real ones arrive
   ================================ */

.privacy-promise-section {
    padding: 72px 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    text-align: center;
}

.privacy-promise-headline {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.privacy-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.privacy-promise-item {
    padding: 28px 16px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.privacy-promise-icon {
    color: var(--accent);
}

.privacy-promise-item p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-promise-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 16px;
}

.privacy-promise-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-promise-link:hover {
    text-decoration: underline;
}

/* ================================
   Privacy Strip — "Bundesbank meets Apple meets Linear"
   Split layout, feature cards, deep navy, premium feel
   ================================ */

.privacy-strip {
    padding: 80px 0;
    background: #0B1220;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture */
.privacy-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Subtle radial glow behind headline */
.privacy-strip::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-strip .container {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

/* Split layout */
.privacy-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

/* Left column — headline + text */
.privacy-left {
    padding-top: 8px;
}

.privacy-headline {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.privacy-headline em {
    font-style: normal;
    color: #60A5FA;
}

.privacy-subline {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.privacy-detail {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

/* Right column — feature card grid */
.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.privacy-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.privacy-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.privacy-card-icon {
    width: 20px;
    height: 20px;
    color: #3B82F6;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.privacy-card-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 4px;
    line-height: 1.3;
}

.privacy-card-desc {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Trust badges row */
.privacy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    grid-column: 1 / -1;
}

.privacy-badge-pill {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
}

.privacy-origin {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    letter-spacing: 0.03em;
}

/* ================================
   Pricing
   ================================ */

.pricing-section {
    padding: 64px 0;
    text-align: center;
    scroll-margin-top: 120px;
}

.pricing-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pricing-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.pricing-buttons .btn-primary {
    flex: 1;
    max-width: 240px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
    .pricing-buttons .btn-primary {
        max-width: 100%;
        width: 100%;
    }
}

.pricing-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.pricing-amount::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #FFD700;
    margin: 12px auto 0;
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.pricing-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-ios-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}
.pricing-ios-note a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pricing-ios-note a:hover {
    color: var(--text);
}


/* ================================
   FAQ
   ================================ */

.faq-section {
    padding: 48px 0 64px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 640px;
}

.faq-item {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Footer
   ================================ */

footer {
    padding: 64px 0 32px;
    background: var(--bg-dark);
    border-top: none;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-on-dark);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
}

.footer-logo img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.footer-berlin {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-col a {
    font-family: var(--font-main);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ================================
   Fade-in animation
   ================================ */

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 768px) {
    .title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .step-row {
        grid-template-columns: 40px 1fr;
        gap: 4px;
    }

    .step-desc {
        grid-column: 2;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .persona-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .privacy-detail {
        max-width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .privacy-promise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .privacy-promise-headline {
        font-size: 22px;
    }

    .faq-list {
        max-width: 100%;
    }

    footer .container {
        flex-direction: column;
    }

    .nav-logo span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .title {
        font-size: 32px;
    }

    .hero {
        padding: 80px 0 48px;
    }

    .pricing-amount {
        font-size: 44px;
    }

    .btn-primary,
    .btn-primary-inv {
        width: 100%;
    }
}

/* ================================
   Accessibility
   ================================ */

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

    * {
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .demo-pill-dots span,
    .demo-cursor {
        animation: none !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* ================================
   Legal Pages
   ================================ */

.legal-page {
    padding: 96px 0 80px;
}

.legal-page .container {
    max-width: 720px;
}

.legal-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-page .legal-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--text);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-content .todo-placeholder {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 16px;
}

.lang-block { display: none; }
.lang-block.active { display: block; }

/* ================================
   Download / Get Page
   ================================ */

.get-page {
    padding: 120px 0 80px;
    text-align: center;
}

.get-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
    animation: get-bounce 1.5s ease-in-out infinite;
}

@keyframes get-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.get-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.get-fallback {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.get-fallback a {
    color: var(--accent);
    text-decoration: underline;
}

.get-steps {
    max-width: 440px;
    margin: 0 auto 40px;
    text-align: left;
}

.get-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.get-step:first-child {
    border-top: 1px solid var(--border);
}

.get-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.get-step strong {
    font-size: 15px;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.get-step p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.get-info {
    max-width: 440px;
    margin: 0 auto 32px;
    padding: 20px 24px;
    background: #F5F3FF;
    border-left: 3px solid var(--accent);
    text-align: left;
}

.get-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.get-info p + p {
    margin-top: 8px;
}

/* -- Platform picker on download page -- */
.get-platforms {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px auto;
    max-width: 820px;
}

.get-platform-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: var(--bg);
    border: 2px solid var(--border-strong);
    cursor: pointer;
    font-family: var(--font-main);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 4px 4px 0 0 var(--shadow);
}

.get-platform-btn:hover {
    border-color: var(--accent);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 var(--shadow);
}

.get-platform-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 0 var(--shadow);
}

.get-platform-name {
    font-size: 18px;
    font-weight: 700;
}

.get-platform-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.get-platform-ready {
    color: #22C55E;
}

.get-platform-cooking {
    color: #F59E0B;
    animation: pulse-cooking 2s ease-in-out infinite;
}

.get-platform-btn-windows {
    opacity: 0.85;
}

.get-platform-btn-windows:hover {
    opacity: 1;
    border-color: #F59E0B;
}

@media (max-width: 640px) {
    .get-platforms {
        flex-direction: column;
        gap: 16px;
        max-width: 360px;
    }
}

.get-back {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.get-back:hover {
    color: var(--text);
    text-decoration: underline;
}

.success-check {
    animation: none;
    color: #16a34a;
}

/* ================================================================
   NEW PAGE STYLES — Comparison, Blog, Vertical, Shared Components
   Appended 2026-03-27. Same "Paper Typewriter" aesthetic.
   ================================================================ */

/* ================================
   Shared: Breadcrumbs
   ================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-main);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--text);
    text-decoration: underline;
}

.breadcrumb .breadcrumb-sep {
    color: var(--border);
    font-size: 11px;
    user-select: none;
}

.breadcrumb .breadcrumb-current {
    color: var(--text);
    font-weight: 700;
}

/* ================================
   Shared: FAQ Expand/Collapse
   ================================ */

.faq-expandable .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    border: none;
    border-top: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    line-height: 1.4;
    gap: 16px;
}

.faq-expandable .faq-question:hover {
    color: var(--accent);
}

.faq-expandable .faq-question::after {
    content: '+';
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-expandable .faq-question[aria-expanded="true"]::after {
    content: '\2212';
    transform: rotate(0deg);
}

.faq-expandable .faq-answer {
    display: none;
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-expandable .faq-answer.open {
    display: block;
}

/* ================================
   Shared: CTA Banner
   ================================ */

.cta-banner {
    padding: 64px 0;
    background: var(--bg-dark);
    border-top: 4px solid #FFD700;
    text-align: center;
}

.cta-banner-headline {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-banner-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-banner-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
}

/* ================================
   Shared: Generic Comparison Table
   ================================ */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-main);
    font-size: 14px;
}

.compare-table thead th {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-strong);
    text-align: left;
}

.compare-table thead th:first-child {
    color: var(--text-muted);
}

.compare-table thead .compare-col-us {
    color: var(--accent);
    text-align: center;
}

.compare-table thead .compare-col-them {
    color: var(--text);
    text-align: center;
}

.compare-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: top;
}

.compare-table tbody tr:hover {
    background: #F5F3FF;
}

.compare-table .compare-feature-name {
    font-weight: 400;
}

.compare-table .compare-check {
    text-align: center;
    color: #22C55E;
    font-weight: 700;
    font-size: 16px;
}

.compare-table .compare-x {
    text-align: center;
    color: #EF4444;
    font-weight: 700;
    font-size: 16px;
}

.compare-table .compare-amber {
    text-align: center;
    color: #F59E0B;
    font-weight: 700;
    font-size: 16px;
}

.compare-table .compare-text {
    text-align: center;
    font-weight: 600;
}

/* ================================================================
   1. COMPARISON PAGES (.comparison-*)
   ================================================================ */

/* -- Hero -- */
.comparison-hero {
    padding: 96px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-hero-vs {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 2px solid var(--accent);
}

.comparison-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.comparison-hero-sub {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- Side-by-side table section -- */
.comparison-table-section {
    padding: 64px 0;
    background: #F8F8F8;
}

.comparison-table-section .section-label {
    margin-bottom: 24px;
}

.comparison-table-full {
    width: 100%;
    max-width: 640px;
}

.comparison-table-full .comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.comparison-table-full .comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    align-items: center;
}

.comparison-table-full .comparison-row:hover {
    background: #F5F3FF;
}

.comparison-table-full .comparison-feature {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.comparison-table-full .comparison-us {
    text-align: center;
    color: #22C55E;
    font-weight: 700;
    font-size: 14px;
}

.comparison-table-full .comparison-them {
    text-align: center;
    color: #EF4444;
    font-weight: 700;
    font-size: 14px;
}

.comparison-table-full .comparison-them.amber {
    color: #F59E0B;
}

/* -- "Why people switch" pain point cards -- */
.comparison-switch-section {
    padding: 64px 0;
}

.comparison-switch-section .section-label {
    margin-bottom: 32px;
}

.comparison-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-pain-card {
    padding: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.comparison-pain-card-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.comparison-pain-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.comparison-pain-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -- Feature deep-dive -- */
.comparison-deepdive {
    padding: 64px 0;
    background: #F8F8F8;
    border-top: 1px solid var(--border);
}

.comparison-deepdive .section-label {
    margin-bottom: 32px;
}

.comparison-deepdive-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-deepdive-item:first-child {
    border-top: 1px solid var(--border);
}

.comparison-deepdive-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.comparison-deepdive-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.comparison-deepdive-highlight {
    display: inline-block;
    background: #F5F3FF;
    padding: 2px 8px;
    font-weight: 700;
    color: var(--accent);
}

/* ================================================================
   2. BLOG PAGES (.blog-*)
   ================================================================ */

/* -- Blog Index -- */
.blog-index {
    padding: 96px 0 64px;
}

.blog-index-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.blog-index-sub {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.blog-card {
    display: block;
    padding: 28px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.blog-card:hover {
    background: #F5F3FF;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding: 3px 10px;
    border: 1px solid var(--accent);
    background: transparent;
}

.blog-card-date {
    font-family: var(--font-main);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

/* -- Blog Post Page -- */
.blog-post {
    padding: 96px 0 64px;
}

.blog-post-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-strong);
}

.blog-post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding: 4px 12px;
    border: 1px solid var(--accent);
    margin-bottom: 16px;
}

.blog-post-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-main);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-post-meta .blog-meta-sep {
    color: var(--border);
}

/* -- Blog Post Content -- */
.blog-post-content {
    max-width: 640px;
}

.blog-post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.blog-post-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.blog-post-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-content a:hover {
    color: var(--accent-blue);
}

.blog-post-content ul,
.blog-post-content ol {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-post-content li {
    margin-bottom: 6px;
}

.blog-post-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: #F5F3FF;
    font-size: 15px;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
}

.blog-post-content blockquote p {
    color: var(--text);
    margin-bottom: 0;
}

.blog-post-content pre {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--bg-dark);
    color: #E5E5E5;
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.7;
    overflow-x: auto;
    border: 1px solid var(--border-strong);
}

.blog-post-content code {
    font-family: var(--font-main);
    font-size: 13px;
    background: #F0EEF6;
    padding: 2px 6px;
    color: var(--accent);
}

.blog-post-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
    margin: 24px 0;
}

.blog-post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* -- Blog Layout with Sidebar -- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 48px;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: 80px;
    padding-top: 48px;
}

.blog-sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-list li {
    margin-bottom: 12px;
}

.blog-sidebar-list a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.5;
    display: block;
    transition: color 0.15s;
}

.blog-sidebar-list a:hover {
    color: var(--accent);
}

.blog-sidebar-date {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* ================================================================
   3. VERTICAL / LANDING PAGES (.vertical-*)
   ================================================================ */

/* -- Audience-specific hero -- */
.vertical-hero {
    padding: 96px 0 64px;
    text-align: center;
}

.vertical-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--bg-dark);
    border: 2px solid #FFD700;
}

.vertical-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.vertical-hero-sub {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* -- App icon grid -- */
.vertical-apps {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.vertical-apps .section-label {
    margin-bottom: 24px;
}

.vertical-app-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.vertical-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
}

.vertical-app-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--bg-raised);
    box-shadow: 2px 2px 0 0 var(--shadow);
}

.vertical-app-icon img,
.vertical-app-icon svg {
    width: 32px;
    height: 32px;
}

.vertical-app-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* -- Problem / Solution cards -- */
.vertical-problems {
    padding: 64px 0;
    background: #F8F8F8;
}

.vertical-problems .section-label {
    margin-bottom: 32px;
}

.vertical-ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vertical-ps-card {
    padding: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
}

.vertical-ps-card.is-problem {
    border-top: 3px solid #EF4444;
}

.vertical-ps-card.is-solution {
    border-top: 3px solid #22C55E;
}

.vertical-ps-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.vertical-ps-card.is-problem .vertical-ps-label {
    color: #EF4444;
}

.vertical-ps-card.is-solution .vertical-ps-label {
    color: #22C55E;
}

.vertical-ps-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.vertical-ps-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -- Testimonial block -- */
.vertical-testimonial {
    padding: 64px 0;
    background: var(--bg-dark);
    border-top: 4px solid #FFD700;
    text-align: center;
}

.vertical-testimonial-quote {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 20px;
}

.vertical-testimonial-quote::before {
    content: '\201C';
    font-size: 28px;
    color: #FFD700;
    font-weight: 700;
    margin-right: 4px;
    font-style: normal;
}

.vertical-testimonial-quote::after {
    content: '\201D';
    font-size: 28px;
    color: #FFD700;
    font-weight: 700;
    margin-left: 4px;
    font-style: normal;
}

.vertical-testimonial-author {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================================================
   RESPONSIVE — New page styles
   ================================================================ */

@media (max-width: 768px) {
    /* Blog sidebar collapses below content */
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-sidebar {
        position: static;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }

    /* Comparison pain cards stack */
    .comparison-pain-grid {
        grid-template-columns: 1fr;
    }

    /* Vertical problem/solution stack */
    .vertical-ps-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison table scrollable */
    .comparison-table-full {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 480px;
    }
}

@media (max-width: 480px) {
    .comparison-hero-title {
        font-size: 28px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-index-title {
        font-size: 28px;
    }

    .vertical-hero-title {
        font-size: 28px;
    }

    .cta-banner-headline {
        font-size: 24px;
    }

    .blog-card:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .vertical-app-grid {
        gap: 12px;
    }

    .vertical-app-item {
        width: 64px;
    }

    .vertical-app-icon {
        width: 40px;
        height: 40px;
    }

    .vertical-app-icon img,
    .vertical-app-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ================================
   Accessibility — New components
   ================================ */

@media (prefers-reduced-motion: reduce) {
    .faq-expandable .faq-question::after {
        transition: none;
    }
}

/* ================================================================
   COMPARISON PAGES — Shared components
   (breadcrumbs, HTML tables, FAQ, CTA)
   ================================================================ */

/* -- Breadcrumb -- */
.comparison-breadcrumb {
    padding: 72px 0 0;
}

.comparison-breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.comparison-breadcrumb-list li {
    display: flex;
    align-items: center;
}

.comparison-breadcrumb-list li::after {
    content: ">";
    margin: 0 8px;
    color: var(--border);
}

.comparison-breadcrumb-list li:last-child::after {
    display: none;
}

.comparison-breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
}

.comparison-breadcrumb-list a:hover {
    color: var(--accent);
}

/* -- Comparison subtitle (below h1) -- */
.comparison-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- HTML table variant for comparison pages -- */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-strong);
    color: var(--text);
}

.comparison-table thead th.comparison-highlight {
    color: var(--accent);
}

.comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
}

.comparison-table tbody td.comparison-highlight {
    color: var(--text);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #F5F3FF;
}

/* -- "Why choose" / pain points (list variant) -- */
.comparison-pain-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-pain-point {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-pain-point:first-child {
    border-top: 1px solid var(--border);
}

.comparison-pain-point h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.comparison-pain-point p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* -- Comparison FAQ -- */
.comparison-faq-section {
    padding: 64px 0;
    background: #F8F8F8;
}

.comparison-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.comparison-faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.comparison-faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* -- Comparison CTA -- */
/* Comparison Hub Grid */
.comparison-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.comparison-hub-card {
    display: block;
    padding: 28px 24px;
    border: 2px solid var(--border);
    background: var(--bg-raised);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comparison-hub-card:hover {
    border-color: var(--accent);
    box-shadow: 4px 4px 0 0 var(--shadow);
}

.comparison-hub-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.comparison-hub-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 600px) {
    .comparison-hub-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-cta-section {
    padding: 64px 0;
    text-align: center;
    border-top: 2px solid var(--border-strong);
}

.comparison-cta-section h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
}

.comparison-cta-section p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #4F46E5 0%, #4A8FE7 100%);
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 5px 5px 0 0 var(--shadow);
    transform: translate(0, 0);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.cta-btn:hover {
    box-shadow: 3px 3px 0 0 var(--shadow);
    transform: translate(2px, 2px);
}

.cta-btn:active {
    box-shadow: 0 0 0 0 var(--shadow);
    transform: translate(5px, 5px);
}

/* -- Platform icons in CTA buttons -- */
.apple-icon,
.windows-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

/* -- Platform detection: Windows-first when .is-windows on body -- */
.is-windows .apple-icon { display: none; }
.is-windows .windows-icon { order: -1; }
.is-windows .demo-device-notch { display: none; }
.is-windows .demo-dot-red,
.is-windows .demo-dot-yellow,
.is-windows .demo-dot-green { display: none; }
.is-windows .demo-win-controls { display: flex; }
.demo-win-controls { display: none; gap: 8px; margin-left: auto; }
.demo-win-ctrl { width: 12px; height: 12px; background: rgba(255,255,255,0.3); }

/* -- Windows landing page hero icon -- */
.windows-hero-icon {
    margin-bottom: 24px;
    color: var(--accent);
}

/* -- App Store badge (iOS landing hero) -- */
.app-store-badge {
    display: inline-block;
    margin-top: 28px;
    line-height: 0;
}
.app-store-badge svg {
    display: block;
}

/* -- iOS screenshot frame -- */
.ios-screenshot-frame {
    margin: 32px auto 0;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}
.ios-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 480px) {
    .ios-screenshot-frame { max-width: 320px; border-radius: 16px; }
}

/* -- Signup form (pre-launch email collection) -- */
.signup-form {
    max-width: 480px;
    margin: 0 auto 16px;
}

.signup-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.signup-form input[type="email"],
.signup-form input[type="text"]:not([style*="display:none"]) {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-main);
    font-size: 15px;
    border: 2px solid var(--border-strong);
    border-radius: 0;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s ease;
}

.signup-form input:focus {
    border-color: #4F46E5;
}

.signup-form .cta-btn {
    width: 100%;
    margin-top: 4px;
}

.signup-status {
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 8px;
}

.signup-status:empty {
    display: none;
}

.signup-privacy {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* -- Comparison features (used in wispr-flow page) -- */
.comparison-features-section {
    padding: 64px 0;
    background: #F8F8F8;
    border-top: 1px solid var(--border);
}

.comparison-features-section .comparison-feature {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-features-section .comparison-feature:first-child {
    border-top: 1px solid var(--border);
}

.comparison-features-section .comparison-feature h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.comparison-features-section .comparison-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* -- Comparison hero subtitle -- */
.comparison-hero-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* -- Comparison section title (reusable h2) -- */
.comparison-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* -- "Why people switch" reasons grid -- */
.comparison-reasons {
    padding: 64px 0;
}

.comparison-reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-reason {
    padding: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.comparison-reason h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.comparison-reason p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* -- Feature deep-dives (standalone section) -- */
.comparison-features {
    padding: 64px 0;
    background: #F8F8F8;
    border-top: 1px solid var(--border);
}

.comparison-features .comparison-feature {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-features .comparison-feature:first-child {
    border-top: 1px solid var(--border);
}

.comparison-features .comparison-feature h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.comparison-features .comparison-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* -- Comparison FAQ (standalone section) -- */
.comparison-faq {
    padding: 64px 0;
    background: #F8F8F8;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .comparison-reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   BLOG INDEX — Filters
   ================================================================ */

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.blog-filter-btn {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    padding: 6px 14px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.blog-filter-btn:hover {
    color: var(--text);
    border-color: var(--text);
}

.blog-filter-btn.active {
    color: var(--accent);
    border-color: var(--accent);
    font-weight: 700;
}

@media (max-width: 600px) {
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .blog-filters {
        gap: 6px;
    }

    .blog-filter-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ================================
   Speed Comparison (homepage)
   ================================ */

.speed-section {
    padding: 48px 0 32px;
}

.speed-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
}

.speed-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.speed-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.speed-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.speed-value {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.speed-value span {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speed-bar {
    height: 20px;
}

.speed-bar-typing {
    width: 30%;
    background: var(--border);
}

.speed-bar-speakup {
    width: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #4A8FE7 100%);
}

.speed-caption {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Persona Cards (upgraded)
   ================================ */

.persona-title {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
}

.persona-desc {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .speed-item {
        gap: 12px;
    }

    .speed-label {
        width: 60px;
        font-size: 12px;
    }

    .speed-value {
        font-size: 16px;
        min-width: 65px;
    }
}

/* ================================
   Before/After Section (homepage)
   ================================ */

.before-after-section {
    padding: 48px 0;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.before-after-card {
    padding: 20px;
    font-family: var(--font-main);
}

.before-card {
    background: #FFF5F5;
    border-left: 3px solid #EF4444;
}

.after-card {
    background: #F0FDF4;
    border-left: 3px solid #22C55E;
}

.before-after-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.before-after-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.before-card .before-after-text {
    color: var(--text-secondary);
}

.before-after-caption {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Privacy Architecture Diagram
   ================================ */

.privacy-arch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.privacy-arch-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-arch-highlight {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.15);
}

.privacy-arch-icon {
    font-size: 24px;
    line-height: 1;
}

.privacy-arch-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.privacy-arch-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.privacy-arch-blocked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 20px;
    opacity: 0.35;
    position: relative;
}

.privacy-arch-blocked .privacy-arch-label {
    text-decoration: line-through;
}

.privacy-arch-x {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #EF4444;
    opacity: 1;
}

.privacy-promises {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 12px 32px;
    margin: 32px 0;
    list-style: none;
    padding: 0;
}

.privacy-promises li {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    text-align: center;
}

@media (max-width: 480px) {
    .privacy-promises {
        grid-template-columns: repeat(2, auto);
        gap: 10px 24px;
    }
}

@media (max-width: 640px) {
    .privacy-arch {
        gap: 8px;
    }
    .privacy-arch-step {
        padding: 12px 14px;
    }
    .privacy-arch-icon {
        font-size: 20px;
    }
}

/* ================================================================
   Release announcement banner
   ================================================================ */
.release-banner {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 10px 40px 10px 16px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    line-height: 1.4;
    position: fixed;
    top: var(--nav-height, 56px);
    left: 0;
    right: 0;
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.release-banner.visible {
    transform: translateY(0);
    opacity: 1;
}
.release-banner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.release-banner a:hover {
    opacity: 0.85;
}
.release-banner-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.8;
}
.release-banner-close:hover {
    opacity: 1;
}
@media (max-width: 640px) {
    .release-banner {
        font-size: 0.75rem;
        padding: 8px 36px 8px 12px;
    }
}
