/* ─────────────────────────────────────────────────────────────────────
   Dayrise — marketing site
   Implementation of "Dayrise Site.dc.html" (Claude Design project
   7357a2c1-28b9-4a71-9ed5-d254115767dd).
   ───────────────────────────────────────────────────────────────────── */

:root {
  --ink:      #0B0A08;  /* page black, warm like film base */
  --panel:    #12100C;  /* card / figure ground */
  --band:     #0E0D0A;  /* full-width band ground */
  --paper:    #EDE8DD;  /* primary text */
  --body:     #BDB6A8;  /* secondary text */
  --muted:    #938C7D;  /* tertiary text */
  --dim:      #665F52;  /* mono labels */
  --dimmer:   #524C41;  /* stamps / watermarks */
  --sun:      #F0B45F;  /* accent */
  --sun-hi:   #FFD9A0;  /* accent, hover */

  --hair:     rgba(240, 233, 220, .09);
  --hair-lo:  rgba(240, 233, 220, .08);
  --hair-hi:  rgba(240, 233, 220, .17);
  --sun-line: rgba(240, 180, 95, .3);

  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Public Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --gutter: 40px;
  --max: 1560px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--sun); text-decoration: none; }
a:hover { color: var(--sun-hi); }

img { max-width: 100%; }
input, button { font-family: inherit; }
::selection { background: var(--sun); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

.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;
}

.skip {
  position: absolute; top: -60px; left: var(--gutter); z-index: 100;
  padding: 12px 18px; background: var(--sun); color: var(--ink);
  font-size: 14px; font-weight: 600; border-radius: 2px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; }

/* ── Shared type ──────────────────────────────────────────────────── */

.kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
}
.kicker.dim { color: var(--dim); }
.kicker.sun { color: var(--sun); }
.kicker.wide { font-size: 11px; letter-spacing: .24em; margin-bottom: 22px; }

.h2-lg {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 16ch;
}
.h2-lg.narrow { max-width: 18ch; }

.h2-md {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.06;
  max-width: 22ch;
}

.h3-serif {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
}
.h3-serif.sm { font-size: 26px; line-height: 1.15; margin-bottom: 10px; }
.h3-serif.lg { font-size: 34px; line-height: 1.1; margin: 0 0 16px; }

.body {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}
.body:last-child { margin-bottom: 0; }
.body.sm { font-size: 15px; line-height: 1.6; margin: 0; }

/* Section opener: a sheet edge. One rule with graticule ticks hanging off
   it and the section's margin label riding the right end, the way a survey
   sheet carries its series name. */
.sheetline {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 42px;
  border-top: 1px solid var(--hair-hi);
  background: repeating-linear-gradient(90deg,
      var(--hair-hi) 0 1px, transparent 1px calc(100% / 24))
    top / 100% 6px no-repeat;
}
.sheetline span {
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--dim);
}
.sec-sub {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.sec-sub.wide-gap { margin: 20px 0 64px; max-width: 58ch; }
.sec-sub.gap-40 { margin: 0 0 40px; }
.sec-sub.tight { max-width: 52ch; }

/* ── Nav ──────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  background: linear-gradient(#0B0A08 12%, rgba(11, 10, 8, .72) 62%, rgba(11, 10, 8, 0));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  flex: none;
}
.nav-brand:hover { color: var(--paper); }
.nav-wordmark {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .34em;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); white-space: nowrap; }
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(240, 180, 95, .45);
  border-radius: 2px;
  color: var(--sun) !important;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover { background: var(--sun); color: var(--ink) !important; }

/* ── Hero ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-plate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-plate video {
  height: 118vh;
  width: auto;
  min-width: 62vw;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: 60% 50%;
  animation: driftIn 2.4s var(--ease) both;
  opacity: .96;
}
.hero-dawn {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 78% 45%, rgba(240, 180, 95, .12), transparent 55%);
}
.hero-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #0B0A08 8%, rgba(11, 10, 8, .86) 34%, rgba(11, 10, 8, .1) 66%, rgba(11, 10, 8, .55) 100%);
}
.hero-foot {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, #0B0A08 1%, transparent 34%);
}
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px var(--gutter) 76px;
  display: grid;
  grid-template-columns: minmax(0, 820px);
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: .98;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.lede {
  margin: 30px 0 0;
  max-width: 540px;
  font-size: 19px;
  line-height: 1.62;
  color: var(--body);
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  font-size: 15px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary {
  gap: 12px;
  padding: 16px 28px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .01em;
}
.btn-primary:hover { background: var(--sun-hi); color: var(--ink); }
.btn-arrow { font-family: var(--mono); font-size: 12px; opacity: .62; }
.btn-ghost {
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid var(--hair-hi);
  color: var(--paper);
}
.btn-ghost:hover { border-color: rgba(240, 180, 95, .6); color: var(--sun); }
.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--dim);
  text-transform: uppercase;
}
.hero-stamp {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  z-index: 2;
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--dimmer);
  text-align: right;
  line-height: 2;
}

/* ── 01 Output gallery ────────────────────────────────────────────── */

.sec-output { padding: 112px var(--gutter) 40px; }
.sec-output .sec-head { margin-bottom: 52px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.g {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.g-7 { grid-column: span 7; }
.g-5 { grid-column: span 5; }
.g-4 { grid-column: span 4; }
.g-12 { grid-column: span 12; }
.ar-3-2 { aspect-ratio: 3 / 2; }
.ar-4-3 { aspect-ratio: 4 / 3; }
.ar-24-9 { aspect-ratio: 24 / 9; }
/* Row 1 pairs a span-7 and a span-5 at the same ratio, so the narrower figure
   is shorter than the row. The span-7 keeps its 3:2 and sets the row height;
   the span-5 drops its ratio and stretches, so the bottom edges line up.
   It must NOT keep aspect-ratio while stretched — a definite height would then
   drive the width and overflow the track. */
.gallery .g-5 { aspect-ratio: auto; height: 100%; }

.g > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g > img.pos-42 { object-position: 50% 42%; }
.g figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(11, 10, 8, .85), transparent);
}
.g figcaption.cap-lg { padding: 16px 18px; }
.g figcaption.cap-sm { padding: 12px 14px; letter-spacing: .16em; }

/* Plate furniture: fiducial corner marks on every plate, a faint reseau
   grid on the flagship, and one grease-pencil remark. Survey-film
   vocabulary; the app itself is about marking regions to survey. */
.g::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  --fid: rgba(237, 232, 221, .5);
  background:
    linear-gradient(var(--fid), var(--fid)) no-repeat left top / 14px 1px,
    linear-gradient(var(--fid), var(--fid)) no-repeat left top / 1px 14px,
    linear-gradient(var(--fid), var(--fid)) no-repeat right top / 14px 1px,
    linear-gradient(var(--fid), var(--fid)) no-repeat right top / 1px 14px,
    linear-gradient(var(--fid), var(--fid)) no-repeat left bottom / 14px 1px,
    linear-gradient(var(--fid), var(--fid)) no-repeat left bottom / 1px 14px,
    linear-gradient(var(--fid), var(--fid)) no-repeat right bottom / 14px 1px,
    linear-gradient(var(--fid), var(--fid)) no-repeat right bottom / 1px 14px;
}
.plate-reseau::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath d='M80 73v14M73 80h14' stroke='%23EDE8DD' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 160px 160px;
}
.plate-note {
  position: absolute;
  left: 51%;
  top: 36%;
  width: 17%;
  z-index: 2;
  pointer-events: none;
}
.plate-note svg { display: block; width: 100%; height: auto; }
.plate-note span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  white-space: nowrap;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--sun);
  text-shadow: 0 1px 6px rgba(11, 10, 8, .9);
}

/* ── 02 Comparison ────────────────────────────────────────────────── */

.sec-compare { padding: 104px var(--gutter); }
.sec-compare .h2-md { margin-bottom: 26px; max-width: 20ch; }

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--panel);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-base { object-position: 50% 50%; }
.compare-top {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 52%);
}
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: var(--sun);
  box-shadow: 0 0 22px rgba(240, 180, 95, .55);
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--sun);
  background: rgba(11, 10, 8, .72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sun);
}
.compare-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  pointer-events: none;
  /* The rendered half is bright tan; without this the labels vanish into it. */
  text-shadow: 0 1px 8px rgba(11, 10, 8, .95), 0 0 2px rgba(11, 10, 8, .8);
}
.compare-tag.tl { left: 16px; top: 14px; color: var(--muted); }
.compare-tag.tr { right: 16px; top: 14px; color: var(--sun); }
.compare-tag.br {
  right: 16px; bottom: 14px;
  font-size: 9.5px; letter-spacing: .16em; color: var(--muted);
}
.compare-note {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── 03 Method ────────────────────────────────────────────────────── */

.sec-method {
  padding: 104px var(--gutter);
  background: linear-gradient(#0B0A08, #0E0D0A 30%, #0E0D0A 70%, #0B0A08);
}
.steps { display: grid; gap: 74px; }
.step {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.step-flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
.framed {
  margin: 0;
  border: 1px solid var(--hair);
  background: var(--ink);
  overflow: hidden;
}
/* height:auto lets the width/height attributes reserve the box before the
   image loads — without it a lazy screenshot lands late and shifts the page,
   which throws off anchor jumps. */
.framed img { width: 100%; height: auto; display: block; }
.framed-cap {
  max-height: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.step-num {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--sun);
}

/* ── 04 Tools ─────────────────────────────────────────────────────── */

.sec-tools { padding: 104px var(--gutter); }
.sec-tools .sec-head { margin-bottom: 48px; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tool {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--hair-lo);
}
.tool-shot {
  height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--hair-lo);
}
.tool-shot img { width: 100%; height: auto; display: block; }
.tool-copy { padding: 20px; }
.tool-copy .kicker { margin-bottom: 9px; }
.tool-copy h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; }
.tool-copy p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.coast-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 14px;
  align-items: stretch;
}
.coast-copy {
  background: var(--panel);
  border: 1px solid var(--hair-lo);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coast-shot {
  border: 1px solid var(--hair-lo);
  background: var(--ink);
  overflow: hidden;
  max-height: 460px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
/* width:auto + max-width:100% lets a wide screenshot fill the slot while a
   narrow tool panel sits centred at native size instead of upscaling. */
.coast-shot img { width: auto; max-width: 100%; height: auto; display: block; }

/* ── 05 Pipeline ──────────────────────────────────────────────────── */

.sec-pipeline {
  padding: 104px var(--gutter);
  background: var(--band);
  border-top: 1px solid rgba(240, 233, 220, .06);
  border-bottom: 1px solid rgba(240, 233, 220, .06);
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stage {
  padding: 26px;
  border: 1px solid var(--hair);
  background: var(--ink);
}
.stage-lit { border-color: rgba(240, 180, 95, .28); background: var(--panel); }
.stage h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.stage p { margin: 0 0 12px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.stage p:last-child { margin-bottom: 0; }
.stage strong { color: var(--body); font-weight: 500; }

.blender-band {
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair);
  aspect-ratio: 21 / 9;
  background: var(--ink);
}
.blender-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 50%;
}
.blender-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 10, 8, .9) 4%, transparent 46%);
}
.blender-copy {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 340px;
}
.blender-copy .kicker { margin-bottom: 10px; }
.blender-copy p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

/* ── 06 Licence ───────────────────────────────────────────────────── */

.sec-pricing { padding: 104px var(--gutter); }

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
}
.plan {
  padding: 34px;
  border: 1px solid var(--hair);
  background: var(--panel);
}
.plan-lit {
  border-color: var(--sun-line);
  background: linear-gradient(#12100C, #0B0A08);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 6px;
}
.price-num {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  font-variant-numeric: lining-nums;
}
.price-was {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--dim);
  text-decoration: line-through;
}
.price-unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}
.plan-sub { margin: 0 0 22px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.plan-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  color: var(--body);
}
.plan-list li { display: flex; gap: 11px; }
.plan-list li::before { content: "·"; color: var(--sun); }
.plan-list-dim li::before { color: var(--muted); }

.plans-fine {
  margin: 16px 0 0;
  max-width: 900px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--dim);
}

.sysreq {
  margin-top: 36px;
  padding: 26px 30px;
  border: 1px solid var(--hair);
  background: var(--panel);
  max-width: 900px;
}
.sysreq .kicker { margin-bottom: 16px; }
.sysreq dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
}
.sysreq dt {
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--dim);
}
.sysreq dd { margin: 0; }

/* ── 07 Waitlist ──────────────────────────────────────────────────── */

.sec-access {
  position: relative;
  padding: 120px var(--gutter);
  overflow: hidden;
  background: #000;
}
.access-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.access-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 50% 50%, rgba(11, 10, 8, .62), #0B0A08 78%);
}
.access-body {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.access-sub {
  margin: 20px auto 34px;
  max-width: 50ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}
.access-done {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(240, 180, 95, .35);
  background: rgba(240, 180, 95, .07);
  font-size: 16px;
  color: var(--sun);
}
.access-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.access-form input {
  flex: 1 1 300px;
  max-width: 380px;
  padding: 16px 18px;
  background: rgba(11, 10, 8, .7);
  border: 1px solid var(--hair-hi);
  border-radius: 2px;
  color: var(--paper);
  font-size: 15px;
  outline: none;
}
.access-form input::placeholder { color: var(--dim); }
.access-form input:focus { border-color: var(--sun); }
.access-form button {
  padding: 16px 30px;
  background: var(--sun);
  color: var(--ink);
  border: none;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.access-form button:hover { background: var(--sun-hi); }
.access-form button[disabled] { opacity: .6; cursor: default; }
.access-error {
  margin: 14px 0 0;
  font-size: 14px;
  color: #E8917A;
}
.access-fine {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--dim);
}
.access-fine a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.access-fine a:hover { color: var(--paper); }

/* Honeypot field: parked off-screen, not display:none, so naive bots still
   see and fill it while people and assistive tech never meet it. */
.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── 08 FAQ ───────────────────────────────────────────────────────── */

.sec-faq { padding: 104px var(--gutter); }
.faq { max-width: 820px; }
.faq details {
  border-top: 1px solid rgba(240, 233, 220, .09);
  padding: 22px 0;
}
.faq details.last { border-bottom: 1px solid rgba(240, 233, 220, .09); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 19px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sun-hi); }
.faq .plus {
  color: var(--sun);
  flex: none;
  transition: transform .2s var(--ease);
}
.faq details[open] .plus { transform: rotate(45deg); }
.faq p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 70ch;
}

/* ── 09 Maker ─────────────────────────────────────────────────────── */

.sec-about { padding: 0 var(--gutter) 104px; }
.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border: 1px solid var(--hair);
  background: var(--panel);
}
.about-copy { padding: 44px; }
.about-copy .body { margin-bottom: 16px; }
.about-copy .body:last-of-type { margin-bottom: 24px; }
.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
}
.chip {
  padding: 11px 18px;
  border: 1px solid var(--hair-hi);
  color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { color: var(--paper); border-color: rgba(240, 233, 220, .3); }
.chip-lit { border-color: rgba(240, 180, 95, .4); color: var(--sun); }
.chip-lit:hover { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.about-shot { align-self: stretch; overflow: hidden; min-height: 340px; }
.about-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Prose pages (privacy) ────────────────────────────────────────── */

.sec-prose { padding: 148px var(--gutter) 104px; }
.prose { max-width: 68ch; }
.prose .h2-md { margin-bottom: 28px; }
.prose h3 {
  margin: 40px 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
.prose p, .prose li {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--body);
  text-wrap: pretty;
}
.prose ul { margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose .prose-lede { font-size: 18px; color: var(--paper); }
.prose .prose-stamp {
  margin: 48px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--dim);
}

/* ── Footer ───────────────────────────────────────────────────────── */

.foot {
  border-top: 1px solid var(--hair);
  padding: 40px var(--gutter);
  background: var(--ink);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--dim);
}
.foot-brand { display: flex; align-items: center; gap: 12px; margin: 0; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { color: var(--dim); }
.foot-links a:hover { color: var(--sun); }

/* ── Motion ───────────────────────────────────────────────────────── */

@keyframes driftIn {
  from { transform: scale(1.06) translateY(1.5%); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 1080px) {
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-shot { height: 360px; }
}

@media (max-width: 900px) {
  :root { --gutter: 28px; }

  .nav { gap: 16px; }
  .nav-links {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }

  .sheetline { margin-bottom: 32px; }
  .plate-note { display: none; }

  .hero-plate video {
    height: 100%;
    width: 100%;
    min-width: 0;
    object-position: 62% 50%;
  }
  .hero-sweep {
    background: linear-gradient(0deg, #0B0A08 16%, rgba(11, 10, 8, .72) 52%, rgba(11, 10, 8, .28) 100%);
  }
  .hero-body { padding: 132px var(--gutter) 92px; }
  .hero-specs { gap: 18px; margin-top: 40px; }
  .hero-stamp { display: none; }

  .g-7, .g-5 { grid-column: span 12; }
  /* Stacked now, so the span-5 is alone on its row and needs its ratio back. */
  .gallery .g-5 { aspect-ratio: 3 / 2; height: auto; }
  .ar-24-9 { aspect-ratio: 16 / 9; }

  .step, .step-flip { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .step-flip > div:first-child { order: 2; }
  .steps { gap: 56px; }
  .framed-cap { max-height: none; }

  .coast-row { grid-template-columns: minmax(0, 1fr); }
  .coast-shot { max-height: none; }

  .stage-grid { grid-template-columns: minmax(0, 1fr); }
  .blender-band { aspect-ratio: 3 / 2; }
  .blender-scrim {
    background: linear-gradient(0deg, rgba(11, 10, 8, .94) 12%, rgba(11, 10, 8, .35) 70%);
  }
  .blender-copy {
    left: 24px; right: 24px; top: auto; bottom: 24px;
    transform: none; max-width: none;
  }

  .about-card { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .about-copy { padding: 32px; }
  .about-shot { min-height: 260px; order: -1; }
}

@media (max-width: 900px) {
  /* Four sysreq columns and two plan columns get too narrow to read here. */
  .plans { grid-template-columns: minmax(0, 1fr); }
  .sysreq dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }

  .sec-output { padding: 96px var(--gutter) 32px; }
  .sec-compare, .sec-method, .sec-tools, .sec-pipeline, .sec-pricing, .sec-faq {
    padding: 76px var(--gutter);
  }
  .sec-about { padding: 0 var(--gutter) 76px; }
  .sec-access { padding: 88px var(--gutter); }

  .lede { font-size: 17px; }
  .sec-sub, .access-sub { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }

  .g-4 { grid-column: span 12; }
  .tool-grid { grid-template-columns: minmax(0, 1fr); }
  .tool-shot { height: 300px; }

  .compare { aspect-ratio: 4 / 3; }
  .compare-tag.br { display: none; }

  .h3-serif { font-size: 27px; }
  .h3-serif.lg { font-size: 29px; }
  .about-copy { padding: 26px; }
  .plan { padding: 26px; }
  .sysreq { padding: 22px; }
  .sysreq dl { grid-template-columns: minmax(0, 1fr); gap: 18px; }

  .faq summary { font-size: 17px; }
  .foot-inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-plate video { opacity: .96; }
}
