/* ==========================================================================
   Solar Earth Australia — landing page styles
   Palette: warm paper, deep forest ink, amber accent (used sparingly),
   eucalyptus band. Flat colour only — no gradients anywhere.
   ========================================================================== */

:root {
  /* Surfaces */
  --paper:    #FBF5ED;
  --paper-2:  #F5EDE1;
  --card:     #FFFDFA;
  --band:     #DFE7DC;
  --band-2:   #D0DCCC;

  /* Ink */
  --ink:      #16261C;
  --ink-2:    #43564A;
  --ink-3:    #7C8B80;

  /* Accent — solid fill is reserved for the primary CTA only */
  --sun:      #E9A21C;
  --sun-deep: #C4830B;
  --sun-tint: #FAEBCB;

  /* Lines */
  --line:     #E5DBCE;
  --line-2:   #CDC1B0;
  --rule:     #16261C;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  /* Rhythm */
  --gutter: clamp(20px, 5vw, 64px);
  --max:    1180px;
  --max-narrow: 760px;
  --radius: 18px;
  --radius-lg: 26px;
}

/* --------------------------------------------------------------- reset -- */

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Several components set an explicit display, which would otherwise beat
   the hidden attribute. Keep [hidden] authoritative. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0;
  font-variation-settings: 'wdth' 105;
}

p { margin: 0; }

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--sun-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--max-narrow); }

.section { padding-block: clamp(64px, 9vw, 116px); }

.section--band {
  background: var(--band);
  border-block: 1px solid var(--band-2);
}

.section--paper2 { background: var(--paper-2); }

/* --------------------------------------------------------- typography -- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 20px;
}

.h1 { font-size: clamp(38px, 6.4vw, 72px); }
.h2 { font-size: clamp(30px, 4.4vw, 48px); }
.h3 { font-size: clamp(19px, 2vw, 23px); letter-spacing: -0.018em; }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
  color: var(--ink-2);
  max-width: 62ch;
}

.muted { color: var(--ink-3); }

.fine {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

.section-head { max-width: 66ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .lede { margin-top: 18px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--sun); color: var(--ink); }
.btn--primary:hover { background: var(--sun-deep); color: var(--paper); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(22,38,28,.04); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #0C1A12; }

.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

/* ------------------------------------------------------------- header -- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 245, 237, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}

.brand__mark { width: 26px; height: 26px; flex: none; }

/* Two-line lockup. The full trading name is long for a header, so "Australia"
   sits under it as a tracked-out subtitle rather than stretching the row. */
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.005em;
  font-variation-settings: 'wdth' 110;
}

.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 26px; }

.nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }

.header__phone {
  font-family: var(--mono);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* Tap-to-call. Hidden on desktop, where the written number is shown instead. */
.header__call {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  transition: border-color .15s ease, background-color .15s ease;
}
.header__call svg { width: 17px; height: 17px; flex: none; }
.header__call:hover { border-color: var(--ink); background: rgba(22,38,28,.04); }

@media (max-width: 900px) {
  .nav, .header__phone { display: none; }
  .header__call { display: inline-flex; }
}

@media (max-width: 520px) {
  .header__inner { gap: 10px; min-height: 62px; }
  .brand__name { font-size: 16.5px; }
  .brand__sub { font-size: 8.5px; letter-spacing: .18em; }
  .brand__mark { width: 22px; height: 22px; }
  .header .btn--sm { padding: 10px 15px; font-size: 13px; white-space: nowrap; }

  /* Icon only — the label costs room the checklist button needs more. */
  .header__call { padding: 10px; gap: 0; }
  .header__call span { display: none; }
}

/* The configurator is six pills deep now. At 2.05 line-height that's a lot of
   scrolling on a phone, and a long option must never push the page sideways. */
@media (max-width: 700px) {
  .est__sentence { line-height: 1.85; }
  .pick { margin: 0 2px; }
  .pick select { max-width: 100%; padding: 8px 38px 8px 16px; }
  .pick::after { right: 16px; }
}

/* --------------------------------------------------------------- hero -- */

.hero { padding-block: clamp(56px, 8vw, 104px) clamp(48px, 6vw, 72px); }
.hero__inner { max-width: 900px; }
.hero .lede { margin-top: 24px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-3);
}

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 30px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

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

.trust__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink-2);
}

.trust__item b {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--sun-deep);
  font-weight: 500;
}

/* --------------------------------------------------------- rebate bar -- */

.alertbar {
  background: var(--ink);
  color: var(--paper);
}

.alertbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding-block: 15px;
  font-size: 14.5px;
}

.alertbar__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sun);
}

.alertbar p { color: #D9E2DB; }
.alertbar b { color: var(--paper); font-weight: 600; }

/* ---------------------------------------------------------- estimator -- */

.est__sentence {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 2.05;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.est__sentence .lead-in { color: var(--ink-2); font-weight: 500; }

/* Punctuation straight after a pill shouldn't inherit the word space. */
.est__sentence .lead-in--tight { margin-left: -.28em; }

/* Dark pill dropdowns, Zelora-style */
.pick {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  margin: 0 3px;
}

.pick select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 9px 44px 9px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.85vw, 20px);
  letter-spacing: -0.015em;
  cursor: pointer;
  line-height: 1.25;
  transition: background-color .15s ease;
}

.pick select:hover { background: #0C1A12; }

.pick::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2.2px solid var(--sun);
  border-bottom: 2.2px solid var(--sun);
  transform: rotate(45deg);
  pointer-events: none;
}

.est__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(38px, 5vw, 56px);
  align-items: start;
}

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

/* ---- The ledger (signature element) ---- */

.ledger {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}

.ledger__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--rule);
}

.ledger__title {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.ledger__spec {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  text-align: right;
  letter-spacing: -0.02em;
}

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

.ledger__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.ledger__row:last-child { border-bottom: none; }

.ledger__label { font-size: 15px; color: var(--ink-2); }

.ledger__label small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.4;
  margin-top: 2px;
}

.ledger__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-2);
  transform: translateY(-4px);
  min-width: 12px;
}

.ledger__val {
  font-family: var(--mono);
  font-size: 15.5px;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ledger__row--credit { background: var(--sun-tint); margin-inline: -14px; padding-inline: 14px; }
.ledger__row--credit .ledger__val { color: var(--sun-deep); font-weight: 600; }
.ledger__row--credit .ledger__dots { border-bottom-color: #E3CB98; }

.ledger__row--muted .ledger__val { color: var(--ink-3); }

.ledger__total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2.5px solid var(--rule);
}

.ledger__total-label { font-size: 15px; color: var(--ink-2); max-width: 20ch; }
.ledger__total-label small { display: block; font-size: 12.5px; color: var(--ink-3); }

.ledger__total-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ledger__note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1.5px solid var(--sun-deep);
  border-radius: 12px;
  background: var(--sun-tint);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.ledger__note b { color: var(--ink); }

/* Outcome stats beside the ledger */
.outcome { display: grid; gap: 14px; }

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.stat__val {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.032em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.stat__sub { font-size: 13.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.45; }

.outcome__cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
}

.outcome__cta p { font-size: 14.5px; color: #C9D5CC; margin-bottom: 16px; }
.outcome__cta .h3 { color: var(--paper); margin-bottom: 8px; }

/* Assumptions disclosure */
.assumptions {
  margin-top: 26px;
  border-top: 1px solid var(--band-2);
  padding-top: 18px;
}

.assumptions summary {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
  list-style: none;
}
.assumptions summary::-webkit-details-marker { display: none; }
.assumptions summary::before { content: '+ '; color: var(--sun-deep); }
.assumptions[open] summary::before { content: '– '; }

.assumptions__body {
  margin-top: 14px;
  columns: 2;
  column-gap: 40px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.assumptions__body p { break-inside: avoid; margin-bottom: 10px; }

@media (max-width: 720px) { .assumptions__body { columns: 1; } }

/* ------------------------------------------------------- why / people -- */

.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 860px) { .people { grid-template-columns: 1fr; } }

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

.promises li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.promises li:last-child { border-bottom: 1px solid var(--line); }

.promises b { display: block; font-family: var(--display); font-weight: 700; font-size: 16.5px; margin-bottom: 3px; }
.promises span { font-size: 15px; color: var(--ink-2); }

.tick { width: 20px; height: 20px; margin-top: 3px; flex: none; }

/* -------------------------------------------------------------- tiers -- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.tier--featured { border: 1.5px solid var(--ink); }

.tier__flag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sun-deep);
  margin-bottom: 12px;
  min-height: 15px;
}

.tier__size {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.tier__size sub { font-size: 15px; font-weight: 600; letter-spacing: 0; vertical-align: baseline; margin-left: 4px; color: var(--ink-2); }

.tier__for { font-size: 14.5px; color: var(--ink-3); margin: 10px 0 20px; }

.tier__price { padding-top: 18px; border-top: 1px solid var(--line); }
.tier__price-lab { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.tier__price-val { font-family: var(--display); font-weight: 800; font-size: 27px; letter-spacing: -0.03em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.tier__price-was { font-family: var(--mono); font-size: 13px; color: var(--ink-3); margin-top: 4px; }
.tier__price-was s { text-decoration-thickness: 1px; }

.tier__specs { list-style: none; margin: 20px 0 0; padding: 0; font-size: 14.5px; }
.tier__specs li { padding: 7px 0; border-top: 1px dotted var(--line-2); color: var(--ink-2); display: flex; justify-content: space-between; gap: 12px; }
.tier__specs li span:last-child { font-family: var(--mono); font-size: 13px; color: var(--ink); }

/* ---------------------------------------------------------- checklist -- */

.check {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.check__bar {
  display: flex;
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper-2);
}

.check__step {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-right: 1px solid var(--line);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.check__step:last-child { border-right: none; }
.check__step:hover:not([aria-current='true']) { background: var(--line); }
.check__step[aria-current='true'] { background: var(--ink); color: var(--paper); }
.check__step[data-done='true']:not([aria-current='true']) { color: var(--sun-deep); }
.check__step[data-done='true']:not([aria-current='true'])::before { content: '✓ '; }

.check__body { padding: clamp(24px, 4vw, 40px); }

.panel { display: none; }
.panel[data-active='true'] { display: block; animation: fadeUp .28s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.panel__title { margin-bottom: 6px; }
.panel__hint { font-size: 14.5px; color: var(--ink-3); margin-bottom: 28px; }

.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .fields { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field > label,
.fieldset__legend {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.field .req { color: var(--sun-deep); }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='number'],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--paper);
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  font-size: 16px;
  transition: border-color .15s ease, background-color .15s ease;
}

.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2343564A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }

.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  background: var(--card);
  outline: none;
}

.field__hint { font-size: 12.5px; color: var(--ink-3); }

.field[data-invalid='true'] input,
.field[data-invalid='true'] select,
.field[data-invalid='true'] .chips { border-color: #B3452B; }

.field__error { font-size: 12.5px; color: #B3452B; display: none; }
.field[data-invalid='true'] .field__error { display: block; }

/* Chip-style multi/single choice */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }

.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }

.chip span {
  display: inline-block;
  padding: 9px 17px;
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  font-size: 14.5px;
  cursor: pointer;
  background: var(--paper);
  transition: border-color .14s ease, background-color .14s ease;
  user-select: none;
}

.chip span:hover { border-color: var(--ink-3); }
.chip input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.chip input:focus-visible + span { outline: 3px solid var(--sun-deep); outline-offset: 3px; }

.fieldset { border: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; grid-column: 1 / -1; }

/* Conditional blocks */
[data-reveal] { display: none; }
[data-reveal][data-shown='true'] { display: grid; }

.subfields {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  background: var(--paper-2);
  border-radius: 14px;
  border: 1px dashed var(--line-2);
}
@media (max-width: 700px) { .subfields { grid-template-columns: 1fr; } }

/* Consent */
.consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: var(--paper-2);
  border-radius: 14px;
}
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); }
.consent label { font-size: 14px; line-height: 1.5; color: var(--ink-2); }

/* Estimate carry-over card inside the form */
.carry {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  padding: 16px 20px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--paper-2);
  font-size: 14px;
}
.carry b { font-family: var(--mono); font-size: 13px; font-weight: 600; }
.carry .carry__tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); width: 100%; }

/* Nav between steps */
.check__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.check__nav .spacer { flex: 1; }
.check__count { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }

/* Success state */
.done { display: none; text-align: center; padding: clamp(40px, 7vw, 80px) 24px; }
.done[data-active='true'] { display: block; }
.done__mark { width: 56px; height: 56px; margin: 0 auto 24px; }
.done p { max-width: 46ch; margin: 16px auto 0; color: var(--ink-2); }

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

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

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 19.5px);
  letter-spacing: -0.018em;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 30px;
  width: 13px;
  height: 2px;
  background: var(--ink);
}
.faq summary::before {
  content: '';
  position: absolute;
  right: 13.5px;
  top: 24.5px;
  width: 2px;
  height: 13px;
  background: var(--ink);
  transition: opacity .18s ease;
}
.faq details[open] summary::before { opacity: 0; }

.faq p { padding: 0 60px 24px 0; color: var(--ink-2); font-size: 15.5px; max-width: 72ch; }

/* ------------------------------------------------------------- footer -- */

.footer { background: var(--ink); color: #C9D5CC; padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer a { color: var(--paper); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2C3E33;
}
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr; } }

.footer .brand__name { color: var(--paper); }
.footer .brand__sub  { color: #8FA396; }
.footer h4 { font-size: 13px; color: var(--paper); margin-bottom: 14px; font-variation-settings: 'wdth' 100; letter-spacing: .1em; text-transform: uppercase; font-family: var(--mono); font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; font-size: 14.5px; display: grid; gap: 9px; }
.footer__bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 12.5px; color: #8FA396; font-family: var(--mono); }

/* ------------------------------------------- prose pages (privacy etc) -- */

.prose h2 {
  font-size: clamp(19px, 2.2vw, 23px);
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose b { color: var(--ink); }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--sun-deep); }

/* Thank-you page next steps */
.next {
  margin-top: 40px;
  padding: 28px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--card);
}
.next p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 14px; }
.next .h3 { margin-bottom: 10px; }

.next__list { margin: 0 0 16px; padding-left: 20px; }
.next__list li { color: var(--ink-2); font-size: 15.5px; margin-bottom: 10px; line-height: 1.55; }
.next__list b { color: var(--ink); }

/* --------------------------------------------------------- utilities -- */

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

.center { text-align: center; margin-inline: auto; }
