/* landing-styles.css — ParkProof landing page
   Mobile-first, fluid responsive (390 → 1440).
   Design tokens kept identical to the in-app system. */

:root {
  /* Brand */
  --brand-500: #275BFF;
  --brand-600: #1F4CD9;
  --brand-700: #173EB3;
  --brand-800: #0B2466;
  --brand-50:  #EAEFFF;
  --brand-100: #DAE3FF;

  /* Ink */
  --ink-900: #1A2233;
  --ink-700: #2D374F;
  --ink-500: #5C6680;
  --ink-300: #A6B0C4;

  /* Surface */
  --paper-100: #F2F4F7;
  --paper-50:  #FAFBFC;
  --paper-200: #E6E9EF;
  --sage: #C8DCCF;
  --sage-light: #D9E6DD;
  --sage-deep: #A8C2B5;

  /* Semantic */
  --accent-500: #20C4C7;
  --green-500: #10B981;
  --green-600: #059669;
  --green-700: #047857;
  --red-500: #EF4444;
  --red-600: #DC2626;
  --red-700: #B91C1C;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Radii */
  --r-pill: 9999px;
  --r-card: 24px;
  --r-btn:  16px;

  /* Shadows */
  --shadow-brand: 0 30px 60px -20px rgba(39,91,255,0.25), 0 8px 24px -8px rgba(39,91,255,0.15);
  --shadow-green: 0 30px 60px -20px rgba(16,185,129,0.35), 0 8px 24px -8px rgba(16,185,129,0.18);
  --shadow-card: 0 14px 32px -10px rgba(20,30,60,0.12), 0 4px 10px rgba(20,30,60,0.04);
  --shadow-soft: 0 2px 8px rgba(20,30,60,0.05);

  /* Layout */
  --page-pad: clamp(20px, 5vw, 64px);
  --section-gap: clamp(80px, 10vw, 160px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-100);
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}

img { display: block; max-width: 100%; }

/* ---------------- Typography helpers ---------------- */

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-optical-sizing: auto;
}
.heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  font-optical-sizing: auto;
}
.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.mono { font-family: var(--font-mono); }
.allcaps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-500);
}

/* ---------------- Layout shells ---------------- */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--page-pad);
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

section { position: relative; }
section + section { padding-top: var(--section-gap); }
section:first-of-type { padding-top: 0; }
section:last-of-type { padding-bottom: var(--section-gap); }

/* ---------------- Topographic background motif ---------------- */
.topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.topo svg { width: 100%; height: 100%; display: block; }

.section-inner { position: relative; z-index: 1; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,244,247,0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(26,34,51,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  padding: 14px var(--page-pad);
  max-width: 1280px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-900);
  flex: none;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.018em;
}
.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--brand-500); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-900);
  color: var(--paper-50);
  padding: 10px 18px;
  border-radius: var(--r-btn);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  flex: none;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: var(--brand-500); transform: translateY(-1px); }
@media (min-width: 880px) {
  .nav-links { display: flex; }
}
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn-lg { padding: 20px 32px; font-size: 18px; }
.btn-md { padding: 14px 22px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 50%, var(--brand-700) 100%);
  color: var(--paper-50);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 36px 72px -20px rgba(39,91,255,0.32), 0 10px 28px -8px rgba(39,91,255,0.18); }
.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--ink-900);
  border: 1px solid rgba(26,34,51,0.10);
}
.btn-secondary:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
}
.btn-ghost:hover { color: var(--brand-500); }

/* ---------------- Pills ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--brand-50);
  color: var(--brand-700);
  font-weight: 600;
  font-size: 14px;
}
.pill-dark {
  background: var(--ink-900);
  color: var(--paper-50);
}
.pill-sage {
  background: var(--sage-light);
  color: var(--green-700);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* ---------------- Cards ---------------- */
.card {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 3vw, 40px);
}
.card-tinted {
  background: var(--brand-50);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 40px);
}
.card-sage {
  background: var(--sage-light);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 40px);
}

/* ---------------- Verdict card motif (recurring) ---------------- */
.verdict-card {
  background: linear-gradient(155deg, var(--green-500) 0%, var(--green-600) 55%, var(--green-700) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.verdict-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 35%);
  pointer-events: none;
}
.verdict-card.center { text-align: center; }
.verdict-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0;
}
.verdict-sub {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 2.4vw, 30px);
  margin: 12px 0 0;
}
.verdict-rem {
  font-size: clamp(15px, 1.4vw, 18px);
  opacity: 0.85;
  margin: 4px 0 0;
  font-weight: 500;
}

/* ---------------- Hero ---------------- */
.hero {
  padding: clamp(40px, 8vw, 96px) var(--page-pad) clamp(60px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(218,227,255,0.6), transparent),
    linear-gradient(180deg, #ECF0FA 0%, #DDE5F4 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26,34,51,0.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.hero-eyebrow .flag {
  width: 18px; height: 12px; border-radius: 2px;
  background: linear-gradient(180deg, #002868 0%, #002868 50%, #BF0A30 50%, #BF0A30 100%);
  /* placeholder mini flag */
  background:
    linear-gradient(180deg, #00308F 0%, #00308F 100%);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink-900);
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--brand-500);
  font-style: italic;
  font-weight: 700;
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-700);
  margin: 28px 0 36px;
  max-width: 540px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-tail {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 500;
}
.hero-tail-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-tail-item svg {
  flex: none;
  color: var(--green-600);
}

/* Hero visual: phone with the demo */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone {
  position: relative;
  width: clamp(280px, 32vw, 400px);
  aspect-ratio: 9 / 16.3;
  border-radius: 44px;
  background: #0B2466;
  padding: 12px;
  box-shadow:
    0 30px 80px -10px rgba(20,30,60,0.45),
    0 12px 30px -8px rgba(20,30,60,0.25),
    inset 0 0 0 1.5px rgba(255,255,255,0.05);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #D6E1F2 0%, #B7C8E2 100%);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #0B2466;
  border-radius: 12px;
  z-index: 3;
}

/* The actual demo content inside the phone is positioned by .demo-stage */
.demo-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

/* Real app screenshots cross-fade between states */
.demo-screen {
  position: absolute;
  inset: 30px 0 4px;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  transition: opacity .55s ease;
  border-radius: inherit;
}
.demo-stage[data-state="scan"]      .demo-screen.scan      { opacity: 1; }
.demo-stage[data-state="loading"]   .demo-screen.loading   { opacity: 1; }
.demo-stage[data-state="verdict"]   .demo-screen.verdict   { opacity: 1; }
.demo-stage[data-state="reminders"] .demo-screen.reminders { opacity: 1; }
.demo-stage[data-state="pdf"]       .demo-screen.pdf       { opacity: 1; }
.demo-stage[data-state="korean"]    .demo-screen.korean    { opacity: 1; }

/* Caption overlay — explains what state we're seeing */
.demo-caption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(15,22,40,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity .25s;
}
.demo-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-500);
  box-shadow: 0 0 8px var(--accent-500);
  animation: pulse 1.4s ease-in-out infinite;
}
.demo-stage[data-state="verdict"] .demo-caption-dot {
  background: var(--green-500);
  box-shadow: 0 0 8px var(--green-500);
  animation: none;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------------- Section: The problem ---------------- */
.problem {
  background: linear-gradient(180deg, var(--paper-100) 0%, #ECEEF3 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.problem-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
.problem-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  max-height: 720px;
  margin-inline: auto;
  width: 100%;
  max-width: 560px;
}
.problem-photo img { width: 100%; height: 100%; object-fit: cover; }
.problem-photo .annot {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-photo .annot .annot-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.problem-photo .annot-a { top: 8%; left: 6%; }
.problem-photo .annot-b { top: 30%; right: 6%; }
.problem-photo .annot-c { top: 56%; left: 6%; }
.problem-photo .annot-d { bottom: 8%; right: 6%; }

.problem-eyebrow { color: var(--red-600); }
.problem h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 6vw, 88px);
}
.problem .question-list {
  margin: 32px 0 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem .question-list li {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem .question-list li::before {
  content: '?';
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
}

/* ---------------- Section: How it works ---------------- */
.how {
  text-align: center;
  padding: var(--section-gap) 0;
}
.how h2 {
  margin: 12px 0 0;
  font-size: clamp(40px, 6vw, 88px);
}
.how .lede {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--ink-700);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
}
.how-steps {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  gap: clamp(20px, 2vw, 24px);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); }
}
.how-step {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 40px);
  text-align: left;
  box-shadow: var(--shadow-card);
  position: relative;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
}
.how-step h3 {
  margin: 24px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.018em;
}
.how-step p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.55;
}
.how-step .step-meta {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* ---------------- Section: Reasoning showcase ---------------- */
.reasoning {
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--sage) 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.reasoning-eyebrow { color: var(--green-700); }
.reasoning h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 6vw, 84px);
  max-width: 900px;
}
.reasoning h2 .accent {
  font-style: italic;
  color: var(--green-700);
  font-weight: 700;
}
.reasoning .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-700);
  margin: 24px 0 0;
  max-width: 680px;
  line-height: 1.5;
}
.compare {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .compare { grid-template-columns: 1fr 1fr; }
}
.compare-side {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid rgba(26,34,51,0.06);
  display: flex;
  flex-direction: column;
}
.compare-side.them { opacity: 0.85; }
.compare-side.us {
  background: #fff;
  border: 1px solid var(--brand-100);
  box-shadow: var(--shadow-card);
}
.compare-side h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-side .compare-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex: none;
}
.compare-side.them .compare-tag { background: rgba(239,68,68,0.10); color: var(--red-700); }
.compare-side.us .compare-tag { background: var(--brand-50); color: var(--brand-700); }
.compare-side ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-side ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-700);
}
.compare-side ul li svg { flex: none; margin-top: 2px; }
.compare-side .verdict-mini {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
}
.compare-side.them .verdict-mini {
  background: var(--red-500);
  color: #fff;
}
.compare-side.us .verdict-mini {
  background: var(--green-500);
  color: #fff;
}
.compare-side .verdict-mini .vm-head {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.compare-side .verdict-mini .vm-sub {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 2px;
  font-weight: 500;
}

/* ---------------- Section: Evidence + appeal ---------------- */
.evidence {
  padding: var(--section-gap) 0;
  background: var(--ink-900);
  color: var(--paper-50);
  position: relative;
  overflow: hidden;
}
.evidence::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(39,91,255,0.18), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(32,196,199,0.10), transparent);
  pointer-events: none;
}
.evidence-grid {
  position: relative;
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .evidence-grid { grid-template-columns: 1fr 1fr; }
}
.evidence-eyebrow { color: var(--accent-500); }
.evidence h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 5.5vw, 76px);
  color: var(--paper-50);
}
.evidence h2 .accent { color: var(--accent-500); font-style: italic; font-weight: 700; }
.evidence .lede {
  margin: 24px 0 0;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
}
.evidence-features {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.evidence-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.evidence-features li svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent-500);
  margin-top: 3px;
}
.evidence-features li b {
  display: block;
  color: var(--paper-50);
  font-weight: 700;
  margin-bottom: 2px;
}
.evidence-features li span {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Evidence: real PDF screenshot inside a paper-like document frame */
.evidence-pdf {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow:
    0 36px 80px -10px rgba(0,0,0,0.55),
    0 14px 32px -8px rgba(0,0,0,0.30),
    inset 0 0 0 1px rgba(0,0,0,0.06);
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
  padding: 14px 14px 56px;
  overflow: hidden;
}
.evidence-pdf-tab {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--brand-500);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.evidence-pdf-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.evidence-pdf-meta {
  position: absolute;
  bottom: 14px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
}
.evidence-pdf-meta svg { color: var(--brand-500); flex: none; }
.evidence-pdf-meta b { color: var(--ink-900); font-weight: 700; }

/* ---------------- Section: Privacy ---------------- */
.privacy {
  padding: var(--section-gap) 0;
  text-align: center;
}
.privacy-eyebrow { color: var(--brand-500); }
.privacy h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 6vw, 84px);
  max-width: 880px;
  margin-inline: auto;
}
.privacy h2 .accent { font-style: italic; color: var(--brand-500); }
.privacy .lede {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--ink-700);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
}
.privacy-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .privacy-grid { grid-template-columns: repeat(3, 1fr); }
}
.privacy-card {
  background: var(--brand-50);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 36px);
  text-align: left;
}
.privacy-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.privacy-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.privacy-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
}

/* ---------------- Final CTA ---------------- */
.cta-final {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  background: linear-gradient(155deg, var(--brand-500) 0%, var(--brand-600) 55%, var(--brand-700) 100%);
  border-radius: 40px;
  padding: clamp(48px, 8vw, 120px) clamp(28px, 5vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-brand);
}
.cta-final-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(32,196,199,0.30), transparent);
  pointer-events: none;
}
.cta-final h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  position: relative;
}
.cta-final h2 .accent {
  font-style: italic;
  font-weight: 700;
  color: #BBD0FF;
}
.cta-final .lede {
  margin: 20px auto 32px;
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.85);
  position: relative;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--brand-700);
}
.cta-final .btn-primary:hover { background: var(--paper-100); }
.cta-final .meta {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
  position: relative;
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--paper-100);
  border-top: 1px solid var(--paper-200);
  padding: 40px var(--page-pad);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-meta {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}
.footer-meta a {
  color: var(--ink-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--paper-200);
  transition: text-decoration-color .15s;
}
.footer-meta a:hover { text-decoration-color: var(--brand-500); }
.footer-tail {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* ---------------- Anchor scroll offsets ---------------- */
section[id] { scroll-margin-top: 80px; }
