/* ═══════════════════════════════════════════
   LINGERDROP · main.css
   ─────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --red:    #ff1a4d;
  --red2:   #ff3366;
  --dark:   #080508;
  --dark2:  #120008;
  --dark3:  #1c000d;
  --pink:   #ff99aa;
  --pink2:  #ffb3c1;
  --gold:   #ffd700;
  --glow:   rgba(255, 26, 77, 0.55);

  --section-px: 6%;
  --section-py: 110px;
  --max-w:      1300px;
  --radius-lg:  28px;
  --radius-md:  20px;
  --radius-sm:  14px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.12; }

/* ── UTILITY ── */
.highlight      { color: var(--pink); font-weight: 700; }
.highlight-gold { color: var(--gold); font-weight: 700; }
.center         { text-align: center; }
.rtl-grid > * > * { direction: ltr; }   /* fixes reverse grid on mobile */

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 18px 52px;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 60px;
  text-decoration: none;
  transition: transform .28s, box-shadow .28s, background .28s;
  box-shadow: 0 8px 32px var(--glow);
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 18px 50px var(--glow);
  background: var(--red2);
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--pink);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,26,77,.14); }
.btn--gold {
  background: linear-gradient(135deg, #c89400, #ffd700, #c89400);
  color: #1a0008;
  box-shadow: 0 8px 32px rgba(255,215,0,.35);
}
.btn--gold:hover { box-shadow: 0 18px 50px rgba(255,215,0,.55); }
.btn--dim {
  background: linear-gradient(135deg, #2a0010, #4d0020);
}

/* pulse animation */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px var(--glow); }
  50%       { box-shadow: 0 12px 60px rgba(255,26,77,.85); }
}
.btn--pulse { animation: pulse-glow 2.2s ease-in-out infinite; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(8,5,8,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,26,77,.22);
  padding: 0 var(--section-px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform .35s ease;
}
.nav--hidden { transform: translateY(-100%); }

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  color: #ccc;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--pink); }
.nav__links .nav__cta {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  transition: background .2s;
}
.nav__links .nav__cta:hover { background: var(--red2); color: #fff; }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: all .3s;
}

/* mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(8,5,8,.97);
  z-index: 199;
  padding: 32px var(--section-px);
  gap: 24px;
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ccc;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.nav__drawer a:hover { color: var(--pink); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px var(--section-px) 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 42%, rgba(255,26,77,.2) 0%, transparent 70%),
    linear-gradient(180deg, #0d0008 0%, #1a000f 45%, #080505 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff1a4d' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  background: rgba(255,26,77,.18);
  border: 1px solid rgba(255,26,77,.45);
  color: var(--pink);
  padding: 7px 22px;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  text-shadow: 0 0 80px rgba(255,26,77,.65);
  margin-bottom: 24px;
}
.hero__title em { color: var(--pink); font-style: normal; }

.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  color: var(--pink2);
  max-width: 780px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.65;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  justify-content: center;
}
.stat__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
  line-height: 1;
}
.stat__label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #888;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   WARNING BAR
───────────────────────────────────────────── */
.warning-bar {
  background: linear-gradient(90deg, #1a0008, #300012, #1a0008);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 18px var(--section-px);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────
   TICKER
───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(255,26,77,.1);
  border-top: 1px solid rgba(255,26,77,.22);
  border-bottom: 1px solid rgba(255,26,77,.22);
  padding: 12px 0;
}
.ticker {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0 48px;
  flex-shrink: 0;
}
.ticker__item::after {
  content: '•';
  margin-left: 48px;
  color: rgba(255,26,77,.4);
}

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.wrapper {
  padding: var(--section-py) var(--section-px);
}
.wrapper--alt  { background: linear-gradient(180deg, #100008, #1a000c, #100008); }
.wrapper--dark { background: linear-gradient(180deg, #0d0005, #150009, #0d0005); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 22px;
}
.section-intro {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 760px;
  line-height: 1.75;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,26,77,.38), transparent);
  margin: 0 var(--section-px);
}

/* ─────────────────────────────────────────────
   PRODUCT HERO (two-column)
───────────────────────────────────────────── */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.product-hero--reverse { direction: rtl; }
.product-hero--reverse > * { direction: ltr; }

.product__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,26,77,.14);
  border: 1px solid rgba(255,26,77,.38);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.product__title {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(255,26,77,.35);
}
.product__title span { color: var(--pink); }

.product__tagline {
  font-size: 1.35rem;
  color: var(--pink);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 22px;
}

.product__body {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.85;
  margin-bottom: 28px;
}

.product__features li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8d8d8;
}
.product__features li::before { content: '🔥'; flex-shrink: 0; margin-top: 1px; }

.product__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* visual box */
.product__visual {
  background: linear-gradient(135deg, rgba(255,26,77,.1), rgba(255,26,77,.03));
  border: 1px solid rgba(255,26,77,.22);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product__visual::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(255,26,77,.07) 0%, transparent 60%);
  pointer-events: none;
}
.product__visual-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 28px rgba(255,26,77,.45));
  position: relative;
}
.product__visual-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 10px;
}
.product__visual-sub { font-size: 1rem; color: #999; }

/* ─────────────────────────────────────────────
   HEAT LEVELS
───────────────────────────────────────────── */
.heat-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 36px 0;
}
.heat-level {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 24px 14px;
  text-align: center;
  border: 1px solid rgba(255,26,77,.14);
  transition: transform .28s, border-color .28s, background .28s;
}
.heat-level:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: rgba(255,26,77,.1);
}
.heat-level__icon { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.heat-level__name { font-weight: 700; font-size: 1rem; color: var(--pink); }
.heat-level__desc { font-size: .82rem; color: #999; margin-top: 6px; line-height: 1.5; }

/* ─────────────────────────────────────────────
   HOW IT WORKS STEPS
───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 44px 0;
}
.step {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,26,77,.1);
}
.step__num {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
.step__title { font-size: 1.05rem; font-weight: 700; color: var(--pink); margin-bottom: 8px; }
.step__desc  { font-size: .9rem; color: #aaa; line-height: 1.6; }

/* ─────────────────────────────────────────────
   DARE CARDS
───────────────────────────────────────────── */
.dare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}
.dare-card {
  background: rgba(255,26,77,.07);
  border: 1px solid rgba(255,26,77,.28);
  border-radius: var(--radius-md);
  padding: 32px 26px 26px;
  font-size: 1.05rem;
  font-style: italic;
  color: #eee;
  position: relative;
  line-height: 1.7;
}
.dare-card::before {
  content: '"';
  font-size: 4.5rem;
  color: rgba(255,26,77,.18);
  position: absolute;
  top: -6px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   BENEFITS GRID
───────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.benefit {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  border-left: 4px solid var(--red);
  transition: transform .28s, background .28s;
}
.benefit:hover { transform: translateY(-5px); background: rgba(255,26,77,.07); }
.benefit__icon  { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.benefit__title { font-size: 1.15rem; font-weight: 700; color: var(--pink); margin-bottom: 8px; }
.benefit__body  { font-size: .95rem; color: #bbb; line-height: 1.7; }

/* top-border variant (free section) */
.benefit--top {
  border-left: none;
  border-top: 4px solid var(--red);
  text-align: center;
}

/* ─────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
}
.compare-table th {
  padding: 16px 22px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,26,77,.25);
}
.compare-table th:first-child { text-align: left; }
.compare-table .th-hl { color: var(--pink); font-size: 1.05rem; }
.compare-table td {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  font-size: .98rem;
}
.compare-table td:first-child { text-align: left; color: #ccc; }
.compare-table tr:hover td { background: rgba(255,26,77,.04); }
.check { color: #4ade80; font-size: 1.2rem; }
.cross { color: #555;    font-size: 1.2rem; }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 1px solid rgba(255,26,77,.14);
  transition: border-color .28s, background .28s;
}
.testimonial:hover { border-color: rgba(255,26,77,.42); background: rgba(255,26,77,.06); }
.testimonial__stars  { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial__body   { font-size: 1.05rem; color: #ddd; font-style: italic; line-height: 1.75; margin-bottom: 18px; }
.testimonial__author { font-weight: 700; color: var(--pink); font-size: .9rem; }

/* ─────────────────────────────────────────────
   DICE FACES
───────────────────────────────────────────── */
.dice-faces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}
.dice-face {
  background: rgba(255,26,77,.07);
  border: 2px solid rgba(255,26,77,.28);
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .28s, border-color .28s, background .28s;
  min-height: 160px;
}
.dice-face:hover {
  transform: rotate(4deg) scale(1.05);
  border-color: var(--red);
  background: rgba(255,26,77,.14);
}
.dice-face__icon { font-size: 2.6rem; margin-bottom: 10px; display: block; }
.dice-face__text { font-size: .9rem; color: var(--pink); font-weight: 600; line-height: 1.5; }

/* ─────────────────────────────────────────────
   SECONDARY PRODUCT CARDS
───────────────────────────────────────────── */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.secondary-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,26,77,.18);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .36s, border-color .36s, background .36s, box-shadow .36s;
  display: block;
  color: inherit;
}
.secondary-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
  background: rgba(255,26,77,.07);
  box-shadow: 0 20px 55px rgba(255,26,77,.18);
}
.secondary-card__emoji { font-size: 3.5rem; display: block; margin-bottom: 18px; }
.secondary-card__title { font-size: 1.65rem; margin-bottom: 12px; }
.secondary-card__body  { font-size: 1rem; color: #bbb; line-height: 1.75; margin-bottom: 22px; }
.secondary-card__cta {
  color: var(--pink);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.secondary-card:hover .secondary-card__cta { gap: 14px; }

/* ─────────────────────────────────────────────
   SCRATCH CARD MODES GRID
───────────────────────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.mode-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,26,77,.14);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  transition: border-color .25s, background .25s;
}
.mode-card:hover { border-color: rgba(255,26,77,.4); background: rgba(255,26,77,.06); }
.mode-card__icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.mode-card__name { font-weight: 700; color: var(--pink); margin-bottom: 5px; font-size: .95rem; }
.mode-card__desc { color: #bbb; font-size: .88rem; line-height: 1.5; }

/* ─────────────────────────────────────────────
   DEEP DIVE (two-column alternating)
───────────────────────────────────────────── */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.deep-dive--reverse { direction: rtl; }
.deep-dive--reverse > * { direction: ltr; }
.deep-dive__eyebrow { margin-bottom: 10px; }
.deep-dive__title   { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.deep-dive__body    { font-size: 1.05rem; color: #ccc; line-height: 1.8; margin-bottom: 16px; }

/* ─────────────────────────────────────────────
   FREE BADGE
───────────────────────────────────────────── */
.free-badge {
  background: linear-gradient(135deg, rgba(255,215,0,.13), rgba(255,215,0,.04));
  border: 2px solid rgba(255,215,0,.45);
  border-radius: var(--radius-md);
  padding: 40px 44px;
  text-align: center;
  margin: 48px 0;
}
.free-badge__title { font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.free-badge__sub   { font-size: 1.1rem; color: #ccc; }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 150px var(--section-px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,26,77,.16) 0%, transparent 72%),
    linear-gradient(180deg, #0d0005, #1a0010, #0d0005);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '🔥';
  position: absolute;
  font-size: 38rem;
  opacity: .025;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta__title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 26px;
  text-shadow: 0 0 60px rgba(255,26,77,.45);
}
.final-cta__title span { color: var(--pink); }
.final-cta__sub {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--pink2);
  max-width: 660px;
  margin: 0 auto 55px;
  line-height: 1.65;
}
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.final-cta__note { margin-top: 40px; font-size: 1rem; opacity: .55; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: #000;
  padding: 64px var(--section-px) 44px;
  text-align: center;
  border-top: 1px solid rgba(255,26,77,.13);
}
.footer__logo  { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--pink); margin-bottom: 18px; }
.footer__desc  { color: #666; max-width: 580px; margin: 0 auto 26px; font-size: .9rem; line-height: 1.7; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 28px; }
.footer__links a { color: #777; font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--pink); }
.footer__copy  { color: #444; font-size: .82rem; line-height: 1.8; }

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (≤ 1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .product-hero,
  .product-hero--reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
  .product-hero--reverse > * { direction: ltr; }

  .heat-levels { grid-template-columns: repeat(3, 1fr); }
  .steps       { grid-template-columns: repeat(3, 1fr); }
  .dare-grid   { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .secondary-grid     { grid-template-columns: repeat(2, 1fr); }
  .modes-grid         { grid-template-columns: repeat(2, 1fr); }

  .deep-dive,
  .deep-dive--reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .deep-dive--reverse > * { direction: ltr; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile (≤ 640px)
───────────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --section-px: 5%;
    --section-py: 60px;
  }

  /* navbar */
  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  /* hero */
  .hero { padding-top: 90px; }
  .hero__btns { flex-direction: column; align-items: center; }
  .hero__btns .btn { width: 100%; max-width: 340px; text-align: center; }

  /* heat levels — 2 columns on mobile */
  .heat-levels { grid-template-columns: repeat(2, 1fr); }

  /* steps — 1 column on mobile */
  .steps { grid-template-columns: 1fr; }

  /* dare cards — 1 column */
  .dare-grid { grid-template-columns: 1fr; }

  /* dice faces — 2 columns */
  .dice-faces { grid-template-columns: repeat(2, 1fr); }

  /* benefits — 1 column */
  .benefits-grid { grid-template-columns: 1fr; }

  /* testimonials — 1 column */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* secondary cards — 1 column */
  .secondary-grid { grid-template-columns: 1fr; }

  /* modes grid — 1 column */
  .modes-grid { grid-template-columns: 1fr; }

  /* free badge */
  .free-badge { padding: 28px 22px; }
  .free-badge__title { font-size: 1.4rem; }

  /* final cta */
  .final-cta { padding: 90px var(--section-px); }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .final-cta__btns .btn { width: 100%; max-width: 340px; text-align: center; }

  /* footer */
  .footer__links { gap: 14px; }

  /* buttons sizing */
  .btn { padding: 16px 36px; font-size: 1rem; }

  /* compare table always scrolls */
  .compare-wrap { -webkit-overflow-scrolling: touch; }

  /* warning bar smaller */
  .warning-bar { font-size: .85rem; }
}
