/* Gravvia — shared stylesheet.
 *
 * The design lives in the "Gravvia Global Infrastructure Site" project on
 * claude.ai/design as .dc.html prototypes: inline styles plus design-canvas
 * attributes (style-hover, style-after, {{ tokens }}, <sc-if>). Those don't run
 * outside the canvas, so the design is reproduced here as real CSS.
 *
 * Rules from the handoff that are easy to break by accident:
 *   - corners are 0 everywhere except dots
 *   - the only shadows are hard cobalt offsets (14px hero card, 10px card hover)
 *   - the setup fee is always "deferred", never "waived" or "free"
 */

:root {
  --bone: #f0f0ee;
  --ink: #030303;
  --ink-70: rgba(3, 3, 3, .70);
  --ink-55: rgba(3, 3, 3, .55);
  --ink-40: rgba(3, 3, 3, .40);
  --ink-22: rgba(3, 3, 3, .22);
  --ink-12: rgba(3, 3, 3, .12);
  --ink-06: rgba(3, 3, 3, .06);

  --cobalt: #1d4fd8;
  /* The only red on the site outside call-status lamps. Reserved for form
     errors, where it has to carry meaning on its own. 5.73:1 on bone, so it
     passes AA at the 13px the messages are set in — a lighter red looked
     right and failed. */
  --alert: #b3261e;
  --cobalt-lt: #8aa4ff;          /* cobalt readable on dark surfaces */
  --cobalt-06: rgba(29, 79, 216, .06);
  --cobalt-10: rgba(29, 79, 216, .10);
  --cobalt-35: rgba(29, 79, 216, .35);

  --dark: #030303;               /* dark section panel */
  --dark-inset: #0c0c0c;
  --bone-75: rgba(240, 240, 238, .75);
  --bone-60: rgba(240, 240, 238, .60);
  --bone-55: rgba(240, 240, 238, .55);
  --bone-28: rgba(240, 240, 238, .28);
  --bone-22: rgba(240, 240, 238, .22);

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  background: var(--bone); color: var(--ink);
  font-family: var(--font-body); font-weight: 300; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
ul { list-style: none }
img { max-width: 100% }
h1, h2, h3 { font-weight: 500; letter-spacing: -.02em; line-height: 1.02 }

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

/* ---- primitives ---- */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem }
.mono { font-family: var(--font-mono) }
.rule { height: 1px; background: var(--ink); width: 100% }

.eyebrow {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ink-55);
}
.idx {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--cobalt);
}

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: .02em;
  padding: .85rem 1.5rem; border: 1px solid var(--cobalt);
  background: var(--cobalt); color: var(--bone);
  transition: all .25s ease; cursor: pointer;
}
.btn:hover { background: transparent; color: var(--cobalt) }
.btn .arw { transition: transform .25s ease }
.btn:hover .arw { transform: translateX(4px) }

.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink) }
.btn.ghost:hover { background: var(--ink); color: var(--bone) }

.btn.onDark { background: var(--bone); color: var(--ink); border-color: var(--bone) }
.btn.onDark:hover { background: transparent; color: var(--bone) }

.btn.lg { font-size: 14px; padding: 1rem 2rem }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cobalt); box-shadow: 0 0 8px var(--cobalt);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: .35; transform: scale(.7) } }

/* ---- nav ---- */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 2rem; border-bottom: 1px solid transparent; transition: all .4s ease;
}
nav.scrolled {
  background: rgba(240, 240, 238, .9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink);
}
.logo { display: flex; align-items: center; gap: .55rem; font-weight: 600; letter-spacing: -.02em; font-size: 17px; flex-shrink: 0 }
.logo .mk {
  width: 22px; height: 22px; border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
}
.navlinks { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; justify-content: center }
.navlinks a { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-55); transition: color .2s }
.navlinks a:hover, .navlinks a[aria-current="page"] { color: var(--ink) }
.navright { display: flex; align-items: center; gap: 1rem; flex-shrink: 0 }
@media (max-width: 860px) { .navlinks { display: none } }

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

header.hero { padding: 9rem 0 4rem; position: relative }
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--cobalt-10) 1px, transparent 1px),
                    linear-gradient(90deg, var(--cobalt-10) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 20%, #000, transparent);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; gap: 3.5rem; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.hero-spec { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.6rem }
.hero-spec .tag {
  border: 1px solid var(--cobalt); color: var(--cobalt); background: var(--cobalt-06);
  padding: .28rem .6rem; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin-bottom: 1.4rem; text-wrap: pretty }
h1 em { font-style: normal; position: relative; white-space: nowrap }
h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: 2px; background: var(--cobalt) }
.lede { font-size: 1.06rem; color: var(--ink-70); max-width: 30rem; margin-bottom: 2rem; text-wrap: pretty }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center }
.hero-cta .sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--ink-40); margin-top: .9rem; width: 100%;
}

/* ---- live-line device card ---- */

.device { border: 1px solid var(--ink); background: var(--bone); box-shadow: 14px 14px 0 var(--cobalt); position: relative }
.device .bar { display: flex; align-items: center; justify-content: space-between; padding: .5rem .8rem; border-bottom: 1px solid var(--ink) }
.device .bar .l { display: flex; gap: .35rem; align-items: center }
.device .bar .l i { width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; display: block }
.device .bar .t { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55) }
.device .body { padding: 1.1rem }

.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1rem }
.kpi { border: 1px solid var(--cobalt-35); background: var(--cobalt-06); padding: .7rem .8rem }
.kpi .k { font-family: var(--font-mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); margin-bottom: .35rem }
.kpi .v { font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em }
.kpi .v small { font-size: .7rem; color: var(--ink-40) }
.kpi .v.accent { color: var(--cobalt) }

.wave-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); margin-bottom: .2rem }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 44px; margin: .2rem 0 .8rem }
.wave span { flex: 1; background: var(--cobalt); opacity: .85; animation: eq 1.1s ease-in-out infinite }
@keyframes eq { 0%, 100% { height: 22% } 50% { height: 100% } }

.log { border-top: 1px solid var(--ink-22); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .02em }
.log .row { display: flex; justify-content: space-between; padding: .42rem 0; border-bottom: 1px solid var(--ink-12); color: var(--ink-70) }
.log .row b { font-weight: 500; color: var(--cobalt) }

/* ---- marquee ---- */

.marq { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; white-space: nowrap; padding: .8rem 0; margin-top: 3.5rem }
.marq .track {
  display: inline-flex; gap: 3rem; animation: scroll 26s linear infinite;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-55);
}
.marq .track span { display: inline-flex; gap: 3rem }
@keyframes scroll { to { transform: translateX(-50%) } }

/* ---- sections ---- */

section { padding: 6rem 0; position: relative }
section.tight { padding-top: 2rem }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 22ch; text-wrap: pretty }
.sec-note { font-family: var(--font-mono); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-55); line-height: 2; max-width: 18rem }

/* diagnosis */
.leak { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 3rem; align-items: center }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink) }
.stat { padding: 1.6rem; border-right: 1px solid var(--ink-12); border-bottom: 1px solid var(--ink-12) }
.stat:nth-child(2n) { border-right: none }
.stat:nth-child(n+3) { border-bottom: none }
.stat .n { font-size: 2.6rem; font-weight: 500; letter-spacing: -.03em; line-height: 1 }
.stat .d { font-size: .82rem; color: var(--ink-55); margin-top: .5rem }
.leak-photo { position: relative; border: 1px solid var(--ink); aspect-ratio: 4/5; overflow: hidden; background: var(--ink-06) }
.leak-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); mix-blend-mode: multiply }
.leak-photo .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem;
  background: var(--bone); border-top: 1px solid var(--ink);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; display: flex; justify-content: space-between; color: var(--cobalt);
}

/* two-panel */
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1.5rem }
.panel { border: 1px solid var(--ink); padding: 2rem; background: var(--bone); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease }
.panel:hover { transform: translateY(-4px); box-shadow: 10px 10px 0 var(--cobalt); border-color: var(--cobalt) }
.panel .pn { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; color: var(--ink-40); margin-bottom: 1.2rem }
.panel h3 { font-size: 1.5rem; margin-bottom: .8rem }
.panel p { font-size: .92rem; color: var(--ink-70); margin-bottom: 1.3rem; text-wrap: pretty }
.panel ul { display: flex; flex-direction: column; gap: .6rem }
.panel li { font-size: .86rem; display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-70) }
.panel li::before { content: "—"; color: var(--cobalt); font-family: var(--font-mono) }

/* dark reveal */
.reveal { border: 1px solid var(--ink); background: var(--dark); color: var(--bone); overflow: hidden }
.reveal .rin { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) }
.reveal .rtext { padding: 3rem }
.reveal .rtext .eyebrow { color: var(--bone-60) }
.reveal .rtext h2 { color: var(--bone); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: .8rem 0 1.2rem; text-wrap: pretty }
.reveal .rtext p { color: var(--bone-75); font-size: .95rem; margin-bottom: 1.6rem; text-wrap: pretty }
.reveal .rvis { background: var(--dark-inset); padding: 2rem; border-left: 1px solid rgba(240, 240, 238, .25) }
.dash { border: 1px solid var(--bone-28) }
.dash .dhead {
  display: flex; justify-content: space-between; padding: .55rem .8rem;
  border-bottom: 1px solid var(--bone-28); font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-60);
}
.dash .dhead .live { color: var(--cobalt-lt) }
.dash .dbody { padding: 1rem }
.dcards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .6rem; margin-bottom: 1rem }
.dcard { border: 1px solid var(--bone-22); padding: .7rem }
.dcard .k { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-55); margin-bottom: .3rem }
.dcard .v { font-size: 1.15rem; font-weight: 500; color: var(--bone) }
.dcard .v.accent { color: var(--cobalt-lt) }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 90px; padding-top: .5rem; border-top: 1px solid var(--bone-22) }
.bars span { flex: 1; background: linear-gradient(180deg, var(--cobalt-lt), rgba(138, 164, 255, .25)) }
.recov {
  display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bone-60);
}
.recov b { font-family: var(--font-body); font-size: 1.5rem; color: var(--cobalt-lt); letter-spacing: -.02em }
@media (max-width: 860px) { .reveal .rvis { border-left: none; border-top: 1px solid rgba(240, 240, 238, .25) } }

/* method steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); border-top: 1px solid var(--ink) }
.step { padding: 2rem 1.6rem; border-right: 1px solid var(--ink-12) }
.step:first-child { padding-left: 0 }
.step:last-child { padding-right: 0; border-right: none }
.step .sn { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--ink-40); margin-bottom: 1rem }
.step h3 { font-size: 1.25rem; margin-bottom: .6rem }
.step p { font-size: .88rem; color: var(--ink-70); text-wrap: pretty }
@media (max-width: 760px) {
  .step { border-right: none; border-bottom: 1px solid var(--ink-12); padding: 1.6rem 0 }
  .step:last-child { border-bottom: none }
}

/* verticals */
.verts { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem }
.vert { border: 1px solid var(--ink-22); padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem; transition: border-color .25s, background .25s }
.vert:hover { border-color: var(--cobalt); background: var(--cobalt-06) }
.vert svg { width: 26px; height: 26px; stroke: var(--cobalt); fill: none; stroke-width: 1.4 }
.vert .vn { font-size: .95rem; font-weight: 500 }
.vert .vd { font-size: .76rem; color: var(--ink-55) }

/* stat band */
.band { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50%, 200px), 1fr)) }
.band .b { padding: 2.4rem 1.6rem; border-right: 1px solid var(--ink-12) }
.band .b:last-child { border-right: none }
.band .b .n { font-size: 2.4rem; font-weight: 500; letter-spacing: -.03em; color: var(--cobalt) }
.band .b .l { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); margin-top: .4rem }

/* pricing */
.price { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); border: 1px solid var(--ink) }
.price .col { padding: 2.6rem }
.price .col.terms { border-right: 1px solid var(--ink) }
.price .amt { font-size: 3.4rem; font-weight: 500; letter-spacing: -.03em; line-height: 1 }
.price .amt small { font-size: 1rem; color: var(--ink-40); font-weight: 400 }
.price ul { margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: .7rem }
.price li { font-size: .9rem; display: flex; gap: .6rem; color: var(--ink-70) }
.price li::before { content: "+"; font-family: var(--font-mono); color: var(--cobalt) }
.price-row { border-top: 1px solid var(--ink-22); padding-top: 1.4rem; margin-top: 1.4rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem }
.price-row .rl { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-55) }
.price-row .rd { font-size: .82rem; color: var(--ink-70); margin-top: .35rem; max-width: 22rem }
.price-row .rv { text-align: right; white-space: nowrap }
.price-row .rv .amt-sm { font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em }
.price-row .rv .note { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; margin-top: .2rem; color: var(--cobalt) }
.price-row .rv .note.muted { color: var(--ink-40) }
.price .trial { display: flex; flex-direction: column; justify-content: center; background: var(--cobalt-10) }
.price .trial h3 { font-size: 1.6rem; margin-bottom: .8rem }
.price .trial p { font-size: .9rem; color: var(--ink-70); margin-bottom: 1.2rem; text-wrap: pretty }
.price .trial .plus { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.6rem }
.price .trial .plus div { font-size: .86rem; display: flex; gap: .6rem; color: var(--ink-70) }
.price .trial .plus div::before { content: "+"; font-family: var(--font-mono); color: var(--cobalt) }
.price .trial .btn { align-self: flex-start }
@media (max-width: 760px) {
  .price .col.terms { border-right: none; border-bottom: 1px solid var(--ink) }
}

/* final cta */
.final { text-align: center; padding: 7rem 0 }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.2rem; text-wrap: pretty }
.final p { color: var(--ink-70); max-width: 34rem; margin: 0 auto 2rem; text-wrap: pretty }

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

footer { background: var(--bone); border-top: 1px solid var(--ink); padding: 5rem 0 3rem }
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--ink); margin-bottom: 2rem }
.fgrid .about p { font-size: 13px; color: var(--ink-70); line-height: 1.8; max-width: 240px; margin: 1rem 0 }
.fcol .h { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1rem; color: var(--ink) }
.fcol .links { display: flex; flex-direction: column; gap: .6rem }
.fcol a, .fcol span { font-size: 13px; color: var(--ink-70); transition: color .2s }
.fcol a:hover { color: var(--ink) }
.fbot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em; color: var(--ink-55) }

/* ---- intake form (start page) ---- */

.intake { border: 1px solid var(--ink); background: var(--bone); box-shadow: 14px 14px 0 var(--cobalt) }
.intake .ihead {
  display: flex; justify-content: space-between; align-items: center; padding: .55rem .8rem;
  border-bottom: 1px solid var(--ink); font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55);
}
.intake .ihead .status { color: var(--cobalt) }
.intake .ibody { padding: 2rem }
.frow { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 1.4rem }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.4rem }
.field label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55) }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid rgba(3, 3, 3, .3);
  border-radius: 0; padding: .5rem 0; transition: border-color .25s ease;
}
.field textarea { resize: vertical; min-height: 4.5rem }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--cobalt) }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-40) }

/* ---- form validation ----
   Colour is never the only signal: an invalid field gets a thicker red rule,
   a message with a leading "!", and aria-invalid, so it still reads for
   someone who cannot distinguish the red. */
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-bottom-color: var(--alert); border-bottom-width: 2px }
.field.invalid label { color: var(--alert) }
.field-error {
  display: flex; gap: .4rem; align-items: flex-start;
  font-size: 13px; line-height: 1.45; color: var(--alert);
}
.field-error::before { content: "!"; font-weight: 600; line-height: 1.35 }
.checkline { display: flex; gap: .7rem; align-items: flex-start; margin: 1.6rem 0; font-size: .86rem; color: var(--ink-70) }
.checkline input { accent-color: var(--cobalt); margin-top: .25rem }
.form-note { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-40); margin-top: 1rem }

/* Consent and plain-terms text under the submit button. Small, but it must
   stay readable — ink-40 on bone fails contrast at this size, so both sit at
   ink-70. The consent wording is also what we file for A2P 10DLC, so it is
   never abbreviated to fit. */
.consent { margin-top: 1.2rem; font-size: .78rem; line-height: 1.6; color: var(--ink-70) }
.consent a { text-decoration: underline; text-underline-offset: 2px }
.consent a:hover { color: var(--cobalt) }
.terms-line { margin-top: .8rem; font-size: .78rem; line-height: 1.6; color: var(--ink-70) }
.submitted { display: flex; flex-direction: column; gap: 1.2rem; padding: 3rem 2rem; text-align: center; align-items: center }
.submitted .code { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--cobalt) }
.numbered { display: flex; flex-direction: column; gap: 1.6rem; margin: 2rem 0 }
.numbered .item { display: flex; gap: 1rem; align-items: flex-start }
.numbered .nm { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--cobalt); padding-top: .25rem }
.numbered .nt { font-size: .95rem; font-weight: 500; margin-bottom: .2rem }
.numbered .nd { font-size: .85rem; color: var(--ink-70) }

/* ---- misc page furniture ---- */

.page-head { padding: 9rem 0 3rem }
.page-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem) }
.prose { font-size: .95rem; color: var(--ink-70); max-width: 46rem; text-wrap: pretty }
.prose p { margin-bottom: 1.2rem }

/* Honeypot. Off-canvas rather than display:none — some bots skip inputs whose
   computed style is hidden, but fill anything still in the layout. Paired with
   aria-hidden and tabindex="-1" so no person, mouse or keyboard, can reach it. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Shown when the intake POST fails, so a visitor is never left thinking a lost
   submission was received. */
.intake-error {
  margin-top: 1rem;
  border-left: 2px solid var(--cobalt);
  background: var(--cobalt-06);
  padding: .7rem .9rem;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-70);
}
