/* ============================================================================
   ARBRA OS — PUBLIC BOOKING PAGE STYLES — CHUNK 2.6 / ECLIPSE STOREFRONT GRAFT
   ----------------------------------------------------------------------------
   Eclipse aesthetic (pure black + ICE blue). Storefront design language:
   Inter (display + body) + JetBrains Mono (wide-tracked UPPERCASE caps),
   liquid-glass surfaces, 12/18/22px radius scale. Aligned to vip/index.html.
   Mobile-first: every layout works at 375px before scaling up.
   Tap targets ≥ 44px on every interactive element.
   ========================================================================= */

:root {
  /* Eclipse palette — locked, do not drift. Values aligned to storefront. */
  --bg:           #02030a;
  --bg-surface:  #0a0d18;
  --bg-raised:   #111524;
  --bg-elevated: #161b2e;

  --border:        rgba(136, 221, 255, 0.10);
  --border-strong: rgba(136, 221, 255, 0.22);
  --border-ice:    rgba(136, 221, 255, 0.45);

  /* Storefront tokens (graft) — keep legacy names alongside for JS/CSS refs. */
  --card-border: rgba(176, 222, 255, 0.165);
  --hair:        rgba(160, 205, 255, 0.12);
  --glass-fill:  rgba(8, 16, 28, 0.5);
  /* Top-lit specular sheen layered OVER fills (storefront --glass-sheen):
     a faint cool-white wash on the upper ~46% so glass reads lit-from-within,
     not flat-dark. Layer it FIRST in any `background:` (sheen, then fill). */
  --glass-sheen: linear-gradient(180deg, rgba(190, 225, 255, 0.05), transparent 46%);
  /* Storefront tier-card body fill (the lit glass beneath the sheen). */
  --tier-fill:   rgba(8, 16, 28, 0.62);
  --tier-blur:   blur(10px) saturate(150%);
  /* Storefront tier depth drop (floats the card on the void) + open/hover glows. */
  --tier-depth:  0 18px 50px -26px rgba(0, 0, 0, 0.8);
  --tier-depth-hover: 0 28px 60px -24px rgba(0, 0, 0, 0.85);
  --ice-halo:    0 0 40px -14px rgba(136, 221, 255, 0.4);
  --gold-halo:   0 0 44px -14px rgba(255, 209, 102, 0.4);

  --text:        #e8eef8;
  --text-soft:   #a9c0d8;   /* aligned to storefront --txt-2 */
  --text-mute:   #6d839c;   /* aligned to storefront --txt-3 */
  --white:       #e8eef8;
  --txt-2:       #a9c0d8;
  --txt-3:       #6d839c;

  --ice:         #88ddff;
  --ice-bright:  #b6ecff;
  --ice-dim:     #5EC4FF;
  --ice-glow:    rgba(136, 221, 255, 0.25);

  /* GOLD — featured/recommended accent (storefront B/A proof gold). */
  --ba:          #ffd166;
  --ba-grad:     linear-gradient(180deg, #f7e08a, #ffd166 55%, #c79a36);

  --danger:      #f87171;
  --success:     rgb(52, 211, 153);

  /* LIQUID-GLASS material tokens (storefront graft) — beveled glass lip
     (Tier B, every browser) + soft depth drop so surfaces float on the void. */
  --lg-spec:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 1px 0 0 rgba(255,255,255,.26),
    inset 0 1.5px 1px -0.5px rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.46),
    inset -1px 0 0 rgba(0,0,0,.30);
  --lg-depth: 0 24px 60px -20px rgba(0,0,0,.6), 0 10px 26px -16px rgba(0,0,0,.5);
  --lg-radius: 22px;   /* storefront's one generous uniform corner */

  /* TYPOGRAPHY — Inter for display + body, JetBrains Mono for caps/labels. */
  --font-ui:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --tap: 44px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

/* AMBIENT "LIT ROOM" — storefront .ambient graft. The void is no longer dead
   flat black: a faint warm ceiling pool of light sits high-center over a
   many-stop deep-space radial that falls off continuously to near-black at the
   edges, so the glass surfaces read as floating in a real recessed room.
   (Stops/positions pulled verbatim from index.html .ambient.) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    /* high diffuse CEILING glow — warm, not stack-shaped */
    radial-gradient(130% 80% at 50% -6%, rgba(34, 46, 70, 0.45), rgba(20, 28, 46, 0.18) 30%, transparent 58%),
    /* faint ICE pool up top — quiet brand tint riding the ceiling glow */
    radial-gradient(120% 70% at 50% -10%, rgba(136, 221, 255, 0.10), transparent 56%),
    /* deep continuous void, many stops, full-bleed (no detectable band) */
    radial-gradient(160% 140% at 50% 46%,
      #0b121d 0%, #0a101b 12%, #090e18 24%, #080c15 36%, #070b13 48%, #060912 60%,
      #050810 72%, #040610 84%, #03040c 93%, #02030a 100%);
  pointer-events: none;
  z-index: 0;
}
/* Gentle multi-stop corner vignette — frames the page so the panes read as
   afloat over depth (storefront .vignette graft, scaled for a scroll page). */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(148% 120% at 50% 30%, transparent 50%, rgba(2, 3, 10, 0.22) 72%, rgba(2, 3, 10, 0.52) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Spotlight (mouse-follow, desktop only — JS sets --mx/--my).
   Enriched: larger, ICE-tinted pool that adds a moving "lit" highlight to the
   room (matches the storefront's alive-not-flat feel). JS hook untouched. */
.spotlight {
  position: fixed;
  pointer-events: none;
  width: 460px; height: 460px;
  border-radius: 50%;
  /* FIX 2 — dimmed WAY down: intensity slashed (~0.13/0.05 → 0.035/0.012) and
     the falloff tightened (72% → 58%) so it reads as a faint hint, not a loud
     pool. Node + JS hook (--mx/--my) untouched. */
  background: radial-gradient(circle,
    rgba(136, 221, 255, 0.035),
    rgba(136, 221, 255, 0.012) 40%,
    transparent 58%);
  top: 0; left: 0;
  transform: translate(calc(var(--mx, -1000px) - 230px), calc(var(--my, -1000px) - 230px));
  transition: transform 80ms linear;
  mix-blend-mode: screen;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1080px;       /* widened so the tier cards breathe like the storefront; form/summary capped to 760 below */
  margin: 0 auto;
  padding: 72px 24px 110px;
}

/* ----------------------------------------------------------------------------
   HERO
---------------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-ui);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-accent {
  color: var(--ice);
}
.hero-sub {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--txt-2);
  font-weight: 400;
}
.hero-meta {
  margin-top: 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-meta span + span::before {
  content: '·';
  margin: 0 10px;
  color: var(--text-mute);
}

/* ----------------------------------------------------------------------------
   STEPPER
---------------------------------------------------------------------------- */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 2px;
}
.step-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  min-height: var(--tap);
  white-space: nowrap;
  transition: border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}
.step-dot:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.step-dot:hover:not(:disabled):not(.active) {
  border-color: var(--border-strong);
  color: var(--text-soft);
}
.step-dot.active {
  border-color: var(--ice);
  color: var(--ice);
  background: var(--glass-sheen), var(--ice-glow);
  box-shadow:
    var(--lg-spec),
    0 0 0 1px var(--ice-glow),
    0 0 28px -8px rgba(136, 221, 255, 0.5),
    0 8px 24px -12px var(--ice-glow);
}
.step-dot.done {
  border-color: var(--border-strong);
  color: var(--ice);
}
.step-dot-num {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid currentColor;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.step-divider {
  width: 18px;
  height: 1px;
  background: var(--border);
}

/* ----------------------------------------------------------------------------
   STEP CONTAINERS
---------------------------------------------------------------------------- */
.step {
  display: none;
  animation: stepFade .5s ease;
}
.step.is-active { display: block; }

@keyframes stepFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-header {
  margin-bottom: 28px;
}
.step-title {
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.step-sub {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--txt-2);
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  justify-content: space-between;
}

/* ----------------------------------------------------------------------------
   SERVICES GRID
---------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--glass-sheen), linear-gradient(180deg, rgba(16,23,38,.46), rgba(6,10,20,.58));
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: left;
  cursor: pointer;
  position: relative;
  box-shadow: var(--lg-spec), var(--lg-depth);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  font: inherit;
  color: inherit;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  border-color: rgba(136, 221, 255, 0.4);
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: var(--lg-spec), var(--ice-halo), var(--lg-depth);
}
.service-card.selected {
  border-color: var(--ice);
  box-shadow: var(--lg-spec), 0 0 0 1px var(--ice), 0 0 40px -12px rgba(136, 221, 255, 0.45), var(--lg-depth);
}
.service-card-name {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--txt-2);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.service-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.service-card-duration {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.service-card-price {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--ice-bright);
  letter-spacing: 0.01em;
}
.service-card-price small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  margin-left: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.skeleton-card {
  background: var(--glass-fill);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}
.skeleton-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(136, 221, 255, 0.08), transparent);
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.services-empty {
  text-align: center;
  padding: 36px 20px;
  color: var(--txt-2);
  font-family: var(--font-ui);
  font-style: italic;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
}

/* ----------------------------------------------------------------------------
   DATES + SLOTS (Step 2)
---------------------------------------------------------------------------- */
.dates-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 14px;
  margin-bottom: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.date-pill {
  flex: 0 0 auto;
  background: var(--glass-sheen), var(--glass-fill);
  -webkit-backdrop-filter: var(--tier-blur);
  backdrop-filter: var(--tier-blur);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  min-width: 78px;
  min-height: var(--tap);
  text-align: center;
  scroll-snap-align: start;
  box-shadow: var(--lg-spec);
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
  font: inherit;
  color: inherit;
}
.date-pill .dow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.date-pill .day {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  margin-top: 2px;
  color: var(--text);
}
.date-pill:hover:not(:disabled) {
  border-color: rgba(136, 221, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--lg-spec), var(--ice-halo);
}
.date-pill.selected {
  background: var(--glass-sheen), var(--ice-glow);
  border-color: var(--ice);
  box-shadow:
    var(--lg-spec),
    0 0 0 1px var(--ice),
    0 0 32px -8px rgba(136, 221, 255, 0.5),
    0 8px 22px -12px var(--ice-glow);
}
.date-pill.selected .day { color: var(--ice-bright); }
.date-pill:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  min-height: 56px;
}
.slot-btn {
  background: var(--glass-sheen), var(--glass-fill);
  -webkit-backdrop-filter: var(--tier-blur);
  backdrop-filter: var(--tier-blur);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 10px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  min-height: var(--tap);
  box-shadow: var(--lg-spec);
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.slot-btn:hover:not(:disabled) {
  border-color: rgba(136, 221, 255, 0.4);
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: var(--lg-spec), var(--ice-halo);
}
.slot-btn.selected {
  background: var(--glass-sheen), var(--ice-glow);
  border-color: var(--ice);
  color: var(--ice-bright);
  box-shadow:
    var(--lg-spec),
    0 0 0 1px var(--ice),
    0 0 32px -8px rgba(136, 221, 255, 0.5),
    0 8px 22px -12px var(--ice-glow);
}
.slot-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
/* Layer A — arrival BUCKETS (Morning / Afternoon / Evening). Reuse .slot-btn glass +
   .selected state; .bucket-btn just stacks a label + a faint hour-range sub and
   gives each a roomier tap target than the old hourly pills. */
.bucket-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
}
.bucket-btn .bucket-label {
  font-family: var(--font-sans, inherit);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bucket-btn .bucket-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.62;
}
.slots-empty, .slots-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 16px;
  color: var(--txt-2);
  font-family: var(--font-ui);
  font-style: italic;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
}

/* ----------------------------------------------------------------------------
   FORM (Step 3)
---------------------------------------------------------------------------- */
.form { display: block; }
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.field-group {
  background: var(--glass-sheen), linear-gradient(180deg, rgba(16,23,38,.40), rgba(6,10,20,.50));
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  position: relative;             /* FIX 1 — host the absolutely-placed legend */
  padding: 46px 20px 12px;        /* FIX 1 — top reserved for the inset legend (was 22px) */
  margin-bottom: 20px;
  box-shadow: var(--lg-spec), 0 18px 50px -28px rgba(0, 0, 0, 0.7);
}
.field-group legend {
  /* FIX 1 — absolutely position the legend into the panel's reserved top
     padding so it reads as a clean section caption, clear of the top border.
     (Default UA layout sat it AT top:0, straddling the border line; a float
     pulled it off the border but shoved the grid field-rows sideways.) Absolute
     keeps it out of normal flow → zero disturbance to the fields below. The
     panel is position:relative with padding-top:46px to host it. */
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  width: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  padding: 0;
  margin: 0;
}
.vehicle-row {
  grid-template-columns: 90px 1fr 1fr;
}
.field-year { max-width: 100%; }

.field > label {
  /* FIX 1 — legend pulled out of this shared rule; it now owns its placement
     in `.field-group legend` above (floated section caption). This rule governs
     only the per-field micro-labels. */
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.optional {
  color: var(--text-mute);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  background: #0e1828;   /* lit slate (storefront --form-srf-2) — was near-black, read dim/dead */
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;       /* iOS form-zoom prevention */
  min-height: var(--tap);
  outline: none;
  /* lit-from-above field — subtle top inner-highlight + soft bottom shadow (not a dark recess) */
  box-shadow: inset 0 1px 0 rgba(190, 225, 255, 0.07), inset 0 -2px 4px rgba(0, 0, 0, 0.22);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ice);
  background: linear-gradient(180deg, rgba(6, 12, 22, 0.6), rgba(10, 18, 30, 0.46));
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.4),
    0 0 0 3px var(--ice-glow),
    0 0 24px -8px rgba(136, 221, 255, 0.4);
}
.field input.invalid,
.field textarea.invalid {
  border-color: var(--danger);
}
.field-error {
  font-family: var(--font-ui);
  font-style: italic;
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}

/* ----------------------------------------------------------------------------
   MAKE AUTOCOMPLETE COMBOBOX (Chunk 11 polish item 1)

   ARIA combobox: text input + absolutely-positioned listbox dropdown.
   Matches the Bug-C accordion ARIA-styled Eclipse look (bg #02030a / pure,
   ICE-blue border + highlight, #e8eef8 text). The input itself inherits
   .field input styling above; .combo just provides the positioning context
   and the dropdown chrome. Mobile: full-width list, >=44px tap targets.
---------------------------------------------------------------------------- */
.combo {
  position: relative;
}
.combo-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 4px;
  max-height: 264px;             /* ~6 options before scroll */
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(16,23,38,.62), rgba(6,10,20,.74));
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  box-shadow: var(--lg-spec), 0 12px 32px rgba(2, 3, 10, 0.7), 0 0 0 1px var(--ice-glow);
  -webkit-overflow-scrolling: touch;
}
.combo-list[hidden] { display: none; }
.combo-option {
  display: flex;
  align-items: center;
  min-height: var(--tap);         /* 44px tap target */
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);             /* #e8eef8 */
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
  transition: background .12s ease, color .12s ease;
}
.combo-option:hover {
  background: var(--bg-elevated);
  color: var(--ice-bright);
}
/* Roving active state — keyboard highlight via aria-selected. */
.combo-option[aria-selected="true"] {
  background: var(--ice-glow);
  color: var(--ice-bright);
  box-shadow: inset 0 0 0 1px var(--ice);
}
.combo-option .combo-match {
  color: var(--ice);
  font-weight: 600;
}

/* ----------------------------------------------------------------------------
   SUMMARY + CONFIRM (Step 4)
---------------------------------------------------------------------------- */
.summary {
  background: var(--glass-sheen), linear-gradient(180deg, rgba(16,23,38,.46), rgba(6,10,20,.58));
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  border: 1px solid var(--border-ice);
  border-radius: var(--lg-radius);
  padding: 26px 26px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lg-spec), 0 0 50px -24px rgba(136, 221, 255, 0.3), var(--lg-depth);
}
.summary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, var(--ice-glow), transparent 60%);
  pointer-events: none;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.summary-row .val {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text);
  text-align: right;
}
.summary-row.total .lbl {
  color: var(--ice);
}
.summary-row.total .val {
  font-family: var(--font-ui);
  font-size: 28px;
  color: var(--ice-bright);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.summary-row.deposit-row .val,
.summary-row.balance-row .val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
}

.deposit-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--glass-fill);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  font-family: var(--font-ui);
  font-style: italic;
  color: var(--txt-2);
  font-size: 14px;
}

.submit-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.10);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 12px;
  color: var(--danger);
  font-family: var(--font-ui);
  font-style: italic;
  font-size: 15px;
}

/* ----------------------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------------------- */
.btn-primary, .btn-ghost {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 14px;
  cursor: pointer;
  min-height: var(--tap);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease,
              border-color .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #b6ecff, #88ddff);
  color: #04111b;
  border: 1px solid var(--ice);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 30px -14px rgba(136, 221, 255, 0.6);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 16px 38px -14px rgba(136, 221, 255, 0.7),
    0 0 36px -10px rgba(136, 221, 255, 0.5);
}
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  background: var(--glass-sheen), rgba(10, 16, 28, 0.5);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
  color: var(--text);
  border: 1px solid var(--card-border);
  box-shadow: var(--lg-spec);
}
.btn-ghost:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.05);
  border-color: var(--ice);
  color: var(--ice);
}
.btn-ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ----------------------------------------------------------------------------
   SUCCESS SCREEN
---------------------------------------------------------------------------- */
.success {
  display: none;
  text-align: center;
  padding: 24px 0 0;
  animation: stepFade .6s ease;
}
.success.shown { display: block; }

.success-monolith {
  width: 4px;
  height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, transparent, var(--ice), transparent);
  box-shadow: 0 0 24px var(--ice-glow);
}
.success-title {
  font-family: var(--font-ui);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.success-sub {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--txt-2);
  margin-bottom: 28px;
}
.success-card {
  text-align: left;
  background: var(--glass-sheen), linear-gradient(180deg, rgba(16,23,38,.46), rgba(6,10,20,.58));
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  backdrop-filter: blur(22px) saturate(155%);
  border: 1px solid var(--border-ice);
  border-radius: var(--lg-radius);
  padding: 26px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--lg-spec), 0 0 50px -24px rgba(136, 221, 255, 0.3), var(--lg-depth);
}
.confirmation-id {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ice);
  padding: 10px 14px;
  border: 1px solid var(--border-ice);
  border-radius: 12px;
  background: var(--glass-fill);
}
.success-foot {
  margin-top: 32px;
  font-family: var(--font-ui);
  font-style: italic;
  color: var(--text-mute);
  font-size: 14px;
}

/* ----------------------------------------------------------------------------
   PAGE FOOT
---------------------------------------------------------------------------- */
.page-foot {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 12px 36px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.page-foot-mark {
  color: var(--ice);
  font-weight: 600;
}
.page-foot-sep { margin: 0 8px; }

/* ----------------------------------------------------------------------------
   MOBILE TUNING (≤ 480px)
---------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 36px 16px 64px; }
  .field-row { grid-template-columns: 1fr; }
  .vehicle-row { grid-template-columns: 78px 1fr 1fr; gap: 8px; }
  .stepper { gap: 4px; }
  .step-dot { padding: 8px 10px; font-size: 10px; letter-spacing: 1.5px; }
  .step-dot-lbl { display: none; }       /* show only the number on small screens */
  .services-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .summary-row .val { font-size: 16px; }
  .summary-row.total .val { font-size: 22px; }
}

/* ----------------------------------------------------------------------------
   ACCESSIBILITY — focus + reduced motion
---------------------------------------------------------------------------- */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .spotlight { display: none; }
}

/* ============================================================================
   A2P 10DLC CONSENT ROW (Step 3) — TCR campaign clearance.
   ----------------------------------------------------------------------------
   Optional, unchecked-by-default disclosure. Eclipse aesthetic: ICE-blue
   accent + glow on :checked. Entire row is a tap target (≥ 44px).
   ========================================================================= */
.consent-row {
  margin: 4px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
}

/* Visually hide the native checkbox while keeping it keyboard-focusable. */
.consent-checkbox-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 4px;
  min-height: var(--tap);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  color: var(--txt-2);
  user-select: none;
}

.consent-box {
  flex: 0 0 auto;
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-ice);
  border-radius: 4px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

/* Checkmark glyph — CSS-drawn (rotated box) to avoid font/emoji drift. */
.consent-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--ice);
  border-bottom: 2px solid var(--ice);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.consent-checkbox-native:checked + .consent-label .consent-box {
  border-color: var(--ice);
  background: var(--ice-glow);
}
.consent-checkbox-native:checked + .consent-label .consent-box::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

.consent-checkbox-native:focus-visible + .consent-label .consent-box {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
}

.consent-text {
  flex: 1 1 auto;
  min-width: 0;
}

.consent-link {
  color: var(--ice);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .18s ease;
}
.consent-link:hover,
.consent-link:focus-visible {
  color: var(--ice-bright);
}

@media (max-width: 480px) {
  .consent-label {
    font-size: 14px;
    gap: 10px;
  }
}

/* ============================================================================
   CHUNK 11 — Stripe Checkout return surface (canceled state)
============================================================================ */
.cancel-state {
  border-top: 1px solid rgba(248, 113, 113, 0.25);
  padding-top: 28px;
}
.cancel-state .hero-accent {
  color: var(--ice);
}
.cancel-state .success-foot {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 14px;
  font-style: italic;
}

/* ============================================================================
   CHUNK 11 — Step 4 deposit display polish
============================================================================ */
.summary-row.deposit-row .val {
  color: var(--ice-bright);
  font-weight: 600;
}
.summary-row.balance-row .val {
  color: var(--text);
}
.deposit-note {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(136, 221, 255, 0.04);
  border: 1px solid rgba(136, 221, 255, 0.18);
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-style: italic;
  color: var(--txt-2);
  line-height: 1.5;
}

/* ============================================================================
   CHUNK 11 — Mobile responsive sweep
   ----------------------------------------------------------------------------
   The page already adapts well at 375px via the existing grid + flex rules.
   These additions tighten the edge cases founder flagged: button stacking
   at narrow widths, dates-row left-edge gutter, success card padding, and
   field-row collapsing for the vehicle inputs.
============================================================================ */
@media (max-width: 480px) {
  /* BUG 2(b) fix — Day 1 live-verify 2026-05-27: Continue button clipped at
     bottom of viewport at 375px. iOS Safari's dynamic browser chrome (address
     bar + home indicator) overlaps `min-height: 100vh` content. Bumping
     bottom padding to 96px and honoring env(safe-area-inset-bottom) pushes
     the step-actions buttons clear of the dynamic chrome on iPhone X+ and
     PWA installs. Fallback 0px keeps the rule sane on non-iOS browsers. */
  .container {
    padding: 32px 16px 96px;
    padding-bottom: max(96px, calc(env(safe-area-inset-bottom, 0px) + 64px));
  }
  .hero {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .hero-meta {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .stepper {
    gap: 4px;
    margin-bottom: 28px;
  }
  .step-dot {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .step-dot-lbl {
    /* Only show step-number on the narrowest widths to avoid wrap */
    display: none;
  }
  .step-dot.active .step-dot-lbl {
    display: inline;
  }
  .step-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .step-actions .btn-primary,
  .step-actions .btn-ghost {
    width: 100%;
    min-height: 48px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* BUG 2 fix (Day 1 live-verify 2026-05-27): at <=480px the prior
     `1fr 1fr 1fr` rule blew Model off-screen because default <input>
     min-content exceeds the column allocation. Vertical stack +
     min-width:0 on the inputs eliminates overflow. */
  .vehicle-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vehicle-row .field input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .summary .lbl {
    font-size: 11px;
  }
  .summary .val {
    font-size: 15px;
  }
  .deposit-note {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/* Even tighter — older small phones (iPhone SE 1st gen ~320px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 30px;
  }
  .step-title {
    font-size: 20px;
  }
}

/* ============================================================================
   STEP 1 — SERVICES TWIN (Stage 1 rebuild)
   ----------------------------------------------------------------------------
   A direct twin of the storefront services page (index.html .ov / .svc-grid /
   .tier): a vehicle-size toggle that live-re-prices, then 5 big glass tier
   cards (Gold → Presidential → VIP Step 1 → Step 2 → Xtreme). Same tokens as
   the storefront (--lg-spec, --glass-sheen, gold-wash-over-navy, 18px radius,
   Inter/Mono). Replaces the old cramped tier-tab → drawer → size-row accordion.
   book-flow.mjs renders this markup; the downstream contract is unchanged.
============================================================================ */

/* Vehicle-size toggle — storefront veh-toggle twin (ICE-filled selected pill) */
.bk-veh {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 4px auto 6px;
}
.bk-veh-btn {
  font: 600 13px/1 var(--font-ui);
  letter-spacing: 0.02em;
  color: var(--txt-2);
  cursor: pointer;
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.5);
  border: 1px solid var(--card-border);
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.bk-veh-btn:hover {
  color: var(--white);
  border-color: rgba(136, 221, 255, 0.32);
}
.bk-veh-btn.on {
  color: #04111b;
  background: linear-gradient(180deg, var(--ice-bright), var(--ice));
  border-color: var(--ice);
  box-shadow: 0 0 22px rgba(136, 221, 255, 0.35);
}
.bk-veh-note {
  text-align: center;
  margin: 8px 0 2px;
  font: 400 12.5px/1.4 var(--font-ui);
  color: var(--ba);
  min-height: 1em;
}

/* The grid — storefront .svc-grid verbatim */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 24px;
  align-items: stretch;
}

/* Big tier card — storefront .tier liquid-glass card */
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  padding: 24px 22px 22px;
  isolation: isolate;
  background: var(--glass-sheen), var(--tier-fill);
  -webkit-backdrop-filter: var(--tier-blur);
  backdrop-filter: var(--tier-blur);
  border: 1px solid var(--card-border);
  box-shadow: var(--lg-spec), var(--tier-depth);   /* shared liquid-glass lit edge */
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--lg-spec), var(--tier-depth-hover);
}
.tier.ice { border-color: rgba(136, 221, 255, 0.28); }
.tier.ice:hover {
  border-color: rgba(136, 221, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--ice-halo), var(--tier-depth-hover);
}
.tier.gold {
  border-color: rgba(255, 209, 102, 0.34);
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.06), transparent 40%), rgba(10, 14, 24, 0.66);   /* gold-wash over NAVY */
}
.tier.gold:hover {
  border-color: rgba(255, 209, 102, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--gold-halo), var(--tier-depth-hover);
}
.tier.featured {
  border-color: rgba(255, 209, 102, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 40px -12px rgba(255, 209, 102, 0.45), 0 22px 56px -24px rgba(0, 0, 0, 0.85);
}

.tier .t-name {
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice);
}
.tier.gold .t-name { color: var(--ba); }

.tier .t-price {
  margin: 14px 0 2px;
  font: 300 40px/1 var(--font-ui);
  letter-spacing: -0.02em;
  color: var(--white);
}
.tier .t-price .cur {
  font-size: 22px;
  vertical-align: 14px;
  color: var(--txt-2);
  margin-right: 2px;
}
.tier .t-price--quote {
  font: 600 21px/1.1 var(--font-ui);
  letter-spacing: -0.01em;
  color: var(--txt-2);
}
.tier .t-price.is-flash { animation: bkPriceFlash 0.5s ease; }
.tier.gold .t-price.is-flash { animation: bkPriceFlashGold 0.5s ease; }
@keyframes bkPriceFlash { 0% { color: var(--ice); transform: translateY(-2px); } 100% { color: var(--white); transform: none; } }
@keyframes bkPriceFlashGold { 0% { color: var(--ba); transform: translateY(-2px); } 100% { color: var(--white); transform: none; } }

.tier .t-for {
  font: 400 12px/1.3 var(--font-ui);
  color: var(--txt-3);
}
.tier .t-hero-line {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font: 700 14px/1.3 var(--font-ui);
  color: var(--ba);
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.3);
}
.tier .t-hero-line2 {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.95;
}
.tier .t-hook {
  margin: 8px 0 0;
  font: 400 12px/1.45 var(--font-ui);
  font-style: italic;
  color: var(--txt-2);
}
.tier .t-ladder {
  margin: 16px 0 0;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.tier ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier li {
  position: relative;
  padding-left: 22px;
  font: 400 13.5px/1.45 var(--font-ui);
  color: var(--txt-2);
}
.tier li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ice), transparent 70%);
}
.tier.gold li::before { background: radial-gradient(circle, var(--ba), transparent 70%); }
.tier .t-spacer { flex: 1; }

/* Book / Select action — full-width CTA pinned at card bottom (after .t-spacer) */
.tier .t-book {
  margin-top: 18px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font: 600 14px/1 var(--font-ui);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #04111b;
  background: linear-gradient(180deg, var(--ice-bright), var(--ice));
  border: 1px solid var(--ice);
  box-shadow: 0 12px 30px -14px rgba(136, 221, 255, 0.6);
  min-height: var(--tap);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.tier .t-book svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tier.gold .t-book {
  color: #1a1305;
  background: linear-gradient(135deg, #f7e08a, #ffd166 45%, #c79a36);
  border-color: rgba(255, 238, 170, 0.8);
  box-shadow: 0 12px 30px -14px rgba(212, 169, 63, 0.6);
}
.tier .t-book:hover { transform: translateY(-2px); filter: brightness(1.05); }
.tier .t-book:active,
.tier .t-book.is-selecting { transform: translateY(0) scale(0.99); filter: brightness(1.08); }
/* quote fallback — neutral ghost (honest "no online price for this size yet") */
.tier .t-book--quote {
  color: var(--white);
  background: rgba(10, 16, 28, 0.5);
  border-color: var(--card-border);
  box-shadow: none;
}
.tier.gold .t-book--quote { color: var(--white); background: rgba(10, 16, 28, 0.5); border-color: var(--card-border); }
.tier .t-book--quote:hover { filter: none; border-color: rgba(136, 221, 255, 0.4); }

.tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font: 800 10px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #04111b;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ice-bright), var(--ice));
  box-shadow: 0 6px 18px -6px rgba(136, 221, 255, 0.6);
}
.tier.featured .tier-badge,
.tier.gold .tier-badge {
  color: #1a1305;
  background: linear-gradient(180deg, #f7e08a, var(--ba));
  box-shadow: 0 6px 18px -6px rgba(212, 169, 63, 0.6);
}

/* Narrow screens — one column, slightly tighter card padding */
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .tier { padding: 22px 18px 20px; }
  .tier .t-price { font-size: 36px; }
}

/* ============================================================================
   ECLIPSE GRAFT — BACKDROP-FILTER FALLBACK
   ----------------------------------------------------------------------------
   Browsers without backdrop-filter support can't blur the void behind a glass
   surface, so the semi-transparent fills read as washed-out. Swap to a more
   opaque solid fill on those engines so cards/panels stay legible and on-brand.
============================================================================ */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .service-card,
  .summary,
  .success-card,
  .field-group {
    background: #0c1322;
  }
  .tier,
  .combo-list {
    background: #0e1626;
  }
  /* gold tier keeps its warm tone even without blur support */
  .tier.gold {
    background: linear-gradient(180deg, rgba(36, 30, 14, 0.92), rgba(12, 16, 26, 0.96));   /* gold-tint over navy, opaque (no-blur fallback) */
  }
  .field input,
  .field textarea,
  .date-pill,
  .slot-btn,
  .skeleton-card {
    background: #0a121f;
  }
  .btn-ghost {
    background: #0a101c;
  }
}

/* FORM-WIDTH CAP — .container was widened to 1080 so the Step-1 tier grid can
   breathe like the storefront. Keep the reading content (form fieldsets, summary,
   success card, action rows) at a comfortable ~760 measure so ONLY the tier grid
   uses the extra width. margin-left/right auto centers them; vertical margins
   (margin-bottom etc.) on those rules are untouched. */
.field-group,
.summary,
.success-card,
.step-actions {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

