/* ==========================================================================
   Same Day IT | bespoke flagship visual identity (samedayit.com.au)
   "When your IT goes down, we are there today." Urgent but reassuring.
   Decisive dispatch-amber accent on a clean, trustworthy near-white base,
   with a deep night-steel for the scroll-driven response timeline.
   Distinct from the warm-serif fall site and from the old dark template.
   Display: Archivo (wide, confident). Body: Inter. Mono: Space Mono (clock).
   ========================================================================== */
:root{
  /* --- base: clean, trustworthy, near-white with a faint cool cast --- */
  --bg:        oklch(0.984 0.004 250);
  --bg-2:      oklch(0.962 0.006 250);
  --paper:     oklch(1 0 0);
  --ink:       oklch(0.24 0.022 256);
  --ink-soft:  oklch(0.38 0.020 256);
  --muted:     oklch(0.49 0.018 256);   /* >=4.5:1 on --bg */

  /* --- decisive alert accent: dispatch amber/red --- */
  --accent:    oklch(0.575 0.205 34);   /* warm red-orange, white text >=4.5:1 */
  --accent-ink:oklch(0.52 0.205 32);    /* link/eyebrow ink on light, >=4.5:1 */
  --accent-deep:oklch(0.42 0.16 32);
  --ember:     oklch(0.74 0.16 56);      /* lighter amber for dark surfaces */

  /* --- resolution green ("back online") --- */
  --live:      oklch(0.62 0.16 152);
  --live-soft: oklch(0.78 0.13 154);

  /* --- night-steel for the timeline centrepiece --- */
  --night:     oklch(0.205 0.022 256);
  --night-2:   oklch(0.255 0.024 256);
  --on-dark:   oklch(0.965 0.006 250);

  --steel:     oklch(0.46 0.03 250);   /* decoration only (borders/icons) — 2.52:1 on --night, NEVER use for text on dark */
  --line:      oklch(0.90 0.008 250);
  --line-soft: oklch(0.93 0.006 250);

  --serifless: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1200px;
  --gutter: clamp(1.35rem, 5vw, 5rem);
  --radius: 16px; --radius-lg: 26px; --radius-sm: 11px;
  --shadow-sm: 0 1px 3px oklch(0.30 0.03 256 / .07), 0 10px 24px -16px oklch(0.30 0.04 256 / .26);
  --shadow: 0 2px 6px oklch(0.30 0.03 256 / .07), 0 26px 60px -28px oklch(0.28 0.05 256 / .34);

  --z-nav:200; --z-overlay:300;
  --ease: cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--bg); color:var(--ink); font-family:var(--sans);
  font-size:clamp(1.02rem,.99rem + .2vw,1.12rem); line-height:1.66;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ max-width:100%; height:auto; display:block; }
a{ color:var(--accent-ink); text-underline-offset:.16em; }
a:hover{ color:var(--accent-deep); }
strong{ font-weight:700; color:var(--ink); }
::selection{ background:oklch(0.74 0.16 56 / .55); }

h1,h2,h3,h4{ font-family:var(--serifless); font-weight:800; line-height:1.04;
  letter-spacing:-0.025em; text-wrap:balance; margin:0; color:var(--ink); }
h1{ font-size:clamp(2.4rem,1.6rem + 3.6vw,4.3rem); }
h2{ font-size:clamp(1.85rem,1.35rem + 2.2vw,3rem); }
h3{ font-size:clamp(1.2rem,1.06rem + .6vw,1.5rem); letter-spacing:-0.018em; }
p{ margin:0; text-wrap:pretty; }
.lead{ font-size:clamp(1.14rem,1.04rem + .55vw,1.42rem); line-height:1.52; color:var(--ink-soft); }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.measure{ max-width:64ch; min-width:0; }
.skip{ position:absolute; left:-999px; top:0; z-index:var(--z-overlay); background:var(--ink); color:#fff; padding:.7rem 1rem; border-radius:0 0 8px 0; }
.skip:focus{ left:0; }
:where(a,button,input,textarea,summary):focus-visible{ outline:3px solid var(--accent); outline-offset:3px; border-radius:6px; }

/* ---------- buttons ---------- */
.btn{ display:inline-flex; align-items:center; gap:.55rem; font-family:var(--serifless); font-weight:700; white-space:nowrap;
  font-size:1rem; line-height:1; padding:.95rem 1.55rem; border-radius:999px; border:1.6px solid transparent; cursor:pointer;
  text-decoration:none; transition:transform .35s var(--ease), background-color .22s, box-shadow .35s, border-color .22s; }
.btn--primary{ background:var(--accent); color:oklch(0.99 0.01 60); box-shadow:0 10px 26px -12px oklch(0.60 0.205 34 / .65); }
.btn--primary:hover{ background:var(--accent-deep); color:#fff; transform:translateY(-2px); box-shadow:0 16px 36px -12px oklch(0.60 0.205 34 / .72); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--accent); color:var(--accent-ink); transform:translateY(-2px); }
.btn--lg{ padding:1.1rem 1.9rem; font-size:1.08rem; }
.btn--on-dark{ background:var(--on-dark); color:var(--night); }
.btn--on-dark:hover{ background:#fff; color:var(--night); }
.textlink{ color:var(--accent-ink); font-weight:600; text-decoration:none; border-bottom:2px solid oklch(0.60 0.205 34 / .4); padding-bottom:1px; transition:border-color .25s; }
.textlink:hover{ border-color:var(--accent); color:var(--accent-deep); }
@media (prefers-reduced-motion: reduce){ .btn:hover{ transform:none; } }

/* ---------- live status pill ---------- */
.statuspill{ display:inline-flex; align-items:center; gap:.5rem; font-family:var(--mono); font-size:.78rem; font-weight:700;
  letter-spacing:.02em; color:oklch(0.42 0.12 152); background:oklch(0.62 0.16 152 / .12);
  border:1px solid oklch(0.62 0.16 152 / .34); padding:.42rem .8rem; border-radius:999px; }
.statuspill .dot{ width:.58rem; height:.58rem; border-radius:50%; background:var(--live); box-shadow:0 0 0 0 oklch(0.62 0.16 152 / .55); animation:pulse 2.1s infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 oklch(0.62 0.16 152 / .5); } 70%{ box-shadow:0 0 0 9px oklch(0.62 0.16 152 / 0); } 100%{ box-shadow:0 0 0 0 oklch(0.62 0.16 152 / 0); } }
@media (prefers-reduced-motion: reduce){ .statuspill .dot{ animation:none; } }

/* ---------- header ---------- */
.site{ position:sticky; top:0; z-index:var(--z-nav); background:oklch(0.984 0.004 250 / .82); backdrop-filter:blur(12px) saturate(1.3);
  border-bottom:1px solid transparent; transition:border-color .3s, background-color .3s; }
.site.is-stuck{ border-color:var(--line); }
.site__in{ display:flex; align-items:center; justify-content:space-between; min-height:74px; gap:1rem; }
.brand{ display:inline-flex; align-items:center; gap:.6rem; font-family:var(--serifless); font-weight:800; font-size:1.2rem; letter-spacing:-0.03em; color:var(--ink); text-decoration:none; }
.brand:hover{ color:var(--ink); }
.brand__mark{ width:32px; height:32px; flex:none; }
.nav{ display:flex; align-items:center; gap:1.6rem; }
.nav a:not(.btn){ font-family:var(--serifless); font-weight:600; font-size:.97rem; color:var(--ink-soft); text-decoration:none; }
.nav a:not(.btn):hover,.nav a[aria-current=page]{ color:var(--accent-ink); }
.nav__toggle{ display:none; }
@media (max-width:780px){
  .nav__toggle{ display:inline-flex; align-items:center; gap:.5rem; background:none; border:1.6px solid var(--line); border-radius:10px; padding:.6rem .85rem; font-family:var(--serifless); font-weight:700; color:var(--ink); cursor:pointer; }
  .nav{ position:fixed; inset:74px 0 auto 0; flex-direction:column; align-items:stretch; gap:0; background:var(--paper); border-bottom:1px solid var(--line); padding:.5rem var(--gutter) 1.5rem; transform:translateY(-12px); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s; box-shadow:var(--shadow); }
  .nav[data-open="true"]{ transform:none; opacity:1; pointer-events:auto; }
  .nav a:not(.btn){ padding:1.05rem 0; border-bottom:1px solid var(--line); font-size:1.1rem; color:var(--ink); }
  .nav .btn{ margin-top:1.1rem; justify-content:center; }
}

/* ---------- hero ---------- */
.hero{ position:relative; padding:clamp(3.2rem,2.4rem + 5vw,6.5rem) 0 clamp(3rem,2rem + 4vw,5.5rem); overflow:hidden; }
.hero::before{ content:""; position:absolute; inset:-30% -10% auto -20%; height:88%; z-index:-1; pointer-events:none;
  background:radial-gradient(58% 64% at 80% 8%, oklch(0.74 0.16 56 / .5), transparent 68%),
             radial-gradient(46% 56% at 8% 0%, oklch(0.60 0.205 34 / .16), transparent 64%);
  filter:blur(6px); }
.hero__grid{ display:grid; grid-template-columns:1.04fr .96fr; gap:clamp(2.4rem,1.5rem + 6vw,6rem); align-items:center; }
@media (max-width:880px){ .hero__grid{ grid-template-columns:1fr; } .hero__fig{ order:-1; max-width:520px; margin-inline:auto; width:100%; } }
.kicker{ display:inline-flex; align-items:center; gap:.6rem; font-family:var(--serifless); font-weight:700; font-size:.9rem; letter-spacing:.01em; color:var(--accent-ink); margin-bottom:1.1rem; }
.kicker::before{ content:""; width:1.7rem; height:2px; background:var(--accent); flex:none; }
.hero h1{ margin-bottom:1.1rem; }
.hero h1 em{ font-style:normal; color:var(--accent-ink); }
.hero .lead{ max-width:38ch; margin-bottom:1.9rem; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.85rem; align-items:center; }
.hero__note{ margin:1.6rem 0 0; font-size:.95rem; color:var(--muted); max-width:46ch; }

/* hero figure: a live dispatch console (kept content, new craft) */
.console{ position:relative; background:var(--night); color:var(--on-dark); border-radius:var(--radius-lg);
  padding:clamp(1.4rem,1rem + 2vw,2.2rem); box-shadow:var(--shadow); overflow:hidden; border:1px solid oklch(1 0 0 / .06); }
.console::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(60% 50% at 88% 0%, oklch(0.60 0.205 34 / .22), transparent 70%); }
.console > *{ position:relative; z-index:1; }
.console__bar{ display:flex; align-items:center; gap:.5rem; margin-bottom:1.1rem; color:var(--live-soft); font-family:var(--mono); font-size:.78rem; font-weight:700; letter-spacing:.02em; }
.console__bar .dot{ width:.62rem; height:.62rem; border-radius:50%; background:var(--live); box-shadow:0 0 0 0 oklch(0.62 0.16 152 / .55); animation:pulse 2.1s infinite; }
@media (prefers-reduced-motion: reduce){ .console__bar .dot{ animation:none; } }
.console__grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.65rem; margin-bottom:.85rem; }
.statcard{ background:oklch(1 0 0 / .05); border:1px solid oklch(1 0 0 / .1); border-radius:var(--radius-sm); padding:1rem .85rem; min-width:0; }
.statcard .lvl{ font-family:var(--serifless); font-weight:800; font-size:clamp(1.15rem,1rem + .6vw,1.55rem); line-height:1; color:var(--on-dark); overflow-wrap:anywhere; }
.statcard .nm{ font-size:.72rem; color:oklch(0.78 0.012 250); margin-top:.32rem; line-height:1.25; }
.statcard .meter{ height:5px; border-radius:99px; background:oklch(1 0 0 / .12); margin-top:.55rem; overflow:hidden; }
.statcard .meter i{ display:block; height:100%; border-radius:99px; background:var(--live); }
.console__chart{ background:oklch(1 0 0 / .035); border:1px solid oklch(1 0 0 / .08); border-radius:var(--radius-sm); padding:.8rem; }
.console__chart .cap{ font-size:.74rem; color:oklch(0.78 0.012 250); margin-bottom:.45rem; display:flex; justify-content:space-between; gap:.5rem; }
.console__chart .cap b{ color:var(--live-soft); font-weight:700; }
.console__alert{ display:flex; gap:.55rem; align-items:center; margin-top:.85rem; background:oklch(0.60 0.205 34 / .18); border:1px solid oklch(0.60 0.205 34 / .5);
  color:oklch(0.88 0.1 52); border-radius:var(--radius-sm); padding:.62rem .8rem; font-size:.84rem; }
.console__alert svg{ flex:none; }
.console__log{ margin:.85rem 0 0; font-family:var(--mono); font-size:.7rem; color:oklch(0.74 0.012 250); display:flex; align-items:center; gap:.45rem; }
.console__log svg{ flex:none; color:var(--live-soft); }

/* ---------- section rhythm ---------- */
.section{ padding:clamp(3.6rem,2.6rem + 5vw,7.5rem) 0; }
.section.panel{ background:var(--bg-2); }
.section__head{ max-width:62ch; min-width:0; margin-bottom:clamp(2rem,1.2rem + 2vw,3.2rem); }
.section__head h2{ margin-bottom:.9rem; }
.section__head p{ color:var(--ink-soft); font-size:1.14rem; }

/* problem rows */
.pains{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,280px),1fr)); gap:clamp(1rem,1rem + 2vw,3rem); }
.pain{ padding:1.8rem 0 .2rem; border-top:2px solid var(--ink); min-width:0; }
.pain h3{ display:flex; gap:.6rem; align-items:baseline; margin-bottom:.5rem; }
.pain h3 .x{ color:var(--accent); font-family:var(--mono); font-weight:700; flex:none; }
.pain p{ color:var(--ink-soft); margin:0; }

/* feature cards */
.feats{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,290px),1fr)); gap:clamp(1.1rem,.9rem + 1.4vw,1.85rem); }
.feat{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.7rem,1.2rem + 1.6vw,2.5rem); box-shadow:var(--shadow-sm); min-width:0; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s; }
.feat:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:oklch(0.60 0.205 34 / .28); }
.panel .feat{ background:var(--paper); }
.feat__ic{ width:44px; height:44px; color:var(--accent); margin-bottom:1rem; }
.feat h3{ margin-bottom:.5rem; }
.feat p{ color:var(--ink-soft); margin:0; }
@media (prefers-reduced-motion: reduce){ .feat:hover{ transform:none; } }

/* plain steps (call flow short form) */
.steps{ counter-reset:step; display:grid; gap:clamp(1.2rem,2vw,2rem); grid-template-columns:repeat(auto-fit,minmax(min(100%,250px),1fr)); }
.stepc{ position:relative; padding-top:3.1rem; min-width:0; }
.stepc::before{ counter-increment:step; content:none; position:absolute; top:0; left:0; font-family:var(--serifless); font-weight:800; font-size:1.05rem; color:oklch(0.99 0.01 60); width:2.3rem; height:2.3rem; display:grid; place-items:center; background:var(--accent); border-radius:10px; box-shadow:0 8px 18px -8px oklch(0.60 0.205 34 / .6); }
.stepc h3{ margin-bottom:.4rem; }
.stepc p{ color:var(--ink-soft); margin:0; }

/* ====================================================================
   CENTREPIECE: scroll-driven RESPONSE TIMELINE
   sticky clock/console on one side, scrolling beats on the other.
   you call -> dispatched -> on site / remote -> back up.
   ==================================================================== */
.timeline{ background:var(--night); color:var(--on-dark); position:relative; overflow:hidden; }
.timeline::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(42% 32% at 82% 6%, oklch(0.60 0.205 34 / .26), transparent 70%),
            radial-gradient(46% 36% at 8% 96%, oklch(0.62 0.16 152 / .2), transparent 72%); }
.timeline .wrap{ position:relative; z-index:1; }
.timeline__intro{ max-width:42ch; min-width:0; padding-bottom:clamp(1rem,2vw,2.4rem); }
.timeline__intro h2{ color:var(--on-dark); margin-bottom:.9rem; }
.timeline__intro p{ color:oklch(0.84 0.012 250); font-size:1.14rem; }
.timeline__intro .tag{ font-family:var(--serifless); font-weight:700; letter-spacing:.02em; color:var(--ember); font-size:.88rem; margin-bottom:1rem; display:inline-flex; gap:.5rem; align-items:center; }
.timeline__intro .tag svg{ flex:none; }

.tl__cols{ display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(2rem,5vw,6rem); align-items:start; }
@media (max-width:880px){ .tl__cols{ grid-template-columns:1fr; } }

/* sticky clock stage */
.tl__stage{ position:sticky; top:0; height:100vh; display:flex; align-items:center; justify-content:center; }
@media (max-width:880px){ .tl__stage{ height:auto; position:sticky; top:64px; padding:1rem 0 1.5rem; } }

.clockwrap{ width:min(360px,80vw); }
.clock{ position:relative; width:100%; aspect-ratio:1; }
.clock__face{ position:absolute; inset:0; border-radius:50%; background:radial-gradient(circle at 50% 42%, oklch(0.30 0.025 256), oklch(0.205 0.022 256) 70%);
  border:1px solid oklch(1 0 0 / .1); box-shadow:inset 0 0 60px oklch(0 0 0 / .4), 0 30px 60px -30px #000; }
.clock__ring{ position:absolute; inset:7%; border-radius:50%; }
.clock__ring circle{ fill:none; }
.clock__track{ stroke:oklch(1 0 0 / .09); stroke-width:3; }
.clock__prog{ stroke:var(--accent); stroke-width:3.4; stroke-linecap:round;
  transition:stroke-dashoffset .8s var(--ease), stroke .6s var(--ease); }
.clock.is-live .clock__prog{ stroke:var(--live); }
.clock__hub{ position:absolute; inset:0; display:grid; place-items:center; text-align:center; }
.clock__time{ font-family:var(--mono); font-weight:700; font-size:clamp(1.9rem,1.2rem + 3vw,2.9rem); line-height:1; color:var(--on-dark);
  letter-spacing:.01em; transition:color .5s; }
.clock.is-live .clock__time{ color:var(--live-soft); }
.clock__elapsed{ font-family:var(--serifless); font-weight:700; font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ember); margin-top:.5rem; }
.clock.is-live .clock__elapsed{ color:var(--live-soft); }
.clock__hand{ transform-origin:50% 50%; transition:transform .8s var(--ease); }
@media (prefers-reduced-motion: reduce){ .clock__prog,.clock__hand,.clock__time{ transition:none; } }

.tl__status{ margin-top:1.4rem; text-align:center; }
.tl__status .lbl{ display:inline-flex; align-items:center; gap:.5rem; font-family:var(--mono); font-size:.82rem; font-weight:700;
  color:var(--ember); background:oklch(0.60 0.205 34 / .14); border:1px solid oklch(0.60 0.205 34 / .4); padding:.45rem .9rem; border-radius:999px; transition:color .5s, background-color .5s, border-color .5s; }
.clock.is-live ~ .tl__status .lbl{ color:var(--live-soft); background:oklch(0.62 0.16 152 / .14); border-color:oklch(0.62 0.16 152 / .42); }

/* scrolling beats */
.tl__beats{ padding:6vh 0 10vh; min-width:0; }
.tl__beat{ min-height:62vh; display:flex; flex-direction:column; justify-content:center; max-width:34ch; }
.tl__beat .step-no{ font-family:var(--mono); font-weight:700; font-size:.82rem; letter-spacing:.06em; color:var(--ember); margin-bottom:.7rem; display:inline-flex; align-items:center; gap:.55rem; }
.tl__beat .step-no::before{ content:""; width:.55rem; height:.55rem; border-radius:50%; background:currentColor; flex:none; }
.tl__beat.is-live .step-no{ color:var(--live-soft); }
.tl__beat h3{ color:var(--on-dark); font-size:clamp(1.55rem,1.2rem + 1.6vw,2.4rem); margin-bottom:.8rem; }
.tl__beat p{ color:oklch(0.83 0.012 250); font-size:1.1rem; }
@media (max-width:880px){ .tl__beats{ padding:2vh 0 2vh; } .tl__beat{ min-height:54vh; } }

/* ---------- response-time comparison ---------- */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,1.5rem + 4vw,5rem); align-items:center; }
@media (max-width:760px){ .compare{ grid-template-columns:1fr; } }
.compare > div{ min-width:0; }
.compare .lead{ margin-bottom:1.1rem; }
.bars{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.8rem,1.3rem + 2vw,2.7rem); box-shadow:var(--shadow-sm); min-width:0; }
.bars__title{ font-family:var(--serifless); font-weight:800; margin:0 0 1.1rem; }
.bar__row{ display:grid; grid-template-columns:8.6rem 1fr; gap:.8rem; align-items:center; margin-bottom:.85rem; }
@media (max-width:430px){ .bar__row{ grid-template-columns:1fr; gap:.3rem; } }
.bar__row:last-of-type{ margin-bottom:0; }
.bar__yr{ font-family:var(--mono); font-size:.8rem; color:var(--muted); overflow-wrap:anywhere; }
.bar__track{ height:1.55rem; background:oklch(0.92 0.006 250); border-radius:99px; overflow:hidden; position:relative; }
.bar__track i{ display:block; height:100%; border-radius:99px; background:oklch(0.62 0.03 30); }
.bar__track.now i{ background:var(--live); }
.bar__track b{ position:absolute; left:.75rem; top:50%; transform:translateY(-50%); font-family:var(--mono); font-size:.72rem; font-weight:700; color:var(--paper); }
.bar__track:not(.now) b{ color:var(--paper); }

/* ---------- proof band ---------- */
.proof{ background:linear-gradient(135deg, var(--accent-deep), oklch(0.32 0.12 30)); color:var(--on-dark); border-radius:var(--radius-lg);
  padding:clamp(2.5rem,2rem + 4vw,5rem); }
.proof > *{ max-width:64ch; min-width:0; }
.proof h2{ color:var(--on-dark); margin-bottom:1rem; }
.proof p{ color:oklch(0.93 0.02 56); }
.proof a{ color:#fff; text-decoration-color:var(--ember); }
.proof .stats{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,180px),1fr)); gap:1.6rem 2rem; margin-top:2.2rem; max-width:none; }
.proof .stat{ min-width:0; }
.proof .stat b{ font-family:var(--serifless); font-size:clamp(1.4rem,1.1rem + 1vw,2rem); line-height:1.12; display:block; overflow-wrap:anywhere; color:var(--ember); }
.proof .stat span{ color:oklch(0.9 0.02 56); font-size:.95rem; }

/* ---------- FAQ ---------- */
.faq{ max-width:780px; }
.faq details{ border-top:1px solid var(--line); }
.faq details:last-child{ border-bottom:1px solid var(--line); }
.faq summary{ list-style:none; cursor:pointer; padding:1.35rem 2.5rem 1.35rem 0; position:relative; font-family:var(--serifless); font-weight:700; font-size:1.14rem; color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:""; position:absolute; right:.35rem; top:50%; width:12px; height:12px; margin-top:-7px;
  border-right:2.4px solid var(--accent); border-bottom:2.4px solid var(--accent); transform:rotate(45deg); transition:transform .3s var(--ease); }
.faq details[open] summary::after{ transform:rotate(225deg); margin-top:-3px; }
.faq p{ color:var(--ink-soft); margin:0 0 1.35rem; max-width:70ch; }

/* ---------- CTA ---------- */
.cta{ text-align:center; position:relative; overflow:hidden; }
.cta::before{ content:""; position:absolute; inset:auto -10% -45% -10%; height:72%; z-index:-1;
  background:radial-gradient(50% 100% at 50% 100%, oklch(0.74 0.16 56 / .5), transparent 72%); }
.cta h2{ max-width:20ch; margin:0 auto 1.1rem; }
.cta p{ color:var(--ink-soft); max-width:54ch; margin:0 auto 2rem; font-size:1.14rem; }
.cta__btns{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ---------- contact form ---------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,2vw + 1rem,4rem); align-items:start; }
@media (max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-grid > div, .contact-grid > aside{ min-width:0; }
.form{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.8rem,1.3rem + 2.4vw,3rem); box-shadow:var(--shadow-sm); }
.form .field{ margin-bottom:1.2rem; }
.form label{ display:block; font-family:var(--serifless); font-weight:700; font-size:.95rem; margin-bottom:.45rem; color:var(--ink); }
.form .opt{ color:var(--muted); font-weight:500; }
.form input,.form textarea{ width:100%; font:inherit; color:var(--ink); background:var(--bg-2); border:1.6px solid var(--line); border-radius:var(--radius-sm); padding:.85rem .95rem; transition:border-color .15s, box-shadow .15s; }
.form input::placeholder,.form textarea::placeholder{ color:var(--muted); }
.form input:focus,.form textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px oklch(0.60 0.205 34 / .2); }
.form textarea{ min-height:148px; resize:vertical; }
.form__honey{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form__note{ font-size:.88rem; color:var(--muted); margin-top:1.1rem; }
/* progressive form-feedback (no-JS form still works; these only style the JS path) */
.form input[aria-invalid="true"],.form textarea[aria-invalid="true"]{ border-color:var(--accent); box-shadow:0 0 0 3px oklch(0.60 0.205 34 / .2); }
.form .field__err{ display:none; margin-top:.4rem; font-family:var(--serifless); font-weight:600; font-size:.85rem; color:var(--accent-ink); }
.form .field__err:not(:empty){ display:block; }
.form .btn[aria-busy="true"]{ opacity:.85; cursor:progress; }
.aside{ padding-top:.25rem; }
.aside h2{ font-size:1.45rem; margin-bottom:.4rem; }
.aside dl{ margin:0; }
.aside dt{ font-family:var(--serifless); font-weight:700; font-size:.85rem; color:var(--muted); margin-top:1.2rem; }
.aside dd{ margin:.2rem 0 0; color:var(--ink-soft); }
.aside a{ color:var(--accent-ink); }

/* ---------- footer ---------- */
.foot{ background:var(--night); color:oklch(0.82 0.012 250); padding:clamp(3rem,2rem + 2vw,4.2rem) 0 2.25rem; margin-top:0; }
.foot a{ color:oklch(0.9 0.01 250); }
.foot__top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:2.5rem; align-items:start; }
.foot__promise{ font-family:var(--serifless); font-weight:800; font-size:clamp(1.4rem,1rem + 1.6vw,2rem); max-width:16ch; letter-spacing:-0.03em; color:var(--on-dark); }
.foot__cols{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,150px),1fr)); gap:1.75rem 2.5rem; }
.foot__col{ min-width:0; }
.foot__col h4{ font-family:var(--serifless); font-size:.78rem; text-transform:uppercase; letter-spacing:.07em; color:var(--ember); margin:0 0 .85rem; }
.foot__col ul{ list-style:none; margin:0; padding:0; display:grid; gap:.5rem; }
.foot__col li{ font-size:.95rem; }
.foot__col a{ text-decoration:none; font-size:.95rem; }
.foot__col a:hover{ color:#fff; }
.foot__bottom{ display:flex; flex-wrap:wrap; gap:.6rem 1.6rem; justify-content:space-between; border-top:1px solid oklch(1 0 0 / .12); margin-top:2.7rem; padding-top:1.6rem; color:oklch(0.7 0.012 250); font-size:.86rem; }
.foot__bottom a{ color:oklch(0.82 0.012 250); }

/* ---------- reveal motion: VISIBLE BY DEFAULT, JS hides only below-fold ---------- */
.reveal{ transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-pending{ opacity:0; transform:translateY(22px); }
@media (prefers-reduced-motion: reduce){ .reveal.is-pending{ opacity:1; transform:none; } .tl__beat,.clock__prog{ transition:none; } }
