:root {
  --ink: #17211d;
  --muted: #66716b;
  --paper: #f6f5ef;
  --card: #ffffff;
  --line: #dfe3df;
  --accent: #234f43;
  --accent-soft: #e8f0ec;
  --warm: #8d5f2f;
  --warm-soft: #f5eee5;
  --danger: #8c3b35;
  --danger-soft: #f8e9e7;
  --shadow: 0 18px 44px rgba(34, 48, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
button, input { font: inherit; }
button { cursor: pointer; }
a { color: var(--accent); }

.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 22px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 11px;
  letter-spacing: .08em;
}
.beta-pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.app-shell { max-width: 1080px; margin: 0 auto; padding: 32px 22px 72px; }
.hero { max-width: 760px; padding: 68px 0 34px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 750; color: var(--accent); }
h1 { font-size: clamp(44px, 8vw, 78px); line-height: .98; letter-spacing: -.055em; margin: 14px 0 20px; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -.035em; margin: 8px 0 14px; }
h3 { font-size: 21px; line-height: 1.2; letter-spacing: -.02em; margin: 6px 0 10px; }
.lede { font-size: 20px; color: #46524c; max-width: 660px; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0 32px; }
.promise { background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.promise strong { display: block; margin-bottom: 4px; }
.promise span { color: var(--muted); font-size: 14px; }

.primary, .secondary, .ghost {
  border-radius: 13px;
  padding: 12px 17px;
  border: 1px solid transparent;
  font-weight: 700;
}
.primary { background: var(--accent); color: white; }
.primary:hover { filter: brightness(.96); }
.secondary { background: white; color: var(--ink); border-color: var(--line); }
.ghost { background: transparent; color: var(--accent); padding-left: 0; padding-right: 0; }
.button-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 22px; }

.panel { background: rgba(255,255,255,.73); border: 1px solid var(--line); border-radius: 28px; padding: clamp(22px, 4vw, 42px); box-shadow: var(--shadow); }
.question-meta { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.progress { height: 5px; background: #e8ebe8; border-radius: 999px; overflow: hidden; margin-top: 9px; }
.progress > span { display: block; height: 100%; background: var(--accent); transition: width .25s ease; }
.options { display: grid; gap: 10px; margin-top: 26px; }
.option {
  width: 100%; text-align: left; background: white; border: 1px solid var(--line); border-radius: 15px; padding: 15px 16px; color: var(--ink);
}
.option:hover, .option.selected { border-color: var(--accent); background: var(--accent-soft); }
.option.selected { box-shadow: inset 0 0 0 1px var(--accent); }
.help { color: var(--muted); font-size: 14px; }

.results-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.results-head p { margin: 0; color: var(--muted); }
.cards { display: grid; gap: 16px; }
.policy-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 8px 26px rgba(40,50,45,.04); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 13px; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 9px; font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.badge.attention { background: var(--danger-soft); color: var(--danger); }
.badge.know { background: var(--warm-soft); color: var(--warm); }
.badge.watching { background: var(--accent-soft); color: var(--accent); }
.badge.category { background: #f1f2ef; color: #59645e; }
.card-summary { color: #46524c; margin: 6px 0 18px; max-width: 820px; }
.fact-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.fact { border-top: 1px solid var(--line); padding-top: 10px; }
.fact span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.fact strong { display: block; margin-top: 3px; font-size: 14px; }

.detail { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-box { background: #fafaf7; border-radius: 14px; padding: 15px; }
.detail-box h4 { margin: 0 0 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.detail-box p { margin: 0; color: #46524c; }
.source-line { margin-top: 16px; font-size: 13px; color: var(--muted); }
.source-line a { font-weight: 700; }
.read-controls { display: flex; gap: 16px; margin-top: 15px; flex-wrap: wrap; }
.read-controls button { border: 0; background: none; color: var(--accent); font-weight: 750; padding: 0; }
.notice { background: #f8f7f2; border-left: 3px solid #b9b4a5; margin-top: 16px; padding: 12px 14px; font-size: 13px; color: #5b625d; }

.feedback { margin-top: 30px; padding: 24px; background: var(--accent); color: white; border-radius: 22px; }
.feedback p { color: #d9e4df; }
.feedback-options { display: flex; flex-wrap: wrap; gap: 9px; }
.feedback button { background: transparent; color: white; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 8px 12px; }
.feedback button:hover { background: rgba(255,255,255,.08); }
.feedback-status { margin-top: 12px; font-size: 13px; color: #d9e4df; }

.empty-state { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; }
.site-footer { max-width: 1080px; margin: 0 auto; padding: 0 22px 44px; color: var(--muted); font-size: 12px; }
.site-footer p { max-width: 820px; }

@media (max-width: 700px) {
  .site-header { padding-top: 18px; }
  .promise-grid, .fact-row, .detail-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 38px; }
  .results-head { display: block; }
  .results-head .secondary { margin-top: 14px; }
  .panel { border-radius: 22px; }
}

.purchase-note-wrap { max-width: 1080px; margin: 0 auto; padding: 8px 22px 0; }
.purchase-note { margin-top: 0; }

.brand-byline{
  margin: 0.55rem 0 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted, #5f6c67);
}
.brand-byline strong{
  color: var(--ink, #11221c);
  font-weight: 700;
}

.launch-price{
  margin: 0 0 1.25rem;
}



/* ===== V8 multi-page public journey ===== */
*, *::before, *::after { box-sizing: border-box; }

.journey-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.journey-header {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 10px;
}

.journey-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.journey-launch {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.journey-buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.journey-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-progress {
  width: min(860px, 100%);
  margin: 4px auto 0;
  padding: 0;
}

.journey-progress-bar {
  height: 3px;
  margin-top: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e6e3;
}

.journey-progress-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.journey-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 10px;
}

.journey-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #c9d0cc;
}

.journey-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

.journey-page {
  width: min(920px, 100%);
  margin: 0 auto;
  flex: 1;
  min-height: 560px;
  padding: clamp(44px, 6vw, 76px) 0 48px;
  display: grid;
  align-content: start;
}

.journey-page-home {
  width: min(1060px, 100%);
}

.journey-page h1 {
  max-width: 900px;
  margin: 10px 0 18px;
}

.journey-page h2 {
  letter-spacing: -.02em;
}

.journey-lede {
  max-width: 780px;
  margin: 0;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.48;
  color: #44504a;
}

.journey-copy {
  max-width: 760px;
  color: #46524c;
  font-size: 17px;
  line-height: 1.65;
}

.journey-copy-block {
  max-width: 860px;
}

.journey-note {
  max-width: 840px;
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.6;
}

/* Home */
.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}

.journey-hero {
  min-width: 0;
}

.journey-hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .99;
  letter-spacing: -.055em;
}

.journey-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.home-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  line-height: 1.1;
  text-decoration: none;
}

.journey-secondary-buy {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

.home-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.home-quick-facts > div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.home-quick-facts strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 5px;
}

.home-quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.home-side-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.7);
}

.home-side-panel .side-label,
.reveal-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}

.home-side-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.15;
}

.home-side-panel p {
  color: #46524c;
  line-height: 1.6;
}

.home-mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 22px 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.home-mini-flow b {
  color: var(--accent);
}

.home-side-note {
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted) !important;
}

/* Interactive content */
.topic-selector,
.when-tabs,
.sample-detail-buttons,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 16px;
}

.topic-chip,
.when-tab,
.sample-detail {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.topic-chip.active,
.when-tab.active,
.sample-detail.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.interactive-reveal,
.when-explain {
  max-width: 800px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  color: #46524c;
  line-height: 1.6;
}

.interactive-reveal p {
  margin: 8px 0 0;
  font-size: 17px;
}

.why-flow {
  max-width: 760px;
  margin: 30px 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
}

.flow-step span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.flow-step.emphasis {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.flow-arrow {
  padding: 6px 0 6px 30px;
  color: var(--muted);
}

.brand-quote {
  max-width: 820px;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: -.02em;
}

.question-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 30px 0 22px;
}

.preview-row {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  padding: 16px;
  min-height: 150px;
  color: var(--ink);
}

.preview-row span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 18px;
}

.preview-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.preview-row small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.preview-row.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.filter-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
  font-weight: 800;
}

.filter-line b {
  color: var(--accent);
}

.privacy-inline {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.location-cards > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,.68);
}

.location-cards span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.location-cards h2 {
  margin: 9px 0 8px;
}

.location-cards p {
  color: #46524c;
}

.status-promise {
  max-width: 800px;
  margin-top: 20px;
  color: #46524c;
}

.sample-card {
  max-width: 820px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.sample-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.sample-badge {
  color: var(--warm);
  background: var(--warm-soft);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
}

.sample-verified {
  color: var(--muted);
  font-size: 12px;
}

.sample-card > p {
  color: #46524c;
  line-height: 1.6;
}

.sample-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.sample-facts div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.sample-facts span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}

.sample-detail-copy {
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #fafaf7;
  color: #46524c;
  line-height: 1.6;
}

.trust-principles,
.not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.trust-principles > div,
.not-grid > div {
  border-top: 2px solid var(--accent);
  padding: 18px 4px 0;
}

.trust-principles span,
.not-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-principles p,
.not-grid p {
  color: #46524c;
  line-height: 1.55;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
}

.final-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
}

.final-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin: 30px 0 18px;
}

.final-price strong {
  font-size: 52px;
  letter-spacing: -.05em;
}

.final-price span {
  color: var(--muted);
}

.final-buy {
  display: inline-flex;
  text-decoration: none;
}

.final-trust {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.final-cta .checkout-note {
  margin: 18px auto 0;
}

/* Bottom nav: only Back / Next, no centre label or page number */
.journey-nav {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
}

.journey-back,
.journey-next {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.journey-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 860px) {
  .home-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-side-panel {
    max-width: 720px;
  }

  .home-quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .question-preview {
    grid-template-columns: 1fr 1fr;
  }

  .location-cards,
  .trust-principles,
  .not-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .journey-header,
  .journey-main,
  .journey-footer {
    width: min(100% - 28px, 1120px);
  }

  .journey-header {
    align-items: flex-start;
  }

  .journey-header-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .journey-launch {
    display: none;
  }

  .journey-page {
    min-height: 0;
    padding: 34px 0 34px;
  }

  .journey-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .home-quick-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-quick-facts > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: baseline;
  }

  .question-preview {
    grid-template-columns: 1fr;
  }

  .preview-row {
    min-height: 0;
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
  }

  .preview-row span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .preview-row strong,
  .preview-row small {
    grid-column: 2;
  }

  .sample-facts {
    grid-template-columns: 1fr 1fr;
  }

  .journey-nav {
    position: sticky;
    bottom: 0;
    background: rgba(246,245,239,.97);
    backdrop-filter: blur(10px);
    padding: 12px 0 10px;
    z-index: 5;
  }
}
