/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Design tokens — flat, not over-engineered ── */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --border: rgba(255,255,255,.08);
  --pink: #ff2d78;
  --pink-dim: #cc1f5e;
  --text: #f0f0f0;
  --muted: #888;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #fff;
}

.logo em {
  font-style: normal;
  color: var(--pink);
}

.logo-img {
  height: 60px;
  display: block;
}

.topbar-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(255,45,120,.3);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── Hero ── */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.hero-body {
  display: flex;
  gap: 0;
  position: relative;
  min-height: 580px;
  padding-top: 36px;
}

.hero-text {
  flex: 0 0 480px;
  max-width: 480px;
  z-index: 2;
  padding-top: 40px;
}

/* ── Offer badge ── */
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-badge svg { opacity: .6; }

/* ── Headline ── */
.hero-text h1 {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
  color: #fff;
}

.h1-pink { color: var(--pink); }

.h1-sub {
  display: block;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.2;
}

/* ── Lede paragraph ── */
.lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}

/* ── CTA ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 32px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}

.cta:hover {
  background: #e8256a;
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.cta.is-active {
  background: #22c55e;
}

.cta svg {
  transition: transform 150ms;
}

.cta:hover svg {
  transform: translateX(3px);
}

.disclaimer {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: #555;
}

/* ── Hero visual (model + rewards) ── */
.hero-visual {
  flex: 1;
  position: relative;
  min-height: 520px;
}

.model-frame {
  position: absolute;
  top: 0;
  right: -60px;
  width: min(56vw, 560px);
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
}

.model-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(10,10,10,.4) 18%, transparent 45%),
    linear-gradient(0deg, var(--bg) 0%, transparent 20%);
}

.model-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

/* ── Rewards box — not a glass card, just a flat list ── */
.rewards-box {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 90px;
  width: min(320px, 32vw);
  padding: 20px 24px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.rewards-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rewards-box li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.rewards-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rewards-box li:first-child {
  padding-top: 0;
}

.rewards-box strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  min-width: 56px;
}

.rewards-box em {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.rewards-box span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Proof strip — flat, no boxes ── */
.proof {
  max-width: 1120px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}

.proof-item svg {
  opacity: .35;
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.08);
}

/* ── Footer ── */
.foot {
  text-align: center;
  padding: 20px 24px 32px;
  font-size: 11px;
  color: #444;
}

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-body {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text {
    flex: none;
    max-width: 100%;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 32px;
  }

  .model-frame {
    position: relative;
    right: auto;
    width: 100%;
    height: 340px;
  }

  .model-frame::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 30%);
  }

  .rewards-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .hero { padding-bottom: 40px; }

  .hero-text h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .h1-sub {
    font-size: 18px;
  }

  .cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .model-frame { height: 260px; }

  .rewards-box strong { font-size: 22px; min-width: 48px; }
  .rewards-box em { font-size: 18px; }

  .proof {
    flex-wrap: wrap;
    gap: 4px;
  }

  .proof-divider { display: none; }

  .proof-item {
    padding: 8px 12px;
    font-size: 11px;
  }
}

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