/* ==========================================================================
   WISDOM DISCOVERY ROOM — STYLES
   --------------------------------------------------------------------------
   Design note for whoever edits this next:
   The room is dark. The exhibits are lit.
   Landing + category navigation sit on navy — it reads as an exhibition hall.
   Journey pages switch to light paper, because that is where reading happens
   and a parent may be standing under fair lighting with a bright phone.
   The connective tissue between the printed A6 card and this screen is the
   letterspaced cap label. Keep it.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  /* Brand — fixed. Do not add off-palette colours. */
  --navy:       #0D2244;
  --navy-deep:  #081833;
  --navy-lift:  #16305C;
  --teal:       #2EBFB3;
  --gold:       #C9A84C;

  /* Neutrals */
  --paper:      #F6F8FA;
  --paper-warm: #FFFFFF;
  --ink:        #0D2244;
  --ink-soft:   #4A5B75;
  --ink-faint:  #7B8AA3;
  --rule:       #DDE4EC;
  --rule-dark:  rgba(255,255,255,.14);

  /* Type */
  --display: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Space */
  --gut: 20px;
  --max: 1120px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; }

/* Accessibility floor */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--navy); padding: 12px 18px;
  font-family: var(--display); font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- 2. The card label — DNA shared with the printed A6 card ------------- */
.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 14px;
}
.eyebrow--light { color: rgba(255,255,255,.5); }
.eyebrow--teal  { color: var(--teal); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; margin: 0; }

/* --- 3. Masthead -------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,24,51,.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-dark);
}
.masthead__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 62px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--gold);
}
.brand__name { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: .01em; }
.brand__sub {
  display: block; font-family: var(--display); font-size: 8.5px;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 2px;
}
.masthead__nav { display: flex; gap: 6px; align-items: center; }
.navlink {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7); text-decoration: none;
  padding: 9px 12px; border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease);
}
.navlink:hover { color: #fff; background: rgba(255,255,255,.07); }
.navlink--cta {
  color: var(--navy); background: var(--gold); font-weight: 600;
}
.navlink--cta:hover { background: #DCBB5E; color: var(--navy); }
@media (max-width: 620px) {
  .navlink--hide { display: none; }
  .brand__name { font-size: 14px; }
}

/* --- 4. The room (landing hero) ----------------------------------------- */
.room {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 68px 0 74px;
  overflow: hidden;
}
/* Ambient light pools — the room is lit from above, like a gallery. */
.room::before {
  content: ''; position: absolute; inset: -40% -20% auto -20%; height: 120%;
  background:
    radial-gradient(50% 40% at 22% 8%,  rgba(46,191,179,.20), transparent 68%),
    radial-gradient(46% 38% at 82% 4%,  rgba(201,168,76,.16), transparent 66%);
  pointer-events: none;
}
.room > * { position: relative; }

.room__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.4); border-radius: 100px;
  padding: 7px 15px; margin-bottom: 26px;
}
.room__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.room h1 {
  font-size: clamp(34px, 8.2vw, 62px);
  line-height: 1.04;
  max-width: 15ch;
  margin-bottom: 22px;
}
.room h1 em { font-style: normal; color: var(--teal); }
.room__lede {
  font-size: clamp(16px, 4vw, 19px);
  color: rgba(255,255,255,.74);
  max-width: 54ch;
  margin: 0 0 32px;
}
.room__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Room footer strip — the four verbs, straight off the card */
.room__pillars {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 52px;
  border-top: 1px solid var(--rule-dark); padding-top: 22px;
}
.room__pillar {
  flex: 1 1 120px; padding: 4px 14px 4px 0;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.42);
}
.room__pillar span { display: block; font-family: var(--body); font-size: 12.5px; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.45; }

/* --- 5. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-size: 15px; font-weight: 600;
  min-height: 52px; padding: 0 24px;
  border-radius: 100px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--gold  { background: var(--gold); color: var(--navy); }
.btn--gold:hover  { background: #DCBB5E; }
.btn--teal  { background: var(--teal); color: #052B28; }
.btn--teal:hover  { background: #47D2C6; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--line  { background: transparent; color: var(--navy); border-color: var(--rule); }
.btn--line:hover { border-color: var(--navy); }
.btn--wide  { width: 100%; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* --- 6. Sections -------------------------------------------------------- */
.band { padding: 66px 0; }
.band--paper { background: var(--paper); color: var(--ink); }
.band--white { background: var(--paper-warm); color: var(--ink); }
.band--navy  { background: var(--navy); color: #fff; }
.band--tight { padding: 44px 0; }

.band__head { max-width: 62ch; margin-bottom: 34px; }
.band__head h2 { font-size: clamp(25px, 5.4vw, 36px); margin-bottom: 12px; }
.band__head p  { color: var(--ink-soft); font-size: 16.5px; margin: 0; }
.band--navy .band__head p { color: rgba(255,255,255,.7); }

/* --- 7. Category shelf -------------------------------------------------- */
.shelf { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.shelf__item {
  position: relative; display: block; text-decoration: none;
  background: var(--navy-lift); border: 1px solid var(--rule-dark);
  border-radius: var(--radius); padding: 22px 20px 20px;
  color: #fff; overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.shelf__item:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); }
/* The category strip — same device as the printed card */
.shelf__strip { position: absolute; inset: 0 0 auto 0; height: 4px; }
.shelf__item h3 { font-size: 18px; margin: 10px 0 8px; }
.shelf__item p  { font-size: 13.5px; color: rgba(255,255,255,.6); margin: 0 0 16px; line-height: 1.5; }
.shelf__count {
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.42);
}
.shelf__count--empty { color: var(--gold); }

/* --- 8. Journey cards --------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

.jcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper-warm); border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden; text-decoration: none;
  color: var(--ink);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.jcard:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 40px -12px rgba(13,34,68,.28);
}
.jcard__strip { height: 4px; flex: none; }
.jcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.jcard__cat {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px;
}
.jcard h3 { font-size: 19px; line-height: 1.24; margin-bottom: 9px; }
.jcard__tag { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.jcard__meta {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.pill {
  font-family: var(--display); font-size: 11px; font-weight: 500;
  letter-spacing: .04em; padding: 5px 10px; border-radius: 100px;
  background: rgba(13,34,68,.06); color: var(--ink-soft);
}
.jcard__go {
  font-family: var(--display); font-size: 13.5px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 7px;
}
.jcard:hover .jcard__go .btn__arrow { transform: translateX(3px); }

/* Feature card — the hero exhibit */
.jcard--feature { grid-column: 1 / -1; background: var(--navy); color: #fff; border-color: transparent; }
.jcard--feature .jcard__cat { color: var(--gold); }
.jcard--feature .jcard__tag { color: rgba(255,255,255,.72); }
.jcard--feature .pill { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.jcard--feature .jcard__go { color: var(--teal); }
.jcard--feature h3 { font-size: clamp(22px, 5vw, 30px); max-width: 18ch; }
@media (min-width: 760px) {
  .jcard--feature .jcard__body { padding: 32px; }
}

/* --- 9. Journey page ---------------------------------------------------- */
.jhero { background: var(--navy); color: #fff; padding: 40px 0 46px; position: relative; overflow: hidden; }
.jhero::after {
  content: ''; position: absolute; right: -8%; top: -60%; width: 60%; height: 200%;
  background: radial-gradient(circle at center, rgba(46,191,179,.16), transparent 62%);
  pointer-events: none;
}
.jhero > * { position: relative; }

/* The scan band — "you came from a card" continuity */
.scanband {
  background: var(--gold); color: var(--navy);
  font-family: var(--display); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 0;
}
.scanband__in { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.crumb {
  font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px;
}
.crumb:hover { color: #fff; }

.jhero h1 { font-size: clamp(28px, 6.6vw, 46px); max-width: 20ch; margin-bottom: 14px; }
.jhero__tag { font-size: clamp(16px, 4vw, 19px); color: rgba(255,255,255,.76); max-width: 48ch; margin: 0 0 26px; }
.jhero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.jhero .pill { background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: 12px; padding: 7px 13px; }

/* Format stats — concrete numbers build parent trust */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.stats__cell { padding: 18px 8px 18px 0; border-right: 1px solid var(--rule-dark); }
.stats__cell:last-child { border-right: 0; }
.stats__cell:not(:first-child) { padding-left: 14px; }
.stats__v { font-family: var(--display); font-size: clamp(19px, 4.6vw, 27px); font-weight: 600; color: var(--teal); line-height: 1; }
.stats__l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 7px; line-height: 1.3; }
@media (max-width: 520px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(2) { border-right: 0; }
  .stats__cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule-dark); }
}

/* --- 10. THE JOURNEY RAIL — signature element ---------------------------
   A physical rail with lit stops. This is the one place the design is loud.
   Everything around it stays quiet.
   ---------------------------------------------------------------------- */
.rail { position: relative; padding: 8px 0 4px; }
.rail__track {
  position: absolute; left: 0; right: 0; top: 15px; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15));
}
.rail__stops { display: flex; gap: 4px; position: relative; }
.rail__stop { flex: 1 1 0; min-width: 0; text-align: left; }
.rail__node {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  margin: 10px 0 14px; position: relative;
}
.rail__stop:last-child .rail__node { background: var(--gold); box-shadow: 0 0 0 5px rgba(201,168,76,.18); }
.rail__label {
  font-family: var(--display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.66);
  line-height: 1.35; padding-right: 6px;
}
.rail__stop:last-child .rail__label { color: var(--gold); }
/* Light band — used on paper sections */
.rail--light .rail__node { background: var(--paper-warm); }
.rail--light .rail__stop:last-child .rail__node { background: var(--gold); }
.rail--light .rail__label { color: var(--ink-soft); }
.rail--light .rail__stop:last-child .rail__label { color: var(--navy); }
@media (max-width: 620px) {
  .rail__track { top: 0; bottom: 0; left: 5px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(201,168,76,.15)); }
  .rail__stops { flex-direction: column; gap: 0; }
  .rail__stop { display: flex; align-items: center; gap: 14px; padding: 7px 0; }
  .rail__node { margin: 0; flex: none; }
  .rail__label { font-size: 12px; padding: 0; }
}

/* --- 11. Content blocks on the journey page ----------------------------- */
.cols { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .cols { grid-template-columns: 1.35fr .9fr; gap: 56px; } }

.block { margin-bottom: 44px; }
.block:last-child { margin-bottom: 0; }
.block h2 { font-size: clamp(21px, 4.6vw, 27px); margin-bottom: 16px; }
.block p  { color: var(--ink-soft); }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative; padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--rule); font-size: 16px; color: var(--ink);
}
.ticks li:last-child { border-bottom: 0; }
.ticks li::before {
  content: ''; position: absolute; left: 4px; top: 21px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
}

.verbs { display: flex; flex-wrap: wrap; gap: 8px; }
.verb {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px;
  border: 1px solid var(--rule); color: var(--navy); background: var(--paper-warm);
}

.outcomes { display: grid; gap: 12px; }
.outcome {
  background: var(--paper-warm); border: 1px solid var(--rule);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px;
}
.outcome h4 { font-size: 15px; margin-bottom: 5px; }
.outcome p  { font-size: 14.5px; margin: 0; color: var(--ink-soft); }

.makes { display: flex; flex-wrap: wrap; gap: 8px; }
.make {
  font-size: 13.5px; padding: 8px 14px; border-radius: 100px;
  background: rgba(201,168,76,.14); color: #6B5417; font-weight: 500;
}

/* Sticky aside — the next step follows the reader down the page */
.aside__inner { position: sticky; top: 86px; }
.nextcard {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 26px 24px; margin-bottom: 16px;
}
.nextcard h3 { font-size: 20px; margin-bottom: 10px; }
.nextcard p { font-size: 14.5px; color: rgba(255,255,255,.68); margin: 0 0 20px; }
.nextcard .btn { width: 100%; }
.nextcard__note {
  font-size: 12.5px; color: rgba(255,255,255,.45); margin: 14px 0 0; line-height: 1.5;
}
.factbox {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 20px 22px; background: var(--paper-warm);
}
.fact { padding: 12px 0; border-bottom: 1px solid var(--rule); }
.fact:last-child { border-bottom: 0; padding-bottom: 0; }
.fact:first-child { padding-top: 0; }
.fact dt {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 5px;
}
.fact dd { margin: 0; font-size: 14.5px; }

/* --- 12. Form ----------------------------------------------------------- */
.formwrap {
  background: var(--paper-warm); border-radius: var(--radius-lg);
  border: 1px solid var(--rule); padding: 28px 24px;
}
@media (min-width: 760px) { .formwrap { padding: 40px; } }

.ctx {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(46,191,179,.09); border: 1px solid rgba(46,191,179,.3);
  border-radius: var(--radius); padding: 14px 16px; margin-bottom: 26px;
}
.ctx__k { font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #1B857C; }
.ctx__v { font-family: var(--display); font-weight: 600; font-size: 15px; margin-top: 3px; }
.ctx__v small { display: block; font-family: var(--body); font-weight: 400; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

.synccard {
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--paper); padding: 14px 16px;
}
.synccard__row { display: flex; align-items: center; justify-content: space-between; }
.synccard__n { font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--navy); }
.synccard__l { font-family: var(--body); font-size: 13px; color: var(--ink-soft); margin-left: 8px; }
.synccard__net {
  font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
}
.synccard__net--on  { color: #1B857C; background: rgba(46,191,179,.12); }
.synccard__net--off { color: #9A6A00; background: rgba(201,168,76,.16); }
.synccard__stat { font-family: var(--body); font-size: 13px; color: var(--ink-soft); margin: 8px 0 12px; }
.synccard__stat b { color: var(--navy); }
.synccard__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.synccard .btn--ghost {
  background: #fff; color: var(--navy); border-color: var(--rule);
}
.synccard .btn--ghost:hover { border-color: var(--navy); background: var(--paper); }

.staffbox {
  border: 1px dashed var(--gold); border-radius: var(--radius);
  background: rgba(201,168,76,.07); padding: 14px 16px;
}
.staffbox__tag {
  font-family: var(--display); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: #8A6D12;
  margin-bottom: 10px;
}

.fields { display: grid; gap: 16px; }
@media (min-width: 640px) { .fields--2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block; font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; margin-bottom: 7px; color: var(--navy);
}
.field label .opt { color: var(--ink-faint); font-weight: 400; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px;
  font-family: var(--body); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: 10px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); background: var(--paper-warm); outline: none;
  box-shadow: 0 0 0 3px rgba(46,191,179,.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #C0392B; }
.err { color: #C0392B; font-size: 13px; margin-top: 6px; display: none; }
.err--on { display: block; }

.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px;
  font-family: var(--display); font-size: 14px; font-weight: 500;
  border: 1px solid var(--rule); border-radius: 100px; cursor: pointer;
  transition: all .18s var(--ease);
}
.choice input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }
.choice input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 3px; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--paper); border-radius: 10px; margin-top: 4px;
}
.consent input { width: 22px; height: 22px; min-height: 0; flex: none; margin-top: 2px; accent-color: var(--teal); }
.consent label { font-family: var(--body); font-size: 14px; font-weight: 400; letter-spacing: 0; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.formnote { font-size: 13px; color: var(--ink-faint); margin: 18px 0 0; line-height: 1.55; }

/* Confirmation */
.done { text-align: center; padding: 20px 0 6px; }
.done__mark {
  width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(46,191,179,.14); border: 2px solid var(--teal);
  display: grid; place-items: center; color: #1B857C; font-size: 28px;
}
.done h2 { font-size: clamp(24px, 5.4vw, 32px); margin-bottom: 12px; }
.done > p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 26px; }
.done__actions { display: flex; flex-direction: column; gap: 10px; max-width: 380px; margin: 0 auto; }
.offline {
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.4);
  border-radius: 10px; padding: 14px 16px; font-size: 13.5px; color: #6B5417;
  margin: 0 auto 22px; max-width: 46ch;
}

/* --- 13. Institutional band --------------------------------------------- */
.routes { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); border-radius: var(--radius); overflow: hidden; }
.route { background: var(--navy); padding: 22px 20px; }
.route h4 { font-size: 15px; color: var(--teal); margin-bottom: 8px; }
.route p { font-size: 13.5px; color: rgba(255,255,255,.62); margin: 0; line-height: 1.5; }

/* --- 14. Fair note ------------------------------------------------------ */
.fairnote {
  border: 1px solid var(--rule); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 26px; background: var(--paper-warm);
}
.fairnote h3 { font-size: 19px; margin-bottom: 10px; }
.fairnote p { margin: 0 0 10px; color: var(--ink-soft); font-size: 15px; }
.fairnote p:last-child { margin-bottom: 0; }

/* --- 15. Footer --------------------------------------------------------- */
.foot { background: var(--navy-deep); color: rgba(255,255,255,.5); padding: 44px 0 40px; border-top: 1px solid var(--rule-dark); }
.foot__line {
  font-family: var(--display); font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
  margin-bottom: 18px;
}
.foot__meta { font-size: 13px; line-height: 1.8; }
.foot__meta a { color: var(--teal); text-decoration: none; }
.foot__meta a:hover { text-decoration: underline; }

/* --- 16. Utility -------------------------------------------------------- */
.hidden { display: none !important; }
.reveal { opacity: 0; transform: translateY(14px); }
.reveal--in { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.empty {
  border: 1px dashed var(--rule); border-radius: var(--radius);
  padding: 34px 24px; text-align: center; color: var(--ink-soft); font-size: 15px;
  grid-column: 1 / -1;
}
.band--navy .empty { border-color: var(--rule-dark); color: rgba(255,255,255,.6); }

/* Hedged source-accurate note on a journey page. Quiet by design — it is
   reported evidence, not a headline. */
.pnote {
  margin: 20px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-faint);
}
