/*
 * Scenes B — the three non-deck product panels (Waiting, Live now, Tidy),
 * the Ask conversation, the closing access screen and the toast.
 */

/* ─────────── Shared panel furniture ─────────── */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* Panel surfaces match the product's real card: solid white, 22px, a hairline
   border rather than a translucent pane. Translucency is reserved for floating
   chrome (rail, glance, focus scrim) so hierarchy stays readable. */
.card {
  border: 1px solid rgba(0, 0, 0, 0.035);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lift);
}

.card-pad { padding: 26px 28px; }

.card-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-title { margin-top: 18px; font-size: clamp(1.35rem, 2vw, 1.78rem); letter-spacing: -0.038em; max-width: 24ch; }
.card-sub { margin-top: 11px; max-width: 56ch; font-size: 0.88rem; line-height: 1.58; color: var(--muted); }
.card-note { font-size: 0.7rem; color: var(--faint); }

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.side { display: grid; gap: 16px; padding-top: 6px; }
.side-copy h4 { margin: 0; font-size: 1.15rem; font-weight: 680; letter-spacing: -0.03em; line-height: 1.16; }
.side-copy p { margin-top: 10px; font-size: 0.87rem; line-height: 1.6; color: var(--muted); }

.side-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.side-stat b { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.045em; }
.side-stat span { font-size: 0.73rem; line-height: 1.4; color: var(--muted); }

.time-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 660;
}

.time-chip::before { content: "↺"; font-size: 0.8rem; }

/* ─────────── Waiting ─────────── */
.path { list-style: none; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; }
.path li { display: flex; align-items: flex-start; gap: 12px; }

.path .node {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 720;
  background: rgba(14, 16, 20, 0.05);
  color: var(--muted);
}

.path .node.ok { background: var(--green-soft); color: var(--green); }
.path .node.live { background: var(--blue-soft); color: var(--blue); }
.path .node.due { background: var(--amber-soft); color: var(--amber); }
.path b { display: block; font-size: 0.81rem; font-weight: 670; }
.path span { display: block; margin-top: 2px; font-size: 0.73rem; line-height: 1.45; color: var(--muted); }

.quote {
  position: relative;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue);
  border-radius: 14px;
  background: rgba(18, 101, 242, 0.035);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-2);
}

.quote-tag {
  display: block;
  margin-bottom: 7px;
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─────────── Review ─────────── */
.review-stack { display: grid; gap: 12px; }

.review-card { padding: 20px 22px; transition: opacity 320ms var(--spring), transform 240ms var(--spring); }
.review-card.is-settled { opacity: 0.5; }

.review-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-card header b { display: block; font-size: 0.84rem; font-weight: 780; letter-spacing: -0.012em; }
.review-card header span { display: block; margin-top: 2px; font-size: 0.72rem; color: var(--muted); }

.thinks {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1f5ff;
  color: #275ac4;
  font-size: 0.7rem;
  font-weight: 720;
  white-space: nowrap;
}

.review-card h3 { margin-top: 15px; font-size: clamp(1.2rem, 1.6vw, 1.48rem); letter-spacing: -0.028em; }
.review-card > p { margin-top: 8px; font-size: 0.84rem; line-height: 1.5; color: var(--muted); }

.review-choices { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.review-choices .chip { height: 42px; border-radius: 13px; font-size: 0.78rem; }
.btn-sm { height: 42px; padding-inline: 15px; border-radius: 13px; font-size: 0.78rem; }
.chip-blue { background: #edf4ff; border-color: #dfe9ff; color: #2258c7; height: 42px; border-radius: 13px; font-size: 0.78rem; }
.chip-blue:hover { background: #e3edff; }

.review-learn {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e8edf6;
  border-radius: 15px;
  background: #f7f9fd;
  animation: panel-in 340ms var(--spring-out) both;
}

.review-learn b { display: block; font-size: 0.82rem; }
.review-learn > span { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--muted); }
.learn-actions { display: flex; gap: 8px; margin-top: 10px; }
.learn-actions .btn-sm, .learn-actions .chip { height: 36px; font-size: 0.75rem; }

/* ─────────── People ─────────── */
.person-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.person-name { margin-top: 7px; font-size: clamp(1.6rem, 2.3vw, 2.15rem); letter-spacing: -0.045em; }
.person-meta { margin-top: 5px; font-size: 0.78rem; color: var(--muted); }
.person-line { margin-top: 16px; font-size: 0.95rem; line-height: 1.5; color: var(--ink-2); }

.universe {
  position: relative;
  height: 292px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(63, 111, 240, 0.09), transparent 46%);
  overflow: hidden;
}

.universe-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.universe-lines line { stroke: #d9e1f4; stroke-width: 1.2; }

.hub {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 31px;
  background: linear-gradient(145deg, #111318, #343a47);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 780;
  box-shadow: 0 18px 42px rgba(18, 28, 50, 0.24);
}

.universe .node {
  position: absolute;
  max-width: 46%;
  padding: 9px 12px;
  border: 1px solid #dfe6f7;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 31, 55, 0.08);
  animation: node-in 520ms var(--spring-out) both;
}

@keyframes node-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: none; }
}

.universe .node b { display: block; font-size: 0.74rem; font-weight: 700; }
.universe .node span { display: block; font-size: 0.66rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.n-tl { left: 5%; top: 13%; animation-delay: 60ms; }
.n-tr { right: 5%; top: 11%; animation-delay: 130ms; }
.n-bl { left: 5%; bottom: 13%; animation-delay: 200ms; }
.n-br { right: 5%; bottom: 12%; animation-delay: 270ms; }
.n-t { left: 50%; top: 4%; translate: -50% 0; animation-delay: 340ms; }

/* ─────────── Tidy ─────────── */
.tidy-meta { margin-top: 14px; font-size: 0.76rem; color: var(--muted); }
.tidy-meta b { font-weight: 720; color: var(--ink); font-variant-numeric: tabular-nums; }

.tidy-rows { display: grid; gap: 9px; margin-top: 16px; }

.tidy-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 200ms var(--spring), opacity 320ms var(--spring), background 200ms var(--spring);
}

.tidy-row:hover { background: #fff; }
.tidy-row.is-filed { opacity: 0.42; transform: translateX(6px); }
.tidy-row b { display: block; font-size: 0.82rem; font-weight: 680; }
.tidy-row span { display: block; margin-top: 3px; font-size: 0.71rem; line-height: 1.45; color: var(--muted); }

.glyph { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; font-size: 1rem; }
.g-green { background: var(--green-soft); }
.g-blue { background: var(--blue-soft); }
.g-amber { background: var(--amber-soft); }

.tidy-result {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 133, 93, 0.2);
  border-radius: 18px;
  background: var(--green-soft);
  animation: panel-in 420ms var(--spring-out) both;
}

.tidy-result b { display: block; font-size: 0.82rem; font-weight: 690; font-variant-numeric: tabular-nums; }
.tidy-result span { display: block; margin-top: 2px; font-size: 0.71rem; color: var(--muted); }
.tidy-result > div { flex: 1; }

/* ─────────── Ask ─────────── */
.ask { padding: clamp(70px, 11vh, 118px) 0 clamp(52px, 7vh, 78px); }
.ask-inner { position: relative; z-index: 3; }
.orb-ask { top: -30%; opacity: 0.55; animation: none; }
.ask-head { text-align: center; }
.ask-head h2 { margin-top: 12px; }

.ask-frame {
  margin: 34px auto 0;
  max-width: 780px;
  padding: 24px 26px 26px;
  border: 1px solid var(--night-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ask-turn { display: flex; align-items: baseline; gap: 12px; }
.ask-turn-2 { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--night-line); }

.who {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.6rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-night-2);
}

.typed {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 620;
  letter-spacing: -0.022em;
  color: var(--on-night);
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  translate: 0 0.16em;
  background: #6ea3ff;
  animation: blink 1.05s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.ask-answer { margin-top: 18px; }

/* Each answer part assembles in sequence rather than appearing at once. */
[data-seq] {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  filter: blur(5px);
}

[data-seq].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition: opacity 520ms var(--spring-out), transform 520ms var(--spring-out), filter 520ms var(--spring-out);
}

.ask-lead { font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 660; letter-spacing: -0.028em; color: var(--on-night); }
.ask-lead.sm { font-size: 1.05rem; }
.ask-prose { margin-top: 10px; font-size: 0.92rem; line-height: 1.62; color: var(--on-night-2); max-width: 62ch; }
.ask-prose em { color: var(--on-night); font-style: italic; }

.resv {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--night-line-2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(110, 163, 255, 0.11), rgba(110, 163, 255, 0.04));
}

.resv header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.63rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-night-3);
}

.resv header b { color: #6ee7a8; letter-spacing: 0.04em; }
.resv h3 { margin-top: 10px; color: var(--on-night); font-size: 1.16rem; }

.resv dl { display: grid; gap: 9px; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--night-line); }
.resv dl > div { display: flex; align-items: baseline; gap: 14px; }
.resv dt { flex: 0 0 82px; font-size: 0.7rem; color: var(--on-night-3); }
.resv dd { margin: 0; font-size: 0.83rem; font-weight: 640; color: var(--on-night); }

.ask-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.ask-actions .chip { background: rgba(255, 255, 255, 0.08); border-color: var(--night-line-2); color: var(--on-night); }
.ask-actions .chip:hover { background: rgba(255, 255, 255, 0.15); }
.ask-actions .chip-dark { background: #fff; color: var(--ink); border-color: transparent; }
.ask-actions .chip-dark:hover { background: #eef1f6; }
.ask-note { font-size: 0.68rem; color: var(--on-night-3); }

.ask-followups { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--night-line); }

.follow {
  padding: 9px 14px;
  border: 1px dashed var(--night-line-2);
  border-radius: 12px;
  background: transparent;
  font-size: 0.79rem;
  font-weight: 620;
  color: var(--on-night-2);
  transition: transform 120ms ease-out, background 200ms var(--spring), color 200ms var(--spring);
}

.follow:hover { background: rgba(255, 255, 255, 0.08); color: var(--on-night); }
.follow:active { transform: scale(0.97); }
.follow[disabled] { opacity: 0.4; pointer-events: none; }

.ask-foot { margin: 26px auto 0; max-width: 58ch; text-align: center; font-size: 0.78rem; line-height: 1.6; color: var(--on-night-3); }

/* ─────────── Close ─────────── */
.scene-close {
  position: relative;
  padding: clamp(44px, 6vh, 68px) 0 0;
  background: linear-gradient(180deg, var(--night) 0%, #0b0f17 60%, #0d131d 100%);
  color: var(--on-night);
  overflow: hidden;
}

/* A single low glow so the closing screen has depth instead of flat black. */
.scene-close::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -46%;
  left: 50%;
  width: min(1200px, 140vw);
  aspect-ratio: 1;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(18, 101, 242, 0.24) 0%, rgba(18, 101, 242, 0.07) 38%, transparent 64%);
  pointer-events: none;
}

.scene-close .wrap, .scene-close .foot { position: relative; z-index: 1; }

/* Trust is the last thing read before the connection moment, so it gets a
   proper heading rather than sitting as an anonymous strip of reassurances. */
.trust-head { padding-bottom: clamp(22px, 3.4vh, 34px); }
.trust-head .kicker { margin: 0; }
/* Google-data note under the trust heading: same link treatment as the story line. */
.trust-note { margin-top: 14px; max-width: 720px; }
.trust-note a { color: #6ea3ff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; white-space: nowrap; }
.trust-note a:hover { color: #9cc0ff; }

.trust-h {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--night-line);
}

.trust b { display: block; font-size: 0.85rem; font-weight: 680; letter-spacing: -0.018em; }
.trust p { margin-top: 7px; font-size: 0.76rem; line-height: 1.55; color: var(--on-night-3); }

.close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: clamp(44px, 7vh, 76px) 0;
}

.close-copy h2 { margin-top: 12px; }
.close-copy .lede { margin-top: 16px; max-width: 42ch; }

.seats {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 650;
  color: var(--on-night-2);
}

.offer { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }

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

.offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ea3ff;
  box-shadow: 0 0 0 4px rgba(110, 163, 255, 0.15);
}

.offer b { display: block; font-size: 0.9rem; font-weight: 670; letter-spacing: -0.018em; }
.offer span { display: block; margin-top: 3px; font-size: 0.79rem; color: var(--on-night-3); }

.offer-note {
  margin-top: 20px;
  max-width: 44ch;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--on-night-3);
}

.cta-title {
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 660;
  letter-spacing: -0.026em;
  color: var(--on-night);
}

.seats span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  margin-right: 8px;
  padding-inline: 7px;
  border-radius: 9px;
  background: rgba(110, 163, 255, 0.18);
  color: #9ec1ff;
  font-weight: 730;
  font-variant-numeric: tabular-nums;
}

.cta-card {
  padding: 26px;
  border: 1px solid var(--night-line-2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.field { margin-bottom: 13px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 650;
  color: var(--on-night-2);
}

.field label span { font-weight: 500; color: var(--on-night-3); }

.field input {
  width: 100%;
  height: 46px;
  padding-inline: 14px;
  border: 1px solid var(--night-line-2);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--on-night);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 200ms var(--spring), background 200ms var(--spring);
}

.field input::placeholder { color: rgba(244, 246, 250, 0.3); }
.field input:focus { outline: none; border-color: #6ea3ff; background: rgba(0, 0, 0, 0.32); }
.field input[aria-invalid="true"] { border-color: #ff8f8f; }

.form-error { min-height: 16px; margin-bottom: 6px; font-size: 0.72rem; color: #ff9d9d; }
.form-note { margin-top: 12px; text-align: center; font-size: 0.7rem; line-height: 1.6; color: var(--on-night-3); }
.form-note + .form-note { margin-top: 7px; }

.joined { display: grid; justify-items: center; gap: 10px; text-align: center; padding: 22px 0; animation: panel-in 480ms var(--spring-out) both; }
.joined h3 { color: var(--on-night); }
.joined p { font-size: 0.82rem; color: var(--on-night-3); }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  width: var(--stage-w);
  margin-inline: auto;
  padding: 22px 0 30px;
  border-top: 1px solid var(--night-line);
  font-size: 0.69rem;
  color: var(--on-night-3);
}

/* ─────────── Toast ─────────── */
.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(14, 16, 20, 0.92);
  color: #fff;
  font-size: 0.79rem;
  font-weight: 620;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  pointer-events: none;
  transition: opacity 280ms var(--spring-out), transform 280ms var(--spring-out);
}

.toast.on { opacity: 1; transform: none; }

/* ─────────── Responsive ─────────── */
@media (max-width: 900px) {
  .two-col, .close-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 22px; }
  .ask-frame { padding: 20px; }
  .resv dt { flex-basis: 70px; }
  .hero-stats { gap: 16px; padding: 14px 16px; }
  .foot { flex-direction: column; gap: 6px; }
}

@media (max-width: 560px) {
  .trust-strip { grid-template-columns: 1fr; }
  .topnav a:not(.btn) { display: none; }
  .card-pad { padding: 20px; }
}

/* ─────────── Waitlist usage-intent select ───────────
 * One compact dropdown, styled to sit identically beside the text inputs.
 * The chevron is an inline SVG on the wrapper because native select arrows
 * cannot be recoloured consistently across engines. */
.select-wrap { position: relative; display: block; }
.select-wrap::after {
  content: ""; position: absolute; right: 15px; top: 50%;
  width: 10px; height: 10px; pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  border-right: 1.6px solid var(--on-night-3);
  border-bottom: 1.6px solid var(--on-night-3);
}
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  color-scheme: dark; /* native pieces (popup arrow region) follow the dark field */
  width: 100%; height: 56px; padding-inline: 14px 38px;
  border: 1px solid var(--night-line-2); border-radius: 13px;
  background: rgba(0, 0, 0, 0.22); color: var(--on-night);
  font: inherit; font-size: 0.88rem; cursor: pointer;
  transition: border-color 200ms var(--spring), background 200ms var(--spring), box-shadow 200ms var(--spring);
}
/* Focus = refined blue border + soft glow; no oversized outline ring. The glow
   itself is the visible keyboard-focus treatment. */
.field select:focus, .field select:focus-visible {
  outline: none; border-color: #6ea3ff;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 0 3px rgba(18, 101, 242, 0.28);
}
/* The placeholder state reads like the inputs' placeholders. */
.field select:invalid, .field select option[value=""] { color: rgba(244, 246, 250, 0.45); }
.field select option { color: #232833; background: #ffffff; }
@supports (color-scheme: dark) { .field select option { color: inherit; background: transparent; } }

/* The company field reveals rather than appearing abruptly. */
#wl-company-field { overflow: hidden; }
#wl-company-field:not([hidden]) { animation: wlReveal 260ms var(--spring) both; }
@keyframes wlReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Legal links in the form note and footer: unmistakably clickable. */
.form-note a { color: #6ea3ff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.form-note a:hover { color: #9cc0ff; }

/* ─────────── Footer legal row ───────────
 * Cookie Settings is a real button (CookieYes reopens its preference centre),
 * styled to sit quietly beside the legal links. */
.foot-legal { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: center; }
.foot-legal a, .foot-link {
  appearance: none; -webkit-appearance: none; /* strips native button chrome */
  color: #6ea3ff; text-decoration: underline; text-underline-offset: 2px;
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer; font-weight: 600;
}
.foot-legal a:hover, .foot-link:hover { color: #9cc0ff; }
.foot-link:focus-visible, .foot-legal a:focus-visible { outline: 2px solid #6ea3ff; outline-offset: 3px; }

/* ─────────── Homepage trust line (full story lives on /about) ─────────── */
.story-line { max-width: 680px; margin: 0 auto 64px; text-align: center; font-size: 0.9rem; color: var(--on-night-3); }
.story-line a { color: #6ea3ff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; margin-left: 6px; white-space: nowrap; }
.story-line a:hover { color: #9cc0ff; }

/* ─────────── Demo-data disclaimer, scoped to the demo sections ─────────── */
.demo-note { max-width: var(--stage-w); margin: 0 auto; padding: 0 22px 26px; text-align: center; font-size: 0.72rem; color: var(--on-night-3); }
