/* ═══ Odyssey — website offer landing page ═══
   Palette + type locked to knowledge/brand/odyssey-brand-guidelines.md.

   Two devices carry the page and nothing else competes with them:
   1. The proof wall — real screenshots of sites we built, moving under the
      hero. It sells before a word is read, which is the brief.
   2. The clock rail — time is the offer, so the one structural device
      measures time.
   Everything else stays deliberately quiet.                                */

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

:root {
  --deep:   #0E1A13;
  --green:  #1c4b33;
  --gold:   #D29D19;
  --paper:  #F4F5F3;
  --white:  #ffffff;
  --ink:    #101512;
  --muted:  #6B756F;
  --line:   #E3E7E4;
  --max:    1140px;
  --narrow: 700px;
  --ease:   cubic-bezier(.22,.61,.36,1);
}

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

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 17px; line-height: 1.62;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: var(--narrow); }
.center { text-align: center; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.032em; font-weight: 800; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); margin-bottom: 16px; }
h2.big { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h3 { font-size: 1.14rem; font-weight: 700; letter-spacing: -0.02em; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 99; background: var(--gold); color: var(--deep); padding: 12px 20px; font-weight: 700; }
.skip:focus { left: 0; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px;
}

/* ── HEADER ── */
header { background: var(--deep); padding: 15px 0; position: relative; z-index: 5; }
.head { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.15rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.035em; }
.logo span { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: inherit; font-weight: 700; font-size: 1.02rem;
  padding: 17px 40px; border-radius: 6px; border: none; text-decoration: none;
  cursor: pointer; touch-action: manipulation; text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .16s var(--ease), transform .16s var(--ease), box-shadow .16s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--deep); box-shadow: 0 2px 0 rgba(0,0,0,.18); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.32); }
.btn-gold:active { transform: translateY(0); }
.btn-sm { padding: 9px 20px; font-size: .88rem; }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.32); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(1200px 560px at 76% 6%, rgba(var(--glow), .34), transparent 62%),
    var(--deep);
  color: var(--white); padding: 84px 0 0; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; padding-bottom: 72px; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: .75rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero h1 { margin-bottom: 24px; }
.hl { color: var(--gold); }
.lede { font-size: 1.16rem; color: rgba(255,255,255,.78); max-width: 30em; }
.lede-sm { font-size: 1.06rem; color: rgba(255,255,255,.8); margin-bottom: 26px; }

/* ── OFFER CARD: the whole decision in one block ── */
.offercard {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px; padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 26px 60px rgba(0,0,0,.36);
}
.oc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.72); background: rgba(255,255,255,.07);
  border-radius: 40px; padding: 6px 14px; margin-bottom: 22px;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.75); } }

.oc-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.oc-tier { padding: 16px 14px; background: rgba(255,255,255,.05); border-radius: 10px; }
.oc-amt { font-size: 1.85rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; margin-bottom: 7px; font-variant-numeric: tabular-nums; }
.oc-what { font-size: .84rem; color: rgba(255,255,255,.72); margin-bottom: 2px; }
.oc-when { font-size: .76rem; color: var(--gold); margin-bottom: 0; }
.oc-gst { font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 18px; }

.oc-guarantee {
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 16px 0; margin-bottom: 20px; font-size: .98rem; color: rgba(255,255,255,.75);
}
.oc-guarantee strong { color: var(--gold); font-size: 1.1rem; }

.oc-person { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.oc-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.oc-person p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.45; margin: 0; }
.oc-person strong { color: rgba(255,255,255,.9); }

/* ── PROOF WALL ── */
.marquee {
  position: relative; padding: 0 0 74px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; gap: 18px; width: max-content; will-change: transform; }
.tile {
  width: 186px; height: 268px; flex: none; border-radius: 12px; overflow: hidden;
  background: #0a120d; border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.tile img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* ── SECTIONS ── */
.section { padding: 92px 0; }
.band { padding: 92px 0; background: var(--paper); }
.band.dark { background: var(--green); color: var(--white); }
.band.dark h2 { color: var(--white); }
.sub { color: var(--muted); max-width: 34em; margin: 0 auto 48px; }
.sub-left { color: var(--muted); margin-bottom: 26px; }
.small { font-size: .93rem; color: rgba(255,255,255,.62); margin-top: 26px; }

/* ── STAT ── */
.stat { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.statnum { font-size: clamp(4rem, 12vw, 6.5rem); font-weight: 800; line-height: .85; letter-spacing: -.055em; color: var(--green); font-variant-numeric: tabular-nums; }
.statpct { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--gold-ink); line-height: 1; letter-spacing: -.04em; }
.stat p { font-size: 1.12rem; font-weight: 600; max-width: 16em; line-height: 1.35; }
.src { display: block; font-size: .8rem; font-weight: 400; color: var(--muted); margin-top: 6px; }
.stat-body { color: var(--muted); max-width: 40em; }

/* ══ CLOCK RAIL ══ */
.timeline-section { padding-bottom: 100px; }
.timeline-section .eyebrow { color: var(--gold-ink); margin-bottom: 14px; }
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 110px; }
.rail { position: absolute; left: 82px; top: 14px; bottom: 14px; width: 3px; background: var(--line); border-radius: 3px; }
.rail-fill {
  position: absolute; inset: 0; width: 3px;
  background: linear-gradient(180deg, var(--clay-soft), var(--gold));
  border-radius: 3px; transform: scaleY(0); transform-origin: top center;
  transition: transform .18s linear; will-change: transform;
}
.stop { position: relative; padding-bottom: 56px; }
.stop:last-child { padding-bottom: 0; }
.stamp {
  position: absolute; left: -110px; top: -2px; width: 64px; text-align: right;
  font-size: 1.12rem; font-weight: 600; color: #B9C2BC;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.dot {
  position: absolute; left: -33px; top: 6px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--white);
  box-shadow: 0 0 0 3px var(--line) inset, 0 0 0 6px var(--white);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.stop.lit .dot { background: var(--gold); box-shadow: 0 0 0 3px var(--gold) inset, 0 0 0 6px var(--white), 0 0 0 11px rgba(18,165,148,.18); transform: scale(1.06); }
.stop.lit .stamp { color: var(--green); transform: translateX(-2px); }
.stop h3 { margin-bottom: 7px; font-size: 1.22rem; }
.stop p { color: var(--muted); font-size: .98rem; }

/* ── LISTS ── */
.ticks, .crosses { list-style: none; }
.ticks li, .crosses li { position: relative; padding-left: 32px; margin-bottom: 18px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: -1px; font-weight: 700; color: var(--gold-ink); }
.ticks.green li::before { color: var(--green); }
.crosses li::before { content: "✕"; position: absolute; left: 0; top: -1px; font-weight: 700; color: var(--clay); }
.ticks.tight li { margin-bottom: 12px; }
.crosses li { color: var(--muted); }

/* ── WORK ── */
.works { display: grid; grid-template-columns: 1fr 1fr; gap: 38px 30px; }
.work h3 { margin: 20px 0 7px; }
.work p { color: var(--muted); font-size: .96rem; }
.browser {
  border-radius: 10px; overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(16,21,18,.08);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.work:hover .browser { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(16,21,18,.15); }
.chrome { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #EFF1EF; border-bottom: 1px solid var(--line); }
.chrome i { width: 9px; height: 9px; border-radius: 50%; background: #CFD5D1; flex: none; }
.url { margin-left: 8px; font-size: .7rem; color: var(--muted); background: var(--white); border-radius: 20px; padding: 3px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.browser img { width: 100%; height: auto; display: block; }

/* ── ROW 7 · THE GUARANTEE ──
   Was a centred headline on a flood of accent colour, which is the most
   default shape there is. The information is one person undertaking
   something, so it is now a signed document sitting on a dark ground.  */
.promise { background: var(--deep); padding: 100px 0; }
.promise-card {
  position: relative;
  background: var(--paper); color: var(--ink);
  border-radius: 14px; padding: 46px 48px 38px;
  box-shadow: 0 30px 70px rgba(0,0,0,.42);
}
.promise-card::before {          /* the one accent, as a bound edge */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: var(--gold); border-radius: 14px 14px 0 0;
}
.promise-eyebrow { color: var(--muted); }
.promise-card h2 { margin-bottom: 22px; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.promise-card h2 .hl { color: var(--gold-ink); }
.promise-card p { color: var(--muted); font-size: 1.02rem; max-width: 40em; }
.promise-kicker {
  border-left: 3px solid var(--gold-ink); padding-left: 18px;
  margin-top: 24px; color: var(--ink) !important; font-weight: 600;
}

.sign {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.sig {
  display: block; font-family: 'Caveat', cursive; font-size: 2.6rem;
  line-height: .9; color: var(--ink); margin-bottom: 6px;
}
.sign-rule { display: block; width: 176px; height: 1px; background: var(--line); margin-bottom: 8px; }
.sign-role { font-size: .8rem; color: var(--muted); letter-spacing: .01em; }
.sign img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; flex: none; }

@media (max-width: 620px) {
  .promise { padding: 64px 0; }
  .promise-card { padding: 32px 26px 28px; }
  .sign { gap: 14px; }
  .sig { font-size: 2.2rem; }
  .sign img { width: 54px; height: 54px; }
}

/* ── PLANS ── */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 34px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.plan.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.plan h3 { margin-bottom: 9px; }
.plan p { color: var(--muted); font-size: .95rem; }
/* Both must out-specify `.plan p` above — class+element beats class alone. */
.plan p.plan-price { font-size: 2.3rem; font-weight: 800; color: var(--green); letter-spacing: -.045em; line-height: 1; margin-bottom: 3px; font-variant-numeric: tabular-nums; }
.plan p.plan-price span { font-size: .95rem; font-weight: 700; letter-spacing: -.02em; }
.plan p.plan-gst { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }

/* ── FORM ── */
.form-section { background: var(--paper); }
form { margin-top: 34px; }
.field { margin-bottom: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
input[type=text], input[type=tel], input[type=email] {
  display: block; width: 100%; font-family: inherit; font-size: 1rem;
  padding: 15px 16px; border: 1.5px solid var(--line); border-radius: 6px;
  background: var(--white); color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
input::placeholder { color: #A9B2AD; }
input:focus { outline: none; border-color: var(--gold-ink); box-shadow: 0 0 0 3px rgba(11,114,104,.16); }
fieldset { border: none; margin-bottom: 18px; }
legend { font-weight: 600; font-size: .9rem; margin-bottom: 11px; }
.radio {
  font-weight: 400; display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; margin-bottom: 9px; background: var(--white);
  border: 1.5px solid var(--line); border-radius: 6px; cursor: pointer;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.radio:hover { border-color: #C3CCC7; }
.radio:has(input:checked) { border-color: var(--gold-ink); background: rgba(11,114,104,.06); }
.radio input { width: 19px; height: 19px; accent-color: var(--green); flex: none; }
.err { color: var(--clay); font-size: .9rem; min-height: 22px; font-weight: 600; }

.thanks { text-align: center; padding: 44px 0; }
.thanks .tick { font-size: 2.4rem; color: var(--gold-ink); line-height: 1; margin-bottom: 14px; }
.thanks h3 { font-size: 1.5rem; margin-bottom: 10px; }
.thanks p { color: var(--muted); }
.fineprint { font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* ── FOOTER ── */
footer { background: var(--deep); color: rgba(255,255,255,.5); padding: 34px 0; font-size: .85rem; }
footer a { color: rgba(255,255,255,.75); }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(16px); }
.ready [data-reveal] { transition: opacity .62s var(--ease), transform .62s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-bottom: 56px; }
  .lede { max-width: none; }
  .works { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { padding-top: 42px; }
  .hero-grid { gap: 32px; padding-bottom: 44px; }
  .hero h1 { margin-bottom: 18px; }
  .lede { font-size: 1.04rem; }
  .eyebrow { margin-bottom: 16px; }
  .section, .band { padding: 64px 0; }
  .gold-band { padding: 70px 0; }
  .btn { width: 100%; }
  .head .btn { width: auto; }
  .plans, .row { grid-template-columns: 1fr; }
  .offercard { padding: 22px; }
  .tile { width: 148px; height: 214px; }
  .marquee { padding-bottom: 54px; }
  .timeline { padding-left: 0; }
  .rail { left: 7px; top: 10px; }
  .stamp { position: static; display: block; width: auto; text-align: left; font-size: .92rem; margin: 0 0 4px; }
  .stop.lit .stamp { transform: none; }
  .dot { left: 0; top: 4px; }
  .stop { padding-bottom: 40px; padding-left: 34px; }
  .stop h3 { font-size: 1.1rem; }
}

/* ── MOTION SAFETY ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .pulse { animation: none; }
  .btn-gold:hover, .work:hover .browser { transform: none; }
  .rail-fill { transition: none; }
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════
   ROW TREATMENTS — every row is a design unit. See DESIGN.md row register.
   ══════════════════════════════════════════════════════════════════════ */

/* Asymmetric row: heading left, a different kind of content right.
   Stolen from Basecamp, where the shape changes but the frame doesn't. */
.rowsplit { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.rowsplit-head { position: sticky; top: 40px; }
.rowsplit-head h2 { margin-bottom: 12px; }
.rowsplit-head .src { display: block; font-size: .82rem; color: var(--muted); }
.rowsplit-body > p { color: var(--muted); }

/* ── ROW 3 · the 47% made countable ── */
.dots {
  display: grid; grid-template-columns: repeat(20, 1fr); gap: 7px;
  max-width: 420px; margin-bottom: 16px;
}
.dots span {
  aspect-ratio: 1; border-radius: 50%; background: #D5DBD7;
  transform: scale(.35); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease), background-color .4s var(--ease);
}
.dots.in span { transform: scale(1); opacity: 1; }
.dots span.on { background: var(--green); }
.dotkey { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.dotkey .k { width: 10px; height: 10px; border-radius: 50%; background: #D5DBD7; display: inline-block; }
.dotkey .k.on { background: var(--green); }

/* ── ROW 5 · three reasons, as cards ── */
.mech-head { max-width: 40em; margin-bottom: 38px; }
.mech { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 34px; }
.mcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 26px;
}
.mcard .mnum {
  font-size: .84rem; font-weight: 700; letter-spacing: .1em; color: var(--gold);
  margin-bottom: 16px; font-variant-numeric: tabular-nums;
}
.mcard h3 { margin-bottom: 9px; color: var(--white); }
.mcard p { font-size: .95rem; color: rgba(255,255,255,.72); }
.small.center { text-align: center; }

/* ── ROW 6 · frames that scroll the real page on hover, and never link out ── */
.work { cursor: default; }
.viewport { height: 340px; overflow: hidden; background: var(--white); position: relative; }
.longshot {
  width: 100%; height: auto; display: block;
  transform: translateY(0);
  transition: transform 9s linear;
}
.work:hover .longshot, .work:focus-visible .longshot { transform: translateY(calc(340px - 100%)); }
.scrollhint {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(0,0,0,.82); color: rgba(255,255,255,.92);
  padding: 5px 11px; border-radius: 30px; pointer-events: none;
  opacity: 0; transition: opacity .2s var(--ease);
}
.browser { position: relative; }
.work:hover .scrollhint { opacity: 0; }
.work .scrollhint { opacity: 1; }
.work:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; border-radius: 12px; }

/* ── ROW 8 · plans, itemised ── */
.plan { position: relative; }
.ribbon {
  position: absolute; top: -11px; left: 24px;
  background: var(--green); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 30px;
}
.plan-list { list-style: none; margin-top: 4px; }
.plan-list li {
  position: relative; padding-left: 24px; margin-bottom: 9px;
  font-size: .92rem; color: var(--muted); line-height: 1.5;
}
.plan-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--green); font-weight: 700; }
.plan-list li strong { color: var(--ink); }
.plan-list li.off::before { content: "·"; color: #B9C2BC; font-size: 1.3rem; top: -6px; }

/* ── ROW 9 · the fit test ── */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fitcol { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.fitcol.yes { border-color: rgba(11,114,104,.38); box-shadow: 0 0 0 1px rgba(11,114,104,.2); }
.fitcol h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 1.15rem; }
.fitmark {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
}
.fitcol.yes .fitmark { background: rgba(11,114,104,.12); color: var(--gold-ink); }
.fitcol.no .fitmark { background: rgba(168,68,44,.12); color: var(--clay); }
.fitcol ul { list-style: none; }
.fitcol li {
  position: relative; padding-left: 18px; margin-bottom: 12px;
  font-size: .94rem; color: var(--muted); line-height: 1.55;
}
.fitcol li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.fitcol.yes li::before { background: rgba(11,114,104,.45); }
.fitcol.no  { border-color: rgba(168,68,44,.3); }
.fitcol.no li::before { background: rgba(168,68,44,.42); }
.fitcol li em { font-style: italic; color: var(--ink); }

/* ── ROW 10 · the closing row still sells ── */
.form-section { background: var(--deep); color: var(--white); padding: 96px 0; }
.formsplit { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.formside h2 { color: var(--white); margin-bottom: 14px; }
.formside .lede-sm { margin-bottom: 28px; }
.recap { list-style: none; margin-bottom: 30px; }
.recap li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.recap .r-k { color: rgba(255,255,255,.55); }
.recap .r-v { color: rgba(255,255,255,.92); font-weight: 600; text-align: right; }
.recap .r-v.gold { color: var(--gold); }
.formcard { background: var(--white); border-radius: 14px; padding: 30px; box-shadow: 0 26px 60px rgba(0,0,0,.34); }
.formcard form { margin-top: 0; }
.formcard .fineprint { color: var(--muted); }
.formcard .thanks { padding: 24px 0; }

@media (max-width: 980px) {
  .rowsplit, .formsplit { grid-template-columns: 1fr; gap: 34px; }
  .rowsplit-head { position: static; }
  .mech { grid-template-columns: 1fr; }
  .fit { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dots { grid-template-columns: repeat(10, 1fr); max-width: 260px; }
  .viewport { height: 260px; }
  .form-section { padding: 62px 0; }
  .formcard { padding: 22px; }
  .fitcol { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .dots span { transform: none !important; opacity: 1 !important; }
  .longshot, .work:hover .longshot { transition: none; transform: none; }
}

/* The form card sits on a dark section, so it must re-assert its own text
   colour or labels and legends inherit white and vanish on white. */
.formcard { color: var(--ink); }
.formcard label, .formcard legend, .formcard .radio span { color: var(--ink); }
.formcard .thanks h3 { color: var(--ink); }

/* ══════════════════════════════════════════════════════════════════════
   BRAND — Ironsand (chosen 2026-08-06): NZ black sand, bone, bright teal.
   Alternates live behind ?theme= for side-by-side comparison. See DESIGN.md.
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --deep:  #14120F;   /* NZ black sand */
  --green: #262119;   /* warm dark panel */
  --gold:  #12A594;   /* teal — the accent, for dark grounds only */
  --gold-ink: #0B7268;/* the same accent, darkened for light grounds.
                         #12A594 on bone is 2.56:1 — fails AA at any size. */
  --clay:      #A8442C;/* the counterpoint. Rust in the ironsand: warm against
                          the teal, and the reason the page does not read as
                          near-black-plus-one-bright-accent. Its job is the
                          negative case — exclusions, the "no" column, errors.
                          Never decorative, never on the same element as teal. */
  --clay-soft: #C1613A;/* the same hue lifted, for decorative use only */
  --paper: #EFEAE0;   /* bone */
  --ink:   #14120F;
  --muted: #6F6960;
  --line:  #E0D9CB;
  --glow:  18, 165, 148;   /* hero gradient, rgb triplet */
}

/* Alternate kept for comparison — was the default until 2026-08-06. */
:root[data-theme="workwear"] {
  --deep:  #1B1D20;
  --green: #2C3136;
  --gold:  #FF6A13;
  --gold-ink: #A33A00;
  --clay:      #1F6F63;
  --clay-soft: #2A8A7B;
  --paper: #F2F1ED;
  --ink:   #15171A;
  --muted: #6C737A;
  --line:  #E1E0DB;
  --glow:  40, 45, 50;
}

/* B · Daylight — the page flips light. Open, modern, nothing to hide. */
:root[data-theme="daylight"] {
  --deep:  #14171A;
  --green: #1F242A;
  --gold:  #2563FF;
  --gold-ink: #1D4ED8;
  --clay:      #A8442C;
  --clay-soft: #C1613A;
  --paper: #FAF9F6;
  --ink:   #14171A;
  --muted: #6A7178;
  --line:  #E6E4DE;
  --glow:  37, 99, 255;
}

/* The hero glow was hardcoded to Odyssey green; it now follows the theme. */
.hero {
  background:
    radial-gradient(1200px 560px at 76% 6%, rgba(var(--glow), .34), transparent 62%),
    var(--deep);
}

/* Daylight is light-dominant, so the hero and closing rows invert. */
:root[data-theme="daylight"] .hero { background: var(--paper); color: var(--ink); }
:root[data-theme="daylight"] .hero h1,
:root[data-theme="daylight"] .formside h2 { color: var(--ink); }
:root[data-theme="daylight"] .hero .lede { color: var(--muted); }
:root[data-theme="daylight"] .offercard {
  background: var(--white); border-color: var(--line); color: var(--ink);
  box-shadow: 0 26px 60px rgba(20,23,26,.13);
}
:root[data-theme="daylight"] .oc-badge { background: #EFEDE7; color: var(--muted); }
:root[data-theme="daylight"] .oc-tier { background: #F4F2EC; }
:root[data-theme="daylight"] .oc-amt { color: var(--ink); }
:root[data-theme="daylight"] .oc-what { color: var(--muted); }
:root[data-theme="daylight"] .oc-gst,
:root[data-theme="daylight"] .oc-person p { color: var(--muted); }
:root[data-theme="daylight"] .oc-guarantee {
  color: var(--muted); border-color: var(--line);
}
:root[data-theme="daylight"] .oc-person strong { color: var(--ink); }
:root[data-theme="daylight"] .btn-gold { color: #fff; }
:root[data-theme="daylight"] .tile { border-color: var(--line); }
:root[data-theme="daylight"] .marquee { --edge: var(--paper); }

/* ── Pull quote — one real client, placed straight after the work, because
   that is where "at $999 will it look cheap?" gets asked.               */
.pullquote {
  max-width: 780px; margin: 66px auto 0; padding-top: 42px;
  border-top: 1px solid var(--line); text-align: center;
}
.pullquote blockquote p {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 700;
  line-height: 1.35; letter-spacing: -.02em; color: var(--ink);
  text-wrap: balance; margin-bottom: 20px;
}
.pullquote figcaption { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pq-who { font-weight: 700; font-size: .92rem; }
.pq-where { font-size: .88rem; color: var(--muted); }
.pq-where::before { content: "· "; }
@media (max-width: 620px) { .pullquote { margin-top: 48px; padding-top: 32px; } }

/* ── Google rating. Never ship the stars without the count beside them. ── */
.oc-reviews {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.oc-reviews .stars { color: var(--gold); letter-spacing: .08em; font-size: .9rem; }
.oc-reviews strong { color: rgba(255,255,255,.92); }
