/* ============================================================
   home.css — Homepage-specific styles
   Scam Rescue India
   All values via design tokens. No hardcoded hex. No backdrop-filter.
   ============================================================ */

/* ── [1] TOP PRECISION BAR ─────────────────────────────────── */
.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 9999;
  transform: translateY(-150%);
  transition: transform var(--motion-fast) var(--easing-default);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: var(--space-3);
  left: var(--space-3);
  transform: translateY(0) !important;
  transition: none;
  outline: 2px solid var(--color-teal-950);
  outline-offset: 2px;
}

.topbar {
  background-color: var(--color-teal-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-sticky);
}

.topbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  overflow: hidden;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.topbar__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-amber-500);
  animation: topbar-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.topbar__status-live {
  color: var(--color-amber-400);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.topbar__sep {
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes topbar-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@media (max-width: 699px) {
  .topbar__secondary { display: none; }
}

/* ── [2] HEADER ────────────────────────────────────────────── */
.site-header {
  background-color: var(--color-teal-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-6);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__brandmark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-amber-400), var(--color-amber-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  color: var(--color-teal-950);
  flex-shrink: 0;
  line-height: 1;
}

.site-header__brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--color-on-primary);
  line-height: var(--lh-tight);
}

.site-header__brand-tagline {
  font-size: var(--fs-xs);
  color: var(--color-primary-tint);
  opacity: 0.7;
  line-height: 1;
  margin-top: 2px;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
  justify-content: center;
}

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
}

.site-header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--color-primary-tint);
  text-decoration: none;
  opacity: 0.85;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--motion-fast) var(--easing-default),
              border-color var(--motion-fast) var(--easing-default),
              opacity var(--motion-fast) var(--easing-default);
}

.site-header__nav a:hover {
  color: var(--color-on-primary);
  border-bottom-color: var(--color-amber-500);
  opacity: 1;
}

.site-header__nav a.is-active,
.site-header__nav a[aria-current='page'] {
  color: var(--color-on-primary);
  border-bottom-color: var(--color-amber-400);
  opacity: 1;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-header__tel {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-tint);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--easing-default);
}

@media (min-width: 640px) {
  .site-header__tel { display: flex; }
}

.site-header__tel-num {
  color: var(--color-amber-400);
}

.site-header__tel:hover { color: var(--color-on-primary); }

.site-header__cta {
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  line-height: var(--lh-ui);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
  min-height: 36px;
  display: flex;
  align-items: center;
}

.site-header__cta:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-1px);
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--tap-min);
  height: var(--tap-min);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
}

@media (min-width: 900px) { .site-header__hamburger { display: none; } }

.site-header__hamburger:hover { background-color: rgba(255, 255, 255, 0.1); }

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-on-primary);
  border-radius: 2px;
}

.site-header__mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--color-teal-950);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__mobile-menu.is-open { display: flex; }

.site-header__mobile-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: var(--space-3) var(--container-pad);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-primary-tint);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.site-header__mobile-menu a:hover {
  color: var(--color-on-primary);
  border-left-color: var(--color-amber-500);
}

.site-header__mobile-menu a.is-active,
.site-header__mobile-menu a[aria-current='page'] {
  color: var(--color-on-primary);
  border-left-color: var(--color-amber-400);
}

.site-header__nav-badge {
  position: absolute;
  top: -8px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #F59E0B;
  color: var(--color-teal-950);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  line-height: 1;
  box-sizing: border-box;
  pointer-events: none;
}

.site-header__mobile-menu .site-header__nav-badge {
  top: 8px;
  right: calc(var(--container-pad) - 2px);
}

/* ── [3] HERO ──────────────────────────────────────────────── */
.hero-v2 {
  background-color: var(--color-teal-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: 56px var(--container-pad) 64px;
  position: relative;
  overflow: visible;
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-amber-500) 50%, transparent 100%);
  pointer-events: none;
}

.hero-v2__inner {
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 979px) {
  .hero-v2 { padding-top: 48px; padding-bottom: 80px; }
  .hero-v2__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left column */
.hero-v2__status-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
  white-space: nowrap;
  flex-wrap: wrap;
}

.hero-v2__status-live {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: var(--fw-black);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.hero-v2__h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1-hero);
  font-weight: 300;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-4);
}

.hero-v2__h1 em {
  font-style: italic;
  color: var(--color-amber-400);
}

.hero-v2__lead {
  font-size: 18px;
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: var(--space-6);
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-5);
}

.hero-v2__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: var(--space-3) var(--space-8);
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  line-height: var(--lh-ui);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.hero-v2__cta-primary:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .hero-v2__cta-primary { font-size: var(--fs-button); }
}

.hero-v2__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: var(--space-3) var(--space-6);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: var(--fw-medium);
  line-height: var(--lh-ui);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--motion-fast) var(--easing-default),
              color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.hero-v2__cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-text-on-dark);
  transform: translateY(-1px);
}

.hero-v2__cta-ghost strong {
  color: var(--color-amber-400);
  font-weight: var(--fw-bold);
}

.hero-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
}

.hero-v2__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-v2__trust-check {
  color: var(--color-amber-500);
  font-size: 11px;
  font-weight: var(--fw-bold);
}

.hero-v2__trust-tel {
  color: var(--color-amber-400);
  font-weight: var(--fw-bold);
  text-decoration: none;
}

.hero-v2__trust-tel:hover {
  color: var(--color-amber-500);
}

/* Right column — Protocol Panel */
.proto-panel {
  background-color: var(--color-teal-950);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.proto-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proto-panel__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
}

.proto-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-protocol-done);
  flex-shrink: 0;
}

.proto-panel__code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.proto-step {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proto-step:last-child { border-bottom: none; }

.proto-step__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.proto-step__num--done {
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
}

.proto-step__num--now {
  background-color: rgba(245, 158, 11, 0.18);
  color: var(--color-amber-400);
}

.proto-step__num--ready {
  background-color: rgba(245, 158, 11, 0.10);
  color: var(--color-amber-400);
}

.proto-panel__demo-note {
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.03em;
}

.proto-step__content { min-width: 0; }

.proto-step__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  margin-bottom: 2px;
  line-height: var(--lh-snug);
}

.proto-step__helper {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.proto-step__meta {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.proto-step__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: var(--fw-bold);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.proto-step__tag--done {
  background-color: rgba(74, 222, 128, 0.15);
  color: var(--color-protocol-done);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.proto-step__tag--now {
  background-color: rgba(245, 158, 11, 0.2);
  color: var(--color-amber-400);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.proto-step__tag--ready {
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proto-panel__footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proto-panel__footer strong {
  color: var(--color-text-on-dark);
  font-weight: var(--fw-bold);
}

/* ── [4] DANGER CALLOUT OVERLAP ────────────────────────────── */
.danger-overlap-wrap {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-pad);
}

.danger-overlap-wrap__inner {
  max-width: 1180px;
  margin: -34px auto 0;
}

.danger-v2 {
  background-color: #FEFEFE;
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-top: 3px solid var(--color-danger);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(8, 19, 17, 0.10);
}

.danger-v2__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.danger-v2__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-danger);
  color: var(--color-surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
  line-height: 1;
}

.danger-v2__heading {
  font-size: 20px;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  color: var(--color-danger);
  line-height: var(--lh-snug);
}

.danger-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 767px) {
  .danger-v2__grid { grid-template-columns: 1fr; }
}

.danger-v2__cell {
  background-color: rgba(254, 242, 242, 0.6);
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 18px;
  padding: 18px;
}

.danger-v2__cell-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-danger-deep);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-2);
}

.danger-v2__cell-text {
  font-size: var(--fs-small);
  color: var(--color-danger-deep);
  line-height: var(--lh-relaxed);
  opacity: 0.82;
}

.danger-v2__cell-text a {
  color: var(--color-danger);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
}

/* ── [5] RESCUE PATHS ──────────────────────────────────────── */
.rescue-paths {
  background-color: var(--color-surface-1);
  padding: 36px var(--container-pad) 60px;
}

.rescue-paths__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.section-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-warn);
}

.rescue-paths__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-heading);
  color: var(--color-teal-900);
  max-width: 900px;
  margin-top: var(--space-3);
  line-height: var(--lh-heading);
}

.rescue-paths__lead {
  font-size: var(--fs-body-lg);
  color: var(--color-muted);
  max-width: 560px;
  line-height: var(--lh-relaxed);
  margin-top: var(--space-3);
}

.rescue-paths__cue {
  margin-top: var(--space-2);
  font-size: var(--fs-h3);
  color: var(--color-amber-500);
  line-height: 1;
  opacity: 0.75;
}

.scam-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 14px;
  margin-top: var(--space-5);
}

@media (max-width: 900px) {
  .scam-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .scam-grid { grid-template-columns: 1fr; }
}

.scam-card {
  background-color: var(--color-surface-1);
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 28px rgba(6, 47, 44, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease,
              box-shadow 160ms ease,
              border-color 160ms ease;
}

.scam-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(6, 47, 44, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
}

/* ── Global focus visibility — WCAG 2.4.11, works on light and dark surfaces */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-teal-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--color-amber-500);
}

.scam-card:focus-visible {
  outline: 2px solid var(--color-teal-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--color-amber-500);
  transition: none;
}

.scam-card--priority {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 8px 28px rgba(6, 47, 44, 0.09);
}

.scam-card:focus-visible {
  box-shadow: 0 0 0 5px var(--color-amber-500) !important;
}

.scam-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
}

.scam-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(19, 78, 74, 0.15);
  color: var(--color-teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.scam-card__icon svg {
  width: 20px;
  height: 20px;
}

.scam-card__h3 {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--color-ink-950);
  letter-spacing: var(--ls-tight);
  margin-bottom: 8px;
  line-height: var(--lh-snug);
}

.scam-card__desc {
  font-size: 14px;
  color: var(--color-ink-600);
  line-height: 1.55;
  font-weight: var(--fw-medium);
  flex: 1;
  margin-bottom: 14px;
}

.scam-card__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-black);
  color: var(--color-warn);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ── [6] PROCESS BAND ──────────────────────────────────────── */
.process-band {
  background-color: var(--color-teal-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: 76px var(--container-pad);
}

.process-band__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.process-band__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-amber-400);
}

.process-band__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  margin-top: var(--space-3);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
}

.process-band__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  line-height: var(--lh-relaxed);
  margin-top: var(--space-4);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.process-card__num {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background-color: var(--color-amber-400);
  color: var(--color-teal-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-body);
  font-weight: var(--fw-black);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.process-card__h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.process-card__p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  font-weight: var(--fw-medium);
}

/* ── [7] TRUST PANEL ───────────────────────────────────────── */
.trust-section {
  background-color: var(--color-surface-soft);
  padding: 76px var(--container-pad);
}

.trust-section__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.trust-card {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(6, 47, 44, 0.14);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 767px) {
  .trust-card { grid-template-columns: 1fr; }
}

.trust-card__kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: #92400E;
  margin-bottom: var(--space-3);
}

.trust-card__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-teal-900);
  letter-spacing: var(--ls-heading-max);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.trust-card__lead {
  font-size: var(--fs-body);
  color: var(--color-ink-600);
  line-height: var(--lh-relaxed);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .trust-items { gap: 20px; }
}

@media (max-width: 480px) {
  .trust-items { grid-template-columns: 1fr; }
}

.trust-item {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-ink-800);
  line-height: var(--lh-base);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.trust-item::before {
  content: '✓';
  color: var(--color-teal-800);
  font-weight: var(--fw-black);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── [8] FINAL CTA BAND ────────────────────────────────────── */
.cta-band {
  background-color: var(--color-surface-soft);
  padding: 68px var(--container-pad) 86px;
}

.cta-band__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.cta-band__box {
  background: linear-gradient(135deg, var(--color-teal-950) 0%, var(--color-teal-800) 100%);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 24px 80px rgba(6, 47, 44, 0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: var(--color-text-on-dark);
}

@media (max-width: 767px) {
  .cta-band__box {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.cta-band__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-heading-max);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
  color: var(--color-text-on-dark);
}

.cta-band__p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: var(--space-4) var(--space-8);
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  line-height: var(--lh-ui);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.cta-band__btn:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cta-band__btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* ── [9] FOOTER AMBER ACCENT ────────────────────────────────── */
.site-footer {
  position: relative;
  background-color: var(--color-teal-950);
  color: var(--color-primary-tint);
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 4px;
  background-color: var(--color-teal-950);
  pointer-events: none;
}

.site-footer--home {
  border-top: 1px solid var(--color-amber-500);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 600px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    align-items: start;
    column-gap: clamp(48px, 6vw, 120px);
  }
}

.site-footer__col-heading {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: 10px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}

.site-footer__col a {
  font-family: var(--font-body);
  font-size: var(--fs-footer);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--motion-fast) var(--easing-default);
  line-height: 1.45;
}

.site-footer__col a:hover {
  color: var(--color-on-primary);
  text-decoration: underline;
}

@media (max-width: 899px) {
  .site-footer__col a {
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr);
    align-items: start;
    column-gap: 8px;
  }

  .site-footer__col a::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-top: 0.7em;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.78);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.14);
  }

  .site-footer__col a:hover::before,
  .site-footer__col a:focus-visible::before {
    background: var(--color-amber-400);
  }
}



.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: var(--space-8) 0 var(--space-5);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--color-on-primary);
}

.site-footer__meta {
  font-size: var(--fs-xs);
  color: var(--color-primary-tint);
  opacity: 0.8;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 900px) {
  .footer-bottom-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: clamp(32px, 4vw, 64px);
  }
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-4);
  margin-top: var(--space-4);
}

.footer-grievance {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.07);
}

.footer-grievance > h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-on-primary);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  line-height: var(--lh-ui);
  text-transform: uppercase;
}

.footer-grievance > p:not([class]) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.footer-grievance > p:not([class]) a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.footer-grievance > p:not([class]) a:hover {
  color: var(--color-amber-300);
}

.footer-grievance > p:not([class]) a:focus-visible {
  outline: 3px solid var(--color-amber-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-grievance__heading {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-3);
}

.footer-grievance__label {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-1);
}

.footer-grievance__email {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: var(--space-3);
  word-break: break-all;
  transition: color var(--motion-fast) var(--easing-default);
}

.footer-grievance__email:hover {
  color: var(--color-on-primary);
}

.footer-grievance__support {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.footer-grievance__caution {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
  font-style: italic;
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
}

.footer-disclaimer p + p {
  margin-top: var(--space-2);
}

.footer-disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Mobile tap target — inline action links (WCAG 2.5.5) ──── */
@media (max-width: 640px) {
  .danger-v2__cell-text a,
  .route-card__p a,
  .footer-disclaimer a,
  .faq-item__a a {
    display: inline-block;
    padding-block: 4px;
    line-height: 1.4;
  }

  .footer-grievance__email {
    padding-block: 4px;
  }

  .hero-v2__trust-tel,
  .prevention-card__link {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
  }
}

.site-footer__strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--space-4);
  padding-top: 12px;
  padding-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* Mobile persistent bottom bar */
.mobile-help-bar {
  display: flex;
  position: static;
  background-color: var(--color-teal-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 16px rgba(15, 31, 30, 0.2);
  padding: var(--space-2) var(--space-4);
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .mobile-help-bar { display: none; }
}

.mobile-help-bar__tel,
.mobile-help-bar__cta {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--tap-min);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
}

@media (max-width: 430px) {
  .mobile-help-bar {
    padding-inline: 12px;
    gap: 8px;
  }

  .mobile-help-bar__tel,
  .mobile-help-bar__cta {
    font-size: 14px;
    white-space: nowrap;
  }
}

.mobile-help-bar__tel {
  background-color: rgba(255, 255, 255, 0.10);
  color: var(--color-on-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-help-bar__cta {
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
}

.mobile-help-bar__cta:hover { background-color: var(--color-amber-600); }

.sri-seo-intro__breadcrumb a,
.id-launch-fallback a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-disclaimer a,
  .footer-grievance__email {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
  }
}

.privacy-main a[href],
.disclaimer-main a[href],
.terms-main a[href],
.learn-main a[href],
.prevent-main a[href],
.method-main .method-link {
  padding-block: 4px;
  line-height: 1.5;
}

/* ── MOBILE AUDIT FIXES ────────────────────────────────────── */

/* (a) Topbar — smaller font on very narrow screens */
@media (max-width: 479px) {
  .topbar__inner { font-size: 10px; }
}

/* (b) Header — hide brand tagline on small phones; slim CTA padding */
@media (max-width: 599px) {
  .site-header__brand-tagline { display: none; }
}

@media (max-width: 479px) {
  /* Header CTA removed at ≤479px — brand + hamburger fit; hero CTA is prominent */
  .site-header__cta { display: none; }
  .site-header__brand-name { font-size: 14px; }
  .site-header__brandmark  { width: 32px; height: 32px; font-size: 16px; }
}

/* (c) Hero — compact padding on small phones */
@media (max-width: 599px) {
  .hero-v2 { padding: 56px 20px 90px; }
}

/* (e) Protocol panel step rows — allow tag to wrap on very narrow screens */
@media (max-width: 399px) {
  .proto-step {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
  }
  .proto-step__tag {
    grid-column: 2;
    margin-top: 4px;
    align-self: start;
    justify-self: start;
  }
}

/* (f) Danger callout — reduce overlap on mobile */
@media (max-width: 699px) {
  .danger-overlap-wrap__inner { margin-top: -20px; }
}

/* (h) Process grid — already 4→2→1 via existing rules; no change needed */

/* (j) Final CTA — button full-width on <480px */
@media (max-width: 479px) {
  .cta-band__btn { width: 100%; justify-content: center; }
}

/* (k) Footer columns — already handled (1 → 2 → 4 col breakpoints) */

/* (l) Footer link tap targets — larger line-height on mobile */
@media (max-width: 768px) {
  .site-footer__col a { line-height: 1.7; }
  .site-footer__col ul { gap: 2px; }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .site-footer__col {
    min-width: 0;
    padding: 12px 13px 10px;
    border: 1px solid rgba(204, 251, 241, 0.16);
    border-top: 2px solid rgba(251, 191, 36, 0.68);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
      rgba(3, 49, 44, 0.72);
    box-shadow: 0 14px 28px rgba(1, 23, 20, 0.24);
  }

  .site-footer__col-heading {
    margin-bottom: 7px;
    color: var(--color-amber-400);
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--ls-eyebrow);
  }

  .site-footer__col ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px 9px;
  }

  .site-footer__col a {
    width: 100%;
    min-height: 40px;
    padding-block: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--fs-footer);
    line-height: 1.35;
    border-radius: 6px;
  }

  .site-footer__col a:focus-visible,
  .site-footer__col a:hover {
    background: rgba(204, 251, 241, 0.07);
  }

  .site-footer__divider {
    margin: var(--space-5) 0 12px;
  }

  .footer-bottom-grid {
    gap: 10px;
  }

  .footer-bottom-left {
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(204, 251, 241, 0.14);
    border-top: 2px solid rgba(251, 191, 36, 0.52);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
      rgba(3, 49, 44, 0.68);
    box-shadow: 0 14px 28px rgba(1, 23, 20, 0.22);
  }

  .footer-disclaimer {
    margin-top: 12px;
    padding-top: 12px;
  }

  .footer-disclaimer p {
    font-size: 11.5px;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .footer-grievance {
    padding: 13px;
    border-color: rgba(204, 251, 241, 0.14);
    border-top: 2px solid rgba(251, 191, 36, 0.52);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
      rgba(3, 49, 44, 0.68);
    box-shadow: 0 14px 28px rgba(1, 23, 20, 0.22);
  }

  .site-footer__strip,
  .site-footer__copyright {
    margin-top: 12px;
    padding-bottom: 0;
    text-align: center;
  }
}

/* (l2) Tablet footer — 768–1023px polish */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .site-footer__col a {
    font-size: 14px;
    line-height: 1.65;
    min-height: 44px;
    padding-block: 8px;
  }

  .site-footer__col ul {
    gap: 7px;
  }

  .site-footer__divider {
    margin-top: 40px;
    margin-bottom: 32px;
  }

  .footer-bottom-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
    gap: 36px;
    align-items: start;
  }

  .footer-disclaimer {
    padding-top: 20px;
    margin-top: 20px;
  }

  .footer-disclaimer p {
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-disclaimer p + p {
    margin-top: 12px;
  }

  .footer-grievance {
    padding: 24px 24px 20px;
  }

  .footer-grievance__label {
    font-size: 15px;
  }

  .footer-grievance__email {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-grievance__support {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-grievance__caution {
    font-size: 12px;
  }

  .site-footer__strip {
    margin-top: 32px;
    padding-top: 16px;
    padding-bottom: 20px;
    text-align: center;
  }
}

/* (m) Sticky bottom bar clearance lives inside the footer on mobile. */
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
}

@media (max-width: 360px) {
  .cta-band,
  .cta-band__inner,
  .cta-band__box,
  .cta-band__btn {
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-band__inner,
  .cta-band__box,
  .cta-band__box > *,
  .cta-band__btn {
    min-width: 0;
  }

  .cta-band__h2 {
    max-width: 100%;
  }

  .cta-band__h2,
  .cta-band__p,
  .cta-band__btn {
    overflow-wrap: anywhere;
  }

  .cta-band__btn {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

/* (n) Anchor-scroll offset — compensate for sticky nav */
@media (max-width: 768px) {
  section, [id] {
    scroll-margin-top: 84px;
  }
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
/* All transitions already scoped to elements above */

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .topbar__pulse { animation: none; opacity: 1; }

  .scam-card,
  .hero-v2__cta-primary,
  .hero-v2__cta-ghost,
  .site-header__cta,
  .cta-band__btn {
    transition: none;
  }

  .scam-card:hover,
  .hero-v2__cta-primary:hover,
  .hero-v2__cta-ghost:hover,
  .site-header__cta:hover,
  .cta-band__btn:hover {
    transform: none;
  }
}

/* ── [A] GOLDEN HOUR TIMELINE ──────────────────────────── */
.golden-hour {
  background-color: var(--color-teal-800);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: 72px var(--container-pad);
}

.golden-hour__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.golden-hour__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-4);
}

.golden-hour__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: var(--ls-heading);
  color: var(--color-text-on-dark);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.golden-hour__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

.golden-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .golden-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .golden-timeline { grid-template-columns: 1fr; }
}

.golden-cell {
  display: flex;
  flex-direction: column;
}

.golden-cell--1 { background-color: rgba(245, 158, 11, 0.06); }
.golden-cell--2 { background-color: rgba(255, 255, 255, 0.03); }
.golden-cell--3 { background-color: rgba(255, 255, 255, 0.02); }
.golden-cell--4 { background-color: rgba(255, 255, 255, 0.01); }

.golden-cell__top-bar {
  height: 3px;
  flex-shrink: 0;
}

.golden-cell--1 .golden-cell__top-bar { background-color: var(--color-amber-500); }
.golden-cell--2 .golden-cell__top-bar { background-color: var(--color-amber-500); }
.golden-cell--3 .golden-cell__top-bar { background-color: var(--color-amber-500); }
.golden-cell--4 .golden-cell__top-bar { background-color: var(--color-amber-500); }

.golden-cell__content {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.golden-cell__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-amber-400);
  letter-spacing: 0.1em;
  font-weight: var(--fw-semibold);
}

.golden-cell__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  margin-bottom: var(--space-4);
}

.golden-cell__body {
  font-size: 14px;
  color: var(--color-text-on-dark);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-4);
}

.golden-cell__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-amber-400);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.golden-cell__cta--dim   { color: rgba(255, 255, 255, 0.5); }
.golden-cell__cta--faint { color: rgba(255, 255, 255, 0.4); }

.golden-hour__footer {
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.golden-hour__footer-note {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
}

.golden-hour__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: var(--space-3) var(--space-8);
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.golden-hour__footer-cta:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-1px);
}

/* ── [B] REAL OUTCOMES ─────────────────────────────────── */
.outcomes-section {
  background-color: var(--color-surface-1);
  padding: 72px var(--container-pad);
}

.outcomes-section__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.outcomes-section__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: #92400E;
  margin-bottom: var(--space-3);
}

.outcomes-section__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-teal-900);
  letter-spacing: var(--ls-heading-max);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.outcomes-section__lead {
  font-size: 17px;
  color: var(--color-ink-600);
  line-height: 1.65;
  max-width: 720px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

.outcome-card {
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 24px;
  transition: border-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.outcome-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.outcome-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.outcome-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.outcome-pill--scam  { background-color: var(--color-primary-tint); color: var(--color-teal-800); }
.outcome-pill--green { background-color: var(--color-success-tint); color: var(--color-success); }
.outcome-pill--blue  { background-color: var(--color-blue-50); color: var(--color-blue-700); }
.outcome-pill--teal  { background-color: var(--color-primary-tint); color: var(--color-teal-700); }
.outcome-pill--amber { background-color: var(--color-warn-tint); color: var(--color-warn); }

.outcome-card__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #92400E;
  font-weight: var(--fw-semibold);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.outcome-card__quote {
  font-size: 15px;
  color: var(--color-ink-950);
  line-height: 1.55;
  font-style: italic;
  margin: 12px 0;
}

.outcome-card__result {
  font-size: 14px;
  color: var(--color-teal-800);
  font-weight: var(--fw-semibold);
  margin-top: 12px;
}

.outcome-card__location {
  font-size: 13px;
  color: var(--color-ink-600);
  margin-top: var(--space-2);
}

.outcomes-disclaimer {
  font-size: 13px;
  color: var(--color-ink-600);
  text-align: center;
  margin-top: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--lh-relaxed);
}

/* ── [C] OFFICIAL ROUTES ───────────────────────────────── */
.official-routes {
  background-color: var(--color-surface-soft);
  padding: 72px var(--container-pad);
}

.official-routes__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.official-routes__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: #92400E;
  margin-bottom: var(--space-3);
}

.official-routes__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-teal-900);
  letter-spacing: var(--ls-heading-max);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.official-routes__lead {
  font-size: 17px;
  color: var(--color-ink-600);
  line-height: 1.65;
  max-width: 680px;
}

.routes-grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .official-routes__inner {
    max-width: 860px;
  }
}

@media (min-width: 1400px) {
  .routes-grid {
    max-width: 860px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .routes-grid { flex-direction: column; }
}

.route-card {
  flex: 1;
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.route-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--color-mint);
  color: var(--color-teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.route-card__h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-teal-900);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.route-card__p {
  font-size: 15px;
  color: var(--color-ink-800);
  line-height: 1.6;
}

.route-card__script {
  background-color: var(--color-teal-950);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 16px;
}

/* Right card: tip box fills remaining space between body and links */
.route-card--direct .route-card__tip {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.route-card__script-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-amber-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}

.route-card__script-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-on-dark);
  line-height: 1.55;
}

.route-card__tip {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 16px;
}

.route-card__tip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}

.route-card__tip-text {
  font-size: 13px;
  color: var(--color-ink-800);
  line-height: 1.55;
}

.route-card__helper {
  font-size: 13px;
  color: var(--color-ink-600);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-3);
  font-style: normal;
}

.route-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-size: var(--fs-nav);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: 16px;
  align-self: flex-start;
  transition: background-color var(--motion-fast) var(--easing-default),
              transform var(--motion-fast) var(--easing-default);
}

.route-card__cta:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-1px);
}

.route-card__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: 16px;
}

.route-card__link {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background-color: var(--color-surface-1);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--color-teal-800);
  text-decoration: none;
  transition: border-color var(--motion-fast) var(--easing-default),
              background-color var(--motion-fast) var(--easing-default);
}

.route-card__link:hover {
  border-color: var(--color-teal-700);
  background-color: var(--color-surface-2);
}

/* ── [D] PREVENTION 6-PACK ─────────────────────────────── */
.prevention-section {
  background-color: var(--color-teal-800);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: 72px var(--container-pad);
}

.prevention-section__inner {
  max-width: 1180px;
  margin-inline: auto;
}

.prevention-section__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-4);
}

.prevention-section__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: var(--ls-heading-max);
  color: var(--color-text-on-dark);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.prevention-section__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  max-width: 680px;
}

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

@media (max-width: 900px) {
  .prevention-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
  .prevention-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.prevention-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: background-color var(--motion-fast) var(--easing-default),
              border-color var(--motion-fast) var(--easing-default);
}

.prevention-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.prevention-card__icon {
  width: 38px;
  height: 38px;
  background-color: var(--color-teal-700);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.prevention-card__link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--color-amber-400);
  text-decoration: none;
  transition: color var(--motion-fast) var(--easing-default);
}

.prevention-card__link:hover {
  color: var(--color-on-primary);
}

.prevention-card__h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  margin-top: 14px;
  margin-bottom: var(--space-2);
  line-height: var(--lh-snug);
}

.prevention-card__p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.prevention-share {
  text-align: center;
  margin-top: 40px;
}

.prevention-share__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.prevention-share__buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.prevention-share__whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: 12px 22px;
  background-color: var(--color-amber-500);
  color: var(--color-teal-950);
  font-size: 14px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--easing-default);
}

.prevention-share__whatsapp:hover { background-color: var(--color-amber-600); }

.prevention-share__copy {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: 12px 22px;
  background-color: transparent;
  color: var(--color-on-primary);
  font-size: 14px;
  font-weight: var(--fw-bold);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color var(--motion-fast) var(--easing-default),
              background-color var(--motion-fast) var(--easing-default);
}

.prevention-share__copy:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── [E] FAQ ───────────────────────────────────────────── */
.faq-section {
  background-color: var(--color-surface-1);
  padding: 72px var(--container-pad);
}

.faq-section__inner {
  max-width: 800px;
  margin-inline: auto;
}

.faq-section__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: #92400E;
  margin-bottom: var(--space-3);
}

.faq-section__h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-teal-900);
  letter-spacing: var(--ls-heading-max);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-4);
}

.faq-section__lead {
  font-size: 17px;
  color: var(--color-ink-600);
  line-height: var(--lh-relaxed);
  margin-bottom: 40px;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--color-teal-900);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--motion-fast) var(--easing-default);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--color-teal-700);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { color: var(--color-teal-700); }

.faq-item__a {
  padding: 0 24px 20px 0;
  color: var(--color-ink-800);
  font-size: 16px;
  line-height: 1.65;
}

.faq-item__a a {
  color: var(--color-teal-800);
  text-decoration: underline;
}

.faq-item__a a:hover { color: var(--color-teal-700); }

/* Mobile responsive architecture: bound wrappers first, then tune local layouts. */
html,
body {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .site-header,
  .site-header__inner,
  .hero,
  .hero-v2,
  .hero__inner,
  .hero-v2__inner,
  .section,
  .section__inner,
  .container,
  .sticky-help,
  .sticky-help__inner,
  .mobile-help-bar,
  .mobile-help-bar__inner,
  .danger-overlap-wrap,
  .danger-overlap-wrap__inner,
  .danger-v2 {
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header__brand,
  .site-header__brand > div,
  .site-header__actions,
  .hero-v2__left,
  .hero-v2__actions,
  .hero-v2__trust,
  .hero-v2__trust-item,
  .proto-panel,
  .proto-panel__header,
  .proto-panel__header-left,
  .proto-panel__footer,
  .proto-step,
  .proto-step__content,
  .danger-v2__header,
  .danger-v2__heading,
  .danger-v2__grid,
  .danger-v2__cell,
  .mobile-help-bar__tel,
  .mobile-help-bar__cta {
    min-width: 0;
  }

  .site-header__inner {
    height: 56px;
    padding-inline: 16px;
    gap: 10px;
  }

  .site-header__brand {
    flex: 1 1 auto;
    gap: 10px;
  }

  .site-header__brand-name {
    font-size: clamp(13px, 3.5vw, 16px);
    overflow-wrap: anywhere;
  }

  .site-header__brand-tagline {
    display: none;
  }

  .site-header__actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .site-header__tel {
    display: none;
  }

  .site-header__cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0;
    line-height: 1;
  }

  .site-header__cta::after {
    content: "Start";
    font-size: 14px;
    font-weight: var(--fw-bold);
  }

  .site-header__hamburger {
    flex: 0 0 var(--tap-min);
    padding: 10px;
  }

  .hero-v2 {
    width: 100%;
    padding: 44px 20px 72px;
  }

  .hero-v2__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-v2__status-pill,
  .hero-v2__lead,
  .hero-v2__trust,
  .hero-v2__trust-item {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-v2__h1 {
    font-size: clamp(40px, 11vw, 48px);
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .hero-v2__lead {
    width: 100%;
    max-width: 100%;
  }

  .hero-v2__actions,
  .hero-v2__cta-primary {
    width: 100%;
  }

  .hero-v2__cta-primary {
    justify-content: center;
    padding-inline: 16px;
    text-align: center;
    white-space: normal;
  }

  .hero-v2__trust {
    gap: 8px 14px;
  }

  .proto-panel {
    width: 100%;
    border-radius: 10px;
  }

  .proto-panel__header {
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }

  .proto-panel__header-left {
    flex: 1 1 auto;
    flex-wrap: wrap;
    line-height: var(--lh-snug);
    overflow-wrap: anywhere;
  }

  .proto-panel__code {
    flex: 0 1 auto;
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .proto-panel__demo-note {
    padding-inline: 14px;
    overflow-wrap: anywhere;
  }

  .proto-step {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }

  .proto-step__title,
  .proto-step__helper,
  .proto-step__meta,
  .proto-step__tag {
    overflow-wrap: anywhere;
  }

  .proto-panel__footer {
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 12px 14px;
    line-height: var(--lh-snug);
  }

  .danger-overlap-wrap {
    padding-inline: 20px;
  }

  .danger-overlap-wrap__inner {
    width: 100%;
    margin-top: -18px;
  }

  .danger-v2 {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .danger-v2__header {
    align-items: flex-start;
    gap: 12px;
  }

  .danger-v2__heading,
  .danger-v2__cell-title,
  .danger-v2__cell-text {
    overflow-wrap: anywhere;
  }

  .danger-v2__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .danger-v2__cell {
    width: 100%;
  }

  .mobile-help-bar {
    width: 100%;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .mobile-help-bar__tel,
  .mobile-help-bar__cta {
    flex: 1 1 0;
    min-height: var(--tap-min);
    height: auto;
    padding: 10px 8px;
    font-size: 14px;
    line-height: var(--lh-snug);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 479px) {
  .site-header__cta {
    display: none;
  }

  .site-header__brandmark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
  }

  .hero-v2 {
    padding-inline: 20px;
  }
}

@media (max-width: 399px) {
  .proto-step {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .proto-step__tag {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }
}
