/* =====================================================
   GBP Guardian — case-file / compliance-audit stylesheet
   Palette: paper off-white, ink near-black, deep slate accent
   Typography: Source Serif 4 (headings) + Inter (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Warm case-file palette */
  --ink:         #15120E;  /* warm near-black (hero / header) */
  --ink-2:       #211B14;  /* raised dark surface (packet card) */
  --kraft:       #E6D9BC;  /* manila tag */
  --gold:        #C2A15C;
  --gold-d:      #A8884A;
  --gold-l:      #D8BE86;
  --warm-white:  #F2ECDE;  /* text on dark */
  --muted-warm:  #9C9385;  /* muted text on dark */

  --bg:          #F4EEE0;
  --surface:     #FCF9F1;
  --border:      #DBD2BF;
  --border-heavy:#B8AD93;
  --text:        #221C14;
  --muted:       #6B6354;
  --accent:      #2A2118;  /* warm dark for UI controls / form headers */
  --accent-h:    #3A2F22;
  --accent-light:#F0E8D6;
  --green:       #1A5C3A;
  --amber:       #8A5700;
  --red:         #8B1A1A;
  --grade-green-bg: #E8F3ED;
  --grade-amber-bg: #FDF3E0;
  --grade-red-bg:   #F5E8E8;
  --radius:      3px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

/* ---- Layout ---- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header (premium dark) ---- */
.site-header {
  background: rgba(20, 17, 13, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(194, 161, 92, 0.22);
  box-shadow: 0 1px 0 rgba(216, 190, 134, 0.06), 0 16px 36px -28px rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand__crest {
  display: inline-flex;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--warm-white);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-left: auto;
  padding-right: 1.7rem;
  border-right: 1px solid rgba(242, 236, 222, 0.13);
}

.site-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(242, 236, 222, 0.78);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.15s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.site-nav a:hover { color: var(--warm-white); }
.site-nav a:hover::after { width: 100%; }
.site-nav a:focus-visible {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
  border-radius: 2px;
}

.header-cta { flex-shrink: 0; }
.site-nav + .header-cta { margin-left: 0; }
.brand + .header-cta { margin-left: auto; }

/* ---- Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 1.75rem 0;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--border-heavy);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.btn-pay {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

/* ---- Gold pill / ghost buttons (premium landing + header) ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  background: linear-gradient(180deg, var(--gold-l) 0%, var(--gold) 60%, var(--gold-d) 100%);
  color: #1B160E;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid var(--gold-d);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(194,161,92,0.55);
}
.btn-gold:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 2px;
}
.btn-gold--lg { min-height: 50px; padding: 0.85rem 1.9rem; font-size: 1rem; }
.btn-gold--sm { min-height: 40px; padding: 0.5rem 1.05rem; font-size: 0.84rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  /* B1: raised border opacity 0.32→0.55 + faint gold-tinted fill for presence
     against dark hero. Still clearly secondary to .btn-gold primary. */
  background: rgba(242,236,222,0.06);
  color: var(--warm-white);
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(242,236,222,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-l);
  background: rgba(242,236,222,0.04);
}
.btn-ghost:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 2px;
}

/* Outlined gold pill (dark fill, gold hairline) — header CTA */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  background: rgba(216, 190, 134, 0.04);
  color: var(--warm-white);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(194, 161, 92, 0.55);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(194, 161, 92, 0.12);
  color: var(--gold-l);
}
.btn-outline-gold:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 2px;
}

/* ---- Utility: section divider ---- */
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ---- Case-file card ---- */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.case-card__header {
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.55rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card__body {
  padding: 1.5rem 1.25rem;
}

/* ---- Checklist rows ---- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: block;
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  line-height: 1.55;
}

.checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checklist li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.checklist li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.checklist--empty {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

/* =====================================================
   LANDING PAGE
   ===================================================== */

/* ---- Premium dark hero (full-bleed) ---- */
.lp-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(120% 130% at 80% 16%, rgba(194,161,92,0.22) 0%, rgba(194,161,92,0) 48%),
    radial-gradient(90% 120% at 8% 0%, rgba(242,236,222,0.06) 0%, rgba(242,236,222,0) 40%),
    linear-gradient(180deg, #1A150F 0%, var(--ink) 60%, #120F0B 100%);
  color: var(--warm-white);
  border-bottom: 1px solid rgba(194,161,92,0.18);
  position: relative;
}

/* Subtle film grain so the charcoal isn't flat digital black */
.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.3rem 1.5rem 3.6rem;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 2.1rem;
  align-items: start;
}

.lp-hero__left { animation: lp-rise 0.7s ease both; }

.lp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
}

/* Pill variant — AI-assisted badge echoing a modern SaaS hero */
.lp-eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid rgba(194,161,92,0.4);
  border-left: 1px solid rgba(194,161,92,0.4);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(216,190,134,0.12), rgba(216,190,134,0) 80%),
    rgba(20,17,13,0.5);
  color: var(--gold-l);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  box-shadow:
    inset 0 1px 0 rgba(216,190,134,0.16),
    0 8px 24px -16px rgba(0,0,0,0.9);
}
.lp-eyebrow__spark {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--gold-l);
  animation: packet-spark-pulse 3.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .lp-eyebrow__spark { animation: none !important; }
}

.lp-hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 3.5vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--warm-white);
  margin-bottom: 1.05rem;
}

.lp-hero__line { display: block; }
.lp-hero__line--accent { color: var(--gold); }
/* Keep "Google Business Profile" on one line on desktop, matching the PNG */
@media (min-width: 760px) {
  .lp-hero__line--accent { white-space: nowrap; }
}

.lp-hero__body {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 33rem;
  margin-bottom: 2rem;
}
.lp-hero__body-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.lp-hero__body p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(242,236,222,0.82);
}

.lp-hero__subhead {
  max-width: 33rem;
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(242,236,222,0.82);
}
.lp-hero__features {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.62rem;
  max-width: 34rem;
}

/* Slim hero trust note (above the fold) — safe positioning copy */
.lp-hero__trustnote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(242,236,222,0.82);
}
.lp-hero__trustnote-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-l);
  box-shadow: 0 0 8px rgba(216,190,134,0.75);
}
.lp-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.lp-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(194,161,92,0.1);
  border: 1px solid rgba(194,161,92,0.26);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.16);
}
.lp-feature__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.lp-feature__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.35;
}
.lp-feature__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted-warm);
}

.lp-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.lp-hero__helper {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--muted-warm);
  letter-spacing: 0.01em;
}
.lp-hero__helper-icon {
  display: inline-flex;
  flex-shrink: 0;
}

@keyframes lp-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Hero right column: packet card + folder stack + hanging tag ---- */
.lp-hero__right { position: relative; }

.lp-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
}

/* Soft desk-glow that grounds the packet card — a restrained warm ambient
   wash + vignette around the card, no particles or orbit graphics. */
.lp-visual::before {
  content: '';
  position: absolute;
  inset: -18% -10% -18% -12%;
  background:
    radial-gradient(56% 56% at 54% 46%, rgba(194, 161, 92, 0.28), rgba(194, 161, 92, 0) 70%),
    radial-gradient(40% 40% at 56% 52%, rgba(216, 190, 134, 0.16), rgba(216, 190, 134, 0) 72%);
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

/* Packet preview card (STATIC DECORATIVE MOCKUP) */
.packet-mock {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  max-width: 522px;
  margin-left: -44px;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.packet-mock:hover { transform: translateY(-5px); }

/* Vertical file tabs poking out of the right edge */
.packet-tabs {
  position: absolute;
  top: 38px;
  right: -28px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.packet-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform-origin: left center;
  background:
    linear-gradient(180deg, rgba(216,190,134,0.16), rgba(216,190,134,0) 60%),
    linear-gradient(90deg, #3A2D1B 0%, #271E14 100%);
  border: 1px solid rgba(194, 161, 92, 0.5);
  border-left: none;
  border-radius: 0 11px 11px 0;
  padding: 0.95rem 0.46rem 0.95rem 0.56rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-l);
  box-shadow:
    5px 7px 18px -8px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(216, 190, 134, 0.24);
}
.packet-tab:nth-child(1) { transform: translateX(0) rotate(-1deg); }
.packet-tab:nth-child(2) { transform: translateX(5px) rotate(0deg); }
.packet-tab:nth-child(3) { transform: translateX(10px) rotate(1deg); }

/* Cream page edges peeking behind the panel — a thick stacked case file */
.packet-mock__page {
  position: absolute;
  border-radius: 10px;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(120,95,45,0.05) 0 1px, rgba(0,0,0,0) 1px 4px);
  background-blend-mode: multiply;
}
.packet-mock__page--1 {
  inset: 16px -20px -18px 40px;
  background-color: #F1E9D5;
  box-shadow:
    0 20px 40px -20px rgba(0,0,0,0.66),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.packet-mock__page--2 {
  inset: 32px -38px -32px 70px;
  background-color: #E3D6BA;
  box-shadow:
    0 28px 54px -22px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.packet-mock__card {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(216,190,134,0.08), rgba(216,190,134,0) 22%),
    linear-gradient(180deg, #2A2117 0%, var(--ink-2) 100%);
  border: 1px solid rgba(194,161,92,0.52);
  border-radius: 15px;
  padding: 1.75rem 1.7rem 1.6rem 1.95rem;
  box-shadow:
    0 14px 38px -8px rgba(0,0,0,0.58),
    0 60px 120px -26px rgba(0,0,0,0.94),
    0 0 72px -12px rgba(194,161,92,0.5),
    inset 0 1px 0 rgba(216,190,134,0.36),
    inset 0 0 0 1px rgba(216,190,134,0.1),
    0 0 0 1px rgba(0,0,0,0.42);
}

/* Card reads as the front file folder — its own tab */
.packet-mock__card::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 24px;
  width: 108px;
  height: 15px;
  background: linear-gradient(180deg, #2C2218, #241D15);
  border: 1px solid rgba(194,161,92,0.34);
  border-bottom: none;
  border-radius: 9px 9px 0 0;
  z-index: -1;
}

/* ---- Appeal Readiness Packet panel (STATIC DECORATIVE — non-scored) ---- */
.packet-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.95rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid rgba(194,161,92,0.18);
}
.packet-card__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(194,161,92,0.13);
  border: 1px solid rgba(194,161,92,0.4);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.25);
}
.packet-card__heading { flex: 1 1 auto; min-width: 0; }
.packet-card__title {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.1rem;
  white-space: nowrap;
}
.packet-card__subtitle {
  font-size: 0.73rem;
  line-height: 1.4;
  color: var(--muted-warm);
}
.packet-card__chip {
  flex-shrink: 0;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-l);
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(194,161,92,0.32);
  border-radius: 999px;
  background: rgba(194,161,92,0.07);
  white-space: nowrap;
}
.packet-card__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.packet-card__rows li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(242,236,222,0.07);
}
.packet-card__rows li:last-child { border-bottom: none; }
.packet-card__row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(194,161,92,0.1);
  border: 1px solid rgba(194,161,92,0.24);
}
.packet-card__row-text {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
  min-width: 0;
}
.packet-card__row-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm-white);
}
.packet-card__row-teaser {
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--muted-warm);
}
.packet-card__cta {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-l);
  border: 1px solid rgba(194,161,92,0.4);
  border-radius: 9px;
  padding: 0.64rem;
  background: rgba(194,161,92,0.07);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.14);
}

/* ---- Numbered step timeline inside the packet preview ---- */
.packet-card__steps { position: relative; }

/* Vertical connector threading the step numbers — a quiet gold spine */
.packet-card__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 12.5px;
  width: 2.5px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(194,161,92,0) 0%,
    rgba(194,161,92,0.7) 14%,
    rgba(232,212,160,0.92) 50%,
    rgba(194,161,92,0.7) 86%,
    rgba(194,161,92,0) 100%
  );
  box-shadow: 0 0 16px rgba(216,190,134,0.5);
  pointer-events: none;
  z-index: 0;
}

/* A gold dot that travels the rail node-to-node, pausing at each step.
   Synced to the step sequence: arrives at step N as step N activates. */
.packet-card__steps::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,212,160,0.98) 0%, rgba(216,190,134,0.4) 46%, rgba(216,190,134,0) 74%);
  pointer-events: none;
  z-index: 1;
  --rail-gap: 69px;
  animation: seq-rail-dot 14s cubic-bezier(0.55, 0, 0.25, 1) infinite;
}

/* Travel windows are short; the dot rests at each node the rest of the time. */
@keyframes seq-rail-dot {
  0%   { transform: translateY(0); opacity: 0; }
  2%   { transform: translateY(0); opacity: 1; }
  16%  { transform: translateY(0); }
  21%  { transform: translateY(var(--rail-gap)); }
  37%  { transform: translateY(var(--rail-gap)); }
  43%  { transform: translateY(calc(var(--rail-gap) * 2)); }
  58%  { transform: translateY(calc(var(--rail-gap) * 2)); }
  64%  { transform: translateY(calc(var(--rail-gap) * 3)); }
  96%  { transform: translateY(calc(var(--rail-gap) * 3)); opacity: 1; }
  100% { transform: translateY(calc(var(--rail-gap) * 3)); opacity: 0; }
}

.packet-card__steps li { position: relative; z-index: 1; }

.packet-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-l);
  background: radial-gradient(circle at 50% 38%, rgba(58,46,28,0.95), rgba(33,27,20,0.95));
  border: 1px solid rgba(194,161,92,0.55);
  box-shadow:
    inset 0 1px 0 rgba(216,190,134,0.22),
    0 0 0 4px rgba(20,17,13,0.92),
    0 0 12px rgba(194,161,92,0.22);
  animation: seq-node 14s ease-in-out infinite both;
}

/* Each node blooms briefly as its step activates, then settles. */
@keyframes seq-node {
  0% {
    border-color: rgba(194,161,92,0.4);
    box-shadow:
      inset 0 1px 0 rgba(216,190,134,0.22),
      0 0 0 4px rgba(20,17,13,0.92),
      0 0 12px rgba(194,161,92,0.18),
      0 0 0 0 rgba(232,212,160,0);
  }
  3% {
    border-color: rgba(232,212,160,0.95);
    box-shadow:
      inset 0 1px 0 rgba(216,190,134,0.35),
      0 0 0 4px rgba(20,17,13,0.92),
      0 0 18px rgba(216,190,134,0.5),
      0 0 0 0 rgba(232,212,160,0.6);
  }
  10% {
    border-color: rgba(194,161,92,0.7);
    box-shadow:
      inset 0 1px 0 rgba(216,190,134,0.28),
      0 0 0 4px rgba(20,17,13,0.92),
      0 0 12px rgba(194,161,92,0.3),
      0 0 0 9px rgba(232,212,160,0);
  }
  100% {
    border-color: rgba(194,161,92,0.55);
    box-shadow:
      inset 0 1px 0 rgba(216,190,134,0.22),
      0 0 0 4px rgba(20,17,13,0.92),
      0 0 12px rgba(194,161,92,0.22),
      0 0 0 0 rgba(232,212,160,0);
  }
}

/* ---- "Assembling your packet preview" progress strip (no score, no %) ---- */
.packet-assembly {
  margin-top: 1.05rem;
  padding: 0.7rem 0.8rem 0.78rem;
  border: 1px solid rgba(194,161,92,0.3);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(216,190,134,0.07), rgba(216,190,134,0) 70%),
    rgba(20,17,13,0.4);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.12);
}
.packet-assembly__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}
.packet-assembly__spark {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--gold-l);
  animation: packet-spark-pulse 5s ease-in-out infinite;
}
.packet-assembly__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(242,236,222,0.86);
}
.packet-assembly__bar {
  display: block;
  position: relative;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(242,236,222,0.08);
  box-shadow: inset 0 0 0 1px rgba(194,161,92,0.2);
}
.packet-assembly__fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-d) 0%, var(--gold) 100%);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.2);
  transform-origin: left center;
  /* Slow, controlled fill synced to the step sequence — quiet AI processing */
  animation: packet-assembly-fill 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
/* A barely-there warm-gold sheen that breathes in place — no white, no
   traveling highlight, no glossy loader streak. Reads as quiet processing. */
.packet-assembly__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232,212,160,0) 0%, rgba(232,212,160,0.1) 50%, rgba(232,212,160,0) 100%);
  opacity: 0;
  animation: packet-assembly-sheen 6.5s ease-in-out infinite;
}

@keyframes packet-assembly-fill {
  0%   { transform: scaleX(0.06); }
  22%  { transform: scaleX(0.30); }
  43%  { transform: scaleX(0.55); }
  64%  { transform: scaleX(0.80); }
  90%  { transform: scaleX(0.97); }
  100% { transform: scaleX(0.98); }
}
@keyframes packet-assembly-sheen {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}
@keyframes packet-spark-pulse {
  0%, 100% { opacity: 0.62; transform: scale(0.94); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* ---- Per-step status chips (packet-assembly process states, NOT a score) ---- */
.packet-card__steps .packet-card__row-text { flex: 1 1 auto; }
.packet-step__status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.packet-step__status { color: var(--gold-l); }

/* Each status fades/glows in as its step activates, then settles. */
.packet-step__status-label {
  display: inline-block;
  animation: seq-status 14s ease-in-out infinite both;
}

/* Indicator stacks an active dot over a completed check; they cross-fade. */
.packet-step__status-ind {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  align-items: center;
  justify-content: center;
}
.packet-step__status-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232,212,160,0.95);
  animation: seq-dot 14s ease-in-out infinite both;
}
.packet-step__status-check {
  position: absolute;
  color: var(--gold-l);
  animation: seq-check 14s ease-in-out infinite both;
}

/* Status text: dim → glow in → settle, fade out before the loop restarts */
@keyframes seq-status {
  0%   { opacity: 0.3; }
  3%   { opacity: 1; }
  9%   { opacity: 0.9; }
  93%  { opacity: 0.9; }
  100% { opacity: 0.3; }
}
/* Active dot: appears, micro-blooms (ping), then hands off to the check */
@keyframes seq-dot {
  0%   { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 0 0 rgba(232,212,160,0); }
  3%   { opacity: 1; transform: scale(1.05); box-shadow: 0 0 0 0 rgba(232,212,160,0.6); }
  7%   { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(232,212,160,0); }
  11%  { opacity: 0; transform: scale(0.85); }
  100% { opacity: 0; }
}
/* Completed check: hidden until the step settles, then holds */
@keyframes seq-check {
  0%, 8% { opacity: 0; transform: scale(0.5); }
  12%    { opacity: 1; transform: scale(1); }
  93%    { opacity: 1; transform: scale(1); }
  100%   { opacity: 0; transform: scale(0.85); }
}

/* Stagger the four steps so they progress 1 → 2 → 3 → 4 (3s apart) */
.packet-card__steps li:nth-child(1) .packet-step__num,
.packet-card__steps li:nth-child(1) .packet-step__status-label,
.packet-card__steps li:nth-child(1) .packet-step__status-dot,
.packet-card__steps li:nth-child(1) .packet-step__status-check { animation-delay: 0s; }
.packet-card__steps li:nth-child(2) .packet-step__num,
.packet-card__steps li:nth-child(2) .packet-step__status-label,
.packet-card__steps li:nth-child(2) .packet-step__status-dot,
.packet-card__steps li:nth-child(2) .packet-step__status-check { animation-delay: 3s; }
.packet-card__steps li:nth-child(3) .packet-step__num,
.packet-card__steps li:nth-child(3) .packet-step__status-label,
.packet-card__steps li:nth-child(3) .packet-step__status-dot,
.packet-card__steps li:nth-child(3) .packet-step__status-check { animation-delay: 6s; }
.packet-card__steps li:nth-child(4) .packet-step__num,
.packet-card__steps li:nth-child(4) .packet-step__status-label,
.packet-card__steps li:nth-child(4) .packet-step__status-dot,
.packet-card__steps li:nth-child(4) .packet-step__status-check { animation-delay: 9s; }

/* ---- Soft scanning rim-light sweeping down the card — faint, slow, supporting ---- */
.packet-mock__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(216,190,134,0) 38%, rgba(216,190,134,0.1) 50%, rgba(216,190,134,0) 62%);
  background-size: 100% 240%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0;
  animation: packet-scan 14s ease-in-out infinite;
}
@keyframes packet-scan {
  0%   { background-position: 0 -120%; opacity: 0; }
  20%  { opacity: 0.32; }
  55%  { background-position: 0 220%; opacity: 0; }
  100% { background-position: 0 220%; opacity: 0; }
}

.packet-mock__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(194,161,92,0.18);
}

.packet-mock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(194,161,92,0.12);
  border: 1px solid rgba(194,161,92,0.3);
}

.packet-mock__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.2rem;
}

.packet-mock__subtitle {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted-warm);
}

.packet-mock__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.packet-mock__rows li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(242,236,222,0.07);
}
.packet-mock__rows li:last-child { border-bottom: none; }

.packet-mock__row-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-white);
}

.packet-mock__row-teaser {
  font-size: 0.8rem;
  color: var(--muted-warm);
}

.packet-mock__footer {
  margin-top: 0.9rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-l);
  border: 1px solid rgba(194,161,92,0.35);
  border-radius: 8px;
  padding: 0.6rem;
  background: rgba(194,161,92,0.07);
}

/* ---- Readiness Report panel (STATIC DECORATIVE — no scoring) ---- */
.packet-report__head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(194,161,92,0.18);
}
.packet-report__heading { flex: 1 1 auto; min-width: 0; }
.packet-report__heading .packet-mock__title {
  margin-bottom: 0.12rem;
  font-size: 1.04rem;
  white-space: nowrap;
}
.packet-report__heading .packet-mock__subtitle { font-size: 0.72rem; }

.packet-report__badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.3rem 0.36rem 0.3rem 0.55rem;
  border: 1px solid rgba(194,161,92,0.28);
  border-radius: 10px;
  background: rgba(194,161,92,0.06);
}
.packet-report__badge-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.15;
}
.packet-report__badge-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-warm);
}
.packet-report__badge-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-l);
}
.packet-report__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(194,161,92,0.14);
  border: 1px solid rgba(194,161,92,0.4);
}

.packet-report__section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-warm);
  margin: 0 0 0.35rem;
}

.packet-report__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.packet-report__rows li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(242,236,222,0.07);
}
.packet-report__rows li:last-child { border-bottom: none; }

.packet-report__row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(194,161,92,0.1);
  border: 1px solid rgba(194,161,92,0.24);
}
.packet-report__row-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 1 1 auto;
  min-width: 0;
}
.packet-report__row-text .packet-mock__row-teaser { font-size: 0.76rem; }

.packet-report__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted-warm);
}
.packet-report__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(194,161,92,0.16);
}

.packet-report__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(194,161,92,0.18);
}
.packet-report__next { flex: 1 1 auto; min-width: 0; }
.packet-report__next-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--warm-white);
  margin: 0 0 0.18rem;
}
.packet-report__next-text {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted-warm);
  margin: 0;
}
.packet-report__cta {
  flex-shrink: 0;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1B160E;
  background: linear-gradient(180deg, var(--gold-l) 0%, var(--gold) 60%, var(--gold-d) 100%);
  border: 1px solid var(--gold-d);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Four explanation points */
.explanation-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.explanation-section h2 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.explanation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: exp-counter;
}

.explanation-list li {
  counter-increment: exp-counter;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.65;
}

.explanation-list li:first-child {
  padding-top: 0;
}

.explanation-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exp-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--border-heavy);
  flex-shrink: 0;
  width: 1.6rem;
  line-height: 1.3;
}

.exp-text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.exp-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* How it works */
.how-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.how-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step-item {
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.step-item:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-item h3 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Trust strip (full-bleed cream) ---- */
.trust-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #F1E9D7;
  background-image:
    repeating-linear-gradient(0deg, rgba(120,95,45,0.025) 0 1px, rgba(0,0,0,0) 1px 3px),
    linear-gradient(180deg, #F4EEE0 0%, #EBE2CE 100%);
  border-top: 1px solid rgba(184,173,147,0.5);
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Full locked trust line — lead statement spanning all columns */
.trust-strip__tagline {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: #5E4820;
  font-style: normal;
  letter-spacing: -0.006em;
  margin: 0 auto 1.6rem;
  padding-bottom: 1.45rem;
  border-bottom: 1px solid rgba(168,136,74,0.32);
  max-width: 64ch;
}

.trust-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0.25rem 1.3rem;
}
.trust-col + .trust-col {
  border-left: 1px solid rgba(184,173,147,0.5);
}
.trust-col:first-child { padding-left: 0.5rem; }
.trust-col:last-child { padding-right: 0.5rem; }

.trust-col__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.trust-col__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(168,136,74,0.1);
  border: 1px solid rgba(168,136,74,0.28);
}

.trust-col__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

.trust-col__text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

/* =====================================================
   CHECK FORM (TRIAGE INTAKE)
   ===================================================== */

.check-wrap {
  padding: 2.5rem 0;
}

.check-wrap h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.check-intro {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.check-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Labeled section groups */
.form-section {
  margin-bottom: 2rem;
}

.form-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0 0.75rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0;
  display: block;
}

/* A3: Mobile section headers — tighten on narrow viewports */
@media (max-width: 480px) {
  .form-section__label {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    padding: 0.35rem 0 0.5rem;
  }
}

.q-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0;
  border-bottom: none;
}

.q-block + .q-block {
  border-top: 1px solid var(--border);
}

.form-section .q-block:last-child {
  border-bottom: 1px solid var(--border);
}

.q-block legend {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  float: none;
  width: 100%;
}

.q-num {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.radio-label, .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  /* A4: enforce 44px tap target minimum */
  min-height: 44px;
}

.radio-label:first-of-type,
.checkbox-label:first-of-type {
  border-top: none;
  padding-top: 0.15rem;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

/* A4: On mobile tighten padding while keeping >=44px minimum */
@media (max-width: 480px) {
  .radio-label, .checkbox-label {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    gap: 0.55rem;
  }
  .radio-label:first-of-type,
  .checkbox-label:first-of-type {
    padding-top: 0.1rem;
  }
}

/* A3/A4: Mobile q-block padding — tighter on narrow screens */
@media (max-width: 480px) {
  .q-block {
    padding: 0.9rem 1rem;
  }
}

/* A6: Footer stays readable at min font-size, not cramped */
@media (max-width: 480px) {
  .site-footer { padding: 1.25rem 0; }
  .disclaimer { font-size: 0.73rem; }
}

.submit-row {
  text-align: left;
  padding: 1.25rem 0 1rem;
}

.submit-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* =====================================================
   RESULT PAGE
   ===================================================== */

.result-wrap {
  padding: 2.5rem 0;
}

/* Cancelled notice */
.cancelled-notice {
  background: var(--grade-amber-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}

/* Grade seal */
.grade-seal-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.grade-seal {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 3px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
}

.grade-seal--green { color: var(--green); background: var(--grade-green-bg); }
.grade-seal--amber { color: var(--amber); background: var(--grade-amber-bg); }
.grade-seal--red   { color: var(--red);   background: var(--grade-red-bg); }

.grade-seal__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.grade-seal__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.grade-rationale {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Risk factors */
.risk-factor-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.risk-factor-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.risk-factor-item__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.risk-factor-item__detail {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Packet preview table */
.packet-preview {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.packet-preview tr {
  border-bottom: 1px solid var(--border);
}

.packet-preview tr:last-child {
  border-bottom: none;
}

.packet-preview td {
  padding: 0.75rem 0.5rem;
  vertical-align: top;
}

.packet-preview__num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--border-heavy);
  width: 2rem;
  padding-right: 0.75rem;
  white-space: nowrap;
}

.packet-preview__title {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

.packet-preview__teaser {
  color: var(--muted);
  font-size: 0.83rem;
}

/* Checkout CTA block */
.checkout-block {
  background: var(--accent);
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-block h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.checkout-block p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.checkout-disclosure {
  border-top: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.checkout-disclosure p {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.checkout-disclosure p:last-child {
  margin-bottom: 0;
}

.btn-checkout {
  display: inline-block;
  background: #FFFFFF;
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-checkout:hover {
  background: var(--accent-light);
  color: var(--accent);
}

/* Email capture (secondary) */
.email-capture-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.email-capture-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.email-capture-block p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.email-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
}

.email-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

/* Routed result */
.routed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.routed-card h1 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.routed-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Back link */
.back-link {
  margin-top: 0.5rem;
}

.back-link a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
}
.back-link a:hover { text-decoration: underline; }

/* =====================================================
   EMAIL DONE PAGE
   ===================================================== */

.done-wrap {
  padding: 4rem 0;
  max-width: 480px;
}

.done-wrap h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.done-msg {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.done-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

/* =====================================================
   INTAKE FORM (payment-gated — preserve existing styles)
   ===================================================== */

.intake-wrap {
  padding: 2.5rem 0;
}

.intake-header {
  margin-bottom: 2rem;
}

.intake-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.intake-intro {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.intake-note--info {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.intake-fieldset {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.intake-legend {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  float: none;
  width: 100%;
}

.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.field-group { margin-bottom: 1.25rem; }
.field-group:last-child { margin-bottom: 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field-group--half { margin-bottom: 0; }

.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.required-mark { color: var(--red); margin-left: 0.15rem; }

.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.field-hint--section { margin-bottom: 1rem; }

.field-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
}

.field-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field-select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  appearance: auto;
  font-family: 'Inter', sans-serif;
}

.field-select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  resize: vertical;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.field-textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: border-color 0.12s ease;
}

.check-label:hover { border-color: var(--accent); }

.check-input {
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.check-text { color: var(--text); }

/* A7: .intake-legend section number circle — align-items: flex-start so
   the .section-num circle always pins to the first text line */
.intake-legend {
  align-items: flex-start;
}
.section-num {
  /* flex-start pinning: small top nudge to match cap-height of 1rem/Inter */
  margin-top: 0.14rem;
}

/* A7: field-row collapse to 1-col on <=600px (guard: already has <=640 from
   the global responsive block but we add a focused breakpoint here) */
@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* A7: intake fieldset padding tightens on mobile */
@media (max-width: 480px) {
  .intake-fieldset {
    padding: 1.1rem 1rem;
  }
  .intake-legend {
    font-size: 0.94rem;
    margin-bottom: 1rem;
  }
  .section-num {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.76rem;
    flex-shrink: 0;
  }
  .field-input,
  .field-select,
  .field-textarea {
    font-size: 1rem; /* bump to 1rem on mobile prevents iOS auto-zoom */
    padding: 0.6rem 0.8rem;
  }
  .field-label {
    font-size: 0.86rem;
  }
  .field-hint {
    font-size: 0.77rem;
  }
}

/* A7/A8: Conditional shown-state containers — premium sub-field treatment
   matching the free-check 4b gold left rule when JS reveals them.
   These selectors apply to the shown (non-display:none) state.
   We use a JS-class-free approach: style the container itself so when
   display:none is removed by JS the styling is already there. */
#virtual_office_staffed_group,
#permanent_signage_group {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-left: 0;
  background: rgba(194,161,92,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 480px) {
  #virtual_office_staffed_group,
  #permanent_signage_group {
    padding-left: 0.75rem;
  }
}

.intake-submit-row {
  text-align: left;
  padding: 0.5rem 0 1rem;
}

.submission-id-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 1.5rem auto;
  max-width: 420px;
  text-align: center;
}

.submission-id-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.submission-id-value {
  display: block;
  font-size: 1.1rem;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.6rem;
  word-break: break-all;
}

.submission-id-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.done-actions { margin-top: 1.5rem; }

/* =====================================================
   ANALYSIS OVERLAY (#gg-analysis)
   Case-review panel shown before result reveals.
   No gradients, no spinners — progress bar + ticking steps only.
   ===================================================== */

#gg-analysis {
  padding: 3rem 1rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
}

.gg-analysis__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
}

.gg-analysis__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.gg-analysis__sublabel {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.75rem;
}

/* Progress bar */
.gg-progress-bar-track {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.gg-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent); /* solid slate, no gradient */
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Step list */
.gg-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gg-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.gg-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Pending dot — hollow circle */
.gg-step__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--border-heavy);
  background: transparent;
  flex-shrink: 0;
  font-size: 0;
  transition: background 0.3s ease, border-color 0.3s ease, font-size 0.3s ease;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

/* Done state — filled slate circle with white check */
.gg-step--done .gg-step__dot {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.72rem;
}

.gg-step--done .gg-step__dot::after {
  content: '\2713';
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.gg-step--done {
  color: var(--text);
}

.gg-step__text {
  flex: 1;
}

/* Rotating caption */
.gg-caption {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  min-height: 1.4em;
  line-height: 1.4;
}

/* ---- Step pulse: subtle opacity/scale on in-progress step ---- */
@keyframes gg-step-pulse {
  0%   { opacity: 1;    transform: scale(1); }
  50%  { opacity: 0.6;  transform: scale(0.92); }
  100% { opacity: 1;    transform: scale(1); }
}

/* In-progress (active) step — pulse the dot, slide-in the text */
.gg-step--active .gg-step__dot {
  border-color: var(--accent);
  animation: gg-step-pulse 1.4s ease-in-out infinite;
}

.gg-step--active {
  color: var(--accent);
}

/* Completion transition: dot fills and text fades in at full opacity */
.gg-step--done .gg-step__dot {
  animation: none;
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.72rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.gg-step--done .gg-step__text {
  animation: gg-step-fadein 0.35s ease forwards;
}

@keyframes gg-step-fadein {
  from { opacity: 0.45; transform: translateX(-3px); }
  to   { opacity: 1;    transform: translateX(0); }
}

/* Grade AI note (graded branch only) */
.grade-ai-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.55;
  font-style: italic;
}

/* Packet description line */
.packet-description {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* =====================================================
   SAMPLE PREVIEW CARD (Change 2)
   Document-like, paper/slate aesthetic, no flashy effects.
   ===================================================== */

.sample-preview-card {
  background: var(--bg);          /* paper off-white */
  border: 1px solid var(--border-heavy);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.sample-preview-card__header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.sample-preview-card__body {
  padding: 1.25rem 1.25rem 1rem;
}

.sample-preview-card__generic-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Individual redacted snippet blocks */
.sample-snippet {
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.sample-snippet__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.sample-snippet__content {
  padding: 0.8rem 1rem 0.6rem;
}

.sample-snippet__line {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.sample-snippet__line:last-of-type {
  margin-bottom: 0;
}

.sample-snippet__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 0.3rem;
}

.sample-snippet__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.25rem 0;
  line-height: 1.55;
}

.sample-snippet__checklist li::before {
  content: '\2610'; /* ballot box */
  color: var(--muted);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.sample-snippet__more {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.3rem;
}

/* Muted redaction bar at the bottom of each snippet */
.sample-snippet__redacted {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0px,
    var(--border) 18px,
    var(--bg) 18px,
    var(--bg) 22px
  );
  opacity: 0.55;
}

/* Prominent limit notice */
.sample-preview-card__limit-notice {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.6rem 0.9rem;
  margin: 1.1rem 0 1.1rem;
  line-height: 1.55;
}

/* "What the full packet includes" block */
.sample-full-includes {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.9rem 1rem 0.75rem;
}

.sample-full-includes__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.sample-full-includes__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sample-full-includes__list li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.sample-full-includes__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sample-full-includes__list li::before {
  content: '\2014'; /* em dash */
  color: var(--border-heavy);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ---- Premium landing: responsive ---- */
@media (max-width: 1040px) {
  .site-nav { gap: 1.1rem; }
  .site-nav a { font-size: 0.8rem; }
  .lp-hero__inner { gap: 2.25rem; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__inner { gap: 1rem; }

  /* Stacked layout widens the card and wraps step rows to varying heights, so
     the fixed-gap traveling rail dot can't stay aligned — the per-node blooms
     carry the 1→2→3→4 sequence on smaller screens instead. */
  .packet-card__steps::after { display: none; }

  .lp-hero__inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 3.25rem;
    gap: 2rem;
  }
  .lp-hero__body { max-width: none; }

  .lp-visual {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    margin-top: 1rem;
  }
  .packet-mock {
    order: 0;
    flex: 0 0 auto;
    margin: 0 auto;
    width: min(100%, 420px);
    max-width: 420px;
  }
  .packet-mock__page--1 { inset: 14px -8px -12px 26px; }
  .packet-mock__page--2 { inset: 26px -16px -24px 46px; }
  .packet-tabs { display: none; }
  .packet-card__head { flex-wrap: wrap; }
  .packet-card__title { white-space: normal; }
  .packet-card__chip { align-self: center; }

}

@media (max-width: 720px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.25rem; }
  .trust-col { padding: 0; border-left: none !important; }
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-hero__left { animation: none !important; }
  .btn-gold:hover { transform: none; }
  .back-to-top { transition: opacity 0.2s ease; }
  .packet-card__steps::after,
  .packet-assembly__spark,
  .packet-assembly__fill,
  .packet-assembly__fill::after { animation: none !important; }
  .packet-card__steps::after { opacity: 0; }
  .packet-assembly__fill { transform: scaleX(0.9); }
  .packet-mock__card::after,
  .packet-step__num,
  .packet-step__status-label,
  .packet-step__status-dot,
  .packet-step__status-check { animation: none !important; }
  /* Steps settle to their completed state with no motion */
  .packet-step__status-label { opacity: 1; }
  .packet-step__status-dot { opacity: 0; }
  .packet-step__status-check { opacity: 1; transform: scale(1); }
  .packet-mock__card::after { opacity: 0; }
  .packet-mock { transition: none !important; }
  .packet-mock:hover { transform: none !important; }
}

@media (max-width: 640px) {
  .lp-hero__cta-row .btn-gold,
  .lp-hero__cta-row .btn-ghost { width: 100%; }

  .trust-strip__inner { grid-template-columns: 1fr; }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .grade-seal-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .email-row { flex-direction: column; }

  .email-input,
  .btn-primary,
  .btn-secondary { width: 100%; text-align: center; }

  .field-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .intake-fieldset { padding: 1.25rem; }

  .trust-strip__inner { gap: 0.75rem; }

  .landing-hero__cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .faq-block { padding: 0.85rem 0; }

  .situations-list li { padding: 0.85rem 0; }

  .suspended-hero__cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .before-appeal-list li { padding: 0.5rem 0; }
}

/* =====================================================
   FOOTER LINKS NAV
   ===================================================== */

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.footer-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* =====================================================
   SEO SECTIONS — LANDING PAGE
   ===================================================== */

/* Situations list */
.situations-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.situations-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.situations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.situations-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  line-height: 1.65;
}

.situations-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.situations-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Evidence section */
.evidence-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.evidence-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.evidence-intro {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.evidence-checklist {
  margin-bottom: 1rem;
}

.evidence-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.evidence-cta {
  margin-top: 0.5rem;
}

/* FAQ section */
.faq-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.faq-block {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Disclaimer anchor section */
.landing-disclaimer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.landing-disclaimer h2 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.landing-disclaimer p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
}

/* =====================================================
   GBP SUSPENDED PAGE
   ===================================================== */

.suspended-page {
  padding-bottom: 2rem;
}

.suspended-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.suspended-hero__breadcrumb {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.suspended-hero__breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.suspended-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.suspended-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 640px;
}

.suspended-hero__lead {
  font-size: 1rem;
  color: var(--text);
  max-width: 620px;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.suspended-hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.suspended-hero__cta-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Causes section */
.suspended-causes {
  padding: 1.75rem 0 2.5rem;
}

.suspended-causes h2 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.suspended-causes > p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cause-block {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cause-block:last-child {
  border-bottom: none;
}

.cause-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.cause-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Before appeal list */
.suspended-before-appeal {
  padding: 1.75rem 0 2.5rem;
}

.suspended-before-appeal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.suspended-before-appeal > p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.before-appeal-list {
  padding-left: 1.25rem;
  margin: 0;
}

.before-appeal-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
}

.before-appeal-list li:last-child {
  border-bottom: none;
}

.before-appeal-list li strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

/* Suspended page evidence */
.suspended-evidence {
  padding: 2.5rem 0;
}

.suspended-evidence h2 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.suspended-evidence > p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Suspended page FAQ */
.suspended-faq {
  padding: 2.5rem 0;
}

.suspended-faq h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

/* Bottom CTA */
.suspended-cta-bottom {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 0.5rem 0 1.5rem;
}

.suspended-cta-bottom h2 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.suspended-cta-bottom p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.suspended-cta-bottom__row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Inline disclaimer on suspended page */
.suspended-disclaimer {
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid var(--border);
}

.disclaimer-inline {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

/* =====================================================
   REPORT PAGE — PAID APPEAL READINESS PACKET
   ===================================================== */

.report-wrap {
  padding: 2.5rem 0;
}

/* --- Packet document header --- */

.packet-doc-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin-bottom: 2rem;
}

.packet-doc-header__brand {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.packet-doc-header__meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.packet-doc-header__sep {
  color: var(--border-heavy);
}

.packet-doc-header__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.25;
}

.packet-doc-header__intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

/* --- Action buttons --- */

.report-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn-print,
.btn-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-heavy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  line-height: 1;
}

.btn-print:hover,
.btn-copy:hover {
  border-color: var(--accent);
  background-color: var(--accent-light);
}

/* --- Report body --- */

.report-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* --- Section cards --- */

.report-section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.report-section-card__title {
  background: var(--accent);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-section-card__body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.report-section-card__body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* --- Bullet list inside cards --- */

.report-section-card__body ul.report-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.report-section-card__body ul.report-ul li {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text);
  padding: 0.5rem 0 0.5rem 1.1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.report-section-card__body ul.report-ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--border-heavy);
  font-size: 0.8rem;
}

.report-section-card__body ul.report-ul li:last-child {
  border-bottom: none;
}

/* --- Checklist --- */

.report-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-checklist__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.report-checklist__item::before {
  content: '\2610';
  color: var(--border-heavy);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: -0.05rem;
}

.report-checklist__item--done {
  color: var(--text);
}

.report-checklist__item--done::before {
  content: '\2611';
  color: var(--green);
}

.report-checklist__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Divider --- */

.report-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0;
}

/* --- Inline disclaimer --- */

.report-inline-disclaimer {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.report-inline-disclaimer p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Footer actions --- */

.report-footer-actions {
  padding: 0.5rem 0 2rem;
}

/* --- Print utility class (screen: no styles needed) --- */

/* ---- Back-to-top control ---- */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-l) 0%, var(--gold) 60%, var(--gold-d) 100%);
  border: 1px solid var(--gold-d);
  color: #1B160E;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.15s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 2px;
}

/* ---- Print styles ---- */
@media print {
  .no-print { display: none !important; }
  .site-header, .site-footer { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .report-wrap { padding: 0; }
  .packet-doc-header {
    border: none;
    border-top: 2pt solid #243B53;
    padding: 1rem 0 0.75rem;
    margin-bottom: 1rem;
    page-break-after: avoid;
  }
  .report-section-card {
    border: 1px solid #D8D5CC;
    page-break-inside: avoid;
    margin-bottom: 0.75rem;
  }
  .report-section-card__title {
    background: #243B53 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color: #fff !important;
  }
  .report-section-card__body { padding: 0.75rem 1rem; }
  a { color: inherit; text-decoration: none; }
}

/* ---- Packet header: calm intent note (Fix pass) ---- */
.packet-doc-header__calm {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ---- Chunk 1C: button row + PDF hint (fix pass) ---- */
.report-actions__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.report-actions__hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.6rem;
  font-style: italic;
}

.report-actions__hint strong {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.report-actions__hint--privacy {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.35rem;
}

/* =====================================================
   GBP Guardian — triage form q-num alignment fix + mobile polish
   A1/A5: circle pinned to first text line on single- and multi-line
   legends; legend font tuned so titles break cleanly on 390px.
   ===================================================== */

/* 1. Make the legend a flex container — align-items: flex-start
      pins the circle to the top of the text on both single-line
      and multi-line legends (e.g. Q8 and Q11). */
.q-block legend {
  display: flex;
  align-items: flex-start;
  gap: 0;               /* gap handled by .q-num margin-right */
  /* A5: tighten legend line-height and letter-spacing for cleaner wrapping */
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* 2. Switch the circle to inline-flex so it centres its
      digit properly. margin-top: 0.12rem nudges the circle down
      so its optical centre sits on the cap-height of the first line. */
.q-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: unset;
  flex-shrink: 0;
  margin-top: 0.12rem;  /* optical cap-height alignment at 0.92rem/Inter */
  line-height: 1;
}

/* A1/A5: Mobile — tighter font-size + gap so circle optical centre stays on cap-height */
@media (max-width: 480px) {
  .q-block legend {
    font-size: 0.88rem;
    line-height: 1.42;
    letter-spacing: -0.005em;
  }
  .q-num {
    margin-top: 0.1rem;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.68rem;
    margin-right: 0.45rem;
  }
}

/* =====================================================
   APPEAL-READINESS REVIEW HEADER
   Replaces grade-seal-wrap — no grade letters, no scores
   ===================================================== */

.appeal-review-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.appeal-review-header__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.appeal-review-header__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.appeal-review-header__rationale {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   CONDITIONAL QUESTION LABEL (check form)
   Replaces q-num badge for non-sequential questions
   ===================================================== */

/* A2: Conditional sub-question badge — same flex-start pinning as .q-num,
   styled as a secondary "4b" pill so it reads as intentional and premium.
   display: inline-flex + margin-top matches the .q-num flex-start anchor. */
.q-conditional-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Same sizing as .q-num circle but rectangular pill — clearly secondary */
  min-width: 2.1rem;
  height: 1.5rem;
  padding: 0 0.45rem;
  border: 1px solid var(--gold-l);
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: rgba(194,161,92,0.08);
  margin-right: 0.5rem;
  margin-top: 0.12rem;  /* same optical offset as .q-num */
  vertical-align: unset; /* meaningless inside flex but prevents surprises */
  white-space: nowrap;
}

/* A2: Conditional card — indented with gold left rule + subtle connector feel */
.q-block--conditional {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-right: 1px solid var(--border);
  margin-left: 1.25rem;
  /* Remove accent left rule carried from previous version; gold carries it now */
  border-top: none;
}

/* A2: When inside a form-section, ensure the connector reads as attached to Q4 */
.form-section .q-block--conditional {
  border-bottom: 1px solid var(--border);
}

@media (max-width: 480px) {
  .q-conditional-label {
    font-size: 0.58rem;
    min-width: 1.9rem;
    height: 1.4rem;
    margin-top: 0.1rem;
    margin-right: 0.4rem;
  }
  .q-block--conditional {
    margin-left: 0.75rem;
  }
}

.q-hint {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* =====================================================
   DOC-PREVIEW — Premium document sample preview
   Result page / paid packet preview section
   ===================================================== */

.doc-preview {
  background: var(--surface);
  border: 1px solid var(--border-heavy);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 18px -8px rgba(0,0,0,0.13);
}

.doc-preview__masthead {
  background: linear-gradient(180deg, #1E180F 0%, var(--ink-2) 100%);
  border-bottom: 1px solid rgba(194,161,92,0.28);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.doc-preview__masthead-inner { flex: 1 1 auto; min-width: 0; }

.doc-preview__masthead-brand {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.doc-preview__masthead-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.doc-preview__masthead-meta {
  font-size: 0.68rem;
  color: var(--muted-warm);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.doc-preview__masthead-sep { color: rgba(156,147,133,0.45); }

.doc-preview__sample-stamp {
  flex-shrink: 0;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  border: 1px solid rgba(194,161,92,0.42);
  border-radius: 4px;
  padding: 0.3rem 0.55rem;
  background: rgba(194,161,92,0.08);
}

.doc-preview__body {
  padding: 1.1rem 1.25rem 1.1rem;
}

.doc-preview__generic-note {
  font-size: 0.74rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.doc-preview__section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.doc-preview__section-header {
  background: var(--accent);
  color: #fff;
  padding: 0.42rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doc-preview__section-body {
  padding: 0.8rem 1rem 0.7rem;
  background: var(--bg);
}

.doc-preview__field-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.doc-preview__field-row:last-child { border-bottom: none; padding-bottom: 0; }

.doc-preview__field-key {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  min-width: 130px;
  flex-shrink: 0;
}

.doc-preview__field-val {
  font-size: 0.8rem;
  color: var(--muted);
}

.doc-preview__issue-row {
  display: flex;
  gap: 0.6rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.doc-preview__issue-row:last-of-type { border-bottom: none; }

.doc-preview__issue-rank {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.08rem;
}

.doc-preview__issue-text { font-size: 0.84rem; color: var(--text); line-height: 1.55; }

.doc-preview__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-preview__checklist li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.5;
}

.doc-preview__checklist li:last-child { border-bottom: none; padding-bottom: 0; }

.doc-preview__checklist li::before {
  content: '\2610';
  color: var(--muted);
  flex-shrink: 0;
  font-size: 0.88rem;
}

.doc-preview__redact-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.doc-preview__redact-bar {
  height: 7px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0px,
    var(--border) 16px,
    var(--bg) 16px,
    var(--bg) 20px
  );
  opacity: 0.45;
}

.doc-preview__redact-bar--short { width: 58%; }

.doc-preview__section-body--locked { background: var(--bg); }

.doc-preview__lock-notice {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.5rem;
  padding-left: 0.1rem;
}

.doc-preview__limit-notice {
  font-size: 0.81rem;
  color: var(--muted);
  font-style: italic;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.6rem 0.9rem;
  margin: 0.9rem 0;
  line-height: 1.55;
}

.doc-preview__includes {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.8rem 1rem 0.7rem;
}

.doc-preview__includes-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.doc-preview__includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-preview__includes-list li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 0.26rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.5;
}

.doc-preview__includes-list li:last-child { border-bottom: none; padding-bottom: 0; }

.doc-preview__includes-list li::before {
  content: '\2014';
  color: var(--border-heavy);
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

/* ---- Paid generation loading screen (report-actions area) ---- */
.paid-gen-overlay {
  padding: 3rem 1rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 420px;
}

.paid-gen-overlay__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem 2rem;
  max-width: 560px;
  width: 100%;
}

.paid-gen-overlay__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.paid-gen-overlay__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.paid-gen-overlay__sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.paid-gen-overlay__note {
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.55;
}

/* Full-screen variant — shown on the paid intake page (toggled by JS in
   intake.html) while the packet is generated, so the buyer sees staged progress
   instead of a blank browser buffer. */
.paid-gen-overlay--fixed {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--bg);
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  padding: 2rem 1rem;
}

/* Respect reduced-motion: no animated bar fill, no pulsing step dots. */
@media (prefers-reduced-motion: reduce) {
  .paid-gen-overlay .gg-progress-bar-fill { transition: none; }
  .paid-gen-overlay .gg-step--active .gg-step__dot { animation: none; }
}


/* ============================================================
   LEGAL / TRUST PAGES  (.legal-page)
   Used by: support, privacy, terms, refund-policy, disclaimer
   ============================================================ */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.legal-hero {
  margin-bottom: 2.5rem;
}

.legal-hero__breadcrumb {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.legal-hero__breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.legal-hero__breadcrumb a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.legal-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.legal-hero__lead {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.legal-body {
  border-top: 1px solid var(--border, #e5dfd3);
  padding-top: 2rem;
}

.legal-body h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.legal-body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.legal-body ul,
.legal-body ol {
  margin: 0.5rem 0 1rem 1.4rem;
  padding: 0;
}

.legal-body li {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.legal-body a {
  color: var(--gold, #C2A15C);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover {
  opacity: 0.8;
}

.legal-disclaimer {
  margin-top: 3rem;
  border-top: 1px solid var(--border, #e5dfd3);
  padding-top: 1.25rem;
}

.legal-disclaimer .disclaimer-inline {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------------
   "See How It Works" video modal — case-file charcoal/cream/gold styling.
   Lazy-loads the Synthesia iframe only when opened (see landing.html script).
--------------------------------------------------------------------------- */
.how-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
           max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(21, 18, 14, 0.78);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.how-video-overlay.is-open { opacity: 1; }
.how-video-overlay[hidden] { display: none; }
body.how-video-open { overflow: hidden; }

.how-video-modal {
  width: min(800px, 92vw);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-heavy);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(21, 18, 14, 0.5);
  padding: 1.4rem 1.5rem 1.6rem;
  transform: translateY(8px) scale(0.99);
  transition: transform 0.18s ease;
}
.how-video-overlay.is-open .how-video-modal { transform: translateY(0) scale(1); }

.how-video-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.how-video-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--text);
}
.how-video-modal__close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: -0.3rem -0.3rem 0 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.how-video-modal__close:hover {
  border-color: var(--gold-d);
  color: var(--text);
  background: var(--accent-light);
}
.how-video-modal__close:focus-visible {
  outline: 3px solid var(--gold-l);
  outline-offset: 2px;
}
.how-video-modal__desc {
  margin: 0.5rem 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.how-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.how-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {
  .how-video-modal { width: 96vw; padding: 1.1rem 1.1rem 1.3rem; }
  .how-video-modal__title { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .how-video-overlay,
  .how-video-modal { transition: none; }
}

/* --- "See How It Works" subtle attention cue ---------------------------- */
/* A restrained one-shot nudge + soft gold glow that hints the secondary    */
/* button is interactive. Deliberately understated so it never competes     */
/* with the primary "Start Free Check" CTA. Suppressed for reduced-motion.  */
/* B2: nudge peaks 3px→3.45px and 2px→2.3px (+15% restrained amplification) */
@keyframes how-cue-nudge {
  0%   { transform: translateX(0); }
  18%  { transform: translateX(3.45px); }
  36%  { transform: translateX(0); }
  54%  { transform: translateX(2.3px); }
  72%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}
/* B2: glow spread 3px→3.45px, alpha 0.16→0.18; border uses raised resting value */
@keyframes how-cue-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,150,106,0);      border-color: rgba(242,236,222,0.55); }
  50%      { box-shadow: 0 0 0 3.45px rgba(168,150,106,0.18); border-color: var(--gold); }
}
.btn-ghost.attn-cue {
  animation: how-cue-nudge 0.85s cubic-bezier(0.34, 0.12, 0.2, 1) both,
             how-cue-glow 1.05s ease-in-out both;
}
/* B3: reduced-motion guard for cue */
@media (prefers-reduced-motion: reduce) {
  .btn-ghost.attn-cue { animation: none; }
}

/* Persistent, restrained play-icon cue so visitors notice the secondary CTA
   opens the explainer video. Understated; never competes with the primary CTA. */
#how-video-trigger > svg {
  transform-origin: center;
  animation: how-play-pulse 3.4s ease-in-out infinite;
}
/* B2: play-pulse scale 1.14→1.16 */
@keyframes how-play-pulse {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.16); filter: drop-shadow(0 0 6px rgba(216,190,134,0.6)); }
}
/* B3: reduced-motion guard for play-pulse */
@media (prefers-reduced-motion: reduce) {
  #how-video-trigger > svg { animation: none !important; }
}

/* ---- Deploy #1: pricing section + article meta ---- */
.pricing-section { margin: 64px 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 24px; }
.pricing-card { border: 1px solid rgba(194,161,92,0.35); border-radius: 12px; padding: 28px 26px; background: rgba(194,161,92,0.05); }
.pricing-card h3 { margin: 0 0 12px; }
.pricing-card .btn-primary { margin-top: 14px; display: inline-block; }
.pricing-fineprint { font-size: 0.85em; opacity: 0.75; margin-top: 12px; }
.article-meta { font-size: 0.85em; opacity: 0.7; margin: 4px 0 18px; }

/* =====================================================
   CONVERSION REWRITE — new landing sections
   Visual Amplification Pack V1-V7
   All using existing palette variables only.
   ===================================================== */

/* V1: Promise box (Block 5) — gold left rule, elevated bg, comfortable padding */
.lp-promise-box {
  border-left: 3px solid var(--gold);
  background: rgba(194,161,92,0.09);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.15rem;
  margin: 0 0 1.35rem;
  max-width: 34rem;
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.14), 0 2px 8px -4px rgba(0,0,0,0.2);
}
.lp-promise-box p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(242,236,222,0.88);
  margin: 0;
}
.lp-promise-box strong {
  color: var(--gold-l);
}

/* V2: Interception band (Block 8) — full-width, light-on-dark elevated tint */
.lp-interception-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(180deg, #1E1810 0%, #181410 100%);
  border-top: 1px solid rgba(194,161,92,0.15);
  border-bottom: 1px solid rgba(194,161,92,0.15);
  padding: 3rem 1.5rem;
}
.lp-interception-band__inner {
  max-width: 820px;
  margin: 0 auto;
}
.lp-interception-band__card {
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.6rem;
  background: rgba(194,161,92,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.12);
}
.lp-interception-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.lp-interception-band__body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(242,236,222,0.78);
  margin: 0;
}

/* V3: Five-causes cards (Block 9) — case-file styling, folder-tab top accent, hover lift */
.lp-causes-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem 3rem;
}
.lp-causes-band__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-causes-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.lp-causes-band__lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.lp-causes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.25rem;
}
.lp-cause-card {
  background: var(--surface);
  border: 1px solid rgba(194,161,92,0.28);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.1rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* folder-tab top accent */
  border-top: 2px solid var(--gold-d);
}
.lp-cause-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.22), 0 2px 8px -4px rgba(194,161,92,0.18);
}
.lp-cause-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.lp-cause-card__desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.lp-cause-card__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-d);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.lp-cause-card__link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lp-causes-band__cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.lp-causes-band__cta-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.lp-causes-band__cta-micro {
  width: 100%;
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Packet anatomy section (Block 10) — light surface band */
.lp-packet-anatomy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
}
.lp-packet-anatomy__inner {
  max-width: 820px;
  margin: 0 auto;
}
.lp-packet-anatomy__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.lp-packet-anatomy__lead {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.lp-packet-anatomy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.lp-packet-anatomy__list li {
  padding: 0.72rem 0 0.72rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
}
.lp-packet-anatomy__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lp-packet-anatomy__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-d);
}
.lp-packet-anatomy__list li strong {
  font-weight: 600;
  color: var(--text);
}
.lp-packet-anatomy__closing {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

/* V4: Honesty block (Block 11) — dark band, display serif H2, thin gold rule, embossed trust cards */
.lp-honesty-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(194,161,92,0.06) 0%, rgba(194,161,92,0) 60%),
    linear-gradient(180deg, #1A140E 0%, var(--ink) 100%);
  border-top: 1px solid rgba(194,161,92,0.15);
  border-bottom: 1px solid rgba(194,161,92,0.15);
  padding: 3.75rem 1.5rem 3.25rem;
}
.lp-honesty-block__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-honesty-block__rule {
  border: none;
  border-top: 1px solid rgba(194,161,92,0.35);
  margin-bottom: 2rem;
}
.lp-honesty-block__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.lp-honesty-block__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242,236,222,0.78);
  max-width: 68ch;
  margin-bottom: 2.25rem;
}

/* Trust cards row (Block 11) */
.lp-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp-trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.15rem 1rem;
  background: rgba(194,161,92,0.06);
  border: 1px solid rgba(194,161,92,0.22);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(216,190,134,0.1), 0 2px 6px -3px rgba(0,0,0,0.3);
}
.lp-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(168,136,74,0.1);
  border: 1px solid rgba(168,136,74,0.28);
}
.lp-trust-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lp-trust-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-white);
  margin: 0;
  line-height: 1.25;
}
.lp-trust-card__text {
  font-size: 0.8rem;
  color: var(--muted-warm);
  line-height: 1.45;
  margin: 0;
}

/* Final CTA band (Block 14) */
.lp-final-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.lp-final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.lp-final-cta__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}
.lp-final-cta__micro {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* V6: Sticky mobile CTA — bottom bar on viewports <= 640px */
.lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 17, 13, 0.97);
  border-top: 1px solid rgba(194,161,92,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lp-sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lp-sticky-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .lp-sticky-cta {
    transition: opacity 0.15s ease;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .lp-sticky-cta { display: block; }
}

/* Hide sticky CTA when modal is open */
body.how-video-open .lp-sticky-cta { display: none !important; }

/* V7: Button micro-interactions */
.btn-gold:active {
  filter: brightness(0.95);
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* V5: Section rhythm — trust strip moves to cream light band in the new flow */
/* The existing trust-strip uses the cream band already; new bands alternate
   dark (hero) → dark (interception) → light (causes) → light (packet anatomy)
   → dark (honesty) → light (how) → light (situations) → light (evidence/pricing/faq)
   → light (final-cta). The bands slot in without changing existing sections' own bg. */

/* Cause card hover lift respects reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-cause-card { transition: none !important; }
  .lp-cause-card:hover { transform: none !important; box-shadow: none !important; }
}

/* Responsive: trust cards wrap on medium screens */
@media (max-width: 900px) {
  .lp-trust-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lp-trust-cards { grid-template-columns: 1fr; }
  .lp-causes-grid { grid-template-columns: 1fr; }
  .lp-causes-band__cta-row { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .lp-interception-band { padding: 2rem 1rem; }
  .lp-interception-band__h2 { font-size: 1.2rem; }
  .lp-honesty-block { padding: 2.5rem 1rem 2rem; }
  .lp-causes-band { padding: 2.5rem 1rem 2rem; }
  .lp-packet-anatomy { padding: 2.5rem 1rem; }
  .lp-final-cta { padding: 2.5rem 1rem; }
  .lp-final-cta__h2 { font-size: 1.25rem; }
  /* Ensure primary CTA visible without scrolling on 390px */
  .lp-hero__cta-row { margin-bottom: 0.85rem; }
}

/* Progress bar shimmer — subtle, only when not prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .packet-assembly__fill::after {
    /* Existing sheen animation already handles this; no new keyframe needed */
    animation: packet-assembly-sheen 6.5s ease-in-out infinite;
  }
}
