/* ═══════════════════════════════════════════════════════════════════
   JTC Tech — Shared Product Site CSS
   Structural layout for all JTC product landing pages.

   Brand accent is controlled by a theme.css loaded after this file.
   Override the --accent-* variables in theme.css to rebrand.

   Google Fonts required in HTML:
   Instrument Serif (ital 0;1) · DM Mono (wght 400;500) · Syne (wght 700;800)
   ═══════════════════════════════════════════════════════════════════ */

/* ── DEFAULT TOKENS (JTC blue — override in theme.css) ───────────── */
:root {
  /* Backgrounds */
  --ink:        #080c12;
  --ink2:       #0d1320;
  --ink3:       #131928;
  --ink4:       #1a2235;
  --wire:       rgba(255, 255, 255, 0.07);
  --wire2:      rgba(255, 255, 255, 0.12);

  /* Severity */
  --red:        #ef4444;
  --red-dim:    rgba(239, 68, 68, 0.10);
  --amber:      #f59e0b;
  --amber-dim:  rgba(245, 158, 11, 0.10);
  --green:      #22c55e;
  --green-dim:  rgba(34, 197, 94, 0.08);
  --indigo:     #818cf8;

  /* Text */
  --text:       #e2e8f0;
  --text2:      #94a3b8;
  --text3:      #475569;

  /* Typography */
  --serif:      'Instrument Serif', Georgia, serif;
  --mono:       'DM Mono', 'Courier New', monospace;
  --syne:       'Syne', sans-serif;

  /* Brand accent — override these in theme.css */
  --accent:           #2a6ef5;
  --accent-2:         #4f8fff;
  --accent-hover:     #1d5cd4;
  --accent-bg:        rgba(42, 110, 245, 0.12);
  --accent-dim:       rgba(42, 110, 245, 0.10);
  --accent-glow:      rgba(42, 110, 245, 0.18);
  --accent-border:    rgba(42, 110, 245, 0.25);
  --accent-border-hi: rgba(42, 110, 245, 0.40);
  --accent-shadow:    rgba(42, 110, 245, 0.20);
  --accent-shadow-lg: rgba(42, 110, 245, 0.15);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE TEXTURE ───────────────────────────────────────────────── */
body::before {
  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: 1000; opacity: 0.4;
}

/* ── GRID BACKGROUND ─────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--wire) 1px, transparent 1px),
    linear-gradient(90deg, var(--wire) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ── GLOW BLOBS ──────────────────────────────────────────────────── */
.glow-blob {
  position: fixed; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.glow-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-bg), transparent 70%);
  top: -200px; right: -100px;
}
.glow-blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,68,68,0.06), transparent 70%);
  bottom: 200px; left: -100px;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8, 12, 18, 0.80);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wire);
}

.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}

.nav-shield {
  width: 32px; height: 36px;
  background: linear-gradient(135deg, #1a3a6f, #0d1b2a);
  border: 1px solid var(--accent-border-hi);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--accent-shadow);
}

.nav-name {
  font-family: var(--syne);
  font-weight: 800; font-size: 17px;
  color: #fff; letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 12px; color: var(--text2);
  text-decoration: none; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

.nav-cta {
  font-size: 12px; font-family: var(--mono);
  padding: 8px 18px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 6px;
  cursor: pointer; letter-spacing: 0.03em;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── MOBILE NAV ──────────────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text2); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  position: fixed; top: 57px; left: 0; right: 0;
  background: rgba(8,12,18,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wire); z-index: 99;
  padding: 8px 20px 20px;
}
.nav-mobile.open { display: flex; }

.nav-mobile__link {
  padding: 14px 0; color: var(--text2); text-decoration: none;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid var(--wire); transition: color 0.2s;
}
.nav-mobile__link:hover { color: var(--text); }

.nav-mobile__cta {
  display: block; margin-top: 14px; padding: 13px;
  background: var(--accent); color: #fff; text-decoration: none;
  border-radius: 6px; font-size: 13px; text-align: center;
  font-family: var(--mono); transition: opacity 0.2s;
}
.nav-mobile__cta:hover { opacity: 0.85; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 2; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 40px 80px; text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2);
  animation: pulse 2s ease infinite;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05; color: #fff; max-width: 900px; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-headline em { font-style: italic; color: var(--accent-2); }

.hero-sub {
  font-size: 16px; color: var(--text2); max-width: 560px;
  line-height: 1.75; margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.2s both;
}

/* ── WAITLIST FORM ───────────────────────────────────────────────── */
.waitlist {
  display: flex; gap: 0; max-width: 440px; width: 100%;
  margin-bottom: 20px; animation: fadeUp 0.6s ease 0.3s both;
  box-shadow: 0 0 40px var(--accent-shadow-lg);
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--accent-border);
}

.waitlist-input {
  flex: 1; background: var(--ink3); border: none; color: var(--text);
  font-family: var(--mono); font-size: 13px; padding: 14px 18px; outline: none;
}
.waitlist-input::placeholder { color: var(--text3); }

.waitlist-btn {
  background: var(--accent); color: #fff; border: none;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  padding: 14px 24px; cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.waitlist-btn:hover { background: var(--accent-hover); }

.waitlist-note { font-size: 11px; color: var(--text3); animation: fadeUp 0.6s ease 0.4s both; }

.waitlist-success {
  display: none; align-items: center; gap: 10px;
  font-size: 14px; color: var(--green); background: var(--green-dim);
  border: 1px solid rgba(34, 197, 94, 0.20);
  padding: 12px 20px; border-radius: 8px; max-width: 440px; width: 100%;
}

/* ── HERO PILLS ──────────────────────────────────────────────────── */
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-top: 40px;
  animation: fadeUp 0.6s ease 0.5s both;
}

.pill {
  font-size: 11px; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 999px; border: 1px solid;
  display: flex; align-items: center; gap: 5px;
}
.pill-blue  { background: var(--accent-dim);  color: var(--accent-2); border-color: var(--accent-border); }
.pill-green { background: var(--green-dim);   color: var(--green);    border-color: rgba(34,197,94,0.20); }

/* ── DOWNLOAD SECTION ────────────────────────────────────────────── */
.tester-download {
  margin-top: 32px; display: flex; flex-direction: column;
  align-items: center; gap: 10px; animation: fadeUp 0.6s ease 0.6s both;
}

.tester-download__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: var(--mono); padding: 10px 22px;
  border: 1px solid var(--accent-border-hi); border-radius: 6px;
  color: var(--accent-2); text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
}
.tester-download__btn:hover { background: var(--accent-dim); border-color: var(--accent-border-hi); }

details.tester-install { max-width: 400px; width: 100%; text-align: left; }
details.tester-install > summary {
  cursor: pointer; list-style: none; text-align: center;
  font-size: 11px; color: var(--text3); letter-spacing: 0.04em;
  padding: 4px 0; user-select: none;
}
details.tester-install > summary::-webkit-details-marker { display: none; }
details.tester-install > summary::after { content: ' ▾'; }
details.tester-install[open] > summary::after { content: ' ▴'; }

.tester-install__steps {
  margin-top: 10px; background: var(--ink3); border: 1px solid var(--wire2);
  border-radius: 8px; padding: 14px 16px 14px 36px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; color: var(--text2); line-height: 1.6;
}
.tester-install__steps code {
  font-family: var(--mono); font-size: 11px;
  background: rgba(255,255,255,0.08); padding: 1px 5px; border-radius: 3px;
  color: var(--accent-2);
}

/* ── SECTION BASE ────────────────────────────────────────────────── */
section {
  position: relative; z-index: 2; padding: 100px 40px;
  max-width: 1100px; margin: 0 auto;
}

.section-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent-2); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px); color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--accent-2); }

.section-body { font-size: 15px; color: var(--text2); line-height: 1.8; max-width: 580px; }

/* ── STORY ───────────────────────────────────────────────────────── */
.story { border-top: 1px solid var(--wire); }

.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 60px;
}

.story-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px); font-style: italic;
  color: #fff; line-height: 1.45;
  padding-left: 24px; border-left: 2px solid var(--accent);
}

.story-text {
  font-size: 14.5px; color: var(--text2); line-height: 1.85;
  display: flex; flex-direction: column; gap: 16px;
}
.story-text p strong { color: var(--text); }

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how { border-top: 1px solid var(--wire); }

.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--wire); border: 1px solid var(--wire);
  border-radius: 12px; overflow: hidden;
}

.step-card {
  background: var(--ink2); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px; transition: background 0.2s;
}
.step-card:hover { background: var(--ink3); }

.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  color: var(--accent-2); font-size: 12px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.step-title { font-family: var(--syne); font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.step-desc  { font-size: 12px; color: var(--text2); line-height: 1.6; }

/* ── DETECTION TYPES ─────────────────────────────────────────────── */
.detect { border-top: 1px solid var(--wire); }

.detect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 60px;
  background: var(--wire); border: 1px solid var(--wire);
  border-radius: 12px; overflow: hidden;
}

.detect-card {
  background: var(--ink2); padding: 24px;
  display: flex; align-items: flex-start; gap: 14px; transition: background 0.2s;
}
.detect-card:hover { background: var(--ink3); }

.detect-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.detect-dot--high   { background: var(--red);   box-shadow: 0 0 6px var(--red); }
.detect-dot--medium { background: var(--amber);  box-shadow: 0 0 6px var(--amber); }

.detect-type  { font-size: 13px; color: #fff; font-weight: 500; margin-bottom: 3px; }
.detect-eg    { font-family: var(--mono); font-size: 11px; color: var(--text3); }
.detect-level { font-size: 10px; letter-spacing: 0.05em; }
.detect-level--high   { color: var(--red); }
.detect-level--medium { color: var(--amber); }

/* ── RISK LEVELS ─────────────────────────────────────────────────── */
.risk { border-top: 1px solid var(--wire); }

.risk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 60px;
}

.risk-card {
  padding: 28px; border-radius: 10px; border: 1px solid;
  display: flex; flex-direction: column; gap: 12px;
}
.risk-card--high   { background: var(--red-dim);   border-color: rgba(239,68,68,0.20); }
.risk-card--medium { background: var(--amber-dim);  border-color: rgba(245,158,11,0.20); }
.risk-card--low    { background: var(--green-dim);  border-color: rgba(34,197,94,0.15); }

.risk-badge {
  font-family: var(--syne); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 10px; border-radius: 4px;
  display: inline-block; width: fit-content;
}
.risk-badge--high   { background: rgba(239,68,68,0.20);  color: #f87171; }
.risk-badge--medium { background: rgba(245,158,11,0.20); color: #fbbf24; }
.risk-badge--low    { background: rgba(34,197,94,0.12);  color: #4ade80; }

.risk-title { font-family: var(--syne); font-size: 16px; font-weight: 700; color: #fff; }
.risk-desc  { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── RISK + MOCKUP GRID ──────────────────────────────────────────── */
.risk-mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-top: 60px;
}

/* ── MOCKUP ──────────────────────────────────────────────────────── */
.mockup-wrap { display: flex; flex-direction: column; gap: 12px; margin-top: 60px; }

.mockup-banner {
  background: #7f1d1d; border: 1px solid var(--red);
  border-radius: 10px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; font-size: 13px;
}
.mockup-banner__icon  { font-size: 18px; }
.mockup-banner__body  { flex: 1; }
.mockup-banner__title { color: #fef2f2; font-weight: 500; }
.mockup-banner__sub   { color: rgba(254,242,242,0.65); font-size: 11.5px; margin-top: 2px; }
.mockup-banner__btn   { background: #991b1b; color: #fef2f2; border-radius: 6px; padding: 6px 14px; font-size: 12px; cursor: default; white-space: nowrap; }

.mockup-modal {
  background: var(--ink3); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 14px;
}
.mockup-modal__header { display: flex; align-items: center; gap: 8px; }
.mockup-modal__title  { font-size: 14px; color: #f9fafb; font-weight: 500; }

.mockup-modal__detect { background: rgba(0,0,0,0.30); border-radius: 6px; padding: 10px 14px; }
.mockup-modal__type   { font-size: 12px; color: #fbbf24; margin-bottom: 6px; font-weight: 500; }
.mockup-modal__chips  { display: flex; gap: 6px; flex-wrap: wrap; }

.chip {
  font-family: var(--mono); font-size: 10.5px; color: var(--text3);
  background: rgba(255,255,255,0.05); border: 1px solid var(--wire2);
  padding: 2px 8px; border-radius: 4px;
}

.mockup-modal__explainer {
  font-size: 11.5px; color: var(--text2);
  padding: 8px 0 0; border-top: 1px dashed var(--wire2); line-height: 1.55;
}
.mockup-modal__btns { display: flex; gap: 8px; flex-wrap: wrap; }

.mbtn { font-family: var(--mono); font-size: 11px; padding: 6px 12px; border-radius: 6px; cursor: default; white-space: nowrap; }
.mbtn--green  { background: #065f46; color: #d1fae5; }
.mbtn--blue   { background: var(--accent-bg); color: var(--accent-2); border: 1px solid var(--accent-border); }
.mbtn--gray   { background: rgba(255,255,255,0.06); color: var(--text2); }
.mbtn--indigo { background: rgba(129,140,248,0.12); color: var(--indigo); border: 1px solid rgba(129,140,248,0.25); }

/* ── PRIVACY ─────────────────────────────────────────────────────── */
.privacy { border-top: 1px solid var(--wire); }

.privacy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 60px;
  background: var(--wire); border: 1px solid var(--wire);
  border-radius: 12px; overflow: hidden;
}

.privacy-card {
  background: var(--ink2); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px; transition: background 0.2s;
}
.privacy-card:hover { background: var(--ink3); }
.privacy-icon  { font-size: 24px; }
.privacy-title { font-family: var(--syne); font-size: 14px; font-weight: 700; color: #fff; }
.privacy-desc  { font-size: 12.5px; color: var(--text2); line-height: 1.6; }

/* ── POPIA ───────────────────────────────────────────────────────── */
.popia { border-top: 1px solid var(--wire); }

.popia-inner {
  margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.popia-sections { display: flex; flex-direction: column; gap: 12px; }

.popia-section-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--ink3);
  border: 1px solid var(--wire2); border-radius: 8px; transition: border-color 0.2s;
}
.popia-section-row:hover { border-color: rgba(129,140,248,0.30); }

.popia-tag {
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
  background: rgba(129,140,248,0.15); color: var(--indigo);
  border: 1px solid rgba(129,140,248,0.25);
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}

.popia-section-title { font-size: 13px; color: #fff; font-weight: 500; margin-bottom: 3px; }
.popia-section-desc  { font-size: 12px; color: var(--text2); line-height: 1.55; }

.popia-note {
  margin-top: 16px; font-size: 11.5px; color: var(--text3); line-height: 1.6; font-style: italic;
}

/* ── PRICING (simple card) ───────────────────────────────────────── */
.pricing { border-top: 1px solid var(--wire); text-align: center; }

.pricing-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 20px;
}
.pricing-eyebrow::before, .pricing-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--accent-2);
}

.pricing-headline {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 58px);
  color: #fff; line-height: 1.1; text-align: center; margin-bottom: 16px;
}
.pricing-headline em { font-style: italic; color: var(--accent-2); }

.pricing-sub-text {
  text-align: center; font-size: 15px; color: var(--text2);
  max-width: 520px; margin: 0 auto 60px; line-height: 1.7;
}

/* Multi-tier pricing grid */
.cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start;
}

.card {
  background: var(--ink2); border: 1px solid var(--wire2);
  border-radius: 16px; padding: 36px 28px; position: relative; text-align: left;
}

.card--pro {
  background: linear-gradient(135deg, #0d1f42, #091428);
  border-color: var(--accent-border-hi);
  box-shadow: 0 0 50px var(--accent-shadow-lg);
}

.card-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px; padding: 4px 16px;
  font-size: 10px; font-weight: 700; font-family: var(--syne);
  color: #fff; letter-spacing: 0.08em; white-space: nowrap;
}

.card-tier {
  font-family: var(--syne); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.card--pro .card-tier { color: var(--accent-2); }

.card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.card-price-amount { font-family: var(--syne); font-size: 46px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.card-price-unit   { font-size: 13px; color: var(--text3); }

.card-billing { font-size: 12px; color: var(--text3); margin-bottom: 28px; }
.card-billing span { color: var(--accent-2); }

.card-divider { height: 1px; background: var(--wire2); margin-bottom: 24px; }
.card--pro .card-divider { background: var(--accent-border); }

.features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }

.feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text2); line-height: 1.5; }
.feature--off { color: var(--text3); }

.feature-icon { flex-shrink: 0; margin-top: 1px; font-style: normal; font-weight: 700; }
.feature-icon--yes { color: var(--green); }
.card--pro .feature-icon--yes { color: var(--accent-2); }
.feature-icon--no  { color: var(--text3); }
.feature strong    { color: var(--text); }

.card-cta {
  display: block; text-align: center; padding: 12px 20px;
  border-radius: 8px; font-family: var(--syne); font-size: 13px;
  font-weight: 700; text-decoration: none; transition: opacity 0.15s;
  letter-spacing: 0.02em; cursor: pointer;
}
.card-cta--ghost   { background: transparent; border: 1px solid var(--wire2); color: var(--text2); }
.card-cta--ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.card-cta--primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border: none; }
.card-cta--primary:hover { opacity: 0.88; }

.pricing-note {
  text-align: center; margin-top: 40px; font-size: 13px; color: var(--text3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Comparison table */
.compare { max-width: 900px; margin: 80px auto 0; }
.compare-title { font-family: var(--syne); font-size: 20px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 32px; }
.compare table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare th { background: var(--ink3); color: var(--text2); padding: 12px 16px; text-align: left; font-weight: 600; font-family: var(--syne); border-bottom: 1px solid var(--wire2); }
.compare th:not(:first-child) { text-align: center; }
.compare td { padding: 12px 16px; color: var(--text2); border-bottom: 1px solid var(--wire); vertical-align: middle; }
.compare td:not(:first-child) { text-align: center; }
.compare tr:last-child td { border-bottom: none; }
.compare td strong { color: var(--text); }
.c-yes { color: var(--green); font-weight: 700; }
.c-pro  { color: var(--accent-2); font-weight: 700; }
.c-no   { color: var(--text3); }

/* ── WAITLIST SECTION ────────────────────────────────────────────── */
.waitlist-section { border-top: 1px solid var(--wire); text-align: center; }
.waitlist-section .section-label { justify-content: center; }
.waitlist-section .section-label::before { display: none; }
.waitlist-section .section-body { margin: 0 auto 40px; }
.waitlist-form-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 2; border-top: 1px solid var(--wire);
  padding: 40px; display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto;
}

.footer-brand  { display: flex; align-items: center; gap: 10px; }
.footer-name   { font-family: var(--syne); font-weight: 800; font-size: 15px; color: #fff; }
.footer-tagline{ font-size: 11px; color: var(--text3); }
.footer-links  { display: flex; gap: 24px; }

.footer-link {
  font-size: 12px; color: var(--text3); text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--text2); }
.footer-legal { font-size: 11px; color: var(--text3); text-align: right; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-right .nav-link { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 20px; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .detect-grid   { grid-template-columns: 1fr 1fr; }
  .risk-grid     { grid-template-columns: 1fr; }
  .privacy-grid  { grid-template-columns: 1fr 1fr; }
  .story-grid    { grid-template-columns: 1fr; gap: 40px; }
  .popia-inner   { grid-template-columns: 1fr; }
  .risk-mockup-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .mockup-wrap   { margin-top: 0; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links  { justify-content: center; }
  .footer-legal  { text-align: center; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 14px 16px; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 34px; }
  .hero-sub { font-size: 14px; }
  .hero-eyebrow { font-size: 10px; }
  section { padding: 60px 16px; }
  .steps-grid    { grid-template-columns: 1fr; }
  .detect-grid   { grid-template-columns: 1fr; }
  .privacy-grid  { grid-template-columns: 1fr; }
  .risk-mockup-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .waitlist { flex-direction: column; border-radius: 8px; box-shadow: none; }
  .waitlist-input { border-radius: 8px 8px 0 0; padding: 14px 16px; }
  .waitlist-btn   { border-radius: 0 0 8px 8px; padding: 14px 16px; }
  .mockup-banner  { flex-wrap: wrap; gap: 8px; padding: 12px 14px; }
  .mockup-banner__btn { width: 100%; text-align: center; padding: 8px; }
  .mockup-modal__btns { gap: 6px; }
  .mbtn { font-size: 10.5px; padding: 5px 10px; }
  .mockup-modal__chips { gap: 4px; }
  .chip { font-size: 10px; }
  .story-quote { font-size: 20px; padding-left: 16px; }
  .story-text  { font-size: 13.5px; }
  .popia-section-row { padding: 12px 14px; gap: 10px; }
  .popia-tag   { font-size: 10px; }
  .card { padding: 28px 20px; }
  .risk-card   { padding: 20px; }
  .step-card   { padding: 20px 18px; }
  .detect-card { padding: 18px; }
  .privacy-card{ padding: 20px 18px; }
  .section-title { font-size: 28px; }
  footer { padding: 28px 16px; }
  .footer-links { flex-wrap: wrap; gap: 14px; justify-content: center; }
}
