:root {
  --navy-950: #0A0E1A;
  --navy-900: #0F1629;
  --navy-800: #1A2240;
  --navy-700: #243055;
  --navy-600: #2E3E6A;
  --gold-600: #B8922E;
  --gold-500: #D4A853;
  --gold-400: #E5C578;
  --green-500: #22C55E;
  --green-400: #4ADE80;
  --red-500: #EF4444;
  --red-400: #F87171;
  --teal-500: #14B8A6;
  --emerald-600: #059669;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --white: #F8FAFC;

  --glass-bg: rgba(15, 22, 41, 0.55);
  --glass-bg-heavy: rgba(15, 22, 41, 0.7);
  --glass-border: rgba(148, 163, 184, 0.08);
  --glass-border-hover: rgba(212, 168, 83, 0.15);
  --glass-shine: linear-gradient(135deg, rgba(248, 250, 252, 0.04) 0%, transparent 50%);
  --glass-blur: 20px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 20px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(212, 168, 83, 0.25);
  color: var(--white);
}

/* Noise overlay */
body::after {
  content: ''; position: fixed; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}

/* ═══════════════════════════════════════════
   AMBIENT ORBS
═══════════════════════════════════════════ */
.ambient-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(120px); will-change: transform; }
.ambient-orb--gold { width: 600px; height: 600px; background: rgba(212, 168, 83, 0.07); top: 5%; left: 10%; animation: orbDrift1 25s ease-in-out infinite alternate; }
.ambient-orb--teal { width: 450px; height: 450px; background: rgba(20, 184, 166, 0.05); top: 40%; right: 5%; animation: orbDrift2 30s ease-in-out infinite alternate; }
.ambient-orb--gold-2 { width: 400px; height: 400px; background: rgba(212, 168, 83, 0.05); bottom: 15%; left: 30%; animation: orbDrift3 28s ease-in-out infinite alternate; }
.ambient-orb--blue { width: 350px; height: 350px; background: rgba(46, 62, 106, 0.14); top: 60%; left: 60%; animation: orbDrift4 22s ease-in-out infinite alternate; }
@keyframes orbDrift1 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.06); } 100% { transform: translate(-15px,20px) scale(0.97); } }
@keyframes orbDrift2 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(-35px,25px) scale(1.04); } 100% { transform: translate(20px,-20px) scale(0.96); } }
@keyframes orbDrift3 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(25px,-35px) scale(0.95); } 100% { transform: translate(-10px,15px) scale(1.03); } }
@keyframes orbDrift4 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,20px) scale(1.05); } 100% { transform: translate(30px,-10px) scale(0.98); } }

/* ═══════════════════════════════════════════
   NAVBAR — from production
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 72px; gap: 40px; }
.navbar-logo { text-decoration: none; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; flex-shrink: 0; }
.navbar-logo-veri { color: var(--white); }
.navbar-logo-accent { color: var(--gold-500); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.navbar-logo-dot { color: var(--navy-600); font-weight: 400; }
.navbar-links { display: flex; gap: 32px; flex: 1; }
.navbar-links a { text-decoration: none; color: var(--slate-400); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.navbar-links a:hover { color: var(--white); }
.navbar-actions { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.navbar-signin-link { text-decoration: none; color: var(--slate-400); font-size: 14px; font-weight: 500; transition: color 0.2s; margin-right: 12px; }
.navbar-signin-link:hover { color: var(--white); }
.navbar-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.navbar-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--slate-400); transition: all 0.3s; }

/* ═══════════════════════════════════════════
   BUTTONS — ULTRA GLASS (from production)
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* PRIMARY — Gold glass */
.btn-primary {
  background: linear-gradient(135deg, rgba(229,197,120,0.25) 0%, rgba(212,168,83,0.55) 40%, rgba(184,146,46,0.45) 100%);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  border: 1px solid rgba(229,197,120,0.35);
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.1), 0 4px 24px -4px rgba(212,168,83,0.3),
    0 12px 40px -8px rgba(212,168,83,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.15),
    inset 1px 0 0 rgba(229,197,120,0.2), inset -1px 0 0 rgba(229,197,120,0.2);
}
.btn-primary::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.05) 35%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 25% 15%, rgba(255,255,255,0.12) 0%, transparent 70%),
    linear-gradient(0deg, rgba(0,0,0,0.1) 0%, transparent 40%);
  pointer-events: none; z-index: 1;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: -50%; left: -120%; width: 60%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.05) 35%, rgba(255,255,255,0.18) 42%, rgba(255,255,255,0.25) 48%, rgba(255,255,255,0.18) 54%, rgba(255,255,255,0.05) 61%, transparent 80%);
  transform: skewX(-15deg);
  transition: left 0.7s var(--ease-out-expo);
  pointer-events: none; z-index: 2;
}
.btn-primary:hover::after { left: 140%; }
.btn-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(229,197,120,0.5);
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.15), 0 8px 32px -4px rgba(212,168,83,0.35),
    0 20px 60px -12px rgba(212,168,83,0.2), 0 0 20px -4px rgba(212,168,83,0.15),
    inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.12),
    inset 1px 0 0 rgba(229,197,120,0.25), inset -1px 0 0 rgba(229,197,120,0.25);
}
.btn-primary:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn-primary .btn-text { position: relative; z-index: 3; }
.btn-primary svg { position: relative; z-index: 3; }

/* SECONDARY — Frosted glass */
.btn-secondary {
  background: linear-gradient(135deg, rgba(148,163,184,0.08) 0%, rgba(15,22,41,0.35) 50%, rgba(148,163,184,0.05) 100%);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  color: var(--gold-500);
  border: 1px solid rgba(148,163,184,0.12);
  box-shadow:
    0 4px 20px -6px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.1),
    inset 1px 0 0 rgba(255,255,255,0.04), inset -1px 0 0 rgba(255,255,255,0.04);
}
.btn-secondary::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 45%),
    radial-gradient(ellipse 50% 35% at 30% 10%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.btn-secondary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,168,83,0.0) 0%, rgba(212,168,83,0.06) 25%, rgba(20,184,166,0.04) 50%, rgba(168,85,247,0.03) 75%, transparent 100%);
  opacity: 0; transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none; z-index: 1;
}
.btn-secondary:hover::after { opacity: 1; }
.btn-secondary:hover {
  transform: translateY(-2px); border-color: rgba(212,168,83,0.2); color: var(--gold-400);
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.08), 0 8px 28px -6px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-secondary .btn-text { position: relative; z-index: 2; }

/* GHOST — Crystal glass */
.btn-ghost {
  background: linear-gradient(135deg, rgba(148,163,184,0.03) 0%, rgba(15,22,41,0.08) 100%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--slate-300); padding: 14px 20px; border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-ghost::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.btn-ghost:hover {
  color: var(--white); border-color: rgba(148,163,184,0.1);
  background: linear-gradient(135deg, rgba(148,163,184,0.05) 0%, rgba(15,22,41,0.12) 100%);
}
.btn-underline { border-bottom: 1px solid currentColor; padding-bottom: 1px; position: relative; z-index: 2; }
.btn-arrow { transition: transform 0.3s var(--ease-out-expo); position: relative; z-index: 2; }
.btn-ghost:hover .btn-arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════════
   BADGES — from production
═══════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  position: relative; overflow: hidden;
}
.badge::before {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.badge-gold { background: rgba(212,168,83,0.08); color: var(--gold-500); border: 1px solid rgba(212,168,83,0.18); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 48px 80px; position: relative; z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(36, 48, 85, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 48, 85, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  opacity: 0; animation: fadeIn 2s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-content { max-width: 800px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  background: rgba(212, 168, 83, 0.05);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 600; color: var(--gold-500);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px;
  opacity: 0; animation: fadeSlideUp 0.7s var(--ease-out-expo) 0.1s forwards;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 7px rgba(212, 168, 83, 0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-title {
  font-size: clamp(48px, 7vw, 88px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.25s forwards;
}
.accent {
  color: var(--gold-500); font-family: 'Instrument Serif', serif;
  font-weight: 400; font-style: italic; letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.15);
}
.hero-subtitle {
  font-size: 18px; color: var(--slate-400);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.4s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.55s forwards;
}
.hero-trust {
  margin-top: 64px; display: flex; align-items: center; gap: 24px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.7s forwards;
}
.hero-trust-divider { width: 1px; height: 32px; background: var(--navy-700); }
.hero-trust-logos { display: flex; gap: 8px; }
.trust-logo-pill {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--slate-400); letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 6px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
}
.scroll-hint {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-out-expo) 1.5s forwards;
}
.scroll-hint-text {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  color: var(--navy-600); letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-hint-chevron {
  width: 16px; height: 16px;
  border-right: 1.5px solid var(--navy-600); border-bottom: 1.5px solid var(--navy-600);
  transform: rotate(45deg); animation: breathe 2.5s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); } 50% { opacity: 0.8; transform: rotate(45deg) translateY(3px); } }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { position: relative; z-index: 1; padding: 120px 48px; border-top: 1px solid rgba(36, 48, 85, 0.3); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; color: var(--gold-500);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.eyebrow-line { width: 24px; height: 1px; background: var(--gold-500); }
.section-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 20px; max-width: 700px;
}
.section-subtitle {
  font-size: 17px; color: var(--slate-400);
  line-height: 1.7; max-width: 560px; margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   PROBLEM — Prose style
═══════════════════════════════════════════ */
.problem-prose {
  max-width: 640px;
}
.problem-prose p {
  font-size: 17px; color: var(--slate-300); line-height: 1.8;
  margin-bottom: 24px;
}
.problem-prose p:last-child { margin-bottom: 0; }
.problem-prose strong {
  color: var(--white); font-weight: 600;
}

/* ═══════════════════════════════════════════
   VALUE VISUALIZATIONS
═══════════════════════════════════════════ */
.viz-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

/* Shared viz card */
.viz-card {
  background: linear-gradient(135deg, rgba(15,22,41,0.5) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  position: relative;
  transition: border-color 0.3s var(--ease-out-expo);
}
.viz-card:hover { border-color: var(--glass-border-hover); }
.viz-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.05) 50%, transparent 90%);
  pointer-events: none; z-index: 2;
}

.viz-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(26,34,64,0.4);
  border-bottom: 1px solid var(--glass-border);
}
.viz-card-label {
  font-size: 13px; font-weight: 600; color: var(--white);
}
.viz-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 6px;
}
.viz-tag--lite {
  background: rgba(212,168,83,0.08); color: var(--gold-500);
  border: 1px solid rgba(212,168,83,0.15);
}
.viz-tag--verify {
  background: rgba(20,184,166,0.08); color: var(--teal-500);
  border: 1px solid rgba(20,184,166,0.15);
}

/* ═══════════════════════════════════════════
   IN ACTION — Light app mockup
═══════════════════════════════════════════ */
/* Vertical flow — one example at a time */
.action-layout {
  display: flex; flex-direction: column; gap: 0;
}
.app-mockup-wrapper {
  max-width: 100%;
}
.app-mockup {
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 20px 60px -12px rgba(0,0,0,0.5),
    0 4px 16px -2px rgba(0,0,0,0.3),
    0 0 0 1px rgba(148,163,184,0.08);
}

/* App chrome — window title bar */
.app-chrome {
  background: #F1F5F9;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #E2E8F0;
}
.app-chrome-dots {
  display: flex; gap: 7px;
}
.app-chrome-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.app-chrome-dot--red { background: #FF5F57; }
.app-chrome-dot--yellow { background: #FFBD2E; }
.app-chrome-dot--green { background: #28C840; }
.app-chrome-title {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 500; color: #94A3B8;
  font-family: -apple-system, 'Inter', sans-serif;
  margin-right: 54px;
}

/* Light chat body */
.app-chat {
  background: #FFFFFF;
  padding: 28px 24px 20px;
  display: flex; flex-direction: column; gap: 16px;
}

/* Chat bubbles — light theme */
.lc-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 18px;
  font-size: 14px; line-height: 1.6;
  font-family: -apple-system, 'Inter', sans-serif;
}
.lc-msg--user {
  align-self: flex-end;
  background: #3B82F6;
  color: #fff;
  border-bottom-right-radius: 6px;
}
.lc-msg--bot {
  align-self: flex-start;
  background: #F1F5F9;
  color: #1E293B;
  border-bottom-left-radius: 6px;
}

/* Claim highlight in bot response */
.lc-claim-bad {
  background: #FEF2F2;
  border-bottom: 2px solid #EF4444;
  padding: 0 2px; border-radius: 2px;
}

/* VeriVeri verdict card — appears after bot response */
.vv-verdict {
  align-self: flex-start; max-width: 85%;
  margin-top: -6px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  font-family: -apple-system, 'Inter', sans-serif;
}
.vv-verdict-header {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
}
.vv-verdict-header svg { flex-shrink: 0; }
.vv-verdict-header--fail {
  background: #FEF2F2;
  color: #DC2626;
  border-bottom: 1px solid #FECACA;
}
.vv-verdict-confidence {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 4px;
  background: rgba(220,38,38,0.06); color: #DC2626;
}
.vv-verdict-body {
  background: #fff;
  padding: 10px 14px 12px;
  font-size: 13px; color: #475569; line-height: 1.55;
}
.vv-verdict-issue {
  font-weight: 500; color: #1E293B; margin-bottom: 2px;
}
.vv-verdict-source {
  font-size: 12px; color: #94A3B8;
  margin-top: 4px;
}
.vv-verdict-source code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; background: #F1F5F9;
  padding: 1px 5px; border-radius: 3px; color: #64748B;
}
.vv-powered {
  padding: 7px 14px;
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
  font-size: 10px; color: #CBD5E1;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.01em;
}
.vv-powered strong { color: #94A3B8; font-weight: 600; }

/* Chat input bar */
.app-chat-input {
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.app-chat-input-field {
  flex: 1; font-size: 13px; color: #CBD5E1;
  font-family: -apple-system, 'Inter', sans-serif;
}
.app-chat-input-btn {
  width: 30px; height: 30px; border-radius: 8px;
  background: #F1F5F9; display: flex; align-items: center; justify-content: center;
}

/* Scenario label */
.app-mockup-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--gold-500);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* Scenario block — mockup + explainer side by side */
.action-scenario {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.action-scenario + .action-scenario { margin-top: 120px; }
.action-scenario--reverse {
  direction: rtl;
}
.action-scenario--reverse > * {
  direction: ltr;
}
.action-explainer {
  max-width: 460px;
}
.action-explainer-title {
  font-size: 24px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 16px;
}
.action-explainer-text {
  font-size: 16px; color: var(--slate-300); line-height: 1.75; margin-bottom: 24px;
}
.action-explainer-points {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.action-explainer-points li {
  font-size: 14px; color: var(--slate-300); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.action-explainer-points li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-500); flex-shrink: 0; margin-top: 7px;
}

/* ═══════════════════════════════════════════
   REPORT MOCKUP — Light document theme
═══════════════════════════════════════════ */
.app-doc {
  background: #FFFFFF;
  padding: 36px 32px 28px;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.app-doc-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid #E2E8F0;
}
.app-doc-meta-title {
  font-family: -apple-system, 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; color: #1E293B;
}
.app-doc-meta-tag {
  font-family: -apple-system, 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px;
  background: #F1F5F9; color: #64748B;
}
.app-doc-body {
  font-size: 14.5px; color: #334155; line-height: 1.85;
  margin-bottom: 24px;
}

/* Inline claim highlights — report context */
.rc-verified {
  border-bottom: 2px solid #22C55E;
  padding-bottom: 0px;
}
.rc-error {
  background: #FEF2F2;
  border-bottom: 2px solid #EF4444;
  padding: 0 2px; border-radius: 2px;
}
.rc-warning {
  border-bottom: 2px dashed #D4A853;
  padding-bottom: 0px;
}

/* Inline verdict indicators */
.rc-indicator {
  display: inline-flex; align-items: center;
  font-family: -apple-system, 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  vertical-align: middle; margin-left: 3px;
  padding: 1px 5px; border-radius: 3px;
}
.rc-indicator--pass { color: #16A34A; background: #F0FDF4; }
.rc-indicator--fail { color: #DC2626; background: #FEF2F2; }
.rc-indicator--warn { color: #B8922E; background: #FFFBEB; }

/* Verification results panel */
.vv-report-results {
  border-radius: 10px; overflow: hidden;
  border: 1px solid #E2E8F0;
  font-family: -apple-system, 'Inter', sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.vv-report-results-header {
  padding: 10px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex; align-items: center; justify-content: space-between;
}
.vv-report-results-title {
  font-size: 12px; font-weight: 600; color: #475569;
  display: flex; align-items: center; gap: 6px;
}
.vv-report-results-summary {
  display: flex; gap: 12px;
}
.vv-results-pill {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
}
.vv-results-pill--pass { color: #16A34A; background: #F0FDF4; }
.vv-results-pill--fail { color: #DC2626; background: #FEF2F2; }
.vv-results-pill--warn { color: #92400E; background: #FFFBEB; }
.vv-results-pill-dot {
  width: 5px; height: 5px; border-radius: 50%;
}

.vv-report-issue {
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 13px; line-height: 1.55;
  display: flex; gap: 10px;
}
.vv-report-issue:last-child { border-bottom: none; }
.vv-report-issue-dot {
  width: 6px; height: 6px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.vv-report-issue-dot--pass { background: #22C55E; }
.vv-report-issue-dot--error { background: #EF4444; }
.vv-report-issue-dot--warning { background: #D4A853; }
.vv-report-issue-claim {
  font-weight: 500; color: #1E293B;
}
.vv-report-issue-detail {
  font-size: 12px; color: #64748B; margin-top: 2px;
}
.vv-report-issue-source {
  font-size: 11px; color: #94A3B8; margin-top: 3px;
}
.vv-report-issue-source code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; background: #F1F5F9;
  padding: 1px 5px; border-radius: 3px; color: #64748B;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS — Steps (from production)
═══════════════════════════════════════════ */
.steps-flow { display: flex; align-items: stretch; gap: 0; }
.step-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(15,22,41,0.5) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 40px;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}
.step-card-glass-edge {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.05) 50%, transparent 90%);
  pointer-events: none;
}
.step-card:hover { border-color: var(--glass-border-hover); }
.step-number {
  font-family: 'Instrument Serif', serif;
  font-size: 48px; color: var(--navy-700); line-height: 1;
  margin-bottom: 20px; transition: color 0.3s;
}
.step-card:hover .step-number { color: var(--navy-600); }
.step-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--slate-400); line-height: 1.65; margin-bottom: 20px; }
.step-code { font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.step-code code { padding: 6px 14px; border-radius: 8px; background: rgba(10,14,26,0.5); border: 1px solid var(--glass-border); }
.step-connector { display: flex; align-items: center; padding: 0 8px; flex-shrink: 0; }
.ck { color: var(--gold-500); }
.cs { color: var(--green-400); }
.cn { color: var(--teal-500); }
.cx { color: var(--slate-400); }

/* ═══════════════════════════════════════════
   PLATFORM — API Cards
═══════════════════════════════════════════ */
.platform-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; border-radius: 16px; overflow: hidden;
}
.platform-card {
  background: linear-gradient(135deg, rgba(15,22,41,0.45) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 40px; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.platform-card-glass-edge {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.05) 50%, transparent 90%);
  pointer-events: none; z-index: 2;
}
.platform-card-refraction {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-500); transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
  transform-origin: left; z-index: 3;
}
.platform-card:hover::before { transform: scaleX(1); }
.platform-card:hover {
  background: linear-gradient(135deg, rgba(26,34,64,0.55) 0%, rgba(36,48,85,0.35) 100%);
}
.platform-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(212,168,83,0.03) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,168,83,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.05);
}
.platform-card:hover .platform-card-icon { border-color: rgba(212,168,83,0.25); }
.platform-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; position: relative; z-index: 2; }
.platform-card p { font-size: 14px; color: var(--slate-400); line-height: 1.65; position: relative; z-index: 2; }
.platform-card-tag {
  position: absolute; top: 20px; right: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--navy-600); letter-spacing: 0.06em; text-transform: uppercase; z-index: 2;
}
.platform-card .endpoint-code {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--gold-400); margin-top: 12px; display: block;
  position: relative; z-index: 2;
}
.platform-card-features {
  list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 2;
}
.platform-card-features li {
  font-size: 13px; color: var(--slate-300); display: flex; align-items: center; gap: 8px;
}
.platform-card-features li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-500); flex-shrink: 0;
}

/* Capabilities row */
.capabilities-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: 14px; overflow: hidden; margin-top: 24px;
}
.capability-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 28px; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.capability-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--glass-shine); pointer-events: none;
}
.capability-card:hover { background: rgba(26,34,64,0.55); }
.capability-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.capability-card p { font-size: 13px; color: var(--slate-400); line-height: 1.6; }
.capability-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 10px; display: block;
}
.status-live { color: var(--green-400); }
.status-beta { color: var(--gold-500); }

/* Roadmap callout */
.roadmap-callout {
  margin-top: 24px; padding: 28px 32px; border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.roadmap-callout h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.roadmap-callout p { font-size: 14px; color: var(--slate-400); }
.roadmap-tags { display: flex; gap: 8px; margin-top: 8px; }
.roadmap-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--slate-400); letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 6px;
  border: 1px solid var(--glass-border);
}

/* ═══════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════ */
.trust-beta-banner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 10px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.15);
  font-size: 14px; color: var(--slate-300); line-height: 1.6;
  margin-bottom: 48px;
}
.trust-beta-banner .beta-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gold-500); background: rgba(212,168,83,0.12);
  padding: 3px 10px; border-radius: 6px; flex-shrink: 0;
}

/* Compliance standards grid */
.compliance-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; border-radius: 16px; overflow: hidden;
  margin-bottom: 48px;
}
.compliance-card {
  background: linear-gradient(160deg, rgba(15,22,41,0.55) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 32px 24px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  transition: background 0.4s var(--ease-out-expo);
}
.compliance-card:hover {
  background: linear-gradient(160deg, rgba(15,22,41,0.65) 0%, rgba(26,34,64,0.45) 100%);
}
.compliance-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.04) 50%, transparent 95%);
  pointer-events: none;
}
.compliance-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.1);
  color: var(--gold-500);
}
.compliance-card-name {
  font-size: 16px; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em; line-height: 1.3;
}
.compliance-card-scope {
  font-size: 12px; color: var(--slate-400); line-height: 1.5;
  margin-top: -8px;
}
.compliance-card-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 6px; margin-top: auto;
}
.compliance-card-status--aligned {
  color: var(--green-400);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.12);
}
.compliance-card-status--progress {
  color: var(--gold-500);
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.12);
}

/* Domain differentiator block */
.trust-differ {
  background: linear-gradient(160deg, rgba(15,22,41,0.55) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: 16px; padding: 48px 44px; position: relative; overflow: hidden;
}
.trust-differ::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.04) 50%, transparent 95%);
  pointer-events: none;
}
.trust-differ-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--gold-500);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.trust-differ-title {
  font-size: 24px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 16px;
  max-width: 520px;
}
.trust-differ-text {
  font-size: 16px; color: var(--slate-300); line-height: 1.75; margin-bottom: 28px;
  max-width: 600px;
}
.trust-differ-points {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px;
}
.trust-differ-points li {
  font-size: 14px; color: var(--slate-300);
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
}
.trust-differ-points li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-500); flex-shrink: 0; margin-top: 7px;
}

/* ═══════════════════════════════════════════
   PRICING — from production
═══════════════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: start;
}
.pricing-card {
  background: linear-gradient(135deg, rgba(15,22,41,0.5) 0%, rgba(26,34,64,0.35) 100%);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 40px;
  position: relative; overflow: visible;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease-out-expo);
}
.pricing-card-glass-edge {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.04) 50%, transparent 90%);
  pointer-events: none;
}
.pricing-card:hover { border-color: var(--glass-border-hover); }
.pricing-card-featured {
  border-color: rgba(212,168,83,0.25);
  background: linear-gradient(135deg, rgba(212,168,83,0.04) 0%, rgba(15,22,41,0.5) 50%, rgba(26,34,64,0.35) 100%);
}
.pricing-card-featured::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent); z-index: 1;
}
.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--gold-500); letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(212,168,83,0.08); border: 1px solid rgba(212,168,83,0.15);
}
.pricing-tier {
  font-size: 14px; font-weight: 600; color: var(--slate-400);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px;
}
.pricing-price {
  font-size: 36px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.pricing-period { font-size: 13px; color: var(--slate-400); margin-bottom: 8px; }
.pricing-api-note {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--gold-500); margin-bottom: 24px;
  padding: 6px 10px; border-radius: 6px;
  background: rgba(212,168,83,0.04); border: 1px solid rgba(212,168,83,0.1);
  display: inline-block;
}
.pricing-best-for {
  font-size: 13px; color: var(--slate-400); font-style: italic;
  margin-bottom: 24px; line-height: 1.5;
}
.pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px; color: var(--slate-300);
  display: flex; align-items: center; gap: 8px;
}
.check-icon { color: var(--green-400); margin-right: 4px; }
.pricing-feature-muted { color: var(--slate-400) !important; }

/* ═══════════════════════════════════════════
   FINAL CTA — from production
═══════════════════════════════════════════ */
.section-cta { border-top: none; padding-bottom: 0; }
.cta-container {
  background: #F8FAFC;
  border: 1px solid rgba(212,168,83,0.18);
  border-radius: 24px; padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
  max-width: 600px; margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(212,168,83,0.06),
    0 8px 40px -8px rgba(212,168,83,0.12),
    0 24px 80px -16px rgba(0,0,0,0.25);
}
.cta-container::before {
  content: ''; position: absolute; top: -1px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.cta-container::after {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,168,83,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(28px, 4vw, 36px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 12px;
  color: var(--navy-950);
}
.cta-title .accent {
  color: var(--gold-600);
  text-shadow: none;
}
.cta-subtitle { font-size: 16px; color: #475569; margin-bottom: 40px; line-height: 1.65; }
.cta-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 800px; margin: 0 auto; text-align: left;
}
.cta-split-col h3 {
  font-size: 18px; font-weight: 600; margin-bottom: 8px;
}
.cta-split-col p {
  font-size: 14px; color: var(--slate-400); line-height: 1.6; margin-bottom: 20px;
}
.cta-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--navy-700); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 6px;
}
.cta-field .optional { font-weight: 400; text-transform: none; color: #94A3B8; }
.cta-field input, .cta-field textarea {
  width: 100%; padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 10px; color: var(--navy-950);
  font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.cta-field textarea { resize: vertical; min-height: 72px; max-height: 200px; }
.cta-field input::placeholder, .cta-field textarea::placeholder { color: #94A3B8; }
.cta-field input:focus, .cta-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.12), 0 1px 2px rgba(0,0,0,0.04);
}
.cta-field { margin-bottom: 12px; }
.cta-split-divider {
  width: 1px; background: var(--glass-border);
}

/* ═══════════════════════════════════════════
   FOOTER — from production
═══════════════════════════════════════════ */
.footer {
  position: relative; z-index: 1;
  padding: 80px 48px 0;
  border-top: 1px solid rgba(36,48,85,0.3);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 3fr;
  gap: 80px; padding-bottom: 64px;
}
.footer-logo { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--slate-400); line-height: 1.65; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-col h5 {
  font-size: 12px; font-weight: 600; color: var(--slate-400);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; text-decoration: none; font-size: 14px;
  color: var(--slate-400); padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--navy-600);
}
.footer-legal { display: flex; gap: 12px; }
.footer-legal a { color: var(--slate-400); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--gold-500); }

/* Pricing credits row with info tooltip */
.pricing-price-eur {
  font-size: 13px; color: var(--slate-400); font-weight: 400;
}
.pricing-credits-row {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
}
.pricing-info-trigger {
  position: relative; cursor: pointer;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(148,163,184,0.08); border: 1px solid var(--glass-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--slate-400); flex-shrink: 0;
  transition: all 0.2s;
}
.pricing-info-trigger:hover {
  background: rgba(212,168,83,0.1); border-color: rgba(212,168,83,0.25);
  color: var(--gold-500);
}
.pricing-info-tooltip {
  display: none; position: absolute; top: calc(100% + 8px); right: -12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--slate-300); line-height: 1.6;
  padding: 10px 14px; border-radius: 8px;
  width: max-content; max-width: 260px;
  background: rgba(10,14,26,0.95); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 10; pointer-events: none;
}
.pricing-info-tooltip::after {
  content: ''; position: absolute; bottom: 100%; right: 16px;
  border: 5px solid transparent; border-bottom-color: var(--glass-border);
}
.pricing-info-trigger:hover .pricing-info-tooltip { display: block; }

/* Pricing — card header fixed height so feature rows align across cards */
.pricing-card-header {
  min-height: 120px;
  display: flex; flex-direction: column;
}

/* Pricing — uniform feature grid for horizontal scanning */
.pricing-feature-grid {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  margin-bottom: 28px; flex: 1;
}
.pricing-feature-grid li {
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(148,163,184,0.04);
  height: 30px;
}
.pricing-feature-grid li:last-child { border-bottom: none; }
.pf-detail {
  color: var(--slate-400); font-weight: 400;
  margin-left: 2px;
}
.pf-absent .pf-detail { color: var(--navy-600); }

/* State: included — feature available in this tier */
.pf-included {
  color: var(--slate-300);
}
.pf-included .pf-icon {
  color: var(--gold-500); flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(212,168,83,0.08); border: 1px solid rgba(212,168,83,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* State: absent — not available in this tier */
.pf-absent {
  color: var(--navy-600);
}
.pf-absent .pf-icon {
  color: var(--navy-600); flex-shrink: 0;
  width: 18px; display: inline-flex; justify-content: center;
  font-size: 14px;
}

/* CTA form — production style */
.cta-form { max-width: 640px; margin: 0 auto; text-align: left; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cta-form-row > .cta-field { margin-bottom: 0; }
.cta-char-count {
  display: block; margin-top: 6px;
  font-size: 12px; color: #94A3B8;
  transition: color 0.2s;
}
.cta-char-count.warning { color: var(--gold-600); }
.cta-form .btn { margin-top: 8px; width: 100%; justify-content: center; }
.cta-form .btn-primary {
  background: linear-gradient(135deg, #D4A853 0%, #B8922E 100%);
  border: 1px solid rgba(184,146,46,0.4);
  box-shadow: 0 4px 16px -4px rgba(184,146,46,0.35), 0 1px 2px rgba(0,0,0,0.08);
}
.cta-form .btn-primary:hover {
  box-shadow: 0 8px 28px -4px rgba(184,146,46,0.4), 0 2px 4px rgba(0,0,0,0.1);
}
.cta-form-message {
  margin-top: 12px; font-size: 14px;
  text-align: center; min-height: 20px;
  color: #475569;
}

/* Tech credibility link */
.tech-link {
  margin-top: 24px; text-align: center;
}
.tech-link a {
  font-size: 14px; color: var(--gold-500); text-decoration: none;
  border-bottom: 1px solid rgba(212,168,83,0.3); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.tech-link a:hover { color: var(--gold-400); border-color: var(--gold-400); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .action-scenario { grid-template-columns: 1fr; gap: 32px; }
  .action-scenario--reverse { direction: ltr; }
  .action-scenario + .action-scenario { margin-top: 80px; }
  .steps-flow { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-differ-points { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-row { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-callout { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 768px) {
  .section { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; }
  .navbar { padding: 0 24px; }
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .navbar-hamburger { display: flex; margin-left: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-card:last-child { grid-column: 1 / -1; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .hero-trust-divider { width: 32px; height: 1px; }
  .hero-trust-logos { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .scroll-hint { display: none; }
  .cta-container { padding: 36px 24px; max-width: 100%; }
  .cta-form-row { grid-template-columns: 1fr; }
  .action-scenario + .action-scenario { margin-top: 64px; }
  .trust-beta-banner { flex-wrap: wrap; }
  .trust-differ { padding: 32px 20px; }
  .roadmap-callout { padding: 20px; }
  .app-mockup { max-width: 100%; overflow: hidden; }
  .app-doc-body { overflow-wrap: break-word; word-break: break-word; }
  .app-doc-meta { flex-wrap: wrap; gap: 8px; }
  .vv-report-results-header { flex-wrap: wrap; gap: 8px; }
  .vv-report-results-summary { flex-wrap: wrap; gap: 6px; }
  .pricing-info-tooltip { right: auto; left: 50%; transform: translateX(-50%); }
  .pricing-info-tooltip::after { right: auto; left: 50%; transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .hero { padding: 80px 16px 48px; }
  .navbar { padding: 0 16px; }
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-card:last-child { grid-column: auto; }
  .compliance-card { padding: 24px 20px; }
  .pricing-card { padding: 28px 20px; }
  .step-card { padding: 28px 20px; }
  .trust-differ { padding: 24px 16px; }
  .trust-differ-title { font-size: 20px; }
  .action-explainer-title { font-size: 20px; }
  .mobile-menu { padding: 100px 24px 48px; }
  .mobile-menu a { font-size: 20px; }
  .app-doc { padding: 24px 16px 20px; }
  .app-chat { padding: 20px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ambient-orb { animation: none !important; }
  .btn-primary::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTION-ONLY STYLES
   (Not in mockup v12 — preserved from previous production CSS)
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500), var(--gold-400));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ═══════════════════════════════════════════
   NAVBAR — SCROLLED STATE
═══════════════════════════════════════════ */
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--glass-border);
}

/* ═══════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  z-index: 999; background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 100px 48px 48px;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  text-decoration: none; color: var(--white);
  font-size: 24px; font-weight: 600;
}

/* ═══════════════════════════════════════════
   SECTION REVEAL ANIMATION ON SCROLL
═══════════════════════════════════════════ */
.section .section-eyebrow {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.section.visible .section-eyebrow { opacity: 1; transform: translateY(0); }

.section .section-title {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo) 0.08s, transform 0.6s var(--ease-out-expo) 0.08s;
}
.section.visible .section-title { opacity: 1; transform: translateY(0); }

.section .section-subtitle {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo) 0.16s, transform 0.6s var(--ease-out-expo) 0.16s;
}
.section.visible .section-subtitle { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   CTA FORM MESSAGE STATES
═══════════════════════════════════════════ */
.cta-form-message.success { color: var(--gold-400); }
.cta-form-message.error { color: #ef4444; }

/* ═══════════════════════════════════════════
   LOGIN PAGE STYLES
═══════════════════════════════════════════ */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  position: relative;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.05) 50%, transparent 90%);
  pointer-events: none;
}

.login-card h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-align: center;
}

.login-card .login-subtitle {
  text-align: center;
  color: var(--slate-400);
  font-size: 14px;
  margin-bottom: 32px;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
  font-size: 22px;
}

.login-logo a {
  text-decoration: none;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  color: var(--navy-950);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-google:hover {
  opacity: 0.9;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--slate-400);
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 22, 41, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.login-input:focus {
  border-color: rgba(212, 168, 83, 0.3);
}

.login-input::placeholder {
  color: var(--slate-400);
}

.login-message {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}

.login-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--red-400);
}

.login-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: var(--green-400);
}

.login-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-400);
  cursor: pointer;
  margin-bottom: 16px;
}
.login-terms input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--gold-500);
  flex-shrink: 0;
}
.login-terms a {
  color: var(--gold-500);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,83,0.3);
}
.login-terms a:hover { border-color: var(--gold-500); }

.login-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 14px;
  font-size: 12px;
  z-index: 10;
}
.login-footer a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.15s;
}
.login-footer a:hover { color: var(--gold-500); }

.login-links {
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ═══════════════ STORIES TEASER ═══════════════ */

.story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.story-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(148,163,184,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.story-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.story-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.story-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.story-card--featured .story-card-title {
  font-size: 28px;
  letter-spacing: -0.5px;
}

.story-card-excerpt {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.65;
  margin-bottom: 24px;
}

.story-card-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--slate-400);
}
.story-card-author {
  font-weight: 500;
  color: var(--slate-300);
}

.story-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-500);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s ease;
}
.story-card:hover .story-read-link {
  gap: 12px;
}

.story-card-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.teaser-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.teaser-kpi {
  background: rgba(15, 22, 41, 0.7);
  padding: 20px 18px;
}
.teaser-kpi-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.teaser-kpi-lbl {
  font-size: 11px;
  color: var(--slate-400);
  line-height: 1.45;
}

.story-card--placeholder {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.1);
  opacity: 0.5;
  cursor: default;
}
.story-card--placeholder:hover {
  transform: none;
  border-color: rgba(148, 163, 184, 0.1);
}
.story-placeholder-text {
  font-size: 13px;
  color: var(--slate-400);
  font-style: italic;
}

@media (max-width: 1024px) {
  .story-card--featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .story-cards { grid-template-columns: 1fr; }
  .story-card--featured { grid-column: 1; }
  .teaser-kpis { grid-template-columns: 1fr; }
}

.login-links button {
  background: none;
  border: none;
  color: var(--gold-500);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.login-links button:hover {
  color: var(--gold-400);
}
