/* lekana - shared site stylesheet
   Ported from the lekana design system (colors_and_type.css + design handoff).
   Sunshine is a focus accent only, never a full-screen wash. Headings are
   deliberately light (Nunito 300/400). Separation is colour, not edges:
   no card shadows, no borders as primary separator. Used by all generated
   pages. terms.html / privacy.html keep policy.css. */

:root {
  --lk-sunshine:    #F5C400;  /* focus accent only - highlights, focal cards, pills */
  --lk-dark:        #1A1200;  /* text, primary contrast panels */
  --lk-footer:      #2E2E2E;  /* dark footer bar - per design system */
  --lk-cream:       #F5EDE6;  /* soft surfaces, text on dark/orange */
  --lk-page-bg:     #F4F4F0;  /* resting page background - never pure white */
  --lk-orange:      #FC6722;  /* primary buttons (this site) - hover #E85B18 */
  --lk-white:       #FFFFFF;  /* cards & modals only */
  --lk-hair:        #E5E3DC;  /* hairline dividers */
  --lk-muted:       #6B7280;  /* secondary text */
  --lk-faint:       #9CA3AF;  /* captions, footer text */
  --lk-error:       #B91C1C;

  /* Opener answer-card accents (home two-question flow only) */
  --lk-step-teal:   #1E4F4A;  /* the "yes / leak" path */
  --lk-step-plum:   #6B2B4B;  /* the "no / balanced" path */

  --font-display:   'Nunito', system-ui, sans-serif;
  --font-body:      'Figtree', system-ui, sans-serif;

  --max-w:          1080px;
  --max-w-narrow:   760px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-sm:      6px;
  --dur-fast:       120ms;
  --dur:            200ms;
  --ease:           cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lk-page-bg);
  color: var(--lk-dark);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-w-narrow); }

/* ---------- Typography ---------- */
/* Nunito display, deliberately light. Never above 600. No italics. */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-weight: 300; font-size: clamp(34px, 6vw, 60px); line-height: 1.25; letter-spacing: -0.02em; }
h2 { font-weight: 300; font-size: clamp(23px, 3.4vw, 34px); line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-size: 20px; }
h4 { font-size: 15px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--lk-muted); line-height: 1.25; }

/* Heading emphasis: a lighter base with one phrase pulled out. The phrase is
   weight 400 (not bold) and, on hero-level h1s, carries the sunshine brush. */
h1 strong, h2 strong { font-weight: 400; color: var(--lk-dark); }

/* The sunshine brush-stroke highlight on hero emphasis (rough, hand-drawn).
   An feTurbulence-displaced rounded rect, applied as a background image so the
   text stays crisp. box-decoration-break makes it wrap cleanly across lines. */
h1 strong, .brush {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20320%2080'%20preserveAspectRatio%3D'none'%3E%3Cdefs%3E%3Cfilter%20id%3D'b'%20x%3D'-8%25'%20y%3D'-30%25'%20width%3D'116%25'%20height%3D'160%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.016%200.05'%20numOctaves%3D'2'%20seed%3D'7'%20result%3D'n'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20in2%3D'n'%20scale%3D'19'%20xChannelSelector%3D'R'%20yChannelSelector%3D'G'%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Crect%20x%3D'10'%20y%3D'5'%20width%3D'300'%20height%3D'70'%20rx%3D'14'%20fill%3D'%23F5C400'%20filter%3D'url(%23b)'%2F%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0.1em 0.22em;
}

/* Eyebrow / section kicker - Nunito 600, uppercase, tracked. */
.tag, .kicker, .crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-muted);
  margin: 0 0 16px;
}

/* ---------- Top navigation (fixed, transparent -> solid on scroll) ---------- */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: var(--lk-page-bg);
  border-bottom-color: var(--lk-hair);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: block; height: 30px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--lk-dark);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--lk-dark);
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a[aria-current="page"] { opacity: 1; }

.nav-toggle { display: none; }

/* ---------- Mobile nav overlay ---------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--lk-page-bg);
  display: none;
  flex-direction: column;
  padding: 24px;
}
.nav-overlay.open { display: flex; }
.nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.nav-overlay-links a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lk-hair);
}
.nav-overlay-links a[aria-current="page"] { color: var(--lk-dark); }
.nav-overlay .btn { margin-top: auto; }

@media (max-width: 820px) {
  .nav-links, .nav .btn-secondary, .nav .btn-cream { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
  }
}

/* ---------- Buttons ---------- */
/* Primary is Bethink orange (a deliberate decision for this site). */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: background var(--dur-fast) var(--ease), opacity var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn-primary { background: var(--lk-orange); color: var(--lk-cream); }
.btn-primary:hover { background: #E85B18; }
.btn-primary:active { transform: translateY(1px); }
/* Secondary: quiet cream chip on canvas */
.btn-secondary, .btn-cream {
  background: var(--lk-cream);
  color: var(--lk-dark);
}
.btn-secondary:hover, .btn-cream:hover { background: #ECE2D8; }
/* Ghost: text-only */
.btn-ghost { background: transparent; color: var(--lk-dark); opacity: 0.7; padding: 14px 8px; }
.btn-ghost:hover { opacity: 1; }
.btn:disabled { opacity: 0.7; cursor: default; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Sections ---------- */

.section { padding: 60px 0; }
.section--tight { padding: 44px 0; }
/* In-page anchor targets clear the fixed topbar instead of tucking under it. */
section[id], [id].step { scroll-margin-top: 90px; }

/* Dark contrast band (full-width). Reserved for the money moment + final CTA. */
.band-dark {
  background: var(--lk-dark);
  color: var(--lk-cream);
}
.band-dark h2, .band-dark h3 { color: var(--lk-cream); }
.band-dark .tag, .band-dark .kicker { color: rgba(245, 237, 230, 0.6); }
.band-dark .lead { color: rgba(245, 237, 230, 0.7); }
.band-dark a:not(.btn) { color: var(--lk-cream); }

/* ---------- Page hero (inner pages) ---------- */

.hero { padding: 130px 0 56px; text-align: center; }
.hero .container { max-width: var(--max-w-narrow); }
.hero h1 { margin: 0 0 24px; }
.hero .lead { max-width: 640px; margin: 0 auto 36px; }

/* ---------- Cards ---------- */

.card {
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.card h3 { font-size: 17px; margin: 0 0 8px; }
.card p { font-size: 15px; line-height: 1.25; color: var(--lk-muted); margin: 0; }
@media (max-width: 600px) { .card { padding: 24px; } }

/* Sunshine focal card - the one deliberate yellow moment per section. */
.card--highlight { background: var(--lk-sunshine); }
.card--highlight h3 { color: var(--lk-dark); }
.card--highlight p { color: rgba(26, 18, 0, 0.7); }
.card--highlight .block-label { color: rgba(26, 18, 0, 0.55); }

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.block-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--lk-muted);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

/* ---------- Proof card (dark stat panel) ---------- */

.proof {
  background: var(--lk-dark);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: var(--lk-cream);
  max-width: 880px;
  margin: 0 auto;
}
.proof .tag, .proof .kicker { color: rgba(245, 237, 230, 0.6); }
.proof h2 { color: var(--lk-cream); margin: 0 0 14px; }
.proof .lead { color: rgba(245, 237, 230, 0.7); max-width: 560px; margin: 0 auto 28px; }
.proof .footnote { color: rgba(245, 237, 230, 0.45); }

.leak-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0 0 28px; }
.leak-tag {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(245, 237, 230, 0.85);
  background: rgba(245, 237, 230, 0.08);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
}

/* ---------- Stat columns ---------- */

.stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .stat-label, .stat .stat-value { font-variant-numeric: tabular-nums; }
.stat .stat-label { font-size: 15px; color: var(--lk-muted); margin: 10px 0 0; order: 2; }
.stat .stat-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
}
.band-dark .stat .stat-label, .proof .stat .stat-label { color: rgba(245, 237, 230, 0.55); }
.band-dark .stat .stat-value, .proof .stat .stat-value { color: var(--lk-cream); }

/* ---------- Home: wedge + three numbers ---------- */

.wedge {
  background: var(--lk-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.three-num { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 760px) { .three-num { grid-template-columns: 1fr; } .wedge { padding: 36px 24px; } }
.num-card {
  background: var(--lk-page-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.num-card .block-label { color: var(--lk-muted); }
.num-card h3 { font-size: 17px; margin: 0 0 8px; }
.num-card p { font-size: 15px; line-height: 1.25; color: var(--lk-muted); margin: 0; }
.num-card.card--highlight { background: var(--lk-sunshine); }

/* ---------- Home: four-step flow ---------- */

.flow-card { display: flex; flex-direction: column; }
.flow-card .block-label { margin: 0 0 8px; }
.flow-card h3 { margin: 0 0 7px; font-size: 16px; }
.flow-card p { margin: 0 0 16px; font-size: 15px; color: var(--lk-muted); }
.flow-shot {
  margin: auto 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--lk-page-bg);
}
.flow-shot img { border-radius: 8px; width: 100%; display: block; }

/* ---------- Home: retail proof strip ---------- */

.retail-proof {
  max-width: 760px;
  margin: 34px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(26, 18, 0, 0.08);
}
.retail-proof .rp-from {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--lk-faint);
  margin-bottom: 18px;
  text-align: center;
}
.retail-proof .rp-row { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.retail-proof .rp-stat { text-align: center; max-width: 210px; }
.retail-proof .rp-num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--lk-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.retail-proof .rp-lbl { font-size: 15px; color: var(--lk-muted); margin-top: 8px; line-height: 1.25; }

/* ---------- Trust ---------- */

.trust { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-item { max-width: 240px; }
.trust-item h4 { font-family: var(--font-display); font-weight: 400; font-size: 15px; margin: 0 0 7px; }
.trust-item p { font-size: 15px; color: var(--lk-muted); line-height: 1.25; margin: 0; }

/* ---------- Final CTA ---------- */

.final { text-align: center; padding: 80px 0 60px; }
.final h2 { margin: 0 0 18px; }
.final p { color: var(--lk-muted); max-width: 480px; margin: 0 auto 30px; }

/* ---------- Home: two-question opener ---------- */

.opener {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}
.opener-stage { width: 100%; max-width: 760px; margin: 0 auto; }
.opener-stage h1 { margin: 0 0 14px; }
.opener-stage .lead { max-width: 540px; margin: 0 auto 48px; }

.opener-answers {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.opener-answer {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: left;
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 28px 32px;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.opener-answer:hover { transform: translateY(-2px); }
.opener-answer-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
}
.opener-answer-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--lk-muted);
  margin-top: 7px;
}
.opener-answer-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 19px;
  transition: transform var(--dur) var(--ease);
}
/* The coloured sentence does the work: yes = teal, no = plum. */
.opener-answer[data-a="yes"] .opener-answer-main,
.opener-answer[data-a="yes"] .opener-answer-arrow { color: var(--lk-step-teal); }
.opener-answer[data-a="no"] .opener-answer-main,
.opener-answer[data-a="no"] .opener-answer-arrow { color: var(--lk-step-plum); }
.opener-answer[data-a="yes"]:hover { background: var(--lk-step-teal); }
.opener-answer[data-a="no"]:hover { background: var(--lk-step-plum); }
.opener-answer:hover .opener-answer-main,
.opener-answer:hover .opener-answer-arrow { color: var(--lk-cream); }
.opener-answer:hover .opener-answer-sub { color: rgba(245, 237, 230, 0.78); }
.opener-answer:hover .opener-answer-arrow { transform: translateX(4px); }
@media (max-width: 720px) { .opener-answer { min-width: 100%; max-width: 100%; } }

.opener-back {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lk-faint);
  padding: 4px 0;
  margin-bottom: 30px;
  transition: color var(--dur) var(--ease);
}
.opener-back:hover { color: var(--lk-dark); }

.opener-progress, .opener-context {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lk-faint);
  letter-spacing: 0.3px;
}
.opener-progress { margin: 48px 0 0; }
.opener-context { font-weight: 500; color: var(--lk-muted); margin: 0 0 22px; }

/* Multi-select question cards (home opener) */
.q-list { display: grid; gap: 14px; max-width: 640px; margin: 36px auto 0; text-align: left; }
.q-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 24px 26px;
  cursor: pointer;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.q-card:hover { transform: translateY(-2px); }
.q-card:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(26, 18, 0, 0.18); }
/* Selected state — no border; elevation + the dark number badge + orange brush carry it. */
.q-card[aria-pressed="true"] { box-shadow: 0 10px 28px rgba(26, 18, 0, 0.12); }
.q-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--lk-hair);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  font-size: 15px;
  margin-top: 2px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.q-card[aria-pressed="true"] .q-check { background: var(--lk-dark); border-color: var(--lk-dark); color: var(--lk-cream); }
.q-card-q { display: block; font-family: var(--font-display); font-weight: 400; font-size: 19px; color: var(--lk-dark); line-height: 1.25; }
.q-card-sub { display: block; font-size: 15px; color: var(--lk-muted); margin-top: 8px; line-height: 1.25; }
.q-card--quiet { padding: 18px 26px; }
.q-card--quiet .q-card-q { font-size: 16px; color: var(--lk-muted); }
.q-card--quiet[aria-pressed="true"] .q-card-q { color: var(--lk-dark); }
.q-hint { font-size: 15px; color: var(--lk-faint); letter-spacing: 0.3px; margin: 16px 0 0; }
.q-continue { margin-top: 28px; }
.q-continue .btn[disabled] { opacity: 0.45; cursor: default; }

/* Single-select segment picker (home opener) — 3-up numbered cards */
/* Dark intro panel — our highest-contrast surface so the framing statement doesn't get lost. */
.opener-intro {
  max-width: 640px;
  margin: 0 auto 48px;
  background: var(--lk-dark);
  color: var(--lk-cream);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  text-align: center;
}
.opener-intro p { margin: 0; font-size: 15px; line-height: 1.25; color: rgba(245, 237, 230, 0.72); }
.opener-intro p + p { margin-top: 14px; }
/* Lead with the core statement at the same scale as the subtext below. */
.opener-intro p:first-child { font-size: clamp(16px, 2.2vw, 19px); color: var(--lk-cream); }
.q-list--3 { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin-top: 48px; }
@media (max-width: 820px) { .q-list--3 { grid-template-columns: 1fr; } }
.q-card--opt { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 28px 24px; }
.q-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--lk-cream);
  color: var(--lk-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; margin: 0 auto 16px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.q-card--opt[aria-pressed="true"] .q-num { background: var(--lk-dark); color: var(--lk-cream); }
/* Home card titles: a quiet grey brush by default — less prominent than the hero's sunshine. */
.q-card .brush { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20320%2080'%20preserveAspectRatio%3D'none'%3E%3Cdefs%3E%3Cfilter%20id%3D'g'%20x%3D'-8%25'%20y%3D'-30%25'%20width%3D'116%25'%20height%3D'160%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.016%200.05'%20numOctaves%3D'2'%20seed%3D'7'%20result%3D'n'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20in2%3D'n'%20scale%3D'19'%20xChannelSelector%3D'R'%20yChannelSelector%3D'G'%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Crect%20x%3D'10'%20y%3D'5'%20width%3D'300'%20height%3D'70'%20rx%3D'14'%20fill%3D'%23D8D7D1'%20filter%3D'url(%23g)'%2F%3E%3C%2Fsvg%3E"); }
/* Selected card: the title brush switches to orange. */
.q-card[aria-pressed="true"] .brush { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20320%2080'%20preserveAspectRatio%3D'none'%3E%3Cdefs%3E%3Cfilter%20id%3D'o'%20x%3D'-8%25'%20y%3D'-30%25'%20width%3D'116%25'%20height%3D'160%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.016%200.05'%20numOctaves%3D'2'%20seed%3D'7'%20result%3D'n'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20in2%3D'n'%20scale%3D'19'%20xChannelSelector%3D'R'%20yChannelSelector%3D'G'%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Crect%20x%3D'10'%20y%3D'5'%20width%3D'300'%20height%3D'70'%20rx%3D'14'%20fill%3D'%23FC6722'%20filter%3D'url(%23o)'%2F%3E%3C%2Fsvg%3E"); }
.q-card--opt .q-card-q { font-size: 18px; }
.q-card--opt .q-card-sub { margin-top: 10px; }

/* Cream panel - used for the prominent Security + Signup blocks */
.panel-cream {
  background: var(--lk-cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 760px;
  margin: 0 auto;
}
.panel-cream .tag { color: rgba(26, 18, 0, 0.55); }
@media (max-width: 600px) { .panel-cream { padding: 28px 24px; } }

/* Mutual-win two-up (what we get / what you get) */
.win-line { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 3vw, 28px); text-align: center; margin: 8px 0 0; }

/* ---------- Status chips (unified - not hue-coded) ---------- */

.tag-new, .tag-live, .tag-soon {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  vertical-align: middle;
}
.tag-new, .tag-live { background: var(--lk-cream); color: var(--lk-dark); }
.tag-soon { background: transparent; color: var(--lk-muted); border: 1px solid var(--lk-hair); }
/* Small dark "New" pill — readable on white and sunshine cards alike. */
.badge-new {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--lk-dark);
  color: var(--lk-cream);
  border-radius: 999px;
  padding: 1px 10px;
  line-height: 1.25;
}

/* Sunshine pill - small, deliberate (e.g. "Free for six weeks"). */
.pill-sun {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lk-sunshine);
  color: var(--lk-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

/* ---------- Reconciliation steps (neutral cards, alternating) ---------- */

.step {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 44px;
  margin-bottom: 18px;
}
.step--reverse { grid-template-columns: 1.2fr 1fr; }
.step--reverse .step-text { order: 2; }
.step--reverse .step-shot { order: 1; }
.step-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--lk-muted);
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}
.step h3 { font-size: clamp(20px, 2.6vw, 28px); margin: 0 0 12px; line-height: 1.2; }
.step p { font-size: 15px; line-height: 1.25; color: var(--lk-muted); margin: 0; }
.step-shot { margin: 0; }
.step-shot img { width: 100%; border-radius: var(--radius); display: block; }
@media (max-width: 820px) {
  .step, .step--reverse { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .step--reverse .step-text { order: 1; }
  .step--reverse .step-shot { order: 2; }
}

/* ---------- Insights report blocks (alternating) ---------- */

.report-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 18px;
}
.report-block--reverse { grid-template-columns: 1.2fr 1fr; }
.report-block--reverse .report-text { order: 2; }
.report-block--reverse .report-shot { order: 1; }
.report-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--lk-muted);
  margin: 0 0 12px;
}
.report-text h3 { margin: 0 0 12px; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.2; }
.report-text p { margin: 0; color: var(--lk-muted); font-size: 15px; line-height: 1.25; }
.report-shot { margin: 0; }
.report-shot img { border-radius: var(--radius); width: 100%; display: block; }
@media (max-width: 820px) {
  .report-block, .report-block--reverse { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .report-block--reverse .report-text { order: 1; }
  .report-block--reverse .report-shot { order: 2; }
}

/* ---------- Image + caption ---------- */

.shot { margin: 30px auto 0; max-width: 675px; }
.shot img { border-radius: var(--radius); width: 100%; }
.shot figcaption { font-size: 15px; color: var(--lk-faint); margin-top: 12px; text-align: center; }
figure { margin: 0; }

/* ---------- Pricing cards ---------- */

.price-card {
  background: var(--lk-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.price-card h3 { font-size: 22px; margin: 0 0 6px; }
.price-card .price-tagline { color: var(--lk-muted); font-size: 15px; margin: 0 0 28px; }
.price-amount {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  margin: 0 0 4px;
}
.price-amount span { font-size: 15px; font-weight: 400; color: var(--lk-muted); }
.price-foot { font-size: 15px; color: var(--lk-muted); margin: 0 0 24px; }
.price-card .btn { width: 100%; }
/* Recommended tier signals itself: dark card + orange button. No ribbon. */
.price-card--recommended { background: var(--lk-dark); color: var(--lk-cream); }
.price-card--recommended h3, .price-card--recommended .price-amount { color: var(--lk-cream); }
.price-card--recommended .price-tagline, .price-card--recommended .price-foot { color: rgba(245, 237, 230, 0.6); }
.price-card--recommended .price-amount span { color: rgba(245, 237, 230, 0.5); }
.price-card--recommended .list-clean li { color: rgba(245, 237, 230, 0.85); border-color: rgba(245, 237, 230, 0.12); }
.price-card--recommended .list-clean li::before { color: var(--lk-cream); background: transparent; }

/* ---------- FAQ ---------- */

.faq-item { background: var(--lk-white); border-radius: 14px; padding: 22px 26px; margin-bottom: 10px; }
.faq-q { font-family: var(--font-display); font-weight: 400; font-size: 16px; margin: 0 0 8px; }
.faq-a { margin: 0; font-size: 15px; color: var(--lk-muted); line-height: 1.25; }

/* ---------- Forms ---------- */

.form-block { background: var(--lk-white); border-radius: var(--radius); padding: 40px; max-width: 640px; margin: 0 auto; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--lk-dark);
  margin-bottom: 7px;
}
.form-field .req { color: var(--lk-dark); margin-left: 2px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lk-dark);
  background: var(--lk-page-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--lk-dark); }
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--lk-error); }
.field-error { color: var(--lk-error); font-size: 15px; margin: 6px 0 0; }

.check-group { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.check { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.check input { width: 18px; height: 18px; accent-color: var(--lk-dark); }
.check--block { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.form-legal, .form-fine { font-size: 15px; color: var(--lk-faint); margin: 10px 0 0; line-height: 1.25; }

/* Callout (cream) */
.callout {
  background: var(--lk-cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  margin-bottom: 24px;
}
.callout strong { font-family: var(--font-display); font-weight: 600; }

/* ---------- Clean lists (ask/get, feature bullets) ---------- */

.list-clean { list-style: none; padding: 0; margin: 0 0 16px; }
.list-clean li {
  position: relative;
  padding: 13px 0 13px 20px;
  font-size: 15px;
  color: var(--lk-muted);
  line-height: 1.25;
  border-bottom: 1px solid rgba(26, 18, 0, 0.06);
}
.list-clean li:last-child { border-bottom: none; }
.list-clean li::before {
  content: "\00b7";
  position: absolute;
  left: 6px; top: 6px;
  color: var(--lk-dark);
  font-weight: 600;
  font-size: 20px;
}
/* Sunshine focal card list: keep text dark for legibility on yellow. */
.card--highlight .list-clean li { color: rgba(26, 18, 0, 0.82); border-color: rgba(26, 18, 0, 0.13); }
.card--highlight .list-clean li::before { color: var(--lk-dark); }

/* ---------- Pilot: week blocks ---------- */

.block-stack { display: grid; gap: 12px; }
.week-block { background: var(--lk-white); border-radius: var(--radius); padding: 28px 32px; }
.week-block .block-label { margin: 0 0 8px; }
.week-block h4 { font-family: var(--font-display); font-weight: 400; font-size: 18px; margin: 0 0 8px; }
.week-block p { font-size: 15px; color: var(--lk-muted); line-height: 1.25; margin: 0; }

/* ---------- Contact cards ---------- */

.contact-card { background: var(--lk-white); border-radius: var(--radius); padding: 30px 26px; }
.contact-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; margin: 0 0 16px; background: var(--lk-cream); }
.contact-card h3 { font-size: 20px; margin: 0 0 6px; }
.contact-card .role { color: var(--lk-muted); font-size: 15px; font-weight: 500; margin: 0 0 14px; }
.contact-card .row { display: flex; gap: 8px; padding: 6px 0; font-size: 15px; color: var(--lk-muted); }
.contact-card .row .k { color: var(--lk-muted); min-width: 92px; }
.contact-card .row a { color: var(--lk-dark); }
.contact-card .row a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-card .best { margin: 14px 0 0; font-size: 15px; color: var(--lk-faint); line-height: 1.25; }

/* ---------- Footer (dark contrast bar - per design system) ---------- */

.site-footer { background: var(--lk-footer); padding: 56px 0 40px; color: rgba(245, 237, 230, 0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-footer .brand-mark circle, .site-footer .brand-mark rect { fill: var(--lk-cream); }
.site-footer .brand-word { color: var(--lk-cream); }
.site-footer .footer-tagline { color: rgba(245, 237, 230, 0.7); font-size: 15px; margin-top: 14px; line-height: 1.25; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 230, 0.55);
  margin: 0 0 10px;
}
.footer-col a { display: block; padding: 3px 0; font-size: 15px; color: rgba(245, 237, 230, 0.65); }
.footer-col a:hover { color: var(--lk-cream); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 237, 230, 0.14);
  font-size: 15px;
  color: rgba(245, 237, 230, 0.45);
}
.footer-bottom p { margin: 0 0 4px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Bethink wordmark dot (orange) */
.bethink-mark { font-weight: 600; }
.b-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lk-orange);
  margin-left: 1px;
  vertical-align: baseline;
}

/* ---------- Person card overlay (contact) ---------- */
.overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.overlay[hidden] { display: none; }
.overlay-backdrop { position: absolute; inset: 0; background: rgba(26, 18, 0, 0.45); }
.overlay-panel {
  position: relative;
  background: var(--lk-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(26, 18, 0, 0.3);
  text-align: center;
}
.overlay-close {
  position: absolute; top: 10px; right: 14px;
  font-size: 26px; line-height: 1;
  color: var(--lk-faint);
  background: none;
  transition: color var(--dur) var(--ease);
}
.overlay-close:hover { color: var(--lk-dark); }
.overlay-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 16px; background: var(--lk-cream); }
.overlay-person h3 { font-size: 22px; margin: 0; }
.overlay-title { color: var(--lk-muted); font-size: 15px; margin: 4px 0 0; }
.overlay-role { color: var(--lk-muted); font-size: 15px; margin: 8px 0 0; }
.overlay-intro { color: var(--lk-muted); font-size: 15px; margin: 14px 0 0; }
.overlay-person .btn-row { margin-top: 20px; }
.overlay-rows { list-style: none; padding: 0; display: inline-block; text-align: left; margin: 22px 0 0; }
.overlay-rows li { display: flex; gap: 12px; font-size: 15px; margin: 6px 0; }
.overlay-rows .k { color: var(--lk-faint); min-width: 84px; }
.overlay-qr { width: 150px; margin: 24px auto 0; }
.overlay-qr svg { width: 100%; height: auto; display: block; }
.overlay-qr-caption { color: var(--lk-faint); font-size: 15px; margin: 10px 0 0; }

/* ---------- Person share page (/garth, /savannah) ---------- */

.person-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lk-cream);
  margin: 0 0 20px;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-card { padding: 32px; }
.person-card-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.person-card-actions h2 { font-size: 24px; margin: 0 0 6px; }
.person-card-actions > p { margin: 0 0 20px; color: var(--lk-muted); }
.person-card-actions .btn { margin-bottom: 8px; }
.person-rows { list-style: none; padding: 0; margin: 16px 0 0; border-top: 1px solid var(--lk-hair); }
.person-rows li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 12px 0; font-size: 15px;
  border-bottom: 1px solid var(--lk-hair);
}
.person-rows .k { color: var(--lk-muted); min-width: 90px; font-size: 15px; }
.person-rows a { color: var(--lk-dark); text-decoration: underline; text-underline-offset: 3px; }
.person-card-qr { text-align: center; }
.person-qr {
  width: 200px; height: 200px;
  padding: 12px;
  background: var(--lk-white);
  border: 1px solid var(--lk-hair);
  border-radius: var(--radius);
  margin: 0 auto;
}
.person-qr svg { width: 100%; height: 100%; display: block; }
.person-qr-caption {
  font-size: 15px; color: var(--lk-muted);
  margin: 12px auto 0; max-width: 200px; line-height: 1.25;
}
@media (max-width: 720px) {
  .person-card-grid { grid-template-columns: 1fr; gap: 28px; }
  .person-card-qr { order: -1; }
}

/* ---------- Prose (long-form policy / terms content) ---------- */

.prose h2 { margin: 40px 0 10px; font-size: clamp(20px, 2.6vw, 26px); font-weight: 500; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.6; color: #3D4450; margin: 0 0 14px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose ul li { font-size: 17px; line-height: 1.6; color: #3D4450; margin-bottom: 6px; }
.prose strong { font-weight: 500; color: var(--lk-dark); }

/* ---------- Scroll reveal (degrades to visible without JS) ---------- */

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Journey pages: conversation flow ---------- */
/* Lekana speaks as plain copy; the reader's side renders as a white beat card
   (second-person, never a fake quote). No borders - shadow carries the state. */

.convo { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.convo-lekana { margin: 0; font-size: 18px; line-height: 1.55; color: var(--lk-dark); max-width: 54ch; }
.convo-you {
  align-self: flex-end;
  max-width: 88%;
  background: var(--lk-white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 22px rgba(26, 18, 0, 0.07);
}
.convo-you .convo-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-muted);
  margin-bottom: 6px;
}
.convo-you p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(26, 18, 0, 0.78); }

/* Router statements rendered as links (homepage). */
a.q-card { text-decoration: none; }
.q-card-go { display: block; margin-top: 14px; font-size: 15px; font-weight: 600; color: var(--lk-orange); }
