/* Richwoods Kalakaar Nights — mobile
   Design tokens lifted verbatim from Kalakaar Mobile.dc.html */

:root {
  --page:      #060807;
  --shell:     #0b0d0c;
  --card:      #131614;
  --card2:     #1a201b;
  --sheet:     #141814;
  --field:     #0b0d0c;
  --field-ob:  #131614;
  --sunk:      #0f120f;

  --accent:    #57ab77;
  --accent-lt: #93cfa9;
  --accent-xl: #b7e3c8;
  --accent-tab:#6fc490;
  --gold:      #c9a35f;
  --red:       #dd6a5f;

  --text:      #edf1ed;
  --mid:       #93a396;
  --dim:       #5d6a61;
  --on-accent: #08120c;

  --hair:      rgba(255, 255, 255, 0.06);
  --hair2:     rgba(255, 255, 255, 0.08);
  --hair3:     rgba(255, 255, 255, 0.1);

  /* One family throughout. Headings get weight + tight tracking rather than a
     second typeface — sharper on a phone than the display serif was. */
  --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display-weight: 800;
  --display-track: -0.02em;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page);
  font-family: var(--font);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

a { color: var(--accent-lt); }
a:hover { color: var(--accent-xl); }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; color-scheme: dark; }
input:focus, select:focus {
  outline: 2px solid rgba(87, 171, 119, 0.5);
  outline-offset: 1px;
}
::-webkit-scrollbar { width: 0; height: 0; }

@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes toastUp { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes rowIn   { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin    { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- app shell ---------- */

.stage {
  min-height: 100vh;
  background: var(--page);
  display: flex;
  justify-content: center;
}

.phone {
  width: min(430px, 100vw);
  height: 100dvh;
  background: var(--shell);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.ambient, .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ambient {
  background:
    radial-gradient(ellipse 480px 360px at 8% -4%, rgba(87, 171, 119, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 420px 340px at 95% 102%, rgba(87, 171, 119, 0.07) 0%, transparent 60%);
}
.grain {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Re-rendered content lives here; .ambient/.grain sit behind it and are built
   once, so a full re-render never repaints the background (was a keystroke
   flicker). Fills the phone as its own flex column, above the z-0 backdrop. */
.content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
/* .zone-main is the flex column (header/main/nav). .zone-overlay uses
   display:contents so it adds no box of its own — its absolutely-positioned
   children (scrim/sheet/toast) resolve against .content exactly as before, so
   the overlay can be re-rendered on its own without disturbing the background. */
.zone-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.zone-overlay { display: contents; }

header.app {
  position: relative;
  z-index: 3;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

main.app {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 20px;
  -webkit-overflow-scrolling: touch;
}

nav.tabs {
  position: relative;
  z-index: 3;
  display: flex;
  background: rgba(13, 16, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 6px 8px calc(10px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
nav.tabs button {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: 48px;
  color: var(--dim);
}
nav.tabs button.on { color: var(--accent-tab); }
nav.tabs button.on svg { filter: drop-shadow(0 0 6px rgba(111, 196, 144, 0.6)); }
nav.tabs .lbl { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------- typography ---------- */

.eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.wordmark {
  font-size: 19px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-track);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wordmark .dot { color: var(--accent); }

.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}
.display  { font-weight: var(--display-weight); letter-spacing: var(--display-track); }
.h-screen { font-size: 22px; font-weight: var(--display-weight); letter-spacing: var(--display-track); }
.h-sheet  { font-size: 20px; font-weight: var(--display-weight); letter-spacing: var(--display-track); }
.sub      { font-size: 11px; color: var(--dim); margin-top: 2px; }

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

.card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 16px;
}
.row-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 13px 14px;
  animation: rowIn 0.25s ease;
}
.stack { display: flex; flex-direction: column; }
.gap6 { gap: 6px; } .gap8 { gap: 8px; } .gap10 { gap: 10px; } .gap12 { gap: 12px; }
.between { display: flex; align-items: center; justify-content: space-between; }
.mb12 { margin-bottom: 12px; } .mb14 { margin-bottom: 14px; } .mb16 { margin-bottom: 16px; }
.mb20 { margin-bottom: 20px; }
.grow { flex: 1; min-width: 0; }

.avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  color: var(--on-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.avatar.lg { width: 32px; height: 32px; font-size: 13px; }

.btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  padding: 16px;
  background: var(--accent);
  color: var(--on-accent);
  letter-spacing: 0.3px;
  width: 100%;
}
.btn.cta { box-shadow: 0 4px 24px rgba(87, 171, 119, 0.25); }
.btn.sm { padding: 11px 18px; font-size: 13px; width: auto; }
.btn.xs { padding: 9px 16px; font-size: 12px; width: auto; }
.btn.ghost {
  background: none;
  color: var(--mid);
  border: 1px solid var(--hair3);
  font-size: 13px;
  font-weight: 600;
  padding: 13px;
}
.btn.dashed {
  background: rgba(87, 171, 119, 0.1);
  border: 1px dashed rgba(87, 171, 119, 0.4);
  color: var(--accent-lt);
  border-radius: 16px;
  padding: 15px;
  font-size: 13px;
}
.btn.pill-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hair3);
  color: var(--mid);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
}
.btn.tiny-outline {
  background: none;
  border: 1px solid var(--hair3);
  color: var(--mid);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
}
.btn.link {
  background: none;
  border: none;
  color: var(--accent-lt);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
  padding: 4px;
}
.icon-btn {
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  padding: 8px;
  font-size: 15px;
  flex-shrink: 0;
}
.icon-btn.danger { color: var(--red); font-size: 13px; padding: 6px; }
.icon-btn.accent { color: var(--accent-lt); font-size: 13px; padding: 6px; }
.nudge {
  background: none; border: none; color: var(--dim);
  cursor: pointer; font-size: 10px; padding: 1px 4px; line-height: 1;
}

input.field, select.field {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--hair3);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 14px;
  color: var(--text);
}
input.field.ob, select.field.ob {
  background: var(--field-ob);
  border-color: var(--hair2);
}
input.field.search { border-radius: 999px; padding: 11px 16px; font-size: 13px; }

.seg {
  flex: 1;
  min-width: 0;
  padding: 9px 2px;
  border-radius: 9px;
  text-align: center;
  font-size: 11.5px;
  cursor: pointer;
  transition: all 0.15s;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mid);
  border: 1px solid var(--hair2);
  font-weight: 600;
}
.seg.on { color: var(--on-accent); font-weight: 700; }

.toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 13px 16px;
  cursor: pointer;
  color: var(--text);
  background: var(--sunk);
  border: 1px solid var(--hair2);
  text-align: left;
}
.toggle.on {
  background: rgba(87, 171, 119, 0.14);
  border-color: rgba(87, 171, 119, 0.5);
}

.note {
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 12px;
  line-height: 1.5;
}
.note.accent {
  background: rgba(87, 171, 119, 0.08);
  border: 1px solid rgba(87, 171, 119, 0.25);
  color: var(--accent-lt);
}
.note.gold {
  background: rgba(201, 163, 95, 0.08);
  border: 1px solid rgba(201, 163, 95, 0.3);
  color: var(--gold);
  font-weight: 600;
}
.note.warn {
  background: rgba(201, 163, 95, 0.1);
  border: 1px solid rgba(201, 163, 95, 0.35);
  color: var(--gold);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
}

.empty {
  text-align: center;
  padding: 50px 24px;
  color: var(--dim);
  background: var(--card);
  border: 1px dashed var(--hair3);
  border-radius: 16px;
}
.empty .t { font-size: 14px; font-weight: 600; color: var(--mid); margin-bottom: 6px; }
.empty .d { font-size: 12px; line-height: 1.6; }

.badge {
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}
.chip {
  display: inline-block;
  margin-top: 5px;
  background: rgba(147, 207, 169, 0.12);
  border: 1px solid rgba(147, 207, 169, 0.3);
  color: var(--accent-lt);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sync {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 5px 10px;
}
.sync .dot { width: 6px; height: 6px; border-radius: 999px; }
.sync .txt {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--mid);
}

/* ---------- Tonight ---------- */

.hero {
  background: linear-gradient(140deg, #2a5039 0%, #16301f 100%);
  border: 1px solid rgba(147, 207, 169, 0.18);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 260px 160px at 90% 0%, rgba(147, 207, 169, 0.14), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }

/* Photo banner: full-bleed across the top of the hero card, fading into the
   green so the event details below stay readable. */
.hero-photo {
  position: relative;
  margin: -20px -20px 14px;
  height: 190px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,13,12,0.15) 0%, rgba(22,48,31,0.1) 45%, #234531 100%);
  pointer-events: none;
}
.hero .eyebrow2 {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent-lt);
}
.hero .count {
  background: rgba(8, 18, 12, 0.5);
  border: 1px solid rgba(147, 207, 169, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 700; color: var(--accent-xl);
}
.hero h1 {
  font-size: 26px;
  font-weight: var(--display-weight);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 6px;
}
.hero .hosted-by {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-xl);
  letter-spacing: -0.01em;
  margin: -2px 0 10px;
}
.hero .dateline { font-size: 13px; color: #c8dccf; margin-bottom: 2px; }
.hero .venueline { font-size: 12px; color: #8fb69d; margin-bottom: 12px; }
.hero .theme {
  display: inline-block;
  background: rgba(8, 18, 12, 0.45);
  border: 1px solid rgba(147, 207, 169, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #dceadf;
  margin-bottom: 10px;
}
.hero .announce {
  background: rgba(8, 18, 12, 0.5);
  border-left: 3px solid var(--accent-lt);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
  margin: 12px 0 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #dceadf;
  line-height: 1.45;
}
.hero .theme-note {
  font-size: 11.5px;
  color: #8fb69d;
  margin: -4px 0 10px;
  line-height: 1.5;
}
.hero .fn {
  background: rgba(147, 207, 169, 0.14);
  border: 1px solid rgba(147, 207, 169, 0.3);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent-xl);
  margin-top: 8px;
}
.cd { display: flex; gap: 8px; margin-top: 14px; }
.cd > div {
  flex: 1;
  background: rgba(8, 18, 12, 0.5);
  border-radius: 12px;
  padding: 10px 0;
  text-align: center;
}
.cd .n { font-size: 22px; font-weight: var(--display-weight); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.cd .u {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: #8fb69d; font-weight: 700;
}
.hero-actions { display: flex; gap: 8px; margin-top: 14px; }
.hero-actions button {
  flex: 1;
  background: rgba(8, 18, 12, 0.5);
  border: 1px solid rgba(147, 207, 169, 0.25);
  border-radius: 999px;
  padding: 10px;
  font-size: 12px; font-weight: 600; color: #d9eadf;
  cursor: pointer;
}
/* RSVP is the one thing we want tapped from the hero. */
.hero-actions button.primary {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: #08120c;
  font-weight: 700;
}

/* Two big shortcuts to the things people actually open the app for. */
.quick { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick button {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 14px 12px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}
.quick button:active { border-color: rgba(87, 171, 119, 0.45); }
.quick .q-ico { font-size: 18px; margin-bottom: 8px; }
.quick .q-t { font-size: 13.5px; font-weight: 700; }
.quick .q-s { font-size: 11px; color: var(--dim); margin-top: 2px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.stats > div {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 12px 6px;
  text-align: center;
}
.stats .n { font-size: 22px; font-weight: var(--display-weight); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stats .u {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim); font-weight: 700; margin-top: 2px;
}

.num {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  text-align: center;
  flex-shrink: 0;
}

/* ---------- Plan ---------- */

.list-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  width: 100%;
}
.big-list-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 15px 16px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  margin-bottom: 12px;
}
.big-list-btn .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(87, 171, 119, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}

/* ---------- Food ---------- */

.jump {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(87, 171, 119, 0.1);
  border: 1px dashed rgba(87, 171, 119, 0.4);
  color: var(--accent-lt);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.rsvp-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 14px;
}
.rsvp-card.me { border-color: rgba(87, 171, 119, 0.35); }
.dish {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 10px 10px 14px;
}
.dish input.edit {
  flex: 1; min-width: 0;
  background: var(--field);
  border: 1px solid rgba(87, 171, 119, 0.5);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--text);
}
.dish select {
  max-width: 110px;
  background: var(--field);
  border: 1px solid var(--hair3);
  border-radius: 8px;
  padding: 7px 6px;
  font-size: 12px;
  color: var(--accent-lt);
}

/* ---------- sheet ---------- */

.scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  animation: fadeIn 0.2s ease;
}
.sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 11;
  background: var(--sheet);
  border-top: 1px solid var(--hair3);
  border-radius: 22px 22px 0 0;
  max-height: 88%;
  overflow-y: auto;
  padding: 14px 20px calc(24px + env(safe-area-inset-bottom));
  animation: sheetUp 0.32s cubic-bezier(0.32, 0.72, 0.25, 1);
}
.grabber {
  width: 38px; height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 16px;
}
.pick-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--text);
  width: 100%;
  background: var(--sunk);
  border: 1px solid var(--hair);
}
.pick-row.on {
  background: rgba(87, 171, 119, 0.12);
  border-color: rgba(87, 171, 119, 0.5);
}
.choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--sunk);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
  margin-bottom: 10px;
}
.choice.keep { border: 1px solid rgba(87, 171, 119, 0.35); }
.choice.del  { border: 1px solid rgba(221, 106, 95, 0.4); }
.choice .t { font-size: 13.5px; font-weight: 700; }
.choice .d { font-size: 11.5px; color: var(--mid); }

.person-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sunk);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 11px 12px;
}

.share-box {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--hair3);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  resize: none;
  margin-bottom: 12px;
  font-family: inherit;
}
.btn.wa { background: #25d366; color: #08120c; }

.swatch { width: 34px; height: 34px; border-radius: 999px; cursor: pointer; border: 2px solid transparent; }
.swatch.on { border: 3px solid var(--text); }

/* ---------- toast ---------- */

.toast {
  position: absolute;
  left: 50%; bottom: 92px;
  transform: translate(-50%, 0);
  z-index: 20;
  background: #1c231d;
  border: 1px solid rgba(87, 171, 119, 0.4);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: toastUp 0.25s ease;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
  max-width: 88%;
}
.toast.over-sheet { bottom: auto; top: 20px; }
.toast.warn { border-color: rgba(201, 163, 95, 0.5); }
.toast.err  { border-color: rgba(221, 106, 95, 0.5); }
.toast .msg { overflow: hidden; text-overflow: ellipsis; }
.toast button {
  background: none; border: none;
  color: var(--accent-lt);
  font-size: 13px; font-weight: 700; cursor: pointer; padding: 0;
}

/* ---------- boot ---------- */

.boot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 30;
  background: var(--shell);
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.boot .ring {
  width: 26px; height: 26px;
  border: 2px solid rgba(87, 171, 119, 0.25);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

/* ---------- onboarding ---------- */

.onboard {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow-y: auto;
  padding: 52px 24px 40px;
  display: flex;
  flex-direction: column;
}
.onboard .kicker {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.onboard h1 {
  font-size: 33px;
  font-weight: var(--display-weight);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.onboard h2 {
  font-size: 27px;
  font-weight: var(--display-weight);
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.onboard .lede { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 32px; }
.onboard .lede.sm { font-size: 13px; margin-bottom: 24px; }
.onboard .foot { margin-top: auto; display: flex; gap: 10px; }
.onboard .foot .btn.ghost { width: auto; padding: 14px 22px; border-radius: 999px; }
.onboard .foot .btn:not(.ghost) { flex: 1; padding: 14px; font-size: 14px; }
