/* /start — "Focus profile" pre-login funnel, v5.
   Design language studied live from Mobbin (Lime's account): Opal's
   onboarding (our domain twin: pure warm-black field, giant centered type,
   one element per screen, list rows, giant slider readout, preparing-report
   bar, "get back 8 years" payoff stats), Tolan's glowing hero object,
   Life Reset's warm-black + orange, FocusFlight's ticket. Palette from
   styles.css; the popup hero is the real product PNG. */

.start-body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(1100px 560px at 50% -180px, rgba(217, 119, 87, 0.1), transparent 65%),
    radial-gradient(900px 420px at 50% 112%, rgba(217, 119, 87, 0.05), transparent 70%),
    var(--surface);
}

.start-top {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px 0;
}
.start-top .logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}
.start-top .logo img { width: 100%; height: 100%; display: block; }

/* segmented progress, centered */
.sv-progress { display: flex; gap: 6px; flex: 1; max-width: 340px; margin: 0 auto; }
.sv-progress span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  position: relative;
}
.sv-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sv-progress span.done::after { transform: scaleX(1); }

.start-quit {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 13px;
  flex: none;
  padding: 12px 8px;
  margin: -12px -8px;
}
.start-quit:hover { color: var(--ink); }

/* ---- stage: one centered column, Opal-style full-bleed field ---- */
.start-stage {
  width: 100%;
  max-width: 560px;
  padding: 12px 24px 44px;
  min-height: calc(100dvh - 92px);
  display: flex;
  flex-direction: column;
}

.sv-step { display: none; }
.sv-step.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: safe center;
}
.sv-step > * { width: 100%; }

.sv-title {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
  text-align: center;
  text-wrap: balance;
}
.sv-title--xl { font-size: clamp(34px, 3.4vw, 50px); }
.sv-title em { font-style: normal; color: var(--coral); }
.sv-sub {
  color: rgba(253, 251, 248, 0.58);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 auto 34px;
  text-align: center;
  text-wrap: pretty;
  max-width: 42ch;
}
.sv-sub b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* the picked tool's icon, inlined into question titles */
.sv-tool { white-space: nowrap; }
.sv-tool-ic {
  display: inline-flex;
  vertical-align: -0.11em;
  width: 0.82em;
  height: 0.82em;
  margin-right: 0.2em;
}
.sv-tool-ic svg { width: 100%; height: 100%; }
.sv-tool-ic[hidden] { display: none; }

/* ---- hook hero: the real popup floating with a coral glow ---- */
.sv-hero {
  display: flex;
  justify-content: center;
  padding: 26px 0 34px;
  position: relative;
}
.sv-hero::before {
  content: "";
  position: absolute;
  inset: -10% 4%;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.16), transparent 72%);
  pointer-events: none;
}
.sv-hero-pop {
  position: relative;
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.js .sv-hero-pop { animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- option lists: Opal rows ---- */
.sv-list { display: flex; flex-direction: column; gap: 9px; }

.sv-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  padding: 15px 17px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.sv-opt:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-1px); }
.sv-opt:active { transform: scale(0.98); }
.sv-opt.picked {
  border-color: var(--coral);
  background: rgba(217, 119, 87, 0.1);
}
.sv-opt > svg { width: 21px; height: 21px; flex: none; color: var(--ink-dim); }
.sv-opt-aside { color: var(--ink-dim); font-weight: 400; }

/* per-row entrance: each row is its own beat */
.js .sv-list .sv-opt { opacity: 0; transform: translateY(14px); }
.js .sv-step.active .sv-list .sv-opt {
  animation: svIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
.js .sv-step.leaving .sv-list .sv-opt { animation: svOut 0.17s ease forwards; }

.sv-main-tag {
  margin-left: auto;
  flex: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid rgba(217, 119, 87, 0.45);
  border-radius: 999px;
  padding: 3px 9px;
}
.sv-main-tag + .sv-radio { margin-left: 10px; }

/* trailing radio: hairline circle, fills coral with a check on pick */
.sv-radio {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.sv-radio svg {
  width: 12px;
  height: 12px;
  color: var(--surface);
  opacity: 0;
  transform: scale(0.25);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.sv-opt.picked .sv-radio { background: var(--coral); border-color: var(--coral); }
.sv-opt.picked .sv-radio svg { opacity: 1; transform: scale(1); }

/* ---- slider step: Opal's giant readout + steppers ---- */
.sv-slider-wrap { margin: 6px 0 0; text-align: center; }
.sv-slider-value {
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
  min-height: 60px;
  color: var(--ink);
}
.sv-slider-row { display: flex; align-items: center; gap: 16px; }
.sv-stepper {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.15s ease, transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.sv-stepper:hover { background: rgba(255, 255, 255, 0.1); }
.sv-stepper:active { transform: scale(0.94); }
.sv-stepper svg { width: 15px; height: 15px; }
input[type="range"].sv-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--coral) 0%, var(--coral) var(--fill, 0%), rgba(255, 255, 255, 0.1) var(--fill, 0%));
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex: 1;
}
input[type="range"].sv-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  cursor: grab;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
input[type="range"].sv-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"].sv-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  cursor: grab;
}
.sv-range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-size: 12.5px;
  margin: 12px 56px 26px;
}
.sv-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(217, 119, 87, 0.35);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.sv-live[hidden] { display: none; }
.sv-live svg { width: 15px; height: 15px; color: var(--coral); flex: none; }
.sv-live b { color: var(--ink); font-variant-numeric: tabular-nums; }
.js .sv-live:not([hidden]) { animation: svPop 0.3s cubic-bezier(0.2, 0, 0, 1) both; }
@keyframes svPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- the build moment: Opal's preparing-report bar ---- */
.sv-build { display: flex; flex-direction: column; gap: 22px; text-align: left; }
.sv-build-title { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; }
.sv-build-dots i { animation: dotBlink 1.2s infinite; }
.sv-build-dots i:nth-child(2) { animation-delay: 0.2s; }
.sv-build-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink { 0%, 60%, 100% { opacity: 0.2; } 30% { opacity: 1; } }
.sv-build-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.sv-build-bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, #ffb454, var(--coral));
}
.sv-build-lines { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-top: 4px; }
.sv-build-lines span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dim);
  opacity: 0.25;
  transform: translateY(6px);
  transition: opacity 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sv-build-lines span.on { opacity: 1; color: var(--ink); transform: none; }
.bl-tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.bl-tick svg { width: 11px; height: 11px; color: var(--surface); opacity: 0; transition: opacity 0.2s ease; }
.sv-build-lines span.on .bl-tick { background: var(--coral); border-color: var(--coral); }
.sv-build-lines span.on .bl-tick svg { opacity: 1; }

/* ---- payoff: Opal's "get back 8 years" stat rows ---- */
.fp-stats { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 8px 0 30px; }
.js .fp-stats li { opacity: 0; transform: translateY(14px); }
.js .sv-step.active .fp-stats li {
  animation: svIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
.fp-stats li { display: flex; align-items: flex-start; gap: 15px; text-align: left; }
.fp-stat-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(217, 119, 87, 0.12);
  color: var(--coral);
  display: grid;
  place-items: center;
}
.fp-stat-ic svg { width: 20px; height: 20px; }
.fp-stat-txt { display: flex; flex-direction: column; gap: 3px; }
.fp-stat-txt b { font-size: 16.5px; font-weight: 700; letter-spacing: -0.014em; font-variant-numeric: tabular-nums; }
.fp-stat-txt small { font-size: 13.5px; color: rgba(253, 251, 248, 0.55); line-height: 1.45; }

.fp-report {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 22px 16px;
  margin-bottom: 12px;
}
.fp-graphwrap { position: relative; margin-bottom: 8px; }
.fp-graph { width: 100%; height: 104px; display: block; }
.js .fp-graph .fp-area { opacity: 0; }
.js .fp-graph .fp-goal { opacity: 0; }
.js .fp-graph.draw .fp-line-with {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: fpDraw 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.js .fp-graph.draw .fp-area { animation: fpFade 0.7s ease 0.7s forwards; }
.js .fp-graph.draw .fp-goal { animation: svPop 0.35s cubic-bezier(0.2, 0, 0, 1) 1.15s both; }
@keyframes fpDraw { to { stroke-dashoffset: 0; } }
@keyframes fpFade { to { opacity: 1; } }
.fp-pill {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
  background: var(--panel);
  border: 1px solid var(--ring);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.fp-pill b { color: var(--ink); }
.fp-pill--start { left: 0; bottom: 2px; }
.fp-pill--end { right: 0; top: -6px; color: var(--ink); border-color: rgba(217, 119, 87, 0.45); }
.fp-axis {
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.sv-calc {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px 22px;
  text-align: center;
}
.sv-calc-label { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); margin-bottom: 15px; }
.sv-calc-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.sv-calc-row input[type="range"] { margin: 0; flex: 1; }
.sv-rate-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  padding-left: 12px;
}
.sv-rate-cur { color: var(--ink-dim); font-size: 14px; }
.sv-rate-wrap:focus-within { border-color: rgba(253, 251, 248, 0.25); }
.sv-rate {
  background: none;
  border: none;
  width: 68px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  padding: 10px 12px 10px 2px;
  margin: 0;
  outline: none;
  text-align: right;
}
.sv-money {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--coral);
  line-height: 1;
}

/* ---- the live demo ---- */
.demo-stage {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 26px;
}
.demo-stage::before {
  content: "";
  position: absolute;
  inset: -6% 0;
  background: radial-gradient(closest-side, rgba(217, 119, 87, 0.12), transparent 72%);
  pointer-events: none;
}
/* the popup, rebuilt with the app renderer's own values */
.demo-pop {
  position: relative;
  width: min(100%, 500px);
  background: var(--surface);
  border-radius: 28px;
  padding: 22px 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.38),
    0 28px 72px rgba(0, 0, 0, 0.32);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.js .demo-pop { opacity: 0; }
.js .demo-pop.in { animation: demoDrop 520ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes demoDrop {
  from { opacity: 0; transform: translateY(-64px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.demo-pop[hidden] { display: none; }
.demo-chunk { opacity: 0; transform: translateY(7px); }
.js .demo-pop.in .demo-chunk {
  opacity: 1;
  transform: none;
  transition: opacity 0.34s cubic-bezier(0.2, 0, 0, 1), transform 0.34s cubic-bezier(0.2, 0, 0, 1);
}
.js .demo-pop.in .demo-chunk:nth-child(2) { transition-delay: 70ms; }
.js .demo-pop.in .demo-chunk:nth-child(3) { transition-delay: 140ms; }
.demo-pop-head { display: flex; align-items: center; gap: 12px; min-height: 28px; }
.demo-spark { position: relative; display: grid; place-items: center; width: 16px; height: 16px; color: var(--coral); flex: none; }
.demo-spark svg { position: relative; z-index: 1; width: 100%; height: 100%; }
.demo-spark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.3;
  animation: demoRing 2s ease-out infinite;
}
@keyframes demoRing {
  0% { transform: scale(1); opacity: 0.35; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
.demo-pop-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.demo-pop-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.6);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 5px 11px;
  flex: none;
}
.demo-chip {
  margin-left: auto;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(253, 251, 248, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex: none;
}
.demo-chip svg { width: 13px; height: 13px; }
.demo-close {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(253, 251, 248, 0.6);
  cursor: pointer;
  flex: none;
  transition: background-color 0.14s ease-out, color 0.14s ease-out, transform 0.14s ease-out;
}
.demo-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--ink); }
.demo-close:active { transform: scale(0.96); }
.demo-close > svg:first-of-type { position: absolute; inset: 0; transform: rotate(-90deg); pointer-events: none; }
.demo-close-x { width: 12px; height: 12px; }
.demo-pop-body {
  font-size: 15.5px;
  color: rgba(253, 251, 248, 0.85);
  line-height: 1.55;
  letter-spacing: -0.008em;
  text-wrap: pretty;
}
.demo-pop-reply { display: flex; gap: 8px; }
.demo-pop-reply[hidden] { display: none; }
.demo-pop-reply input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-family: inherit;
  padding: 10px 15px;
  margin: 0;
  outline: none;
}
.demo-pop-reply input:focus { border-color: rgba(217, 119, 87, 0.5); }
.demo-send {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--coral);
  color: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.15s ease, transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.demo-send:hover { filter: brightness(1.06); }
.demo-send:active { transform: scale(0.96); }
.demo-send svg { width: 16px; height: 16px; }
.demo-pop-sent {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.demo-pop-sent[hidden] { display: none; }
.demo-pop-sent svg { width: 15px; height: 15px; color: var(--coral); flex: none; }
.js .demo-pop-sent:not([hidden]) { animation: svPop 0.3s cubic-bezier(0.2, 0, 0, 1) both; }

/* ---- claim: the ticket (FocusFlight anatomy, honest version) ---- */
.sv-ticket {
  position: relative;
  background: #161412;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 18px 44px rgba(0, 0, 0, 0.4);
  margin: 0 auto 26px;
  max-width: 420px;
  overflow: hidden;
  text-align: center;
}
.sv-ticket-top { display: flex; flex-direction: column; gap: 6px; padding: 26px 28px 22px; }
.sv-ticket-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.sv-ticket-hero {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--coral);
  line-height: 1.05;
}
.sv-ticket-sub { font-size: 13.5px; color: rgba(253, 251, 248, 0.6); }
/* perforation with side notches */
.sv-ticket-perf {
  position: relative;
  height: 0;
  border-top: 1.5px dashed rgba(217, 119, 87, 0.35);
  margin: 0 14px;
}
.sv-ticket-perf::before,
.sv-ticket-perf::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.sv-ticket-perf::before { left: -24px; }
.sv-ticket-perf::after { right: -24px; }
.sv-ticket-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px 20px;
}
.sv-ticket-barcode { display: flex; align-items: stretch; gap: 3px; height: 26px; flex: 1; max-width: 220px; }
.sv-ticket-barcode i { flex: 1; background: rgba(253, 251, 248, 0.35); }
.sv-ticket-barcode i:nth-child(3n) { flex: 2; }
.sv-ticket-barcode i:nth-child(4n) { background: rgba(253, 251, 248, 0.18); }
.sv-ticket-free {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--coral);
}

.sv-dl-row { display: flex; gap: 10px; margin-bottom: 16px; }
.sv-dl {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--coral);
  border: none;
  border-radius: 999px;
  color: var(--surface);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 17px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.sv-dl:hover { filter: brightness(1.06); }
.sv-dl:active { transform: scale(0.97); }
.sv-dl svg { width: 17px; height: 17px; }
.sv-dl--soon {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--ink-dim);
  cursor: default;
}
.sv-dl--soon:hover { filter: none; }
.sv-dl--soon:active { transform: none; }
.sv-dl-note { color: var(--ink-dim); font-size: 13.5px; text-align: center; }
.sv-dl-note a { color: var(--coral); text-decoration: none; }
.sv-dl-note a:hover { text-decoration: underline; }

.cl-steps { list-style: none; margin: 10px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.cl-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: left;
}
.cl-num {
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(217, 119, 87, 0.14);
  color: var(--coral);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.js .sv-checklist.in li { opacity: 0; transform: translateY(10px); animation: svIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--d, 0ms); }

/* ---- step footer: primary full-width pill + quiet back under ---- */
.sv-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding-top: 30px;
}
.sv-next {
  width: 100%;
  justify-content: center;
  background: var(--coral);
  color: var(--surface);
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  padding: 18px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: filter 0.15s ease, transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.sv-next:hover { filter: brightness(1.06); }
.sv-next:active { transform: scale(0.97); }
.sv-next[hidden] { display: none; }
.sv-next:disabled {
  background: rgba(255, 255, 255, 0.055);
  color: rgba(253, 251, 248, 0.3);
  cursor: default;
  filter: none;
}
.sv-next:disabled:active { transform: none; }
.sv-next--big { font-size: 16.5px; }
.sv-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--ink-dim);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 13px 18px;
}
.sv-back:hover { color: var(--ink); }
.sv-back[hidden] { display: none; }

/* ---- entrance + exit motion ---- */
.js .sv-anim { opacity: 0; transform: translateY(14px); }
.js .sv-step.active .sv-anim {
  animation: svIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes svIn { to { opacity: 1; transform: none; } }
.js .sv-step.leaving .sv-anim { animation: svOut 0.17s ease forwards; }
@keyframes svOut { to { opacity: 0; transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  .js .sv-anim, .js .sv-list .sv-opt, .js .fp-stats li { opacity: 1; transform: none; animation: none; }
  .sv-progress span::after { transition: none; }
  .js .sv-hero-pop { animation: none; }
  .js .demo-pop { opacity: 1; transform: none; }
  .js .fp-graph .fp-area, .js .fp-graph .fp-goal { opacity: 1; }
  .js .fp-graph.draw .fp-line-with { animation: none; stroke-dashoffset: 0; }
  .js .sv-checklist.in li { animation: none; opacity: 1; transform: none; }
  .js .sv-live:not([hidden]), .js .demo-pop-sent:not([hidden]) { animation: none; }
  .sv-build-dots i { animation: none; }
}

/* keyboard focus */
.sv-opt:focus-visible,
.sv-next:focus-visible,
.sv-back:focus-visible,
.sv-dl:focus-visible,
.start-quit:focus-visible,
.demo-send:focus-visible,
.sv-stepper:focus-visible,
input[type="range"].sv-range:focus-visible,
.sv-rate:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ---- small screens ---- */
@media (max-width: 560px) {
  .start-stage { padding: 8px 20px 36px; }
  .sv-title { font-size: 27px; }
  .sv-title--xl { font-size: 31px; }
  .sv-range-labels { margin: 12px 0 26px; }
  .sv-dl-row { flex-direction: column; }
  .sv-ticket-perf::before { left: -23px; }
  .sv-ticket-perf::after { right: -23px; }
}
