/* ============================================
   FLIPZI - SHARED STYLES
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
    --bg: #F8F6F3;
    --bg-white: #FFFFFF;
    --bg-alt: #F0EDE9;
    --bg-hero: #FAFAF8;

    --text-heading: #1A1A1A;
    --text-body: #5C5C5C;
    --text-tertiary: #9B95A0;
    --text-muted: #B8B3BC;

    --accent: #7C5CFF;
    --accent-dark: #6B4EF0;
    --accent-light: #F0ECFF;
    --accent-glow: rgba(124, 92, 255, 0.12);
    --accent-teal: #36EBC1;
    --accent-gradient: linear-gradient(135deg, #7C5CFF 0%, #42D5FF 100%);

    --positive: #00A878;
    --positive-bg: #E8F5EE;
    --negative: #E63946;
    --negative-bg: #FDE8EA;

    --border: #E8E5E1;
    --border-light: #F0EDE9;

    --cat-pokemon: #FF6B6B;
    --cat-onepiece: #3B82F6;
    --cat-yugioh: #7C3AED;
    --cat-mtg: #D4A843;
    --cat-lorcana: #EC4899;

    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-elevated: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-phone: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);

    --max-width: 1140px;
    --nav-height: 64px;
    --transition: 0.2s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--accent); color: #fff; padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; z-index: 1000; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mono { font-family: var(--font-mono); }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.9375rem;
    border-radius: var(--radius-md); padding: 0.8rem 1.5rem;
    transition: all var(--transition); white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-primary {
    background: var(--accent-gradient); color: #fff;
    box-shadow: 0 4px 16px rgba(124, 92, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124, 92, 255, 0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
    background: var(--bg-white); color: var(--text-heading);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; border-radius: var(--radius-pill); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height); z-index: 100;
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem;
    color: var(--text-heading); letter-spacing: -0.02em; text-decoration: none;
}
.navbar-logo:hover { text-decoration: none; }
.navbar-logo img { width: 32px; height: 32px; border-radius: 8px; }
.navbar-links { display: flex; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-tertiary); transition: color var(--transition); }
.navbar-links a:hover { color: var(--text-heading); }
.navbar-links a.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-body); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    display: none; position: fixed; inset: 0; top: var(--nav-height);
    background: rgba(248, 246, 243, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: flex-start;
    padding: 3rem 2rem; gap: 1.5rem; z-index: 99;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.125rem; font-weight: 500; color: var(--text-body); }
.mobile-menu a:hover { color: var(--accent); }
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .nav-cta-desktop { display: none; }
    .hamburger { display: flex; }
}

/* ============================================
   PAGE HEADER (policy, changelog, roadmap)
   ============================================ */
.page-header {
    padding: calc(var(--nav-height) + 2rem) 0 1.5rem;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1rem; color: var(--text-body);
    max-width: 480px; margin: 0 auto; line-height: 1.6;
}
.policy-meta {
    font-size: 0.8125rem; color: var(--text-tertiary);
    margin-top: 0.25rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: calc(var(--nav-height) + 4rem) 0 3rem;
    position: relative;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
.hero-content { max-width: 520px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 0.875rem 0.375rem 0.625rem;
    border: 1px solid var(--border); border-radius: var(--radius-pill);
    font-size: 0.8125rem; font-weight: 500; color: var(--text-tertiary);
    margin-bottom: 1.25rem; background: var(--bg-white);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.035em; line-height: 1.1;
    margin-bottom: 1.125rem;
}
.hero-tagline {
    font-family: var(--font-heading); font-size: 1.25rem;
    font-weight: 700; color: var(--accent);
    margin-bottom: 0.75rem;
}
.hero-sub {
    font-size: 1.0625rem; color: var(--text-body);
    line-height: 1.65; margin-bottom: 1.75rem; max-width: 440px;
}
.hero-actions { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.75rem; }
.hero-cta-row { display: flex; gap: 0.625rem; align-items: center; flex-wrap: wrap; }
.store-badges { display: flex; gap: 0.625rem; align-items: center; }
.store-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.875rem; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-body); transition: all var(--transition); line-height: 1.2;
}
.store-badge:hover { border-color: var(--text-tertiary); }
.store-badge svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-heading); }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-label { font-size: 0.625rem; color: var(--text-tertiary); font-weight: 400; line-height: 1; }
.store-badge-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-heading); line-height: 1.3; }

.hero-proof { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 500; color: var(--text-tertiary); }
.proof-icon { display: flex; align-items: center; color: var(--positive); }
.proof-icon svg { width: 15px; height: 15px; }
.proof-divider { width: 1px; height: 14px; background: var(--border); }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-frame {
    width: 280px;
    background: #000;
    border-radius: 36px;
    padding: 8px;
    box-shadow: var(--shadow-phone);
    position: relative;
    overflow: hidden;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.phone-frame { animation: phone-float 4s ease-in-out infinite; }

.phone-screenshot {
    width: 100%; height: auto;
    border-radius: 28px;
    display: block;
}

@media (max-width: 768px) {
    .hero { padding: calc(var(--nav-height) + 2rem) 0 1.5rem; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { align-items: center; }
    .hero-proof { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .store-badges { justify-content: center; }
    .phone-frame { width: 240px; animation: none; }
    .hero-visual { margin-top: 1rem; }
}

/* ============================================
   STATS RIBBON
   ============================================ */
.stats-ribbon {
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.stats-ribbon-inner {
    display: flex; justify-content: center; align-items: center;
    gap: 2.5rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800;
    color: var(--text-heading); letter-spacing: -0.02em; line-height: 1;
}
.stat-label { font-size: 0.8125rem; color: var(--text-tertiary); font-weight: 500; margin-top: 0.25rem; }
.stat-sep { width: 1px; height: 32px; background: var(--border); }

@media (max-width: 640px) {
    .stats-ribbon-inner { gap: 1.5rem; }
    .stat-sep { display: none; }
    .stat-number { font-size: 1.25rem; }
}

/* ============================================
   DATA TRUST
   ============================================ */
.data-trust {
    padding: 4rem 0 3rem;
}
.data-trust-header { text-align: center; margin-bottom: 2.5rem; }
.data-trust-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem;
}
.data-trust-header p {
    font-size: 1.0625rem; color: var(--text-body);
    max-width: 560px; margin: 0 auto; line-height: 1.6;
}
.data-trust-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.data-trust-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
    text-align: center; transition: all var(--transition);
}
.data-trust-card:hover {
    box-shadow: var(--shadow-elevated); border-color: transparent; transform: translateY(-2px);
}
.data-trust-name {
    font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
    margin-bottom: 0.25rem; letter-spacing: -0.01em;
}
.data-trust-name.cm { color: #1A7DC7; }
.data-trust-name.tcp { color: #E7632B; }
.data-trust-name.eb { color: #E53238; }
.data-trust-region {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.75rem; font-weight: 600; color: var(--bg-white);
    padding: 0.25rem 0.625rem; border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}
.data-trust-region.eu { background: #1A7DC7; }
.data-trust-region.us { background: #E7632B; }
.data-trust-region.global { background: #E53238; }
.data-trust-desc {
    font-size: 0.875rem; color: var(--text-body); line-height: 1.55;
}
.data-trust-footer {
    text-align: center; margin-top: 1.5rem;
    font-size: 0.8125rem; color: var(--text-tertiary);
}
.data-trust-footer strong { color: var(--text-heading); font-weight: 600; }

@media (max-width: 768px) {
    .data-trust-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   FEATURES
   ============================================ */
.features-section { padding: 4rem 0 3rem; }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem;
}
.features-header p {
    font-size: 1.0625rem; color: var(--text-body);
    max-width: 520px; margin: 0 auto; line-height: 1.6;
}

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
    transition: all var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: transparent;
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-icon.purple { background: var(--accent-light); color: var(--accent); }
.feature-icon.teal { background: rgba(54, 235, 193, 0.12); color: #00A878; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.feature-icon.orange { background: rgba(255, 107, 107, 0.1); color: #E63946; }
.feature-icon.gold { background: rgba(212, 168, 67, 0.1); color: #B8860B; }
.feature-icon.pink { background: rgba(236, 72, 153, 0.1); color: #EC4899; }

.feature-label {
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-tertiary); margin-bottom: 0.375rem;
}
.feature-card h3 {
    font-family: var(--font-heading); font-size: 1.0625rem;
    font-weight: 700; color: var(--text-heading);
    margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.55; }

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   TCG STRIP
   ============================================ */
.tcg-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
}
.tcg-strip-header { text-align: center; margin-bottom: 2rem; }
.tcg-strip-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.tcg-strip-header p { font-size: 0.9375rem; color: var(--text-body); }

.tcg-row {
    display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
    list-style: none; padding: 0; margin: 0;
}
.tcg-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1.125rem; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-pill);
    font-size: 0.875rem; font-weight: 600; color: var(--text-heading);
    transition: all var(--transition);
}
.tcg-pill:hover { border-color: var(--text-tertiary); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.tcg-pill-icon { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; }

.tcg-sources {
    text-align: center; margin-top: 1.25rem;
    font-size: 0.8125rem; color: var(--text-tertiary);
}
.tcg-sources span { font-weight: 600; }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    padding: 3rem 0; border-top: 1px solid var(--border-light);
}
.social-proof-header { text-align: center; margin-bottom: 2rem; }
.social-proof-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.social-proof-header p { font-size: 0.9375rem; color: var(--text-body); }
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.review-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem;
}
.review-stars { color: #F59E0B; font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text {
    font-size: 0.9375rem; color: var(--text-body); line-height: 1.6;
    margin-bottom: 1rem; font-style: italic;
}
.review-author {
    font-size: 0.8125rem; font-weight: 600; color: var(--text-heading);
}
.review-source {
    font-size: 0.75rem; color: var(--text-tertiary); font-weight: 400;
}

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

/* ============================================
   DATA OWNERSHIP BANNER
   ============================================ */
.data-ownership-banner {
    max-width: 720px; margin: 0 auto; padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(54, 235, 193, 0.08), rgba(54, 235, 193, 0.02));
    border: 1.5px solid rgba(54, 235, 193, 0.2); border-radius: var(--radius-lg);
    display: flex; align-items: center; gap: 1.25rem;
}
.data-ownership-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, #36EBC1 0%, #00A878 100%); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.data-ownership-icon svg { width: 22px; height: 22px; color: #fff; }
.data-ownership-text { font-size: 0.875rem; color: var(--text-body); line-height: 1.55; }
.data-ownership-text strong { color: var(--text-heading); }
.data-ownership-banner-wrap { padding: 0 0 1rem; }

@media (max-width: 640px) {
    .data-ownership-banner { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison {
    padding: 4rem 0 3rem; border-top: 1px solid var(--border-light);
}
.comparison-header { text-align: center; margin-bottom: 2.5rem; }
.comparison-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem;
}
.comparison-header p {
    font-size: 1.0625rem; color: var(--text-body);
    max-width: 520px; margin: 0 auto; line-height: 1.6;
}
.comparison-wins {
    display: flex; flex-direction: column; gap: 0.625rem;
    max-width: 520px; margin: 0 auto 2rem;
}
.comparison-win {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.9375rem; color: var(--text-body);
}
.comparison-win svg { width: 18px; height: 18px; color: var(--positive); flex-shrink: 0; margin-top: 2px; }
.comparison-win strong { color: var(--text-heading); font-weight: 700; }
.comparison-table-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: var(--bg-white);
}
.comparison-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.875rem; min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 0.875rem 1.25rem; text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.comparison-table thead th {
    font-family: var(--font-heading); font-weight: 700;
    color: var(--text-heading); font-size: 0.8125rem;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.comparison-table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.comparison-table thead th.highlight {
    background: var(--accent); color: #fff;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td:first-child {
    font-weight: 600; color: var(--text-heading);
}
.comparison-table td.highlight {
    background: var(--accent-light);
}
.cmp-yes { color: var(--positive); font-weight: 700; }
.cmp-no { color: var(--text-muted); }
.cmp-partial { color: var(--text-tertiary); font-size: 0.8125rem; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 4rem 0 3rem; border-top: 1px solid var(--border-light);
}
.pricing-header { text-align: center; margin-bottom: 2.5rem; }
.pricing-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem;
}
.pricing-header p {
    font-size: 1.0625rem; color: var(--text-body);
    max-width: 480px; margin: 0 auto; line-height: 1.6;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; max-width: 720px; margin: 0 auto;
}
.pricing-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--radius-xl); padding: 2rem 1.75rem;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(124, 92, 255, 0.12);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-gradient); color: #fff;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.3rem 1rem; border-radius: var(--radius-pill);
}
.pricing-plan {
    font-family: var(--font-heading); font-size: 1.125rem;
    font-weight: 700; color: var(--text-heading); margin-bottom: 0.5rem;
}
.pricing-price {
    font-family: var(--font-mono); font-size: 2.5rem; font-weight: 800;
    color: var(--text-heading); letter-spacing: -0.03em; line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-tertiary); }
.pricing-desc {
    font-size: 0.8125rem; color: var(--text-tertiary); margin-top: 0.25rem;
    margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light);
}
.pricing-features { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.pricing-feature {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; color: var(--text-body);
}
.pricing-feature svg { width: 18px; height: 18px; color: var(--positive); flex-shrink: 0; margin-top: 1px; }
.pricing-feature strong { color: var(--text-heading); font-weight: 600; }
.pricing-feature-soon { opacity: 0.7; }
.pricing-feature-soon em { font-style: normal; font-size: 0.75rem; color: var(--accent); font-weight: 600; }
.pricing-old-price {
    font-size: 0.9375rem; color: var(--text-tertiary); text-decoration: line-through;
    font-weight: 500; margin-top: 0.25rem;
}
.pricing-saving {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    color: var(--positive); background: var(--positive-bg);
    padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
    margin-left: 0.375rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.pricing-cta { width: 100%; text-align: center; padding: 0.75rem; }
.pricing-roi {
    max-width: 720px; margin: 2rem auto 0; padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.06), rgba(124, 92, 255, 0.02));
    border: 1.5px solid rgba(124, 92, 255, 0.15); border-radius: var(--radius-lg);
    display: flex; align-items: center; gap: 1.25rem;
}
.pricing-roi-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--accent-gradient); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.pricing-roi-icon svg { width: 22px; height: 22px; color: #fff; }
.pricing-roi-text { font-size: 0.875rem; color: var(--text-body); line-height: 1.55; }
.pricing-roi-text strong { color: var(--text-heading); }
.pricing-roi-text .mono { font-family: var(--font-mono); font-weight: 700; color: var(--positive); }

@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .pricing-roi { flex-direction: column; text-align: center; gap: 0.75rem; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 4rem 0 3rem; border-top: 1px solid var(--border-light);
}
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-header h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15;
}
.faq-list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.125rem 0; cursor: pointer;
    font-family: var(--font-heading); font-size: 0.9375rem;
    font-weight: 600; color: var(--text-heading);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.25rem; font-weight: 400;
    color: var(--text-tertiary); transition: transform var(--transition);
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
    padding: 0 0 1.125rem;
    font-size: 0.9rem; color: var(--text-body); line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 4rem 0 3rem; text-align: center;
    border-top: 1px solid var(--border-light);
}
.final-cta h2 {
    font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem;
}
.final-cta > p, .final-cta-content > p {
    font-size: 1.0625rem; color: var(--text-body); margin-bottom: 1.75rem;
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.final-cta-micro { font-size: 0.8125rem; color: var(--text-tertiary); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-white); border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem; margin-bottom: 2rem;
}
.footer-brand-desc { font-size: 0.8125rem; color: var(--text-tertiary); line-height: 1.6; margin-top: 0.75rem; max-width: 240px; }
.footer-heading {
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    color: var(--text-body); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.8125rem; color: var(--text-tertiary); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border-light); padding-top: 1.25rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy, .footer-data-attr { font-size: 0.75rem; color: var(--text-tertiary); }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   POLICY PAGES (privacy, terms, cookies)
   ============================================ */
.policy-layout {
    display: grid; grid-template-columns: 240px 1fr;
    gap: 3rem; max-width: var(--max-width);
    margin: 0 auto; padding: 0 1.5rem 3rem;
}

@media (max-width: 1024px) {
    .policy-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .policy-toc { position: relative !important; height: auto !important; }
}

.policy-toc {
    position: sticky; top: calc(var(--nav-height) + 1.5rem); align-self: start;
    height: fit-content;
}
.toc-title {
    font-family: var(--font-heading); font-size: 0.6875rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-tertiary); margin-bottom: 0.75rem;
}
.toc-list { display: flex; flex-direction: column; gap: 0.375rem; }
.toc-list a {
    font-size: 0.8125rem; color: var(--text-tertiary); transition: color 0.2s;
    padding: 0.2rem 0;
}
.toc-list a:hover { color: var(--accent); text-decoration: none; }

.policy-content h2 {
    font-family: var(--font-heading); font-size: 1.375rem;
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem;
    padding-top: 1rem;
}
.policy-content h2:first-child { margin-top: 0; padding-top: 0; }
.policy-content h3 {
    font-family: var(--font-heading); font-size: 1.0625rem;
    font-weight: 700; color: var(--text-heading);
    margin: 1.5rem 0 0.5rem;
}
.policy-content p { margin-bottom: 0.75rem; line-height: 1.7; }
.policy-content ul, .policy-content ol {
    margin: 0.5rem 0 1rem 1.5rem; list-style: disc;
}
.policy-content ol { list-style: decimal; }
.policy-content li {
    margin-bottom: 0.375rem; line-height: 1.6; font-size: 0.9375rem;
}
.policy-content a { color: var(--accent); }
.policy-content a:hover { text-decoration: underline; }

.highlight-box {
    background: var(--accent-light); border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem; border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1rem 0; font-size: 0.9375rem; line-height: 1.6;
}
.contact-box {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem;
    margin: 1.5rem 0;
}
.contact-box h3 {
    font-size: 1rem; margin-bottom: 0.5rem;
}

/* ============================================
   CHANGELOG
   ============================================ */
.changelog { padding: 0 0 3rem; max-width: 720px; margin: 0 auto; }

.release {
    position: relative; padding-left: 2rem;
    margin-bottom: 2.5rem;
}
.release::before {
    content: ''; position: absolute; left: 5px; top: 8px; bottom: -2rem;
    width: 2px; background: var(--border);
}
.release:last-child::before { display: none; }
.release::after {
    content: ''; position: absolute; left: 0; top: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--bg-white); border: 2.5px solid var(--accent);
}
.release.latest::after {
    background: var(--accent); border-color: var(--accent);
}

.release-header {
    display: flex; align-items: baseline; gap: 0.75rem;
    flex-wrap: wrap; margin-bottom: 0.75rem;
}
.release-version {
    font-family: var(--font-mono); font-size: 1.125rem;
    font-weight: 700; color: var(--text-heading);
}
.release-date {
    font-size: 0.8125rem; color: var(--text-tertiary); font-weight: 500;
}
.release-tag {
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    background: #F0ECFF; color: var(--accent);
}

.release-section { margin-bottom: 1rem; }
.release-section:last-child { margin-bottom: 0; }

.release-section-title {
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.375rem;
}
.release-section-title.new { color: var(--positive); }
.release-section-title.improved { color: #D4A843; }
.release-section-title.fixed { color: var(--negative); }

.release-list {
    list-style: none;
}
.release-list li {
    font-size: 0.875rem; color: var(--text-body);
    padding: 0.2rem 0 0.2rem 1rem; position: relative;
    line-height: 1.5;
}
.release-list li::before {
    content: ''; position: absolute; left: 0; top: 0.55rem;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--border);
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap { padding: 0 0 3rem; max-width: 720px; margin: 0 auto; }

.roadmap-phase { margin-bottom: 2.5rem; }
.phase-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
}
.phase-badge {
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; padding: 0.2rem 0.625rem;
    border-radius: var(--radius-pill);
}
.phase-badge.done { background: var(--positive-bg); color: var(--positive); }
.phase-badge.current { background: var(--accent-light); color: var(--accent); }
.phase-badge.upcoming { background: var(--bg-alt); color: var(--text-tertiary); }

.phase-title {
    font-family: var(--font-heading); font-size: 1.125rem;
    font-weight: 700; color: var(--text-heading);
}

.roadmap-items { display: flex; flex-direction: column; gap: 0.5rem; }
.roadmap-item {
    display: flex; align-items: flex-start; gap: 0.625rem;
    padding: 0.75rem 1rem; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    font-size: 0.875rem; color: var(--text-body);
}
.roadmap-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.roadmap-item svg.done { color: var(--positive); }
.roadmap-item svg.pending { color: var(--text-tertiary); }

/* ============================================
   BLOG INDEX
   ============================================ */
.blog-index { padding: 0 0 4rem; }

.blog-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
    max-width: 820px; margin: 0 auto;
}

.blog-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem 2.25rem;
    transition: all 0.25s ease; position: relative;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.blog-card:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 92, 255, 0.08);
}
.blog-card-meta {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.8125rem; color: var(--text-tertiary); font-weight: 500;
}
.blog-card-category {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.2rem 0.625rem;
    border-radius: var(--radius-pill);
    background: var(--accent-light); color: var(--accent);
}
.blog-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.blog-card h2 {
    font-family: var(--font-heading); font-size: 1.375rem;
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.025em; line-height: 1.25;
}
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a::after {
    content: ''; position: absolute; inset: 0;
}
.blog-card-excerpt {
    font-size: 0.9375rem; color: var(--text-body);
    line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-read {
    font-size: 0.8125rem; font-weight: 600; color: var(--accent);
    display: inline-flex; align-items: center; gap: 0.375rem;
    margin-top: 0.25rem; transition: gap 0.2s ease;
}
.blog-card:hover .blog-card-read { gap: 0.625rem; }
.blog-card-read svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
    .blog-card { padding: 1.5rem; }
    .blog-card h2 { font-size: 1.125rem; }
}

/* ============================================
   BLOG POST
   ============================================ */
.blog-post-header {
    padding: calc(var(--nav-height) + 3rem) 0 0;
    max-width: 720px; margin: 0 auto;
}
.blog-breadcrumb {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: var(--text-tertiary);
    margin-bottom: 1.75rem;
}
.blog-breadcrumb a { color: var(--text-tertiary); transition: color 0.2s; }
.blog-breadcrumb a:hover { color: var(--accent); }
.blog-breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.blog-post-category {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
    background: var(--accent-light); color: var(--accent);
    margin-bottom: 1rem;
}
.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.035em; line-height: 1.15;
    margin-bottom: 1rem;
}
.blog-post-subtitle {
    font-size: 1.125rem; color: var(--text-body);
    line-height: 1.6; margin-bottom: 1.25rem;
    max-width: 600px;
}
.blog-post-meta {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.8125rem; color: var(--text-tertiary);
    padding-bottom: 2rem; border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}
.blog-post-meta-item {
    display: flex; align-items: center; gap: 0.375rem;
}
.blog-post-meta-item svg { width: 14px; height: 14px; opacity: 0.6; }
.blog-post-meta-sep { width: 1px; height: 14px; background: var(--border); }

/* Blog content layout */
.blog-post-layout {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 3rem; max-width: 960px; margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    align-items: start;
}

.blog-toc {
    position: sticky; top: calc(var(--nav-height) + 2rem);
    height: fit-content;
}
.blog-toc-label {
    font-family: var(--font-heading); font-size: 0.6875rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-tertiary);
    margin-bottom: 0.75rem; padding-left: 0.75rem;
}
.blog-toc-list {
    display: flex; flex-direction: column; gap: 0.125rem;
}
.blog-toc-list a {
    font-size: 0.8125rem; color: var(--text-tertiary);
    padding: 0.3rem 0.75rem; border-left: 2px solid transparent;
    transition: all 0.2s ease; line-height: 1.4;
    display: block;
}
.blog-toc-list a:hover {
    color: var(--accent); border-left-color: var(--accent);
}
.blog-toc-list a.active {
    color: var(--accent); border-left-color: var(--accent);
    font-weight: 600;
}

/* Blog article content */
.blog-content {
    max-width: 720px;
}
.blog-content h2 {
    font-family: var(--font-heading); font-size: 1.5rem;
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.025em; line-height: 1.2;
    margin: 2.75rem 0 1rem; padding-top: 0.5rem;
}
.blog-content h2:first-child { margin-top: 0; }
.blog-content h3 {
    font-family: var(--font-heading); font-size: 1.125rem;
    font-weight: 700; color: var(--text-heading);
    letter-spacing: -0.01em; margin: 2rem 0 0.625rem;
}
.blog-content p {
    font-size: 1rem; color: var(--text-body);
    line-height: 1.75; margin-bottom: 1.125rem;
}
.blog-content ul, .blog-content ol {
    margin: 0.75rem 0 1.25rem 1.25rem;
    list-style: disc;
}
.blog-content ol { list-style: decimal; }
.blog-content li {
    font-size: 1rem; color: var(--text-body);
    line-height: 1.7; margin-bottom: 0.375rem;
    padding-left: 0.25rem;
}
.blog-content strong { color: var(--text-heading); font-weight: 700; }
.blog-content a { color: var(--accent); font-weight: 500; }
.blog-content a:hover { text-decoration: underline; }

.blog-content h4 {
    font-family: var(--font-heading); font-size: 1rem;
    font-weight: 700; color: var(--text-heading);
    margin: 1.5rem 0 0.5rem;
}

/* Blog comparison table */
.blog-content table {
    width: 100%; border-collapse: collapse;
    margin: 1.5rem 0; font-size: 0.875rem;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
}
.blog-content th, .blog-content td {
    padding: 0.75rem 1rem; text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.blog-content th {
    font-family: var(--font-heading); font-weight: 700;
    color: var(--text-heading); background: var(--bg-alt);
    font-size: 0.8125rem;
}
.blog-content tr:last-child td { border-bottom: none; }

/* Blog pull quote */
.blog-pullquote {
    border-left: 3px solid var(--accent); padding: 1rem 0 1rem 1.5rem;
    margin: 2rem 0; font-size: 1.0625rem; color: var(--text-heading);
    font-weight: 600; line-height: 1.55; font-style: italic;
    font-family: var(--font-heading);
}

/* Blog CTA box */
.blog-cta-box {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.06), rgba(66, 213, 255, 0.04));
    border: 1.5px solid rgba(124, 92, 255, 0.15);
    border-radius: var(--radius-lg); padding: 2rem;
    margin: 2.5rem 0; text-align: center;
}
.blog-cta-box h3 {
    font-family: var(--font-heading); font-size: 1.25rem;
    font-weight: 800; color: var(--text-heading);
    margin: 0 0 0.5rem; letter-spacing: -0.02em;
}
.blog-cta-box p {
    font-size: 0.9375rem; color: var(--text-body);
    margin-bottom: 1.25rem; line-height: 1.55;
}
.blog-cta-box .btn { margin: 0; }

/* Blog FAQ section */
.blog-faq { margin: 2.5rem 0; }
.blog-faq-title {
    font-family: var(--font-heading); font-size: 1.5rem;
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.025em; margin-bottom: 1rem;
}

/* Blog related posts */
.blog-related {
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 0; margin-top: 3rem;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
.blog-related-title {
    font-family: var(--font-heading); font-size: 1.125rem;
    font-weight: 800; color: var(--text-heading);
    letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.blog-related-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.blog-related-card {
    background: var(--bg-white); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
    transition: all 0.2s ease;
}
.blog-related-card:hover {
    border-color: var(--accent); transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}
.blog-related-card-cat {
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent); margin-bottom: 0.375rem;
}
.blog-related-card h3 {
    font-family: var(--font-heading); font-size: 0.9375rem;
    font-weight: 700; color: var(--text-heading);
    letter-spacing: -0.01em; line-height: 1.3;
    margin: 0;
}
.blog-related-card h3 a { color: inherit; text-decoration: none; }
.blog-related-card h3 a::after { content: ''; position: absolute; inset: 0; }
.blog-related-card { position: relative; }

@media (max-width: 1024px) {
    .blog-post-layout { grid-template-columns: 1fr; gap: 0; }
    .blog-toc { position: relative; top: auto; margin-bottom: 2rem;
        padding: 1.25rem; background: var(--bg-white); border: 1px solid var(--border);
        border-radius: var(--radius-md);
    }
    .blog-toc-label { padding-left: 0; }
    .blog-toc-list a { border-left: none; padding: 0.25rem 0; }
}
@media (max-width: 640px) {
    .blog-post-header { padding: calc(var(--nav-height) + 2rem) 0 0; }
    .blog-post-header h1 { font-size: 1.5rem; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-content h2 { font-size: 1.25rem; }
    .blog-content p, .blog-content li { font-size: 0.9375rem; }
}

/* ============================================
   BLOG EXPLORE-FLIPZI (pillar linking callout)
   ============================================ */
.blog-explore-flipzi {
    margin: 2.5rem 0 1.5rem; padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--accent-light) 100%);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.blog-explore-flipzi h3 {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
    color: var(--text-heading); letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}
.blog-explore-flipzi ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.25rem;
}
.blog-explore-flipzi li { font-size: 0.9375rem; }
.blog-explore-flipzi li a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--accent); text-decoration: none; font-weight: 500;
}
.blog-explore-flipzi li a::before { content: '→'; color: var(--text-tertiary); }
.blog-explore-flipzi li a:hover { text-decoration: underline; }
@media (max-width: 640px) { .blog-explore-flipzi ul { grid-template-columns: 1fr; } }

/* ============================================
   BREADCRUMBS (shared, visible)
   ============================================ */
.breadcrumbs {
    max-width: var(--max-width); margin: 0 auto;
    padding: calc(var(--nav-height) + 0.9rem) 1.5rem 0.25rem;
    font-size: 0.8125rem; color: var(--text-tertiary);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.35rem; }
.breadcrumbs li + li::before { content: '/'; color: var(--text-muted); font-weight: 400; }
.breadcrumbs a { color: var(--text-tertiary); text-decoration: none; transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--text-heading); font-weight: 500; }
/* When breadcrumb precedes a hero, remove the hero's nav-height offset */
.breadcrumbs + .hero,
.breadcrumbs + .hero-seo { padding-top: 2rem; }
@media (max-width: 768px) { .breadcrumbs + .hero { padding-top: 1.25rem; } }
