/* ============================================================
   Pier — landing page
   Tokens mirror the Operations Console design system so marketing and
   app feel like one product. Single signal-cyan accent, Mona Sans body
   + JetBrains Mono, hairline borders, 4px geometry, near-black dark
   surface, warm-paper light surface.
   ============================================================ */

:root {
  /* dark theme (default) — matches app surface/fg/border/accent */
  --bg:           #0A0E14;       /* surface-page */
  --bg-alt:       #11161F;       /* surface-elevated */
  --bg-elev:      #11161F;
  --bg-soft:      #060910;       /* surface-sunken */
  --line:         #1F2733;       /* border */
  --line-soft:    #1F2733;
  --text:         #E7EAEE;       /* fg */
  --text-dim:     #9CA3AF;       /* fg-muted */
  --text-mute:    #6B7280;       /* fg-subtle */
  --accent:       #22D3EE;       /* signal cyan — same as app */
  --accent-soft:  rgba(34, 211, 238, 0.10);
  --accent-line:  rgba(34, 211, 238, 0.45);
  --ok:           #4ADE80;
  --warn:         #FBBF24;
  --bad:          #FB7185;

  /* tokens — radius matches app radius-lg / radius-sm */
  --radius:       8px;
  --radius-sm:    4px;
  --maxw:         1180px;
  --maxw-narrow:  780px;
  --pad:          24px;

  /* fonts — same family as the app */
  --ff-body: "Mona Sans", "Mona Sans Fallback", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-disp: "Mona Sans", "Mona Sans Fallback", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

[data-theme="light"] {
  --bg:           #FAFAF7;       /* paper */
  --bg-alt:       #FFFFFF;
  --bg-elev:      #FFFFFF;
  --bg-soft:      #F2F2EC;
  --line:         #E4E4DD;
  --line-soft:    #E4E4DD;
  --text:         #0B1220;       /* ink */
  --text-dim:     #4B5563;
  --text-mute:    #6B7280;
  --accent:       #0E7490;       /* deeper cyan for light */
  --accent-soft:  #ECFEFF;
  --accent-line:  rgba(8, 145, 178, 0.45);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ----- layout ----- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding: 96px 0; border-top: 1px solid var(--line-soft); }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__title {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 8px 0 16px;
}
.section__sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 60ch;
  margin: 0;
}

/* ----- text utilities ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 12px;
}
.eyebrow.mono { font-family: var(--ff-mono); text-transform: none; letter-spacing: 0; }
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.mono { font-family: var(--ff-mono); font-size: 0.92em; }
.dim  { color: var(--text-mute); }
.muted { color: var(--text-dim); }
/* Was an Instrument Serif italic. Now plain Mona Sans italic — keeps the
   "lifted phrase" cadence in headlines without leaving the type family. */
.serif-italic { font-style: italic; font-weight: 500; color: var(--text); }
.accent { color: var(--accent); }
.hl {
  color: var(--accent);
  font-weight: 600;
}

/* ----- nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__glyph {
  font-family: var(--ff-disp);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.brand__name { font-size: 17px; }
.brand__beta {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-left: 4px;
  transform: translateY(-2px);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

/* theme toggle */
.theme-toggle {
  width: 36px; height: 22px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  padding: 0;
}
.theme-toggle__dot {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 200ms ease;
}
[data-theme="light"] .theme-toggle__dot { transform: translateX(14px); }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
  cursor: pointer;
}
.btn--lg { height: 46px; padding: 0 20px; font-size: 15px; border-radius: 10px; }
.btn--full { width: 100%; }
.btn--solid {
  background: var(--accent);
  color: #0A0E14;       /* dark surface for readable contrast on cyan */
  border-color: var(--accent);
}
.btn--solid:hover { background: #67E8F9; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--text-dim); background: var(--bg-elev); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero__sub {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  display: flex;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mute);
}
.hero__meta li { display: flex; gap: 6px; }
.hero__meta .mono { color: var(--text); }

/* terminal */
.terminal {
  margin: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.02) inset,
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px var(--line);
  position: relative;
}
.terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0.4;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
}
.terminal__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3a3d42;
}
.terminal__dot--r { background: #ff5f57; }
.terminal__dot--y { background: #febc2e; }
.terminal__dot--g { background: #28c840; }
.terminal__title {
  margin-left: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.terminal__branch { margin-left: auto; font-size: 12px; color: var(--text-mute); }
.terminal__body {
  margin: 0;
  padding: 22px 22px 18px;
  font-family: var(--ff-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  overflow-x: auto;
}
.terminal__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 13px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(111,220,140,0.12);
  color: var(--ok);
  font-size: 12px;
  font-weight: 700;
}
.terminal__ok { color: var(--text); }
.terminal__time { margin-left: auto; color: var(--text-mute); }

/* terminal syntax colours — semantic, picked to read on near-black */
.t-c { color: var(--text-mute); font-style: italic; }   /* comments */
.t-k { color: #60A5FA; }                                 /* keys (cool blue) */
.t-s { color: #FCD34D; }                                 /* strings (warm) */
.t-ok { color: var(--ok); }

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.strip__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-dim);
  font-size: 14px;
}
.strip__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-right: 4px;
}
.strip__sep { color: var(--text-mute); }

/* ============================================================
   WHY CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.card__num {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.card__h {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.card__p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  color: var(--text-mute);
  font-size: 12px;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 56px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.step__rail {
  position: relative;
  display: flex;
  justify-content: center;
}
.step__rail::after {
  content: "";
  position: absolute;
  top: 48px; bottom: -56px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--line), transparent);
}
.step:last-child .step__rail::after { display: none; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-elev);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.step__h {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 4px 0 10px;
}
.step__p {
  color: var(--text-dim);
  margin: 0 0 20px;
  font-size: 16px;
  max-width: 62ch;
}
.step__visual { max-width: 480px; }

.ghbox {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.ghbox__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: 6px;
  color: var(--accent);
  font-size: 16px;
}
.ghbox__txt { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.ghbox__txt .mono { font-size: 12px; }
.badge {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.badge--ok { color: var(--ok); border-color: rgba(111,220,140,0.3); background: rgba(111,220,140,0.06); }

.snippet {
  margin: 0;
  padding: 18px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-family: var(--ff-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  max-width: 540px;
}

.logstream {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--ff-mono);
  font-size: 13px;
  line-height: 1.8;
  max-width: 600px;
  overflow-x: auto;
}
.logline { white-space: nowrap; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
}
.ctable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ctable th, .ctable td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.ctable thead th {
  font-weight: 500;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--bg-soft);
}
.ctable thead th.th--us { color: var(--accent); }
.ctable tbody th {
  font-weight: 500;
  color: var(--text);
}
.ctable tbody tr:last-child th,
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable td.td--us {
  background: linear-gradient(180deg, var(--accent-soft), transparent 90%);
  color: var(--text);
  font-weight: 500;
}
.yes { color: var(--ok); }
.no  { color: var(--text-mute); }
.meh { color: var(--text-dim); }
.caveat {
  margin-top: 16px;
  color: var(--text-mute);
  font-size: 13px;
}

/* ============================================================
   PRICING
   ============================================================ */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price--featured {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 20px 60px -20px var(--accent-soft);
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, transparent 30%),
    var(--bg-elev);
}
.price__flag {
  position: absolute;
  top: -12px; left: 28px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #1a1100;
  padding: 4px 10px;
  border-radius: 4px;
}
.price__name {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.price__tag {
  font-size: 30px;
  margin: 8px 0 6px;
  color: var(--text);
  font-weight: 500;
}
.price__tag .dim { font-size: 14px; font-weight: 400; }
.price__sub { margin: 0; color: var(--text-dim); font-size: 14px; }
.price__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.price__list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--accent);
}
.price__list li .mono { color: var(--text); }
.price__overage {
  padding: 12px 14px;
  border: 1px dashed var(--accent-line);
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  font-size: 13px;
  color: var(--text);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq__q {
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  list-style: none;
  color: var(--text);
  font-family: var(--ff-body);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform 200ms ease;
  line-height: 1;
}
.faq__item[open] .faq__q::after { content: "−"; transform: translateY(-50%) rotate(0deg); }
.faq__a { padding: 0 36px 24px 0; color: var(--text-dim); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }
.faq__a p { margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.endcta {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse at 80% 50%, var(--accent-soft) 0%, transparent 50%),
    var(--bg);
}
.endcta__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.endcta__title {
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.endcta__sub { color: var(--text-dim); margin: 0; font-size: 17px; }
.endcta__ctas { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 32px 0;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: inline-flex; align-items: baseline; gap: 10px; }
.footer__tag {
  font-size: 12px;
  color: var(--text-mute);
  margin-left: 6px;
}
.footer__links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .endcta__inner { grid-template-columns: 1fr; }
  .endcta__ctas { justify-content: flex-start; }
  .section { padding: 72px 0; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  :root { --pad: 18px; }
  .nav__inner { height: 56px; }
  .brand__beta { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .hero__title { font-size: clamp(34px, 9vw, 48px); }
  .hero__meta { gap: 16px; }
  .step { grid-template-columns: 56px 1fr; gap: 18px; }
  .step__num { width: 36px; height: 36px; font-size: 11px; }
  .step__rail::after { top: 40px; bottom: -56px; }
  .step__h { font-size: 22px; }
  .ctable th, .ctable td { padding: 12px 14px; font-size: 13px; }
  .endcta { padding: 64px 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

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

/* focus styles */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* selection */
::selection { background: var(--accent); color: #0A0E14; }

/* ============================================================
   WAITLIST FORM (#waitlist section)
   ============================================================ */
.endcta__inner--stack {
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.endcta__copy {
  max-width: 720px;
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.waitlist__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.waitlist__lbl {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.waitlist input,
.waitlist select {
  font-family: var(--ff-mono);
  font-size: 14px;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color 140ms;
  -webkit-appearance: none;
  appearance: none;
}

.waitlist input:focus,
.waitlist select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.waitlist select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2322D3EE' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.waitlist__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.waitlist__hint {
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.waitlist__status {
  margin: 0;
  min-height: 1.2em;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.waitlist__status[data-tone="success"] { color: var(--ok); }
.waitlist__status[data-tone="error"]   { color: var(--bad); }

@media (max-width: 760px) {
  .waitlist__row {
    grid-template-columns: 1fr;
  }
}
