:root {
  --bg: #f4f2fa;
  --bg-2: #ebe7f6;
  --bg-outer: #ebe7f6;
  --ink: #2b1f5e;
  --ink-2: #4a3f7a;
  --muted: #7c74a0;
  --line: #dcd6ee;
  --line-strong: #c9c1e6;
  --card: #fdfcfa;
  --card-2: #f6f2fe;
  --white: #ffffff;
  --lavender: #e5dff4;
  --lavender-2: #ece7f8;
  --purple: #6b4fbf;
  --purple-deep: #2b1f5e;
  --gold: #f7c948;
  --gold-2: #e5ad1f;
  --red: #d9385a;
  --coral: #d9385a;
  --coral-2: #e85c7a;
  --rose: #fbe8ee;
  --rose-2: #f8dbe4;
  --green: #2f9e6b;
  --green-2: #e3f4ea;
  --green-soft: #e3f4ea;
  --orange: #f0993a;
  --pink: #fbe8ee;
  --pink-2: #f8dbe4;
  --disabled: #b9afdd;
  --track: #e5dff4;
  --verified: #2f9e6b;
  --star: #e5ad1f;
  --cream: #fdfcfa;
  --cream-2: #f6f2fe;
  --shadow-sm: 0 1px 0 rgba(43, 31, 94, 0.04), 0 6px 16px rgba(43, 31, 94, 0.06);
  --shadow-md: 0 10px 28px rgba(43, 31, 94, 0.1);
  --shadow-cta: 0 12px 26px rgba(43, 31, 94, 0.28);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-card: 16px;
  --radius-btn: 999px;
  --display: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --body: "Figtree", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --app: 480px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg-outer);
  background-image:
    radial-gradient(900px 420px at 50% -120px, rgba(139, 111, 224, 0.16), transparent 70%),
    radial-gradient(600px 300px at 100% 20%, rgba(247, 201, 72, 0.1), transparent 70%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
button, input { font-family: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; touch-action: manipulation; }
img { max-width: 100%; display: block; }
p { margin: 0; }
strong { font-weight: 700; }

.app {
  width: min(100%, var(--app));
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 760px) {
  body {
    padding: 20px 16px;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .app {
    min-height: 720px;
    height: min(844px, calc(100dvh - 40px));
    max-height: calc(100dvh - 40px);
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(43, 31, 94, 0.14);
    overflow: hidden;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  background: var(--bg);
  padding: 8px 20px 0;
}
.topbar-row {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  height: 48px;
}
.back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink-2);
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.back:hover { background: rgba(43, 31, 94, 0.06); }
.back[hidden] { visibility: hidden; pointer-events: none; }
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark { width: 20px; height: 20px; }
.logo-word {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
}
.progress {
  height: 4px;
  background: var(--lavender);
  border-radius: 99px;
  margin: 2px 0 0;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  border-radius: inherit;
  transition: width 0.6s var(--ease);
}
.progress[hidden], .topbar.is-bare .progress { display: none; }

.view {
  flex: 1;
  overflow: auto;
  padding: 22px 20px 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.view::-webkit-scrollbar { display: none; }
.view.is-cta-pad { padding-bottom: 124px; }
#view > section { animation: rise 0.38s var(--ease) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.footer-cta {
  position: sticky;
  bottom: 0;
  z-index: 9;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 62%, rgba(244, 242, 250, 0));
}
.footer-cta[hidden] { display: none; }

.btn {
  width: 100%;
  min-height: 58px;
  border-radius: var(--radius-btn);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.99); }
.btn-primary {
  background: var(--ink);
  color: var(--gold);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(43, 31, 94, 0.32); }
.btn-primary:disabled,
.btn-disabled {
  background: var(--disabled);
  color: var(--white);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.btn:focus-visible { outline: 3px solid rgba(107, 79, 191, 0.5); outline-offset: 3px; }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  min-height: 44px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.25);
}
.badge.done {
  background: var(--green-2);
  color: var(--green);
  letter-spacing: 0.04em;
}
.badge.done::before {
  background: var(--green);
  box-shadow: none;
}
.badge-row { display: flex; justify-content: center; }

.h1 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.18;
  text-align: center;
  color: var(--ink);
  text-wrap: balance;
}
.h1.question {
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
}
.h1.left, .h2.left { text-align: left; }
[data-screen="landing"] .h1 { font-size: 30px; margin-top: 6px; }
.hl { color: var(--red); }
.lead {
  margin: 14px auto 0;
  max-width: 38ch;
  text-align: center;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}
.helper {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0;
}
.stack { display: grid; gap: 18px; }
.mt-8 { margin-top: 8px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-22 { margin-top: 22px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.chip {
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.note {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px 18px 16px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

.options { display: grid; gap: 14px; margin-top: 26px; }
.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 18px;
  min-height: 64px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  animation: rise 0.4s var(--ease) both;
}
.opt:nth-child(1) { animation-delay: 40ms; }
.opt:nth-child(2) { animation-delay: 90ms; }
.opt:nth-child(3) { animation-delay: 140ms; }
.opt:nth-child(4) { animation-delay: 190ms; }
.opt:nth-child(5) { animation-delay: 240ms; }
.opt:nth-child(6) { animation-delay: 290ms; }
.opt:nth-child(7) { animation-delay: 340ms; }
.opt:nth-child(8) { animation-delay: 390ms; }
@media (hover: hover) {
  .opt:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
}
.opt:active { transform: scale(0.985); }
.opt:focus-visible { outline: 3px solid rgba(107, 79, 191, 0.45); outline-offset: 2px; }
.opt.is-selected {
  border-color: var(--ink);
  background: var(--card-2);
  box-shadow: 0 0 0 3px rgba(43, 31, 94, 0.08), var(--shadow-md);
}
.opt-mark {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #b7addb;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: background 0.15s, border-color 0.15s;
}
.opt.is-multi .opt-mark { border-radius: 6px; }
.opt.is-selected .opt-mark {
  background: var(--ink);
  border-color: var(--ink);
}
.opt-mark svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.15s;
}
.opt.is-multi.is-selected .opt-mark svg { opacity: 1; transform: scale(1); }
.opt:not(.is-multi) .opt-mark svg { display: none; }
.opt:not(.is-multi).is-selected .opt-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}
.opt-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.opt-title {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink);
}
.opt-sub {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 16px;
}
.stars { color: var(--star); letter-spacing: 1px; font-size: 0.95rem; }
.reviews {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 40px;
}
.review {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.review h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0;
  color: var(--ink);
}
.review p { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lavender-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--display);
}
.who { font-weight: 700; font-size: 0.86rem; }
.meta { color: var(--muted); font-size: 0.75rem; font-weight: 600; }
.verified {
  margin-left: auto;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green-2);
  padding: 4px 8px;
  border-radius: 999px;
}

.prose { color: var(--ink-2); font-size: 15.5px; font-weight: 500; line-height: 1.6; }
.prose p + p { margin-top: 12px; }
.prose strong { color: var(--ink); font-weight: 700; }
.callout {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
}
.layer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.layer-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: var(--shadow-sm);
}
.layer-card h3 {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 8px 0 4px;
  color: var(--ink);
}
.layer-card p { font-size: 0.75rem; color: var(--ink-2); font-weight: 500; line-height: 1.35; }
.icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--lavender-2);
  color: var(--ink);
}
.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 8px 0 4px;
  background: var(--lavender-2);
  border: 1.5px solid rgba(139, 111, 224, 0.18);
}
.hero-art img { width: 100%; height: 220px; object-fit: cover; object-position: center 20%; }
.layers-art img { width: 100%; height: 210px; object-fit: cover; object-position: center; }

.loader-wrap { text-align: center; padding-top: 28px; }
.ring {
  width: 132px;
  height: 132px;
  margin: 8px auto 14px;
  position: relative;
}
.ring svg { width: 132px; height: 132px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 8; }
.ring .track { stroke: var(--lavender); }
.ring .val {
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 0.08s linear;
}
.ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.loader-msg {
  color: var(--ink-2);
  font-weight: 500;
  min-height: 48px;
  padding: 0 12px;
  font-size: 15.5px;
}

.field { display: grid; gap: 8px; margin-top: 20px; margin-bottom: 0; }
.field label { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.field input {
  width: 100%;
  height: 56px;
  min-height: 56px;
  border: 1.5px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input::placeholder { color: #a79fc6; }
.field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(43, 31, 94, 0.1);
}
.field.is-invalid input {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 56, 90, 0.12);
}
.field .error {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  min-height: 0;
}
.capture-body {
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  margin: 14px 0 8px;
}
.capture-body + .field,
.field { text-align: left; }
.capture-body p + p { margin-top: 10px; }

.profile-card { margin-top: 6px; padding-bottom: 12px; }
.profile-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 18px 0 16px;
  border: 1.5px solid rgba(139, 111, 224, 0.18);
}
.profile-art img { width: 100%; height: 230px; object-fit: cover; object-position: center 18%; }
.profile-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.layer-name {
  text-align: center;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--red), #b04bc0 60%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.spectrum { margin: 22px 8px 8px; padding-top: 8px; }
.spectrum-bar {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4cc38a 0%, #f2d05a 38%, #f0993a 68%, var(--red) 100%);
  position: relative;
}
.spectrum-knob {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(43, 31, 94, 0.25);
}
.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.explain {
  background: var(--rose);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 22px 0;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.6;
}
.explain strong { color: var(--ink); }
.stats { display: grid; gap: 10px; margin: 8px 0 18px; }
.stat {
  background: var(--lavender-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  box-shadow: none;
}
.stat small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.stat b { font-size: 15.5px; letter-spacing: 0; color: var(--red); font-weight: 700; }
.stat.pink { background: var(--rose); }
.stat.lilac { background: var(--lavender-2); }
.stat.lilac b { color: var(--purple); }
.stat.blue { background: #eef2fb; }
.stat.blue b { color: var(--purple); }
.stat.mint { background: var(--green-2); }
.stat.mint b { color: var(--green); }
.stat .icon-bubble { background: var(--white); width: 40px; height: 40px; border-radius: 12px; font-size: 20px; }

.block-title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 32px 0 14px;
  text-wrap: balance;
}
.list {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 16px 8px;
  box-shadow: var(--shadow-sm);
}
.list-item, .check-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.x, .ok {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.x { background: var(--rose-2); color: var(--red); }
.ok { background: var(--green-2); color: var(--green); }
.check-wrap {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 16px 12px;
  box-shadow: var(--shadow-sm);
}

.path-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 16px 10px;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.path-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
}
.chart { width: 100%; height: 168px; margin: 8px 0 6px; }
.legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.swatch {
  display: inline-block;
  width: 18px;
  height: 3px;
  border-radius: 99px;
  margin-right: 6px;
  vertical-align: middle;
}
.swatch.solid { background: var(--ink); }
.swatch.dash { background: linear-gradient(90deg, #b7adc8 50%, transparent 50%); background-size: 8px 3px; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin: 10px 0;
  box-shadow: var(--shadow-sm);
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--lavender-2);
  font-size: 1.1rem;
}
.step small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 4px;
}
.step b {
  display: block;
  font-family: var(--display);
  font-size: 15.5px;
  letter-spacing: 0;
  margin-bottom: 4px;
  font-weight: 700;
}
.step p { color: var(--ink-2); font-size: 13.5px; font-weight: 500; }
.goal {
  background: linear-gradient(150deg, #2b1f5e 0%, #3d2f85 60%, #4b3a95 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  margin: 12px 0 8px;
  box-shadow: var(--shadow-cta);
}
.goal small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11.5px;
  opacity: 1;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.goal b {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-weight: 700;
}

.limit {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  margin: 16px 0 18px;
  text-align: center;
}
.closing {
  text-align: center;
  padding: 28px 8px 12px;
}
.closing h2 { margin-bottom: 10px; }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.app.is-cover {
  background: #1a1410;
}
.app.is-cover .topbar { display: none; }
.app.is-cover .view,
.app.is-cover .view.is-cta-pad {
  padding: 0;
  overflow: hidden;
}

.cover {
  position: relative;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 62%;
}
.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 10, 0.58) 0%, rgba(18, 12, 10, 0.28) 26%, rgba(18, 12, 10, 0.22) 48%, rgba(18, 12, 10, 0.62) 78%, rgba(18, 12, 10, 0.78) 100%);
}
.cover-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 20px 40px;
  text-align: center;
}
.cover-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  margin-bottom: 22px;
}
.cover-logo .logo-mark { width: 22px; height: 22px; }
.cover-logo .logo-word {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
}
.cover-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  background: rgba(22, 16, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.cover-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8b54a;
  box-shadow: 0 0 0 3px rgba(232, 181, 74, 0.22);
}
.cover-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 6.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: #fff;
  max-width: 100%;
  width: 100%;
}
.cover-title .hl {
  display: block;
  color: #e8a4aa;
  font-weight: 800;
  font-style: normal;
  margin: 0.08em 0;
}
.cover-sub {
  margin-top: 16px;
  max-width: 28ch;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}
.cover-cta {
  margin-top: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 6px 6px 6px 22px;
  border: 0;
  border-radius: 999px;
  background: #f3ebe3;
  color: #1c1614;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 28px rgba(12, 8, 6, 0.28);
}
.cover-cta:active { transform: scale(0.99); }
.cover-cta-arrow {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c97a86;
  color: #fff;
  display: grid;
  place-items: center;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (min-width: 640px) {
  .h1 { font-size: 30px; }
  .h1.question { font-size: 25px; }
}

@media (max-width: 360px) {
  .view { padding-left: 16px; padding-right: 16px; }
  .app.is-cover .view { padding: 0; }
  .h1 { font-size: 24px; }
  .h1.question { font-size: 21px; }
  .cover-title { font-size: 1.55rem; }
}
