/* ================================================
   SecondChapter — Premium 45+ Landing (v2)
   Palette: deep merlot + warm gold + cream on charcoal
   Type: Playfair Display (serif hero) + Inter (body)
=================================================*/

:root {
  --bg:       #14100f;
  --bg-2:     #1c1614;
  --bg-3:     #241c1a;
  --card:     #211917;
  --border:   rgba(233, 196, 106, 0.16);
  --border-strong: rgba(233, 196, 106, 0.35);

  --text:     #f6efe4;
  --text-dim: #cdbfae;
  --text-mute:#9c8f7f;

  --merlot:   #a01d3d;
  --merlot-2: #c72d54;
  --gold:     #e9c46a;
  --gold-2:   #f4d78a;
  --cream:    #f6efe4;
  --green:    #6cb87a;

  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 60px rgba(160, 29, 61, 0.35);

  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(160,29,61,0.22), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(233,196,106,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(160,29,61,0.05), transparent 70%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; }

/* ============ AGE GATE ============ */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 6, 5, 0.96);
  backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .35s ease;
}
.age-gate.is-hidden { display: none; }
.age-gate__box {
  max-width: 460px; width: 100%;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.age-gate__logo { margin: 0 auto 18px; }
.age-gate h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--cream);
  letter-spacing: -0.5px;
}
.age-gate p { color: var(--text-dim); margin-bottom: 26px; font-size: 15px; line-height: 1.6; }
.age-gate__actions { display: flex; gap: 12px; flex-direction: column; margin-bottom: 22px; }
.age-gate__small { font-size: 12px; color: var(--text-mute); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--merlot) 0%, var(--merlot-2) 55%, var(--gold) 130%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(160, 29, 61, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: pulseCta 2.6s ease-in-out infinite;
}
.btn--primary:hover { filter: brightness(1.08); box-shadow: 0 14px 34px rgba(160, 29, 61, 0.7); }
.btn--ghost { background: rgba(255,255,255,0.05); color: var(--text-dim); border: 1px solid var(--border); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--xl { padding: 20px 32px; font-size: 17px; width: 100%; }

.btn__shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseCta {
  0%,100% { box-shadow: 0 10px 26px rgba(160, 29, 61, 0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 12px 40px rgba(160, 29, 61, 0.8), inset 0 1px 0 rgba(255,255,255,0.25); }
}
@keyframes shine {
  0% { left: -100%; }
  55%,100% { left: 200%; }
}

/* ============ ALERT BAR ============ */
.alert-bar {
  background: linear-gradient(90deg, var(--merlot), #7b1531);
  color: var(--cream);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.alert-bar strong { color: var(--gold); font-weight: 700; }

/* ============ HEADER ============ */
.hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px; margin: 0 auto;
}
.hdr__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hdr__accent { color: var(--gold); font-style: italic; }
.hdr__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(108, 184, 122, 0.10);
  border: 1px solid rgba(108, 184, 122, 0.28);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--green);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(108,184,122, 0.7);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(108,184,122, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(108,184,122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108,184,122, 0); }
}

/* ============ HERO ============ */
.hero { max-width: 1200px; margin: 0 auto; padding: 40px 24px 60px; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  background: rgba(160, 29, 61, 0.14);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--cream);
}
.hero__city { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 17px; color: var(--text-dim);
  margin-bottom: 20px; max-width: 540px;
  line-height: 1.65;
}
.hero__sub--emphasis {
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 28px;
}
.hero__sub strong { color: var(--gold-2); font-weight: 600; }

.hero__trust {
  margin-top: 22px;
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-mute);
  font-weight: 500;
}

.countdown {
  display: inline-block;
  background: rgba(233, 196, 106, 0.15);
  padding: 2px 10px;
  border-radius: 6px;
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border: 1px solid var(--border-strong);
}

/* ============ HERO VISUAL ============ */
.hero__visual { position: relative; }
.card-stack {
  position: relative;
  height: 520px;
  perspective: 1200px;
}
.cam-card {
  position: absolute;
  width: 260px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}
.cam-card--1 {
  right: 20px; top: 60px; z-index: 3;
  width: 300px;
  animation: float 6.5s ease-in-out infinite;
}
.cam-card--2 {
  right: 160px; top: 20px; z-index: 2;
  transform: rotate(-7deg) scale(0.85);
  opacity: 0.9;
}
.cam-card--3 {
  right: 80px; top: 340px; z-index: 1;
  transform: rotate(5deg) scale(0.82);
  opacity: 0.75;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.cam-card__thumb {
  height: 320px;
  background-color: #2a1e1c;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.cam-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
}
.cam-card__thumb--main { height: 380px; }

.cam-card__info {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.live {
  display: inline-block;
  background: var(--green);
  color: #0a1a10;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.6px;
  margin-right: 6px;
  text-transform: uppercase;
}
.cam-card__msg {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  font-style: italic;
  padding: 10px 12px;
  background: rgba(160, 29, 61, 0.10);
  border-radius: 12px 12px 12px 3px;
  border: 1px solid var(--border);
  line-height: 1.5;
}

/* ============ TICKER ============ */
.ticker {
  position: absolute;
  bottom: -20px; left: 10px;
  background: rgba(0,0,0,0.88);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 10px;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ============ STRIP ============ */
.strip {
  max-width: 1200px; margin: 20px auto 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 34px 24px;
  background: linear-gradient(135deg, rgba(160, 29, 61, 0.10), rgba(233, 196, 106, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-left: 24px; margin-right: 24px;
}
.strip__item { text-align: center; }
.strip__item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold);
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.strip__item span { font-size: 13px; color: var(--text-dim); }

/* ============ WHY ============ */
.why { max-width: 1200px; margin: 90px auto 40px; padding: 0 24px; }
.why__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 46px);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}
.accent { color: var(--gold); font-style: italic; }
.why__lede {
  text-align: center;
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.why__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(160, 29, 61, 0.22);
  border-color: var(--border-strong);
}
.why__ico { font-size: 34px; margin-bottom: 14px; }
.why__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--cream);
}
.why__card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ============ PROFILES ============ */
.profiles { max-width: 1200px; margin: 70px auto; padding: 0 24px; }
.profiles__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 40px 0 30px;
}
.profile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.profile:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(160, 29, 61, 0.22); }
.profile__img {
  height: 340px;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.profile__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,16,15,0.6) 100%);
}
.profile__body { padding: 20px 22px; }
.profile__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.profile__dot { color: var(--text-mute); margin: 0 4px; }
.profile__dist { color: var(--text-dim); font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; }
.profile__quote {
  font-style: italic;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.profile__badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(108, 184, 122, 0.14);
  border: 1px solid rgba(108, 184, 122, 0.3);
  color: var(--green);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.profiles__cta { display: flex; margin: 20px auto 0; max-width: 380px; }

/* ============ TESTIMONIALS ============ */
.testis { max-width: 1200px; margin: 80px auto; padding: 0 24px; }
.testis__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.testi__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.testi p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}
.testi cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* ============ FINAL CTA ============ */
.final { max-width: 900px; margin: 80px auto 40px; padding: 0 24px; }
.final__box {
  background:
    radial-gradient(circle at 50% 0%, rgba(160,29,61,0.28), transparent 65%),
    linear-gradient(135deg, rgba(160, 29, 61, 0.10), rgba(233, 196, 106, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 46px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(160,29,61,0.28);
  position: relative;
  overflow: hidden;
}
.final__badge {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 6px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 20px;
  background: rgba(233, 196, 106, 0.06);
}
.final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}
.final p {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: 16px;
}
.final__small { font-size: 12px; color: var(--text-mute); margin-top: 16px; }
.final .btn--xl { max-width: 460px; margin: 0 auto; }
.hide-sm { display: inline; }

/* ============ QUIZ MODAL ============ */
.quiz {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(10, 6, 5, 0.90);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .35s ease;
  overflow-y: auto;
}
.quiz__box {
  max-width: 520px; width: 100%;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: popIn .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: auto;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.quiz__close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 28px;
  color: var(--text-mute);
  width: 34px; height: 34px;
  border-radius: 50%;
  transition: background .2s;
  line-height: 1;
}
.quiz__close:hover { background: rgba(255,255,255,0.08); color: var(--text); }

.quiz__progress {
  display: flex; gap: 6px;
  margin-bottom: 8px;
}
.quiz__step {
  flex: 1;
  height: 4px;
  background: rgba(233, 196, 106, 0.12);
  border-radius: 2px;
  transition: background .35s ease;
}
.quiz__step.is-active { background: var(--gold); box-shadow: 0 0 10px rgba(233,196,106,0.5); }

.quiz__stepCount {
  font-size: 12px; color: var(--text-mute);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quiz__panel { display: none; animation: fadeSlide .4s ease; }
.quiz__panel.is-active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz__q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.quiz__q--tight { margin-bottom: 8px; }
.quiz__q em, .quiz__q span { color: var(--gold); font-style: italic; }
.quiz__sub {
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.55;
}

.quiz__choices {
  display: flex; flex-direction: column; gap: 10px;
}
.choice {
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: all .2s ease;
  position: relative;
}
.choice::after {
  content: '→';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-mute);
  transition: color .2s, transform .2s;
}
.choice:hover {
  border-color: var(--gold);
  background: rgba(160, 29, 61, 0.14);
  transform: translateX(4px);
}
.choice:hover::after {
  color: var(--gold);
  transform: translateY(-50%) translateX(4px);
}

.quiz__field { margin-bottom: 14px; }
.quiz__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz__row .quiz__field { margin-bottom: 14px; }
.quiz__hint { font-weight: 400; color: var(--text-mute); font-size: 11px; letter-spacing: 0; text-transform: none; }
.quiz__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.quiz__field input[type="text"],
.quiz__field input[type="email"],
.quiz__field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.35);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  transition: border-color .2s, background .2s;
}
.quiz__field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 0 0 3px rgba(233,196,106,0.15);
}
.quiz__field--check {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 8px 0 20px;
}
.quiz__field--check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--merlot); }
.quiz__field--check label { margin: 0; font-size: 12px; color: var(--text-mute); font-weight: 400; }
.quiz__legal {
  text-align: center;
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 14px;
}

.quiz__matchbox {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.quiz__matchAvatars {
  display: flex; justify-content: center; gap: -14px;
  margin-bottom: 18px;
}
.quiz__avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  border: 3px solid var(--bg-2);
  margin-left: -14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.quiz__avatar:first-child { margin-left: 0; }
.quiz__avatar--more {
  background: linear-gradient(135deg, var(--merlot), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ============ SUCCESS MODAL ============ */
.success {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 6, 5, 0.92);
  backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .35s ease;
}
.success__box {
  max-width: 440px; width: 100%;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.success__check {
  width: 84px; height: 84px; margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4a8f5b);
  display: flex; align-items: center; justify-content: center;
  font-size: 46px; color: #fff; font-weight: 900;
  box-shadow: 0 10px 30px rgba(108,184,122,0.4);
  animation: checkPop .55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--cream);
}
.success p { color: var(--text-dim); margin-bottom: 14px; line-height: 1.6; }
.success__note { font-size: 13px; color: var(--text-mute); }
.success .btn { margin-top: 8px; }

/* ============ FOOTER ============ */
.ftr {
  max-width: 1200px; margin: 60px auto 20px;
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  border-top: 1px solid var(--border);
}
.ftr a { margin: 0 6px; color: var(--text-dim); }
.ftr a:hover { color: var(--gold); }
.ftr__disclaimer { margin-top: 8px; font-size: 11px; opacity: 0.8; }

@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .hero { padding: 30px 20px 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: 2; position: relative; padding-bottom: 40px; }
  .hero__copy { order: 1; }
  .card-stack {
    position: relative;
    height: 460px;
    display: flex; justify-content: center;
    overflow: visible;
  }
  .cam-card { width: 220px; }
  .cam-card--1 {
    position: relative;
    left: 0; right: auto; top: 0;
    width: 280px;
    animation: floatMobile 6s ease-in-out infinite;
    margin: 0 auto;
  }
  .cam-card--2 {
    position: absolute;
    left: 3%; right: auto; top: 30px;
    transform: rotate(-8deg) scale(0.7);
    z-index: 1;
  }
  .cam-card--3 {
    position: absolute;
    right: 3%; left: auto; top: 280px;
    transform: rotate(7deg) scale(0.65);
    z-index: 1;
  }
  @keyframes floatMobile {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .ticker { position: relative; left: auto; right: auto; bottom: auto; margin: 24px auto 0; max-width: 300px; }
  .strip { grid-template-columns: repeat(2, 1fr); margin: 20px 20px 40px; padding: 24px 20px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .profiles__grid { grid-template-columns: 1fr; }
  .profile__img { height: 380px; }
  .testis__grid { grid-template-columns: 1fr; }
  .hide-sm { display: none; }
  .hero__trust { gap: 12px; font-size: 12px; }
}

@media (max-width: 520px) {
  .hero { padding: 24px 16px; }
  .quiz { padding: 12px; }
  .quiz__box { padding: 30px 22px 26px; }
  .quiz__row { grid-template-columns: 1fr; gap: 0; }
  .why { margin-top: 60px; padding: 0 16px; }
  .why__grid { grid-template-columns: 1fr; }
  .final__box { padding: 34px 22px; }
  .strip__item strong { font-size: 26px; }
  .strip__item span { font-size: 11px; }
  .hero__sub { font-size: 15px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
