/* Offer Spell — magical dark theme (high contrast) */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink: #f5f0e8;
  --muted: #c4b8a8;
  --dim: #8a7f72;
  --bg: #0c0614;
  --bg2: #140a22;
  --panel: #1a0f2e;
  --panel2: #22143a;
  --gold: #f0c14b;
  --gold2: #e8a838;
  --purple: #9b5cff;
  --magenta: #e040a0;
  --line: rgba(240, 193, 75, 0.22);
  --danger: #ff6b8a;
  --ok: #5dffb1;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(155, 92, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(224, 64, 160, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(240, 193, 75, 0.08), transparent 45%);
  min-height: 100vh;
}

.heading {
  font-family: "Cinzel", "Fraunces", Georgia, serif;
  letter-spacing: 0.02em;
  margin: 0;
}

a { color: var(--gold); }
a:hover { color: #ffe08a; }

.container { max-width: 46rem; margin: 0 auto; padding: 0 1.25rem; }
.container-wide { max-width: 64rem; margin: 0 auto; padding: 0 1.25rem; }
.container-xl { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(12, 6, 20, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
  box-shadow: 0 0 16px rgba(240, 193, 75, 0.35);
}
.brand-title { font-weight: 700; font-size: 1.05rem; color: var(--gold); }
.brand-sub { font-size: 0.72rem; color: var(--dim); margin-left: 0.35rem; font-family: "Source Sans 3", sans-serif; letter-spacing: 0.04em; }
.skip-link { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* Sections */
.section { padding: 3.25rem 0; }
.section-hero { padding: 2.5rem 0 3rem; }
.section-panel { background: rgba(26, 15, 46, 0.65); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-deep { background: rgba(8, 4, 14, 0.85); }

.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.hero-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.hero-title span {
  background: linear-gradient(120deg, var(--gold), #fff0b8 40%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 1.08rem; color: var(--muted); margin: 0 0 1rem; }
.lead-strong { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin: 0 0 1.5rem; }
.lead-strong .price { color: var(--gold); }
.section-title { font-size: clamp(1.45rem, 3vw, 1.85rem); font-weight: 700; margin: 0 0 1rem; color: var(--ink); }
.section-title-center { text-align: center; }
.subhead { text-align: center; color: var(--muted); max-width: 40rem; margin: 0 auto 1.75rem; }

.hero-art {
  margin: 1.5rem 0 1.75rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(155, 92, 255, 0.15);
}
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.props-strip {
  margin: 2rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0.95;
}
.props-strip img { display: block; width: 100%; height: auto; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #1a0a00 !important;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(240, 193, 75, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(240, 193, 75, 0.45);
}
.btn-ghost {
  display: inline-flex;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none !important;
  cursor: pointer;
}
.cta-block { text-align: center; margin: 1.5rem 0; }
.cta-note { font-size: 0.85rem; color: var(--dim); margin: 0.75rem 0 0; }

/* Cards */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  color: var(--muted);
}
.card-lg { padding: 1.5rem; }
.card-gold { border-color: rgba(240, 193, 75, 0.45); box-shadow: 0 0 24px rgba(240, 193, 75, 0.08); }
.card-bad { border-color: rgba(255, 107, 138, 0.35); }
.card-good { border-color: rgba(93, 255, 177, 0.35); }
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.stack { display: flex; flex-direction: column; gap: 1rem; }
.label-xs {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.label-bad { color: var(--danger); }
.label-good { color: var(--ok); }
.label-gold { color: var(--gold); }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Quiz */
.section-quiz { padding-top: 2rem; }
.quiz-card {
  background: linear-gradient(160deg, var(--panel2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  max-width: 36rem;
  margin: 0 auto;
}
.quiz-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.quiz-progress-bar {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 99px;
  transition: width 0.25s ease;
}
.quiz-progress-label {
  font-size: 0.8rem;
  color: var(--dim);
  margin: 0 0 1.25rem;
  text-align: center;
}
.quiz-q-title {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.4rem;
  text-align: center;
}
.quiz-q-text {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}
.quiz-options { display: flex; flex-direction: column; gap: 0.65rem; }
.quiz-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: rgba(12, 6, 20, 0.65);
  border: 1px solid rgba(240, 193, 75, 0.25);
  color: var(--ink);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  font-family: inherit;
}
.quiz-opt:hover {
  border-color: var(--gold);
  background: rgba(155, 92, 255, 0.15);
  transform: translateX(2px);
}
.quiz-opt.selected {
  border-color: var(--gold);
  background: rgba(240, 193, 75, 0.12);
  box-shadow: 0 0 0 1px var(--gold);
}
.quiz-back {
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
}
.quiz-back:disabled { opacity: 0.35; cursor: default; }
.quiz-back:not(:disabled):hover { color: var(--gold); }

/* Opt-in gate (end of quiz) */
.optin-gate {
  text-align: center;
}
.optin-gate .spell-icon {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  filter: drop-shadow(0 0 12px rgba(240, 193, 75, 0.5));
}
.aweber-wrap {
  margin: 1.25rem auto 0;
  max-width: 22rem;
  text-align: left;
}
.aweber-wrap .AW-Form-725254344 {
  min-height: 120px;
}
/* Soften AWeber chrome on dark page */
#af-form-725254344 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
#af-form-725254344 .af-header,
#af-form-725254344 .af-footer,
#af-form-725254344 .poweredBy,
#af-form-725254344 .privacyPolicy { display: none !important; }
#af-form-725254344 .af-body {
  background: transparent !important;
  color: var(--ink) !important;
  padding: 0 !important;
}
#af-form-725254344 label.previewLabel { display: none !important; }
#af-form-725254344 input.text {
  background: rgba(12,6,20,0.8) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
}
#af-form-725254344 input.submit,
#af-form-725254344 #webFormSubmitButton {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #1a0a00 !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  padding: 0.85rem 1.5rem !important;
  width: 100% !important;
}

/* Offer / value */
.check-list { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.check-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.objection-title {
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.objection-body { margin: 0; color: var(--muted); }

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-row:last-child { border-bottom: none; }
.feature-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(240, 193, 75, 0.12);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.feature-row h3 { margin: 0 0 0.25rem; font-size: 1.05rem; color: var(--ink); font-family: "Cinzel", Georgia, serif; }
.feature-row p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.side-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 1.5rem 0;
}
.side-img img { display: block; width: 100%; height: auto; }

/* Offer block */
.offer-block {
  background: linear-gradient(145deg, #2a1848, #160a28);
  border: 1px solid rgba(240, 193, 75, 0.4);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(155, 92, 255, 0.2);
}
.offer-price {
  font-family: "Cinzel", Georgia, serif;
  font-size: 3rem;
  color: var(--gold);
  margin: 0.5rem 0;
  line-height: 1;
}
.offer-price small {
  font-size: 1rem;
  color: var(--dim);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  text-align: center;
  color: var(--dim);
  font-size: 0.85rem;
}
.site-footer a { color: var(--muted); margin: 0 0.5rem; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.fine { font-size: 0.8rem; color: var(--dim); }

/* Reveal page spell sheet */
.spell-sheet {
  background: linear-gradient(165deg, #24153f, #12081f);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.35rem;
  margin: 1.5rem 0;
}
.spell-sheet h2 {
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold);
  margin: 0 0 1rem;
  font-size: 1.4rem;
  text-align: center;
}
.spell-field {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(240, 193, 75, 0.2);
}
.spell-field:last-child { border-bottom: none; margin-bottom: 0; }
.spell-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.spell-value {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}
.spell-value.muted { font-weight: 400; color: var(--muted); font-size: 0.98rem; }

.locked-hint {
  text-align: center;
  color: var(--dim);
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

@media (max-width: 480px) {
  .quiz-card { padding: 1.15rem 0.9rem 1.4rem; }
  .hero-title { font-size: 1.7rem; }
}
