/* jarvis.luckeysystems.com — the HUD's own skin, stretched onto a page.
   Void navy, arc cyan, white-hot core. Amber is reserved for "needs you":
   the attention state in the demo, and the two calls to action. */

@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-petch-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-petch-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --void: #050a12;
  --void-2: #081120;
  --arc: #66e0ff;
  --arc-dim: #66e0ff99;
  --arc-faint: #66e0ff2e;
  --hot: #eaf8ff;
  --amber: #ffb454;
  --alert: #ff5c5c;
  --ink: #b8cfdd;
  --ink-dim: #6d8899;
  --display: "Chakra Petch", "Avenir Next", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --hairline: 1px solid #ffffff14;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 700px at 50% 30%, var(--void-2), var(--void) 70%),
    var(--void);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; }

code {
  font-family: var(--mono);
  color: var(--hot);
  background: #ffffff0a;
  border-radius: 4px;
  padding: 0 5px;
}

.hidden { display: none !important; }

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

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

/* ---------- topbar ---------- */

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px 14px;
  background: linear-gradient(to bottom, #050a12f2, #050a1200);
}

.wordmark-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.34em;
  color: var(--hot);
  text-decoration: none;
  text-shadow: 0 0 18px var(--arc-dim);
}

.wordmark-sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}

.pills { display: flex; gap: 10px; align-items: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid #ffffff14;
  background: linear-gradient(160deg, #ffffff0f, #ffffff03 55%);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 1px 0 #ffffff14;
}

.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-dim);
}

.pill.on .dot { background: var(--arc); box-shadow: 0 0 8px var(--arc); }

.pill.cta { color: var(--amber); border-color: #ffb45459; }
.pill.cta .dot { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.pill.cta:hover { background: #ffb4541a; }

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.stage { position: absolute; inset: 0; }

#orb { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Beacons: the orb-to-agent links that make the fan-out legible. Idle
   agents get a hairline; working ones carry a flowing energy dash. */
#beacons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#beacons line {
  stroke: var(--arc-faint);
  stroke-width: 1;
  transition: stroke 0.5s;
}

#beacons line.working {
  stroke: var(--arc-dim);
  stroke-dasharray: 3 9;
  animation: beacon-flow 1.1s linear infinite;
}

#beacons line.attention { stroke: #ffb45459; }

@keyframes beacon-flow {
  to { stroke-dashoffset: -12; }
}

.tile {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 128px;
  max-width: 230px;
  padding: 9px 13px 8px;
  border-radius: 10px;
  border: 1px solid #ffffff12;
  background: linear-gradient(165deg, #ffffff0d, #ffffff02 60%);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 1px 0 #ffffff10, 0 8px 26px #00000059;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.7s ease,
    opacity 0.6s ease, left 0.9s cubic-bezier(0.22, 0.7, 0.3, 1),
    top 0.9s cubic-bezier(0.22, 0.7, 0.3, 1);
}

/* Dispatch beat: a tile is born at the orb, then flies to its slot. */
.tile.spawn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.tile-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  color: var(--hot);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* The brand mark is the status light: identity and liveliness share
   one element. Tinted via currentColor, never full-color logos. */
.tile-glyph {
  width: 15px; height: 15px;
  flex: none;
  color: var(--ink-dim);
  transition: color 0.4s;
}
.tile-glyph svg { width: 100%; height: 100%; display: block; }

.tile-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tile-dir {
  display: block;
  margin-top: 3px;
  padding-left: 22px; /* glyph 15px + gap 7px: text columns align */
  font-size: 10.5px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* The live feed: the working agent's actual last screen lines. This is
   the proof-of-work shot — text visibly streaming under every beacon. */
.tile-feed {
  display: none;
  margin-top: 6px;
  padding: 5px 0 0 22px;
  border-top: 1px solid #ffffff10;
  font-size: 9.5px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.tile.working .tile-feed { display: block; }
.tile.attention .tile-feed { display: none; } /* the ask gets the floor */

.tile-feed .fl {
  white-space: nowrap;
  overflow: hidden;
}

.tile-feed .fl:last-child { color: var(--ink); }

.tile-feed .fl.fresh {
  animation: feed-in 0.35s ease both;
}

@keyframes feed-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

/* The why-line: the agent's actual ask, attention state only. */
.tile-detail {
  display: none;
  margin-top: 6px;
  padding: 5px 0 0 22px;
  border-top: 1px solid #ffffff10;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--amber);
}

.tile.working .tile-glyph {
  color: var(--arc);
  filter: drop-shadow(0 0 5px var(--arc-dim));
  animation: glyph-pulse 1.6s ease-in-out infinite;
}

.tile.attention {
  transform: translate(-50%, -50%) scale(1.06);
}
.tile.attention .tile-glyph { animation: none; }
.tile.attention .tile-detail {
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

/* An ask steps forward in amber; a completion flashes arc-blue. */
.tile.attention.ask {
  border-color: #ffb45466;
  box-shadow: inset 0 1px 0 #ffffff10, 0 0 26px #ffb45426, 0 8px 26px #00000059;
}
.tile.attention.ask .tile-glyph {
  color: var(--amber);
  filter: drop-shadow(0 0 6px #ffb45488);
}

.tile.attention.done {
  border-color: #66e0ff59;
  box-shadow: inset 0 1px 0 #ffffff10, 0 0 26px #66e0ff21, 0 8px 26px #00000059;
}
.tile.attention.done .tile-glyph {
  color: var(--arc);
  filter: drop-shadow(0 0 6px var(--arc-dim));
}
.tile.attention.done .tile-detail {
  color: var(--arc-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes glyph-pulse {
  50% { opacity: 0.5; }
}

.transcript {
  position: absolute;
  right: 26px;
  bottom: 40px;
  top: 96px;
  z-index: 5;
  width: min(340px, 28vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%);
}

.line { line-height: 1.45; font-size: 13px; }

.line .who {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  margin-bottom: 2px;
  color: var(--ink-dim);
}

.line.you { color: var(--ink); }
.line.jarvis .who { color: var(--arc-dim); }
.line.jarvis { color: var(--hot); text-shadow: 0 0 16px #66e0ff2e; }
.line.event .who { color: #ffb454b3; }
.line.event { color: var(--amber); }

/* the headline sits where the ascii mirror sits in the app */
.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding: 0 26px 72px;
}

.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--arc-dim);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: var(--hot);
  text-shadow: 0 0 32px #66e0ff40;
  margin-bottom: 20px;
}

.lede { color: var(--ink); max-width: 52ch; margin-bottom: 30px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* trust row: the three facts a visitor needs before scrolling */

.trust-row {
  list-style: none;
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}

.trust-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--arc);
  box-shadow: 0 0 7px var(--arc);
}

/* hero session: static proof for small screens, where the live
   transcript and tiles are hidden. Desktop gets the animated demo. */

.hero-session {
  display: none;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #ffffff12;
  background: linear-gradient(165deg, #ffffff0b, #ffffff02 60%);
  box-shadow: inset 0 1px 0 #ffffff10, 0 8px 26px #00000059;
}

.hero-session .line + .line { margin-top: 10px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #ffffff14;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn.amber {
  color: var(--void);
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 26px #ffb45433;
}
.btn.amber:hover { box-shadow: 0 0 38px #ffb45459; }

.btn.ghost {
  color: var(--ink);
  background: linear-gradient(160deg, #ffffff0f, #ffffff03 55%);
}
.btn.ghost:hover { border-color: var(--arc-faint); color: var(--hot); }

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

.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 92px 26px 0;
}

.section-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--arc-dim);
  border-top: var(--hairline);
  padding-top: 16px;
  margin-bottom: 40px;
}

.section-label.amber { color: var(--amber); }

/* proof strip: instant "this is for my setup" confirmation, in the hero */

.proof-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero .proof-strip .pip {
  font-size: 10px;
  padding: 5px 11px;
  border-color: #ffffff14;
  background: #ffffff05;
  color: var(--ink);
}

.proof-lead {
  font-family: var(--display);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--ink-dim);
  margin: 0 4px;
}

/* the product section: intro, beats, feature trio, privacy pipeline */

.how-intro {
  max-width: 60ch;
  margin: -24px 0 44px;
  color: var(--ink);
}

.feature-trio { margin-top: 44px; }

#how .pipeline { margin-top: 56px; }

.beats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.beat-k {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--hot);
  margin-bottom: 12px;
}

.beat p { color: var(--ink); font-size: 14px; }
.beat em { color: var(--hot); font-style: italic; }

/* features */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border-radius: 10px;
  border: 1px solid #ffffff12;
  background: linear-gradient(165deg, #ffffff0d, #ffffff02 60%);
  box-shadow: inset 0 1px 0 #ffffff10, 0 8px 26px #00000059;
  padding: 20px 20px 22px;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.card:hover {
  border-color: var(--arc-faint);
  box-shadow: inset 0 1px 0 #ffffff10, 0 0 26px #66e0ff14, 0 8px 26px #00000059;
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--hot);
  margin-bottom: 12px;
}

.card-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex: none;
}
.card-dot.arc { background: var(--arc); box-shadow: 0 0 7px var(--arc); }
.card-dot.amber { background: var(--amber); box-shadow: 0 0 7px var(--amber); }

.card p { font-size: 13.5px; color: var(--ink); }

/* the optical mirror */

.mirror-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 44px;
  align-items: center;
}

.mirror {
  border-radius: 14px;
  border: 1px solid #ffffff14;
  background: linear-gradient(170deg, #ffffff0a, #ffffff02 45%);
  box-shadow: inset 0 1px 0 #ffffff12, 0 14px 42px #00000073;
  overflow: hidden;
  transition: box-shadow 0.5s;
}

.mirror.engaged {
  box-shadow: inset 0 1px 0 #ffffff12, 0 0 34px #66e0ff21, 0 14px 42px #00000073;
}

.mirror-frame { position: relative; aspect-ratio: 16 / 9; background: #030710; }

#ascii { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.mirror-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 12px 8px;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--arc-dim);
  border-top: 1px solid #ffffff0e;
}

.mirror-note {
  letter-spacing: 0.03em;
  font-family: var(--mono);
  font-weight: 400;
  color: var(--ink-dim);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mirror-copy h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.05em;
  color: var(--hot);
  text-shadow: 0 0 24px #66e0ff33;
  margin-bottom: 14px;
}

.mirror-copy p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
}

.mirror-copy .btn { margin-top: 8px; }

.mirror-copy .btn:disabled { opacity: 0.5; cursor: wait; }

/* privacy pipeline */

.pipeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pip {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--hot);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--arc-faint);
  background: #66e0ff0a;
}

.pipe { color: var(--arc-dim); }

.privacy-note {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--ink-dim);
  font-size: 13.5px;
}

/* FAQ */

.qa-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-bottom: var(--hairline);
}

.qa-item {
  padding: 24px 0;
  border-top: var(--hairline);
}

.qa-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--hot);
  margin-bottom: 10px;
}

.qa-item p {
  color: var(--ink);
  font-size: 13.5px;
}

/* guide index and intent pages */

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-link {
  display: block;
  min-height: 150px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ffffff12;
  background: linear-gradient(165deg, #ffffff0b, #ffffff02 60%);
  box-shadow: inset 0 1px 0 #ffffff10, 0 8px 26px #0000004d;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.guide-link:hover {
  border-color: var(--arc-faint);
  box-shadow: inset 0 1px 0 #ffffff10, 0 0 24px #66e0ff14, 0 8px 26px #00000059;
  transform: translateY(-2px);
}

.guide-link span {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--hot);
  margin-bottom: 10px;
}

.guide-link p {
  color: var(--ink);
  font-size: 13.5px;
}

.intent-page .topbar {
  position: relative;
  background: linear-gradient(to bottom, #050a12f2, #050a1200);
}

.article-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 26px 0;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
  gap: 42px;
  align-items: end;
  min-height: 360px;
  padding-bottom: 36px;
  border-bottom: var(--hairline);
}

.article-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--hot);
  text-shadow: 0 0 32px #66e0ff40;
  max-width: 12ch;
  margin-bottom: 20px;
}

.article-lede {
  max-width: 68ch;
  color: var(--ink);
  font-size: 16px;
}

.signal-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ffffff12;
  background:
    radial-gradient(180px 180px at 50% 22%, #66e0ff24, transparent 58%),
    linear-gradient(165deg, #ffffff0b, #ffffff02 60%);
  box-shadow: inset 0 1px 0 #ffffff10, 0 12px 36px #00000059;
}

.signal-ring {
  width: min(180px, 70%);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  border: 2px solid var(--arc);
  box-shadow: 0 0 28px #66e0ff59, inset 0 0 28px #66e0ff1f;
}

.signal-panel p {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--arc-dim);
}

.article-section {
  padding-top: 54px;
}

.article-section h2,
.answer-box h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: 0.05em;
  color: var(--hot);
  text-shadow: 0 0 24px #66e0ff2e;
  margin-bottom: 16px;
}

.article-section p,
.answer-box p,
.article-section li {
  max-width: 78ch;
  color: var(--ink);
  font-size: 14.5px;
}

.answer-box {
  margin-top: 54px;
  padding: 24px;
  border-left: 2px solid var(--amber);
  background: #ffb4540a;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arc);
  box-shadow: 0 0 8px var(--arc);
}

.related-guides {
  padding-top: 54px;
}

.related-guides h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--arc-dim);
  border-top: var(--hairline);
  padding-top: 16px;
  margin-bottom: 18px;
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-list a {
  text-decoration: none;
}

/* ---------- waitlist form ---------- */

.hp { display: none; }

.field-row {
  display: flex;
  gap: 12px;
  max-width: 560px;
  flex-wrap: wrap;
}

.field-row input[type="email"],
.field-row input[type="text"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ffffff1f;
  background: #ffffff08;
  color: var(--hot);
  font-family: var(--mono);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field-row input::placeholder { color: var(--ink-dim); }

.field-row input:focus {
  outline: none;
  border-color: var(--arc-dim);
  box-shadow: 0 0 18px #66e0ff21;
}

.optional-row { margin-top: 12px; }
.optional-row input[type="text"] { border-color: #ffffff12; background: #ffffff05; }

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-dim);
}

.form-note.err { color: var(--alert); }

.form-done { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-done p { color: var(--hot); }

/* ---------- pricing: the founding 100 ---------- */

/* hero price tease: one quiet line under the CTAs */
.price-tease { margin-top: 16px; font-size: 13px; }

.price-tease a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.price-tease a:hover { color: var(--hot); border-color: var(--arc-dim); }
.price-tease strong { color: var(--amber); font-weight: 500; }

/* the offer is one card: title, price, what you get, the form, and a
   single tier line. The amber tint marks it as the page's ask. */
.offer {
  max-width: 640px;
  padding: 28px 28px 26px;
  border-radius: 14px;
  border: 1px solid #ffb45433;
  background: linear-gradient(165deg, #ffb4540d, #ffffff03 55%);
  box-shadow: inset 0 1px 0 #ffffff10, 0 14px 42px #00000059;
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pricing-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: 0.05em;
  color: var(--hot);
  text-shadow: 0 0 28px #66e0ff33;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.price-figure {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--amber);
  text-shadow: 0 0 28px #ffb45440;
}

.price-sub {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
}

.offer-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 26px;
}

.offer-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arc);
  box-shadow: 0 0 7px var(--arc);
}

.founding-form {
  scroll-margin-top: 24px; /* anchor fallback when JS focus is unavailable */
}

/* the ladder, reduced to one line: live tier in amber, the rest dim.
   The price after the founding 100 stays unannounced on purpose. */
.tier-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: var(--hairline);
  font-family: var(--display);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

.tier-line .now { color: var(--amber); }

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

.footer {
  max-width: 1060px;
  margin: 0 auto;
  padding: 92px 26px 40px;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: var(--hairline);
}

.footer-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-decoration: none;
}
.footer-links a:hover { color: var(--arc); }

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

.footer-base .dim { color: #6d889980; }

/* ---------- small screens ---------- */

@media (max-width: 900px) {
  .transcript { display: none; }
  .stage .tile { display: none; }
  #beacons { display: none; }
  .hero { min-height: 88svh; }
  .hero-copy { padding-top: 96px; padding-bottom: 48px; }
  .eyebrow { display: none; } /* the h1 says it; save the screen */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-session { display: block; }
  .field-row .btn { width: 100%; }
  .offer { padding: 22px 18px 20px; }
  .beats, .grid { grid-template-columns: 1fr; }
  .mirror-row { grid-template-columns: 1fr; gap: 26px; }
  .qa-list { grid-template-columns: 1fr; }
  .guide-list { grid-template-columns: 1fr; }
  .article-shell { padding-top: 48px; }
  .article-hero { grid-template-columns: 1fr; min-height: 0; }
  .article-hero h1 { max-width: none; }
  .signal-panel { min-height: 210px; }
  .pills .pill:not(.cta) { display: none; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tile.working .tile-glyph { animation: none; }
  .tile-feed .fl.fresh { animation: none; }
  #beacons line { animation: none; }
  .tile, .card, .btn, .guide-link { transition: none; }
}
