@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", "Iowan Old Style", serif;

  /* --- Base layer: deep plum / chocolate --- */
  --bg: #15101a;
  --bg-deep: #0f0a10;

  /* --- Section surfaces (two alternating tones) --- */
  --surface-plum: linear-gradient(168deg, rgba(74, 50, 78, 0.5), rgba(44, 30, 48, 0.42));
  --surface-cocoa: linear-gradient(168deg, rgba(64, 46, 38, 0.52), rgba(40, 28, 26, 0.42));
  --surface-line: rgba(233, 208, 232, 0.1);
  --surface-line-warm: rgba(233, 196, 106, 0.16);

  /* --- Inner panel cards (lists, faq, steps) --- */
  --panel: rgba(30, 22, 30, 0.5);
  --panel-strong: rgba(38, 28, 38, 0.74);

  /* --- Ivory / warm text --- */
  --text: #f8efe3;
  --muted: #d9c8bd;
  --muted-2: #b09a99;

  /* --- Gold details --- */
  --gold: #e9c46a;
  --gold-bright: #ffe5a3;
  --gold-deep: #b98632;

  /* --- Wine / plum accent --- */
  --wine: #b25774;
  --wine-soft: rgba(178, 87, 116, 0.18);
  --wine-deep: #4f2236;
  --rose: #e0a394;

  --line: rgba(233, 196, 106, 0.22);
  --shadow: rgba(0, 0, 0, 0.4);
  --focus: #ffe5a3;
  --radius: 9px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% -2%, rgba(233, 196, 106, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(178, 87, 116, 0.14), transparent 22rem),
    radial-gradient(circle at 8% 52%, rgba(126, 84, 138, 0.14), transparent 24rem),
    linear-gradient(180deg, #1a1320 0%, #15101a 46%, #100b11 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
}

.landing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 16px 18px 104px;
  text-align: center;
}

.footer {
  width: min(100%, 430px);
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   SECTION SYSTEM
   Hero is open & atmospheric; content sections become layered
   panels that bleed to the column edges and alternate tone.
   ============================================================ */
.section {
  position: relative;
  padding: 26px 0;
}

/* ---------- TOP BRAND ---------- */
.site-brand {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 8px 0 2px;
}

.site-brand::before,
.site-brand::after {
  content: "";
  width: 72px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 229, 163, 0.78), transparent);
  box-shadow: 0 0 18px rgba(233, 196, 106, 0.32);
}

.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(233, 196, 106, 0.22);
}

.site-brand p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(233, 196, 106, 0.18);
}

/* Paneled content sections */
.pain-section,
.free-section,
.bot-trust-section,
.about-section,
.questions-section,
.faq-section,
.final-section {
  margin: 0 -18px;
  padding: 28px 20px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--surface-plum);
  box-shadow:
    0 18px 40px -24px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 247, 237, 0.04);
}

/* Alternate tone for rhythm */
.questions-section {
  background: var(--surface-cocoa);
  border-color: rgba(233, 196, 106, 0.1);
}

/* Gold top hairline on each panel for a refined edge */
.pain-section::before,
.free-section::before,
.bot-trust-section::before,
.about-section::before,
.questions-section::before,
.faq-section::before,
.final-section::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.35), transparent);
  pointer-events: none;
}

/* ---------- HERO ---------- */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 4px;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 13px;
  padding: 6px 11px;
  border: 1px solid rgba(233, 196, 106, 0.32);
  border-radius: 999px;
  background: rgba(233, 196, 106, 0.09);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  max-width: 18ch;
  margin: 0 auto 14px;
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  font-size: 1.48rem;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-note,
.quiet-note {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 0.96rem;
}

.hero-note {
  font-size: 0.92rem;
}

.hero-safety {
  margin: 12px auto 0;
  padding: 11px 13px;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: var(--radius);
  background: rgba(233, 196, 106, 0.05);
  color: rgba(224, 209, 191, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.section-heading p {
  color: var(--muted);
}

.topic-intro {
  margin-bottom: 28px;
}

.topic-intro .eyebrow {
  margin-bottom: 24px;
}

.situation-grid {
  display: grid;
  gap: 10px;
}

.situation-card {
  position: relative;
  overflow: hidden;
  padding: 13px 14px 12px;
  text-align: left;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.055), rgba(178, 87, 116, 0.06)),
    rgba(20, 13, 24, 0.66);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.88), inset 0 1px 0 rgba(255, 247, 237, 0.06);
}

.situation-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.situation-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.situation-card > p:not(.situation-badge) {
  text-align: left;
}

.situation-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 5px 9px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: 999px;
  background: rgba(233, 196, 106, 0.07);
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.situation-card .situation-badge {
  margin: 0 auto 24px;
}

.situation-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 13px rgba(233, 196, 106, 0.42);
}

.situation-note {
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(233, 196, 106, 0.13);
  color: rgba(255, 229, 163, 0.86);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}

.situation-card-choice {
  border-color: rgba(178, 87, 116, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.05), rgba(126, 84, 138, 0.08)),
    rgba(20, 13, 24, 0.66);
}

.situation-card-family {
  border-color: rgba(233, 196, 106, 0.2);
  background:
    linear-gradient(145deg, rgba(233, 196, 106, 0.06), rgba(255, 247, 237, 0.035)),
    rgba(20, 13, 24, 0.68);
}

.situation-card-career {
  border-color: rgba(255, 229, 163, 0.18);
  background:
    linear-gradient(145deg, rgba(126, 84, 138, 0.09), rgba(233, 196, 106, 0.045)),
    rgba(20, 13, 24, 0.68);
}

.situation-card-purpose {
  border-color: rgba(178, 87, 116, 0.28);
  background:
    linear-gradient(145deg, rgba(178, 87, 116, 0.08), rgba(233, 196, 106, 0.045)),
    rgba(20, 13, 24, 0.68);
}

/* ---------- CARD SELECTION — recessed stage ---------- */
.card-section {
  margin: 0 -18px;
  padding: 30px 18px 86px;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 78% 46% at 50% 30%, rgba(126, 84, 138, 0.26), transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 88%, rgba(233, 196, 106, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(14, 10, 16, 0.66), rgba(10, 7, 11, 0.8));
  box-shadow:
    inset 0 2px 30px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3),
    0 24px 50px -28px rgba(0, 0, 0, 0.8);
}

.card-section .section-heading h2 {
  color: var(--gold-bright);
}

.selection-hint {
  min-height: 26px;
  margin: 12px 0 10px;
  color: var(--rose);
  font-size: 0.96rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.selection-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 8px 0 20px;
}

/* Soft floor glow beneath the card row — the "pedestal" light */
.cards-grid::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 30px;
  height: 64px;
  background: radial-gradient(ellipse at 50% 50%, rgba(233, 196, 106, 0.12), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* ---- Per-card mood accents ---- */
.cards-grid .tarot-card:nth-child(1) {
  --card-glow: 233, 196, 106;   /* warm gold */
  --card-border: rgba(255, 229, 163, 0.9);
}

.cards-grid .tarot-card:nth-child(2) {
  --card-glow: 199, 120, 152;   /* muted plum / rose */
  --card-border: rgba(224, 163, 188, 0.92);
}

.cards-grid .tarot-card:nth-child(3) {
  --card-glow: 180, 198, 188;   /* moonlit cool-gold */
  --card-border: rgba(214, 224, 198, 0.92);
}

.tarot-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 220px;
  padding: 6px 6px 6px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Individual pedestal under each card */
.tarot-card::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 44px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--card-glow), 0.32), transparent 72%);
  filter: blur(5px);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.card-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  min-height: 150px;
  border-radius: var(--radius);
  perspective: 900px;
  transform: translateY(0);
  transition: transform 200ms ease, filter 200ms ease;
}

.card-frame::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: calc(var(--radius) + 3px);
  background: rgba(var(--card-glow), 0);
  filter: blur(11px);
  transition: background 200ms ease, filter 200ms ease;
}

.card-inner {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 440ms cubic-bezier(0.2, 0.72, 0.22, 1), box-shadow 200ms ease;
}

.card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(233, 196, 106, 0.4);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  background: #1a1018;
}

.card-front {
  transform: rotateY(180deg);
}

.card-label {
  display: block;
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.card-selected-note {
  display: block;
  min-height: 20px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

/* Calmer non-selected cards once a choice is made */
.cards-grid:has(.tarot-card.is-selected) .tarot-card:not(.is-selected) {
  opacity: 0.5;
  filter: saturate(0.75);
  cursor: default;
}

.tarot-card.is-locked,
.tarot-card:disabled:not(.is-selected) {
  cursor: default;
}

/* Hover / focus */
.tarot-card:hover .card-frame,
.tarot-card:focus-visible .card-frame {
  filter: brightness(1.08);
  transform: translateY(-5px);
}

.tarot-card:hover::after,
.tarot-card:focus-visible::after {
  opacity: 1;
}

.tarot-card:hover .card-frame::after,
.tarot-card:focus-visible .card-frame::after {
  background: rgba(var(--card-glow), 0.22);
}

.tarot-card:focus-visible .card-inner {
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 229, 163, 0.5);
}

.tarot-card:active .card-frame {
  transform: translateY(1px) scale(0.99);
}

.tarot-card.is-locked .card-frame,
.tarot-card:disabled:not(.is-selected) .card-frame {
  filter: brightness(0.78);
  transform: none;
}

.tarot-card.is-locked::after,
.tarot-card:disabled:not(.is-selected)::after {
  opacity: 0;
}

.tarot-card.is-locked .card-frame::after,
.tarot-card:disabled:not(.is-selected) .card-frame::after {
  background: rgba(var(--card-glow), 0);
}

/* Selected — clearly chosen, lifted, glowing in its mood color */
.tarot-card.is-selected {
  transform: translateY(-2px);
}

.tarot-card.is-selected .card-frame {
  filter: brightness(1.1);
  transform: translateY(-9px);
}

.tarot-card.is-selected::after {
  opacity: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--card-glow), 0.5), transparent 72%);
}

.tarot-card.is-selected .card-frame::after {
  background: rgba(var(--card-glow), 0.5);
  filter: blur(15px);
}

.tarot-card.is-selected .card-inner {
  transform: rotateY(180deg);
  box-shadow:
    0 26px 40px rgba(0, 0, 0, 0.55),
    0 0 0 3px rgba(var(--card-glow), 0.34),
    0 0 40px rgba(var(--card-glow), 0.4);
}

.tarot-card.is-selected .card-image {
  border-color: var(--card-border);
}

.tarot-card.is-selected .card-label {
  color: var(--gold-bright);
}

.tarot-card.is-selected .card-selected-note {
  color: var(--gold-bright);
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

/* ---------- CONFIRMATION ---------- */
.confirmation {
  position: relative;
  z-index: 1;
  margin: 12px 0 20px;
  padding: 17px;
  border: 1px solid rgba(233, 196, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(233, 196, 106, 0.12), transparent 56%),
    rgba(30, 21, 28, 0.92);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34), 0 0 26px rgba(233, 196, 106, 0.12);
}

.confirmation p {
  margin-bottom: 0;
  color: var(--muted);
}

.confirmation-title {
  margin-bottom: 6px !important;
  color: var(--gold-bright) !important;
  font-weight: 850;
}

.confirmation-lock-note {
  margin-top: 8px;
  color: rgba(255, 229, 163, 0.82) !important;
  font-size: 0.86rem;
  font-weight: 700;
}

/* ---------- PRIMARY CTA ---------- */
.primary-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 60px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 229, 163, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffdd8a 0%, #ecb858 48%, #c8913d 100%);
  color: #20120c;
  cursor: pointer;
  font-weight: 850;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow:
    0 18px 32px -10px rgba(200, 145, 61, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  filter: brightness(1.05);
  box-shadow:
    0 22px 38px -10px rgba(200, 145, 61, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.primary-cta:active {
  transform: translateY(1px);
}

.primary-cta.is-disabled {
  border-color: rgba(255, 247, 237, 0.12);
  background: linear-gradient(180deg, rgba(58, 46, 52, 0.95), rgba(44, 34, 40, 0.95));
  color: #ab9890;
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.05);
}

.cta-main,
.cta-final {
  margin-top: 4px;
}

/* ---------- LISTS ---------- */
.benefit-list,
.question-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.question-list li {
  position: relative;
  padding: 14px 14px 14px 36px;
  border: 1px solid rgba(255, 247, 237, 0.07);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.6);
  text-align: left;
  line-height: 1.45;
}

.benefit-list li::before,
.question-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(233, 196, 106, 0.5);
}

.soft-list li::before {
  background: var(--wine);
  box-shadow: 0 0 12px rgba(178, 87, 116, 0.45);
}

/* "What you get free" — gold-highlighted block */
.free-section {
  border-color: rgba(233, 196, 106, 0.26);
  background:
    linear-gradient(168deg, rgba(233, 196, 106, 0.1), transparent 42%),
    var(--surface-cocoa);
}

.free-section .eyebrow {
  border-color: rgba(233, 196, 106, 0.45);
  background: rgba(233, 196, 106, 0.14);
}

.free-section .benefit-list li {
  border-color: rgba(233, 196, 106, 0.16);
  background: rgba(34, 25, 20, 0.62);
}

.quiet-note {
  margin-top: 16px;
}

.free-section .quiet-note,
.questions-section .quiet-note {
  text-align: left;
}

.important-note {
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(178, 87, 116, 0.3);
  border-radius: var(--radius);
  background: var(--wine-soft);
  color: var(--muted);
}

/* "Not an automatic reading" — quieter trust strip */
.bot-trust-section {
  padding: 24px 20px;
  background:
    linear-gradient(168deg, rgba(126, 84, 138, 0.16), transparent 60%),
    rgba(26, 18, 26, 0.5);
  text-align: center;
}

.bot-trust-section .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ABOUT / LEA PORTRAIT ---------- */
.about-section {
  padding-top: 22px;
  padding-bottom: 20px;
}

.about-layout {
  display: grid;
  gap: 12px;
}

.lea-portrait-card {
  position: relative;
  width: min(100%, 204px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(233, 196, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(233, 196, 106, 0.16), rgba(178, 87, 116, 0.08) 50%, transparent 70%),
    rgba(34, 24, 32, 0.9);
  box-shadow:
    0 24px 44px -20px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(233, 196, 106, 0.12);
}

.lea-portrait-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 0;
  border: 1px solid rgba(255, 229, 163, 0.24);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.lea-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 250px;
  border: 1px solid rgba(255, 229, 163, 0.28);
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center top;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.08);
}

.about-copy {
  margin-top: 4px;
}

.about-copy p {
  margin-bottom: 9px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.about-trust-card {
  position: relative;
  min-width: 0;
  padding: 31px 7px 10px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 196, 106, 0.16), transparent 54%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.055), rgba(178, 87, 116, 0.04)),
    rgba(20, 13, 24, 0.58);
  text-align: center;
  box-shadow:
    0 14px 24px -18px rgba(0, 0, 0, 0.78),
    inset 0 1px 0 rgba(255, 247, 237, 0.05);
}

.about-trust-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 16px rgba(233, 196, 106, 0.45);
  transform: translateX(-50%);
}

.about-trust-card h3 {
  margin: 0 auto 4px;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-trust-card p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  border: 1px solid rgba(255, 247, 237, 0.08);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  overflow: hidden;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-list details[open] {
  border-color: rgba(233, 196, 106, 0.28);
  background: rgba(34, 24, 30, 0.7);
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 14px;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list p {
  margin: 0;
  padding: 0 14px 15px;
  color: var(--muted);
}

/* ---------- FINAL CTA — wine/gold closer ---------- */
.final-section {
  border-color: rgba(233, 196, 106, 0.3);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(233, 196, 106, 0.14), transparent 64%),
    linear-gradient(165deg, rgba(79, 34, 54, 0.66), rgba(38, 24, 38, 0.6));
  box-shadow:
    0 22px 46px -22px rgba(0, 0, 0, 0.75),
    0 0 32px rgba(178, 87, 116, 0.12),
    inset 0 1px 0 rgba(255, 247, 237, 0.05);
}

.final-section .section-heading h2 {
  color: var(--gold-bright);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 8px 18px 132px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 42ch;
  margin: 0 auto 12px;
  padding: 13px 15px;
  border: 1px solid rgba(233, 196, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 247, 237, 0.035);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer p {
  margin-bottom: 10px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 12px 0;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid rgba(233, 196, 106, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  border-color: rgba(233, 196, 106, 0.38);
  color: var(--gold-bright);
}

.footer-legal {
  padding-bottom: 52px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 20px 18px 34px;
  text-align: center;
}

.legal-back {
  width: fit-content;
  margin: 0 auto;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  text-decoration: underline;
}

.legal-hero,
.legal-section {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--surface-plum);
  box-shadow:
    0 18px 40px -24px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 247, 237, 0.04);
}

.legal-hero {
  padding: 28px 18px 22px;
}

.legal-section {
  padding: 20px 18px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 7vw, 2.25rem);
}

.legal-page h2 {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 1.34rem;
}

.legal-page h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  text-align: center;
}

.legal-page p:last-child {
  margin-bottom: 0;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 0;
  list-style-position: inside;
}

.legal-meta {
  color: var(--muted-2) !important;
  font-size: 0.85rem;
  font-weight: 800;
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 10px 18px max(11px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(16, 11, 17, 0) 0%, rgba(16, 11, 17, 0.92) 34%, #100b11 100%);
  border-top: 1px solid rgba(233, 196, 106, 0.16);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.5), transparent);
  pointer-events: none;
}

.sticky-cta-note {
  display: none;
  width: min(100%, 394px);
  margin: 0 auto 8px;
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.sticky-cta-button {
  display: block;
  max-width: 394px;
  min-height: 52px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  body {
    background:
      radial-gradient(circle at 50% -2%, rgba(233, 196, 106, 0.16), transparent 40rem),
      radial-gradient(circle at 84% 12%, rgba(178, 87, 116, 0.1), transparent 28rem),
      linear-gradient(90deg, #0e0a10 0%, #1a1320 50%, #0e0a10 100%);
    background-attachment: fixed;
  }

  .page-shell {
    padding: 0 0 18px;
  }

  .landing {
    border-right: 1px solid rgba(255, 247, 237, 0.06);
    border-left: 1px solid rgba(255, 247, 237, 0.06);
    background: rgba(18, 13, 19, 0.55);
  }

  .footer {
    border-right: 1px solid rgba(255, 247, 237, 0.06);
    border-left: 1px solid rgba(255, 247, 237, 0.06);
    background: rgba(18, 13, 19, 0.55);
  }
}

@media (max-width: 374px) {
  .landing {
    padding-right: 14px;
    padding-left: 14px;
  }

  .pain-section,
  .free-section,
  .bot-trust-section,
  .about-section,
  .questions-section,
  .faq-section,
  .final-section {
    margin: 0 -14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .card-section {
    margin: 0 -14px;
  }

  .cards-grid {
    gap: 9px;
  }

  .tarot-card {
    min-height: 212px;
  }

  .card-frame {
    min-height: 148px;
  }
}

/* ============================================================
   REDUCED MOTION
   Respect users who ask for less animation: drop the card flip
   transition, glow tweens and smooth scrolling.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
