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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #161210;
  --bg-2: #1f1916;
  --bg-3: #2a221e;
  --bg-4: #362c26;
  --gold: #e8a862;
  --gold-lt: #f5c98c;
  --gold-dim: rgba(232, 168, 98, 0.12);
  --gold-line: rgba(232, 168, 98, 0.24);
  --gold-text: #161210;
  --on: #f6efe6;
  --on-2: rgba(207, 194, 177, 0.85);
  --on-3: rgba(207, 194, 177, 0.58);
  --on-muted: rgba(154, 142, 126, 0.7);
  --danger: #8a3e3e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --font-d: 'Bebas Neue', 'Oswald', sans-serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --track-d: -0.02em;
  --track-lbl: 0.12em;
  --track-sm: 0.04em;
  --pad-v: clamp(84px, 10vw, 140px);
  --w: min(1160px, calc(100% - 48px));
  --w-copy: min(720px, 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--on);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ann-bar {
  position: relative;
  z-index: 101;
  background: #0f0b09;
  color: var(--gold-lt);
  text-align: center;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: var(--track-sm);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(232, 168, 98, 0.1);
}

.ann-bar strong {
  color: var(--on);
  font-weight: 600;
}

.ann-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  margin-inline: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(232, 168, 98, 0.3);
  background: rgba(232, 168, 98, 0.12);
  color: var(--on);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 5vw, 48px);
  background: rgba(22, 18, 16, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}

nav.scrolled {
  border-color: rgba(232, 168, 98, 0.1);
  background: rgba(22, 18, 16, 0.94);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--on-2);
  text-decoration: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--gold-text);
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  box-shadow: 0 18px 30px rgba(232, 168, 98, 0.15);
}

.btn-primary--lg {
  width: 100%;
  max-width: 430px;
  padding: 18px 30px;
  font-size: 13px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid var(--gold-line);
  text-decoration: none;
  color: var(--on);
  text-transform: uppercase;
  letter-spacing: var(--track-lbl);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 168, 98, 0.42);
  background: rgba(232, 168, 98, 0.08);
}

.btn-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary__sub,
.cta-note {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: var(--track-sm);
  color: var(--on-2);
  text-transform: none;
}

.wapp-btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

#hero {
  min-height: 100svh;
  padding: 170px clamp(24px, 6vw, 80px) 84px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(22, 18, 16, 0.58) 0%, rgba(22, 18, 16, 0.78) 55%, rgba(22, 18, 16, 0.94) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 168, 98, 0.08) 0%, transparent 72%);
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.marquee-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.marquee-row {
  display: flex;
  gap: 8px;
  height: calc(100% / 4.2);
}

.marquee-row--left { animation: scrollLeft 140s linear infinite; }
.marquee-row--right { animation: scrollRight 168s linear infinite; }
.marquee-row:nth-child(3) { animation-duration: 112s; }
.marquee-row:nth-child(5) { animation-duration: 200s; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee-card {
  height: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.85);
}

.marquee-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(22, 18, 16, 0.88) 0%, rgba(22, 18, 16, 0.55) 50%, transparent 100%),
    linear-gradient(to bottom, rgba(22, 18, 16, 0.32) 0%, transparent 30%, transparent 60%, rgba(22, 18, 16, 0.95) 100%),
    linear-gradient(to bottom, rgba(22, 18, 16, 0.72) 0%, transparent 20%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
}

.hero-label,
.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
}

.hero-label::before,
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-d);
  font-weight: 400;
  letter-spacing: var(--track-d);
  text-transform: uppercase;
  line-height: 1.02;
}

h1 {
  font-size: clamp(48px, 8vw, 100px);
  margin-bottom: 26px;
  max-width: 10ch;
}

h1 em,
h2 em,
h3 em {
  font-style: normal;
  color: var(--gold-lt);
}

.hero-body {
  max-width: 52ch;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--on-2);
  margin-bottom: 38px;
}

.hero-cta-wrap {
  max-width: 440px;
}

.hero-social-proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--on-2);
  font-size: 12px;
  letter-spacing: var(--track-sm);
}

.hero-social-proof strong { color: var(--on); }

.hero-metrics {
  position: relative;
  z-index: 3;
  width: var(--w);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(232, 168, 98, 0.18);
  border-bottom: 1px solid rgba(232, 168, 98, 0.1);
  background: rgba(18, 14, 12, 0.46);
  backdrop-filter: blur(10px);
}

.metric {
  padding: 22px 18px;
  border-right: 1px solid rgba(232, 168, 98, 0.1);
}

.metric:last-child { border-right: 0; }

.metric__value {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: var(--track-d);
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.metric__label {
  color: var(--on-2);
  font-size: 12px;
  line-height: 1.5;
}

main section {
  padding: var(--pad-v) 0;
  position: relative;
}

.section-shell {
  width: var(--w);
  margin: 0 auto;
}

.section-head {
  max-width: var(--w-copy);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head h2 {
  font-size: clamp(34px, 5.5vw, 72px);
  margin-bottom: 18px;
}

.section-head p {
  max-width: 58ch;
  color: var(--on-2);
  font-size: clamp(15px, 1.8vw, 18px);
}

#signal {
  background: var(--bg-2);
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.signal-copy p {
  max-width: 62ch;
  margin-bottom: 22px;
  color: var(--on-2);
  font-size: clamp(15px, 1.65vw, 17px);
}

.signal-copy p strong { color: var(--on); }

.pull-quote {
  margin: 34px 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-d);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: var(--track-d);
  text-transform: uppercase;
}

.signal-panel {
  padding: 28px;
  border: 1px solid rgba(232, 168, 98, 0.15);
  background:
    linear-gradient(180deg, rgba(245, 201, 140, 0.06) 0%, rgba(42, 34, 30, 0.56) 100%),
    var(--bg);
  box-shadow: var(--shadow);
}

.signal-panel__kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.signal-panel h3 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 16px;
}

.signal-panel ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.signal-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(232, 168, 98, 0.1);
  color: var(--on-2);
}

.signal-panel li:first-child { border-top: 0; padding-top: 0; }

#process {
  background: var(--bg);
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 168, 98, 0.22) 12%, rgba(232, 168, 98, 0.22) 88%, transparent 100%);
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid rgba(232, 168, 98, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(232, 168, 98, 0.35);
}

.timeline-body {
  padding: 30px;
  border: 1px solid rgba(232, 168, 98, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-2);
}

.timeline-step {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-body h3 {
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 14px;
}

.timeline-body p {
  color: var(--on-2);
  font-size: clamp(14px, 1.5vw, 16px);
  max-width: 58ch;
}

.timeline-media {
  margin-top: 22px;
  position: relative;
  min-height: 240px;
  background: var(--bg-3);
  overflow: hidden;
}

.timeline-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.04) 0%, rgba(18, 14, 12, 0.55) 100%);
}

.timeline-media__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 12px;
  background: rgba(22, 18, 16, 0.72);
  color: var(--gold-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  border: 1px solid rgba(232, 168, 98, 0.24);
}

#science {
  background: var(--bg-2);
}

.science-grid,
.proof-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.science-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-card {
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid rgba(232, 168, 98, 0.12);
}

.science-card__source {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.science-card h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 12px;
}

.science-card p {
  color: var(--on-2);
  font-size: 14px;
}

#proof {
  background: var(--bg);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  padding: 30px 28px;
  border: 1px solid rgba(232, 168, 98, 0.12);
  background: linear-gradient(180deg, rgba(245, 201, 140, 0.05) 0%, rgba(31, 25, 22, 0.96) 100%);
}

.proof-card__num {
  display: block;
  font-family: var(--font-d);
  font-size: 44px;
  color: rgba(232, 168, 98, 0.2);
  margin-bottom: 10px;
  line-height: 1;
}

.proof-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.proof-card p {
  color: var(--on-2);
  font-size: 14px;
}

#testimonials {
  background: var(--bg-2);
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quote-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid rgba(232, 168, 98, 0.12);
}

.quote-card__mark {
  font-family: var(--font-d);
  font-size: 54px;
  line-height: 0.8;
  color: rgba(232, 168, 98, 0.3);
  margin-bottom: 12px;
}

.quote-card p {
  color: var(--on-2);
  margin-bottom: 16px;
  font-size: 15px;
}

.quote-card__meta {
  color: var(--on-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-sm);
}

#offer {
  background: var(--bg);
  overflow: hidden;
}

#offer::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(232, 168, 98, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.offer-shell {
  position: relative;
  width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.offer-intro p {
  color: var(--on-2);
  margin-bottom: 18px;
  max-width: 56ch;
}

.offer-card {
  position: relative;
  padding: clamp(34px, 4.5vw, 48px);
  border: 1px solid rgba(232, 168, 98, 0.18);
  background:
    linear-gradient(180deg, rgba(245, 201, 140, 0.08) 0%, rgba(31, 25, 22, 0.92) 28%, rgba(22, 18, 16, 0.98) 100%);
  box-shadow: var(--shadow);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  background: var(--gold-dim);
  color: var(--gold-lt);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
}

.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(232, 168, 98, 0.36);
}

.offer-card h2 {
  font-size: clamp(38px, 5vw, 76px);
  margin-bottom: 10px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}

.price-was {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--on-muted);
  text-decoration: line-through;
  letter-spacing: var(--track-d);
}

.price-now {
  font-family: var(--font-d);
  font-size: clamp(60px, 9vw, 98px);
  line-height: 1;
  color: var(--gold-lt);
  letter-spacing: var(--track-d);
}

.offer-copy {
  color: var(--on-2);
  margin-bottom: 24px;
}

.offer-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.offer-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--on-2);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 168, 98, 0.08);
}

.offer-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.offer-list__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(232, 168, 98, 0.18);
  background: rgba(232, 168, 98, 0.07);
  font-size: 13px;
}

.offer-list strong { color: var(--on); }

.offer-timer {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(232, 168, 98, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.offer-timer__label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
}

.offer-timer__clock {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timer-unit {
  min-width: 72px;
  text-align: center;
}

.timer-unit strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  color: var(--gold-lt);
  letter-spacing: var(--track-d);
}

.timer-unit span {
  display: block;
  margin-top: 6px;
  color: var(--on-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
}

.timer-sep {
  color: var(--gold);
  font-family: var(--font-d);
  font-size: 32px;
  line-height: 1;
}

.guarantee {
  margin-top: 18px;
  color: var(--on-2);
  font-size: 13px;
}

#faq {
  background: var(--bg-2);
}

.faq-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq__item {
  border-top: 1px solid rgba(232, 168, 98, 0.14);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(232, 168, 98, 0.14);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--on);
  text-align: left;
  cursor: pointer;
}

.faq__q {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: var(--track-d);
  text-transform: uppercase;
}

.faq__chevron {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq__body-inner {
  overflow: hidden;
}

.faq__a {
  padding: 0 0 22px;
  color: var(--on-2);
  max-width: 66ch;
}

.faq__item.open .faq__body {
  grid-template-rows: 1fr;
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq-cta {
  margin-top: 42px;
  padding: 32px;
  border: 1px solid rgba(232, 168, 98, 0.14);
  background: linear-gradient(180deg, rgba(245, 201, 140, 0.05) 0%, rgba(22, 18, 16, 0.88) 100%);
}

.faq-cta p {
  max-width: 58ch;
  margin-bottom: 18px;
  color: var(--on-2);
}

footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(232, 168, 98, 0.08);
  background: #120f0d;
}

.footer-inner {
  width: var(--w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--on-muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

@media (max-width: 1100px) {
  .science-grid,
  .proof-grid,
  .testimonial-strip,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-shell,
  .signal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ann-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
  }

  nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .btn-primary--nav {
    display: none;
  }

  #hero {
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 72px);
  }

  .hero-metrics,
  .science-grid,
  .proof-grid,
  .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-card {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
  }

  .timeline-dot {
    width: 32px;
    height: 32px;
  }

  .timeline-dot::after {
    width: 8px;
    height: 8px;
  }

  .timeline-body,
  .offer-card,
  .science-card,
  .proof-card,
  .quote-card,
  .signal-panel,
  .faq-cta {
    padding: 24px;
  }

  .offer-timer__clock {
    gap: 8px;
  }

  .timer-unit {
    min-width: 56px;
  }

  .btn-stack {
    flex-direction: column;
  }

  .btn-primary--lg,
  .btn-secondary {
    max-width: none;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section-shell,
  .offer-shell,
  .hero-metrics,
  .footer-inner {
    width: min(100%, calc(100% - 0px));
  }

  .offer-timer__clock {
    justify-content: space-between;
  }

  .timer-sep {
    font-size: 24px;
  }

  .faq__q {
    font-size: 28px;
  }
}
