/* ═══════════════════════════════════════════════════════════════
   TRUSTIVUM — LANDING PAGE DESIGN SYSTEM v2
   Dark navy · Space Grotesk headings · Inter body
   AEO/SEO optimised, scroll-reveal animations, fully responsive
═══════════════════════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --bg:           #05091a;
  --bg-raised:    #0a1020;
  --bg-card:      #0d1528;
  --bg-card-alt:  #091322;
  --border:       rgba(255,255,255,0.07);
  --border-lt:    rgba(255,255,255,0.13);
  --border-blue:  rgba(59,130,246,0.3);

  --text:         #f0f4ff;
  --text-muted:   #7a96be;
  --text-dim:     #3f5575;

  --blue:         #2563eb;
  --blue-lt:      #60a5fa;
  --blue-mid:     #3b82f6;
  --blue-glow:    rgba(37,99,235,0.18);

  --emerald:      #059669;
  --emerald-lt:   #34d399;
  --emerald-glow: rgba(5,150,105,0.15);

  --red:          #ef4444;
  --red-lt:       #fca5a5;
  --amber:        #f59e0b;
  --amber-lt:     #fcd34d;

  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 60px rgba(37,99,235,0.15);

  --max-w:        1100px;
  --max-w-md:     760px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--blue-lt);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ol, ul { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container    { max-width: var(--max-w);    margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: var(--max-w-md); margin: 0 auto; padding: 0 1.5rem; }

.section         { padding: 5rem 0; }
.section.bg-raised { background: var(--bg-raised); }

.section-eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 0.85rem;
}

.section-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
  white-space: nowrap;
}

.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; border-radius: 10px; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 16px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  background: #1d4fd8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-lt);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 2px 16px rgba(5,150,105,0.3);
}
.btn-emerald:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(5,150,105,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-lt);
}
.btn-outline:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  background: rgba(5,9,26,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text) !important;
  text-decoration: none !important;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--emerald));
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.logo-wordmark em {
  font-style: normal;
  color: var(--emerald-lt);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta {
  margin-left: 0.5rem;
  background: var(--blue);
  color: #fff !important;
  padding: 0.45rem 1rem;
}
.nav-links .nav-cta:hover { background: #1d4fd8; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 5.5rem;
}

/* ── PHOTO BACKGROUND ── */
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-photo.loaded { opacity: 1; }

/* Dark overlay — left half darker to keep text readable, right half lighter to show the image */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,9,26,0.92) 0%,
    rgba(5,9,26,0.85) 45%,
    rgba(5,9,26,0.55) 70%,
    rgba(5,9,26,0.35) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.hero-glow-1 {
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.3), transparent 70%);
  top: -150px;
  left: -100px;
}
.hero-glow-2 {
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(5,150,105,0.18), transparent 70%);
  top: 50px;
  right: -80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-lt);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-lt);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.5);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100%{ box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.h1-accent {
  background: linear-gradient(135deg, var(--blue-lt) 0%, var(--emerald-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-check { color: var(--emerald-lt); font-weight: 700; }
.trust-sep   { color: var(--text-dim); }

/* ── PROMPT CARD ────────────────────────────────────────── */
.hero-visual { position: relative; }

.prompt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.12);
  position: relative;
  overflow: hidden;
}
.prompt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--emerald-lt));
}

.prompt-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.prompt-app-icon {
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}
.prompt-app-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.prompt-channel {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
}
.prompt-time {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.prompt-week-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-lt);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 4px;
  padding: 0.18rem 0.5rem;
  display: inline-block;
  margin-bottom: 0.65rem;
}

.prompt-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.prompt-q-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.prompt-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.prompt-opt {
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: default;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-muted);
  text-align: left;
  transition: none;
  border-left-width: 3px;
  width: 100%;
}
.opt-yes  { border-left-color: var(--emerald-lt); color: var(--emerald-lt); background: rgba(5,150,105,0.06); border-color: rgba(52,211,153,0.2); border-left-color: var(--emerald-lt); }
.opt-warn { border-left-color: var(--amber-lt);   color: var(--amber-lt);   background: rgba(245,158,11,0.05); border-color: rgba(252,211,77,0.2); border-left-color: var(--amber-lt); }
.opt-no   { border-left-color: var(--text-dim);   color: var(--text-dim); }

.prompt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.prompt-evidence-tag {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
}
.prompt-progress {
  font-size: 0.72rem;
  color: var(--blue-lt);
  font-weight: 600;
}

.prompt-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  margin-top: 0.65rem;
  overflow: hidden;
}
.prompt-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--emerald-lt));
}

.hero-vis-caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   STAT STRIP
═══════════════════════════════════════════════════════════ */
.stat-strip {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.stat-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.25rem 1.25rem;
}
.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 175px;
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  height: 44px;
  background: var(--border);
  justify-self: center;
}

/* ═══════════════════════════════════════════════════════════
   PAIN / JOURNEY SECTION
═══════════════════════════════════════════════════════════ */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.journey-col {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.journey-col-bad  { background: rgba(239,68,68,0.03); border-color: rgba(239,68,68,0.15); }
.journey-col-good { background: rgba(5,150,105,0.03); border-color: rgba(5,150,105,0.2); }

.journey-col-header {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid inherit;
}
.journey-col-bad  .journey-col-header { border-color: rgba(239,68,68,0.12); background: rgba(239,68,68,0.07); }
.journey-col-good .journey-col-header { border-color: rgba(5,150,105,0.15); background: rgba(5,150,105,0.08); }

.journey-col-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey-col-label.bad  { color: #fca5a5; }
.journey-col-label.good { color: var(--emerald-lt); }

.journey-steps {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  position: relative;
}
.journey-step:not(.journey-step-last)::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.journey-col-good .journey-step:not(.journey-step-last)::before {
  background: rgba(5,150,105,0.2);
}

.step-marker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 26px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: 'Space Mono', monospace;
  position: relative;
  z-index: 1;
}
.step-marker.bad  { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }
.step-marker.good { background: rgba(5,150,105,0.12); color: var(--emerald-lt); border: 1px solid rgba(5,150,105,0.25); }

.step-content {
  padding-top: 0.2rem;
}
.step-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-content em { font-style: italic; color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: how-step;
}

.how-step {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(37,99,235,0.3), rgba(37,99,235,0.05));
}

.how-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.35);
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-lt);
  position: relative;
  z-index: 1;
}

.how-step-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  padding-top: 0.6rem;
}
.how-step-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── EVIDENCE VAULT MOCKUP ────────────────────────────── */
.how-visual { position: relative; }

.evidence-vault {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.ev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(37,99,235,0.05);
}
.ev-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.ev-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(37,99,235,0.15);
  color: var(--blue-lt);
  border: 1px solid rgba(37,99,235,0.25);
  letter-spacing: 0.05em;
}

.ev-controls {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ev-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.ev-done    { background: rgba(5,150,105,0.06);  border-color: rgba(5,150,105,0.15); }
.ev-progress{ background: rgba(37,99,235,0.06);  border-color: rgba(37,99,235,0.15); }
.ev-pending { background: rgba(255,255,255,0.02); border-color: var(--border); }

.ev-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px; /* hide any fallback text */
}
.ev-icon svg { display: block; }
.ev-done    .ev-icon { background: rgba(5,150,105,0.15);  color: var(--emerald-lt); }
.ev-progress .ev-icon { background: rgba(37,99,235,0.15); color: var(--blue-lt); }
.ev-pending .ev-icon { background: rgba(255,255,255,0.05); color: var(--text-dim); }

.ev-detail {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.ev-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ev-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
}

.ev-status {
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ev-status.done     { color: var(--emerald-lt); }
.ev-status.progress { color: var(--blue-lt); }
.ev-status.pending  { color: var(--text-dim); }

.ev-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
}
.ev-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.ev-pct { color: var(--blue-lt); }

.ev-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.ev-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--emerald-lt));
  transition: width 1.2s ease;
}

/* ═══════════════════════════════════════════════════════════
   AUDIENCE TABS
═══════════════════════════════════════════════════════════ */
.audience-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.aud-tab {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
  font-family: 'Inter', sans-serif;
}
.aud-tab:hover { color: var(--text); }
.aud-tab.active { color: var(--blue-lt); border-bottom-color: var(--blue-lt); }

.aud-panel { display: none; }
.aud-panel.active { display: block; }
.aud-panel[hidden] { display: none; }

.aud-panel-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
  padding: 1.75rem 0 0;
}

.aud-segment-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 0.65rem;
}

.aud-panel-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.aud-panel-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.aud-bullets {
  margin: 0.85rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aud-bullets li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.aud-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-lt);
  font-size: 0.75rem;
}
.aud-bullets li strong { color: var(--text); }

.aud-roi-callout {
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  border-left: 3px solid var(--blue-lt);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.aud-roi-callout strong { color: var(--text); }

.aud-framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.fw-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  background: rgba(96,165,250,0.1);
  color: var(--blue-lt);
  border: 1px solid rgba(96,165,250,0.2);
}
.fw-tag-target {
  background: rgba(245,158,11,0.08);
  color: var(--amber-lt);
  border-color: rgba(245,158,11,0.2);
}

/* ── ROI CARD ─────────────────────────────────────────── */
.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
}

.roi-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.roi-row:last-of-type { border-bottom: none; }
.roi-row span:last-child { text-align: right; white-space: nowrap; }

.roi-row-bad  { color: var(--text-muted); }
.roi-row-good { color: var(--emerald-lt); }

.roi-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  margin: 0.5rem 0;
  border-radius: 2px;
}

.roi-savings {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--emerald-lt);
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: 7px;
}

/* ═══════════════════════════════════════════════════════════
   COST COMPARISON TABLE
═══════════════════════════════════════════════════════════ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 600px;
}

.compare-table thead {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-lt);
}
.compare-table th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.4;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.col-category { color: var(--text) !important; font-weight: 600; background: rgba(255,255,255,0.01); }

.col-cf {
  background: rgba(5,150,105,0.04);
  border-left: 1px solid rgba(5,150,105,0.15);
  border-right: 1px solid rgba(5,150,105,0.15);
}
.cf-col-label {
  color: var(--emerald-lt);
  font-weight: 700;
}

.cf-good { color: var(--emerald-lt); font-weight: 600; }
.cost-note { font-size: 0.75rem; color: var(--text-dim); margin-left: 0.25rem; }
.cost-bad  { color: var(--red-lt); }
.cost-good { color: var(--emerald-lt); }

.total-row { background: rgba(5,150,105,0.04); }
.total-row .col-category { font-size: 0.9rem; }

.compare-footnote {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   PLATFORM COMPARISON TABLE
═══════════════════════════════════════════════════════════ */
.plat-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-card);
}

.plat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 640px;
}
.plat-table thead {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-lt);
}
.plat-table th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plat-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.plat-table tr:last-child td { border-bottom: none; }
.plat-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.plat-table td:first-child { color: var(--text); font-weight: 600; }

.cf-col-th {
  background: rgba(5,150,105,0.06);
  color: var(--emerald-lt) !important;
  border-left: 1px solid rgba(5,150,105,0.2);
}
.cf-col-td {
  background: rgba(5,150,105,0.04);
  border-left: 1px solid rgba(5,150,105,0.12);
}

.cmp-check { color: var(--emerald-lt); font-weight: 600; }
.cmp-x     { color: var(--text-dim); }
.cmp-warn  { color: var(--amber-lt); }

/* ═══════════════════════════════════════════════════════════
   AUDITOR SECTION
═══════════════════════════════════════════════════════════ */
.auditor-section {
  position: relative;
  overflow: hidden;
}
.auditor-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(5,150,105,0.08), transparent 70%);
  pointer-events: none;
}

.auditor-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.auditor-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.auditor-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.auditor-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.aud-check {
  color: var(--emerald-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auditor-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 220px;
}

.aud-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--emerald);
  text-align: center;
}
.aud-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald-lt);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.aud-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.price-card:hover { border-color: var(--border-lt); transform: translateY(-3px); }

.price-featured {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.04);
  box-shadow: 0 0 40px rgba(37,99,235,0.1);
}
.price-featured:hover { border-color: rgba(37,99,235,0.6); }

.price-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), #6366f1);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-mo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.1rem;
}

.price-billed {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.price-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.price-features li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.price-features li::before {
  content: '✓';
  color: var(--emerald-lt);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-price { width: 100%; margin-top: auto; }

.pricing-footnote {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-footnote strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════════════════════ */
.trust-section {
  background: linear-gradient(to bottom, rgba(37,99,235,0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
}

.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  transition: border-color .2s;
}
.trust-card:hover { border-color: var(--border-lt); }

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.trust-icon svg { display: block; }
.trust-icon.icon-cert    { background: rgba(37,99,235,0.1);  color: var(--blue-lt); }
.trust-icon.icon-network { background: rgba(5,150,105,0.1);  color: var(--emerald-lt); }
.trust-icon.icon-auditor { background: rgba(167,139,250,0.1); color: #a78bfa; }

.trust-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.trust-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section { padding: 5rem 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-lt); }
.faq-item[open] {
  border-color: rgba(37,99,235,0.25);
  background: rgba(37,99,235,0.02);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color .15s;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform .25s, color .15s;
}
.faq-item[open] .faq-q { color: var(--blue-lt); }
.faq-item[open] .faq-q::after {
  content: '+';
  transform: rotate(45deg);
  color: var(--blue-lt);
}

.faq-a {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--border);
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.85rem;
}
.faq-a p + p { margin-top: 0.6rem; }
.faq-a strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.container-sm { max-width: 660px; margin: 0 auto; padding: 0 1.5rem; }

.contact-section {
  padding: 5rem 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-text .section-h2 { max-width: 420px; }
.contact-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.contact-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
}
.contact-badge .cb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald-lt); flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── CONTACT FORM (v2 variant) ───────────────────────── */
.cf-form {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-raised);
  border: 1px solid var(--border-lt);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a96be' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.5rem; }
.form-field select option { background: #0d1528; color: #f0f4ff; }
.form-field textarea { resize: vertical; min-height: 110px; }

.btn-xl { padding: 1rem 2rem; font-size: 1.05rem; border-radius: 10px; width: 100%; justify-content: center; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.contact-direct {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
.contact-direct a { color: var(--blue-lt); }

.form-submit { width: 100%; margin-top: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  color: var(--text-dim);
  font-size: 0.83rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.footer-wordmark strong { color: var(--emerald-lt); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 240px;
  margin-top: 0.25rem;
}
.footer-tagline a { color: var(--text-dim); }
.footer-tagline a:hover { color: var(--text-muted); }

.footer-nav {
  display: contents;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer-nav-col a {
  color: var(--text-dim);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color .15s;
  line-height: 1.5;
}
.footer-nav-col a:hover { color: var(--text-muted); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-cert-note {
  color: var(--emerald-lt);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-h1       { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .hero-sub      { max-width: 100%; }
  .hero-visual   { max-width: 520px; }
  .how-grid      { grid-template-columns: 1fr; }
  .how-visual    { order: -1; }
  .evidence-vault{ position: static; max-width: 480px; margin: 0 auto; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .auditor-inner { grid-template-columns: 1fr; }
  .auditor-stats { flex-direction: row; flex-wrap: wrap; }
  .aud-stat      { flex: 1; min-width: 150px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    background: rgba(5,9,26,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open .nav-cta { margin-left: 0; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 3.5rem 1.25rem 4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { font-size: 0.78rem; }

  .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-div { display: none; }
  .stat { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
  .stat-strip-inner .stat:nth-child(odd) { border-right: 1px solid var(--border); }

  .journey-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }

  .aud-panel-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .aud-panel-aside { max-width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 1.5rem; }
  .trust-grid   { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand  { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .audience-tabs { border-bottom: none; flex-direction: column; gap: 0.25rem; }
  .aud-tab { border-bottom: none; border-left: 2px solid transparent; border-radius: 0 6px 6px 0; padding: 0.55rem 0.85rem; text-align: left; }
  .aud-tab.active { border-left-color: var(--blue-lt); border-bottom: none; }

  .footer-inner  { grid-template-columns: 1fr; }

  .plat-table { font-size: 0.78rem; }
  .plat-table th, .plat-table td { padding: 0.55rem 0.65rem; }

  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 0.55rem 0.65rem; }

  .footer-top { grid-template-columns: 1fr; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .nav, .hero-bg, .hero-actions, .nav-toggle { display: none; }
  body { background: #fff; color: #111; }
  .section-h2 { color: #111; }
}
