/* Lureguessr — dark, orange accent, funnel to Whatnot */
:root {
  --bg: #1b1b1d;
  --panel: #242427;
  --panel-2: #2b2b2f;
  --line: rgba(255, 255, 255, 0.08);
  --ink: #f2f3f5;
  --muted: #8d939d;
  --orange: #ff6a00;
  --orange-2: #ff8a2a;
  --gold: #ffb02e;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(27, 27, 29, 0.4), rgba(27, 27, 29, 0.75) 55%, var(--bg) 100%),
    url("assets/img/hero-bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center 22%;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 20px; }

h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; letter-spacing: -0.02em; text-align: center; }
.gold { color: var(--gold); }
.muted-note { color: var(--muted); text-align: center; padding: 30px 0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 700; border-radius: 10px; padding: 12px 22px;
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(2px) !important; }
.btn-orange {
  background: var(--orange);
  color: #170a00;
  box-shadow: 0 4px 0 #a84c00, 0 10px 24px rgba(255, 106, 0, 0.25);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #a84c00, 0 14px 30px rgba(255, 106, 0, 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.32); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16.5px; border-radius: 12px; }

/* nav */
#nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27, 27, 29, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.wordmark { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.nav-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.nav-socials { display: flex; gap: 8px; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--ink);
  transition: transform 0.18s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { transform: translateY(-2px); border-color: rgba(255, 138, 42, 0.5); color: var(--orange-2); }

/* live bar */
.live-bar {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(90deg, #d92b2b, #b31414); color: #fff;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.05em; padding: 10px 16px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: blink 1.1s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

/* hero */
.hero {
  position: relative; z-index: 2;
  text-align: center; padding: clamp(20px, 3.5vw, 34px) 20px clamp(16px, 2.5vw, 22px);
}
.avatar-wrap { display: inline-block; position: relative; margin-bottom: 12px; }
.hero-avatar {
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--panel-2);
  box-shadow: var(--shadow-sm);
}
.hero h1 { font-size: clamp(26px, 5vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.hero-sub { color: var(--muted); font-size: clamp(14px, 2vw, 16.5px); margin-top: 5px; }

.stats { display: flex; justify-content: center; gap: clamp(10px, 2vw, 16px); margin-top: 18px; flex-wrap: wrap; }
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 18px; min-width: 100px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.2); box-shadow: var(--shadow-md); }
.stat-num { display: block; font-size: clamp(18px, 2.6vw, 24px); font-weight: 800; letter-spacing: -0.02em; }
.stat-label { color: var(--muted); font-size: 11px; }

/* shop CTA above the grid */
.shop-cta { text-align: center; margin: 18px 0 16px; }

.drop-note {
  position: relative; display: flex; align-items: center; gap: 14px;
  max-width: 620px; margin: 0 auto 30px; padding: 16px 22px;
  background: linear-gradient(155deg, var(--panel-2), var(--panel));
  border-radius: 14px; box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.drop-note::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(155deg, rgba(255, 138, 42, 0.5), rgba(255, 255, 255, 0.05) 45%, rgba(255, 106, 0, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.drop-icon {
  position: relative; z-index: 1; flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; font-size: 19px;
  background: linear-gradient(135deg, rgba(255, 138, 42, 0.22), rgba(255, 106, 0, 0.1));
  border: 1px solid rgba(255, 138, 42, 0.3);
}
.drop-note p {
  position: relative; z-index: 1;
  font-size: 13.5px; line-height: 1.55; color: var(--muted); text-align: left;
}
.drop-note p strong { color: var(--orange-2); font-weight: 700; }
@media (max-width: 560px) {
  .drop-note { text-align: center; }
}

/* items */
.items { position: relative; z-index: 2; padding: 0 0 clamp(40px, 6vw, 64px); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.card {
  background: var(--panel); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: var(--shadow-md), 0 0 24px rgba(255, 106, 0, 0.12);
}
.card-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #fff; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.qty {
  position: absolute; top: 9px; left: 9px;
  background: rgba(20, 20, 22, 0.85); backdrop-filter: blur(4px);
  color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 8px;
}
.qty-limited {
  background: linear-gradient(135deg, var(--orange-2), var(--orange)); color: #170a00;
}
.chip {
  align-self: flex-start; font-size: 10px; font-weight: 700; color: var(--orange-2);
  border: 1px solid rgba(255, 138, 42, 0.35); padding: 2px 8px; border-radius: 999px;
}
.card-body { padding: 12px 13px 13px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 {
  font-size: 12.5px; font-weight: 600; line-height: 1.4; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 16px; font-weight: 800; color: var(--ink); }
.buy {
  font-size: 12px; font-weight: 700; color: var(--muted);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.card:hover .buy { color: var(--orange-2); border-color: rgba(255, 106, 0, 0.4); }

/* reviews — plain static grid, no motion */
.reviews-section { position: relative; z-index: 2; padding: clamp(56px, 8vw, 90px) 0; }
.reviews-section .sec-head { text-align: center; }
.reviews-section .section-sub { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.reviews-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; margin-top: 40px;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  position: relative; height: 100%; border: none;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border-radius: 14px; padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(155deg, rgba(255, 138, 42, 0.45), rgba(255, 255, 255, 0.05) 45%, rgba(255, 106, 0, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.review-card::after {
  content: "“"; position: absolute; top: 2px; right: 16px; font-size: 46px; line-height: 1;
  font-family: Georgia, serif; color: rgba(255, 138, 42, 0.14); pointer-events: none;
}
.review-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: none; }
.review-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); color: var(--muted); font-weight: 700; font-size: 13px;
}
.review-who { display: flex; flex-direction: column; min-width: 0; }
.review-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-stars { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.review-text {
  position: relative; z-index: 1;
  color: var(--ink); font-size: 14px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.reviews-section .more { text-align: center; margin-top: 36px; }

/* FAQ */
.faq { border-block: 1px solid var(--line); padding: clamp(54px, 7vw, 84px) 0; }
.faq h2 { margin-bottom: 8px; }
.faq-sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-bottom: 34px; }
.faq-grid { display: grid; gap: 12px; }
@media (min-width: 720px) { .faq-grid { grid-template-columns: 1fr 1fr; } }

details {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
details:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255, 255, 255, 0.16); }
details[open] { border-color: rgba(255, 255, 255, 0.22); }

summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; font-size: 16px; font-weight: 700; color: #fff;
}
summary::-webkit-details-marker { display: none; }

.q-num {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
  font-size: 12px; font-weight: 800; color: var(--muted);
}
summary .q-text { flex: 1; }
summary .q-toggle {
  flex: none; font-size: 19px; font-weight: 300; color: var(--muted);
  transition: transform 0.25s ease;
}
details[open] summary .q-toggle { transform: rotate(45deg); color: var(--orange-2); }

details p {
  color: var(--muted); font-size: 14.5px; line-height: 1.65;
  padding: 0 20px 20px 60px;
}
details p strong { color: var(--ink); }
details p a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255, 138, 42, 0.55); text-underline-offset: 3px; }
details p a:hover { text-decoration-color: var(--orange-2); }

/* final CTA */
/* homepage promo banner for the lure box */
.box-promo { position: relative; z-index: 2; padding: 0 0 clamp(50px, 7vw, 76px); }
.box-promo-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background:
    radial-gradient(70% 160% at 100% 100%, rgba(255, 106, 0, 0.16), transparent 60%),
    linear-gradient(155deg, var(--panel-2), var(--panel));
  border: 1px solid rgba(255, 106, 0, 0.28); border-radius: 20px;
  padding: 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.box-promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255, 106, 0, 0.45); }
.box-promo-tag { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 8px; }
.box-promo-text h2 { font-size: clamp(19px, 3vw, 24px); font-weight: 800; text-align: left; margin-bottom: 4px; }
.box-promo-text p { color: var(--muted); font-size: 13.5px; }
.box-promo-btn { flex: none; }

/* lure box subscribe page — mystery box hero */
.mbox-hero { position: relative; z-index: 2; padding: clamp(50px, 8vw, 90px) 20px clamp(40px, 6vw, 60px); overflow: hidden; }
.mbox-hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; text-align: center;
}
/* mobile/stacked: show the box before the buy button, not after it */
.mbox-stage { order: -1; }
@media (min-width: 900px) {
  .mbox-hero-inner { gap: 40px; grid-template-columns: 1.05fr 1fr; text-align: left; }
  .mbox-stage { order: 0; }
  .mbox-copy .box-sub { margin-left: 0; }
  .mbox-price-row, .box-cta { justify-content: flex-start; }
}
/* mobile: keep the box + subscribe button above the fold — trim the rest */
@media (max-width: 640px) {
  .mbox-hero { padding: 22px 20px 26px; }
  .box-sub, .box-cta-note { display: none; }
  .mbox-copy h1 { font-size: 28px; }
  .box-kicker { margin-bottom: 6px; }
  .mbox-price-row { margin-top: 14px; }
  .box-cta { margin-top: 14px; }
  .mbox-stage { max-width: 250px; }
}
.box-kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-2); margin-bottom: 10px;
}
.mbox-copy h1 { font-size: clamp(34px, 6vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.box-sub { color: var(--muted); font-size: clamp(15px, 2.2vw, 18px); margin-top: 10px; max-width: 460px; margin-left: auto; margin-right: auto; }
.mbox-price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.box-price { font-size: clamp(44px, 7.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.box-price-period { font-size: 17px; font-weight: 600; color: var(--muted); }
.mbox-shipped-tag {
  font-size: 12px; font-weight: 700; color: var(--orange-2);
  background: rgba(255, 138, 42, 0.12); border: 1px solid rgba(255, 138, 42, 0.32);
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.box-cta { margin-top: 24px; display: flex; flex-direction: column; align-items: center; }
@media (min-width: 900px) { .box-cta { align-items: flex-start; } }
.box-cta .btn:disabled { opacity: 0.55; cursor: not-allowed; }
.box-cta .btn:disabled:hover { transform: none; box-shadow: 0 4px 0 #a84c00, 0 10px 24px rgba(255, 106, 0, 0.25); }
.box-cta-note { color: var(--muted); font-size: 12.5px; margin-top: 12px; }

/* the box photo — no card frame, just it sitting there with weight */
.mbox-stage { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.mbox-flip {
  position: relative; z-index: 1; width: 100%;
  animation: mboxFloat 6s ease-in-out infinite;
}
@keyframes mboxFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.mbox-img {
  width: 100%; max-width: 340px; object-fit: contain; display: block; margin: 0 auto;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.5));
}

/* diagonal corner ribbon — the classic "on sale" banner, flat color, no shine */
.mbox-ribbon-wrap {
  position: absolute; top: 0; right: 0; width: 132px; height: 132px;
  overflow: hidden; z-index: 2; pointer-events: none;
}
.mbox-ribbon {
  position: absolute; top: 24px; right: -40px; width: 175px;
  padding: 8px 0 9px; text-align: center;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transform: rotate(45deg) scale(0);
  animation: ribbonPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}
@keyframes ribbonPop {
  0%   { transform: rotate(45deg) scale(0); }
  100% { transform: rotate(45deg) scale(1); }
}
.mbox-ribbon-baits {
  display: block; font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 19px; letter-spacing: 0.03em; line-height: 1; color: #170a00;
}
.mbox-ribbon-price {
  display: block; margin-top: 3px; font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 13px; letter-spacing: 0.03em; font-weight: 700; color: #170a00;
}

/* small tackle-themed accents drifting around the box — motion only, no glow/twinkle */
.mbox-critter { position: absolute; z-index: 1; pointer-events: none; animation: critterFloat 3.6s ease-in-out infinite; }
.c1 { top: 2%; left: -4%; font-size: 26px; animation-delay: 0s; }
.c2 { bottom: 16%; right: -6%; font-size: 22px; animation-delay: 1.1s; }
.c3 { bottom: -2%; left: 12%; font-size: 20px; animation-delay: 2.1s; }
@keyframes critterFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-12px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .mbox-flip, .mbox-critter { animation: none; }
  .mbox-ribbon { animation: none; transform: rotate(45deg) scale(1); }
}

/* why-it's-a-mystery section */
.mbox-why { padding: clamp(50px, 7vw, 80px) 0; }
.mbox-why h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; text-align: center; margin-bottom: 6px; }
.mbox-why .section-sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
.mbox-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.mbox-why-card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.mbox-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mbox-why-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.mbox-why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mbox-why-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* "how this actually works" — an animated line drawing itself between 3 stops */
.mbox-timeline-section { background: var(--panel); border-block: 1px solid var(--line); padding: clamp(56px, 8vw, 88px) 0; }
.mbox-timeline-section h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; text-align: center; margin-bottom: 44px; }

.timeline-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.timeline-track::before {
  content: ""; position: absolute; top: 23px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--orange-2), var(--orange), var(--orange-2));
  transform-origin: left center; transform: scaleX(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-track.drawn::before { transform: scaleX(1); }

.timeline-stop { position: relative; text-align: center; }
.timeline-badge {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #170a00; font-weight: 800; font-size: 18px;
  box-shadow: 0 0 0 6px var(--panel), 0 8px 20px rgba(255, 106, 0, 0.35);
  position: relative; z-index: 1;
  animation: badgePulse 2.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 6px var(--panel), 0 8px 20px rgba(255, 106, 0, 0.35); }
  50%      { box-shadow: 0 0 0 6px var(--panel), 0 8px 28px rgba(255, 106, 0, 0.6); }
}
.timeline-stop h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.timeline-stop p { color: var(--muted); font-size: 13.5px; line-height: 1.6; max-width: 250px; margin: 0 auto; }

@media (max-width: 760px) {
  .timeline-track { grid-template-columns: 1fr; gap: 34px; }
  .timeline-track::before { top: 8%; bottom: 8%; left: 23px; right: auto; width: 2px; height: auto; transform-origin: top center; }
  .timeline-track.drawn::before { transform: scaleY(1); }
  .timeline-stop { text-align: left; padding-left: 54px; }
  .timeline-badge { position: absolute; left: 0; top: 0; margin: 0; }
  .timeline-stop p { max-width: none; margin: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-track::before { transition: none; transform: scaleX(1) !important; transform: scaleY(1) !important; }
  .timeline-badge { animation: none; }
}

.final-cta { position: relative; z-index: 2; text-align: center; padding: clamp(58px, 8vw, 96px) 0; }
.final-cta h2 { margin-bottom: 26px; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 28px 0 38px; }
footer p { color: var(--muted); font-size: 12px; max-width: 540px; margin: 0 auto; text-align: center; }

/* fade-up reveal */
.fade { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.fade.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  .live-dot, .avatar-wrap::before { animation: none; }
}
