/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #080808;
  color: #fff;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── VARIABLES ─── */
:root {
  --y: #ffd700;
  --y2: #e6c200;
  --y-dim: rgba(255, 215, 0, 0.1);
  --y-glow: rgba(255, 215, 0, 0.22);
  --surface: #111111;
  --border: #1e1e1e;
  --muted: #555;
  --green: #22c55e;
  --max: 420px;
}

/* ─── LAYOUT ─── */
#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

/* ─── PROGRESS BAR ─── */
#pbar-wrap {
  display: none;
  width: 100%;
  padding: 10px 20px 10px;
  background: #080808;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 58px; /* sits below the 58px book header */
  z-index: 50;
}
#pbar-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#pbar-track {
  height: 3px;
  background: #1a1a1a;
  border-radius: 99px;
  overflow: hidden;
}
#pbar-fill {
  height: 100%;
  background: var(--y);
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* ─── SCREENS ─── */
.screen {
  display: none;
  width: 100%;
  max-width: var(--max);
  padding: 40px 20px 80px;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.36s ease both;
  flex: 1;
}
.screen.active {
  display: flex;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── INTRO ─── */
#s-intro {
  justify-content: center;
  min-height: 100dvh;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--y-dim);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--y);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.intro-title {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.intro-title em {
  color: var(--y);
  font-style: normal;
}

.intro-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 300px;
}

.meta-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.meta-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--y);
}
.meta-lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─── BUTTONS ─── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 360px;
  padding: 17px 24px;
  border-radius: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.15s;
  letter-spacing: 0.005em;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-y {
  background: var(--y);
  color: #000;
  box-shadow: 0 5px 26px var(--y-glow);
}
.btn-y:active {
  background: var(--y2);
  transform: scale(0.98);
}

/* ─── COLLECT SCREEN ─── */
#s-collect {
  padding-top: 52px;
  text-align: center;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.collect-q {
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.collect-q em {
  color: var(--y);
  font-style: normal;
}

.field-wrap {
  width: 100%;
  max-width: 360px;
  margin-bottom: 16px;
}
.field-wrap input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field-wrap input::placeholder {
  color: #333;
}
.field-wrap input:focus {
  border-color: var(--y);
}
.field-wrap input.err {
  border-color: #ff4444;
  animation: shk 0.38s ease;
}

@keyframes shk {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-5px);
  }
  40%,
  80% {
    transform: translateX(5px);
  }
}

/* Chips */
.chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin-bottom: 24px;
}
.chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 15px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.18s,
    background 0.18s,
    color 0.18s;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}
.chip:active {
  transform: scale(0.99);
}
.chip.selected {
  border-color: var(--y);
  background: var(--y-dim);
  color: #fff;
}

/* ─── QUIZ SCREEN ─── */
#s-quiz {
  padding-top: 28px;
  text-align: center;
}

.q-counter {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.q-name-line {
  font-size: 12px;
  color: var(--y);
  font-weight: 700;
  margin-bottom: 8px;
}

.q-text {
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  transition: opacity 0.25s;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.opt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  transition:
    border-color 0.18s,
    background 0.18s,
    color 0.18s;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.opt:active {
  transform: scale(0.99);
}
.opt.selected {
  border-color: var(--y);
  background: var(--y-dim);
  color: #fff;
}
.opt.selected .opt-l {
  background: var(--y);
  color: #000;
}

.opt-l {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  transition:
    background 0.18s,
    color 0.18s;
}

/* ─── RESULT SCREEN ─── */
#s-result {
  text-align: center;
  padding-top: 52px;
}

.res-emoji {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
  animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.res-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.res-name {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.res-name strong {
  color: var(--y);
}

.res-title {
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.res-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.res-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.rc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  text-align: left;
}
.rc-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.rc-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.rc-text strong {
  color: #ddd;
  display: block;
  margin-bottom: 2px;
}

/* ─── OFFER SCREEN ─── */
#s-offer {
  text-align: center;
  padding-top: 36px;
}

.off-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.off-title {
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.off-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--y-dim);
  border: 1px solid rgba(255, 215, 0, 0.18);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 12px;
  color: var(--y);
  font-weight: 700;
  margin-bottom: 20px;
}

.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  color: #ff9944;
  font-weight: 700;
  margin-bottom: 20px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #ff9944;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.3s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* Plan cards */
.plans {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.pcard {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pcard.pro {
  border-color: var(--y);
  background: #0d0c00;
}

.pcard-badge {
  position: absolute;
  top: 0;
  right: 14px;
  background: var(--y);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}

.pcard-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pcard.pro .pcard-label {
  color: var(--y);
}

.pcard-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.feats li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
}
.feats li.on {
  color: #bbb;
}
.feats li.off {
  color: #2a2a2a;
}
.fok {
  color: var(--green);
  flex-shrink: 0;
}
.fno {
  color: #242424;
  flex-shrink: 0;
}

.pcard-from {
  font-size: 12px;
  color: #2e2e2e;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.pcard-price {
  font-size: 36px;
  font-weight: 800;
  color: #ddd;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}
.pcard.pro .pcard-price {
  color: var(--y);
}
.pcard-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pcard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition:
    transform 0.16s,
    background 0.15s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.cta-pro {
  background: var(--y);
  color: #000;
  box-shadow: 0 5px 20px var(--y-glow);
}
.cta-pro:active {
  background: var(--y2);
  transform: scale(0.98);
}
.cta-basic {
  background: #141414;
  border: 1px solid #242424;
  color: #444;
}
.cta-basic:active {
  transform: scale(0.98);
}

.guar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: #2a2a2a;
  margin-top: 10px;
}

/* ─── POPUP (bottom sheet) ─── */
#pop-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
}
#pop-overlay.open {
  display: flex;
  animation: ovFade 0.2s ease;
}
@keyframes ovFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#pop-box {
  background: #0d0d0d;
  border: 1.5px solid rgba(255, 215, 0, 0.2);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 10px 20px 36px;
  width: 100%;
  max-width: var(--max);
  text-align: center;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.3, 0.64, 1) both;
  max-height: 92dvh;
  overflow-y: auto;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.pop-handle {
  width: 36px;
  height: 4px;
  background: #222;
  border-radius: 99px;
  margin: 10px auto 20px;
}

#pop-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
#pop-close:hover {
  color: #666;
}

.pop-chip {
  display: inline-block;
  background: rgba(255, 80, 44, 0.1);
  border: 1px solid rgba(255, 80, 44, 0.22);
  color: #ff8844;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.pop-title {
  font-size: clamp(19px, 5vw, 24px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.pop-title em {
  color: var(--y);
  font-style: normal;
}

.pop-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* compare mini */
.pop-cmp {
  display: flex;
  gap: 8px;
  background: #141414;
  border-radius: 12px;
  padding: 13px 12px;
  margin-bottom: 14px;
  text-align: left;
}
.pc-col {
  flex: 1;
  min-width: 0;
}
.pc-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pc-col.cb .pc-lbl {
  color: var(--muted);
}
.pc-col.cp .pc-lbl {
  color: var(--y);
}
.pc-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pc-col ul li {
  font-size: 11px;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  line-height: 1.35;
}
.pc-col.cb ul li {
  color: #2e2e2e;
}
.pc-col.cp ul li {
  color: #aaa;
}
.pc-sep {
  width: 1px;
  background: #1e1e1e;
  flex-shrink: 0;
}

.pop-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--y-dim);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.pop-old {
  font-size: 13px;
  color: #2e2e2e;
  text-decoration: line-through;
}
.pop-new {
  font-size: 30px;
  font-weight: 800;
  color: var(--y);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pop-save {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}

.pop-yes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--y);
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 20px var(--y-glow);
  transition:
    background 0.15s,
    transform 0.15s;
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}
.pop-yes:active {
  background: var(--y2);
  transform: scale(0.98);
}

.pop-no {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.pop-no:hover {
  color: #555;
}

/* ─── STICKY BOOK HEADER ─── */
#book-header {
  display: none; /* shown after intro */
  width: 100%;
  background: #080808;
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 60;
  align-items: center;
  gap: 12px;
}
#book-header img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}
.bh-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bh-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.bh-sub {
  font-size: 10px;
  color: var(--y);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ─── EBOOK COVER ─── */
.ebook-cover {
  width: 180px;
  border-radius: 12px;
  box-shadow:
    0 8px 40px rgba(255, 215, 0, 0.25),
    0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
  display: block;
}

/* ─── MID-QUIZ INTERSTITIAL ─── */
#s-bridge {
  padding-top: 48px;
  text-align: center;
}

.bridge-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 16px;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.bridge-tag {
  display: inline-block;
  background: var(--y-dim);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--y);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.bridge-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.bridge-title em {
  color: var(--y);
  font-style: normal;
}

.bridge-body {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.bridge-body strong {
  color: #bbb;
}

.bridge-stats {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bstat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.bstat-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.bstat-text {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.bstat-text strong {
  color: #ccc;
  display: block;
  margin-bottom: 1px;
}

.bridge-promise {
  background: linear-gradient(135deg, #111000, #0d0c00);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  text-align: left;
}
.bridge-promise strong {
  color: var(--y);
}

/* ─── FOOTER ─── */
footer {
  text-align: center;
  font-size: 11px;
  color: #1e1e1e;
  padding: 20px;
  width: 100%;
}

/* ─── SOLUTION SECTION (post-quiz result) ─── */
.sol-section {
  width: 100%;
  margin-bottom: 28px;
}

.sol-cover-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-cover {
  width: 200px;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.3),
    0 12px 50px rgba(255, 215, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.7);
  display: block;
}
.sol-cover-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 30px;
  background: rgba(255, 215, 0, 0.25);
  filter: blur(16px);
  border-radius: 50%;
  pointer-events: none;
}

.sol-title {
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}
.sol-title em {
  color: var(--y);
  font-style: normal;
}

.sol-body {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}
.sol-body strong {
  color: #bbb;
}

.sol-bullets {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sol-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}
.sol-bullet strong {
  color: #ddd;
  display: block;
}

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0d0c00, #111000);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #888;
  text-align: center;
  line-height: 1.5;
}
.proof-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--y);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}

/* ─── CAROUSEL ─── */
.carousel-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  width: calc(100% - 32px);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface);
}
.carousel-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 340px;
}
.slide-caption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.slide-score {
  background: var(--y-dim);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--y);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  margin-left: auto;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 24px;
  margin-top: 4px;
}
.cdot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #2a2a2a;
  transition:
    background 0.3s,
    width 0.3s;
  cursor: pointer;
}
.cdot.active {
  background: var(--y);
  width: 18px;
}
