/* ─── THEME TOKENS - edit these to change the whole page ─── */
:root {
  --clr-bg: #141414;
  --clr-surface: #17171a;
  --clr-border: #2a2a30;
  --clr-accent: #b2f53a; /* neon lime - the signature color */
  --clr-accent-dim: #8ac929;
  --clr-text: #f2f2f0;
  --clr-muted: #8a8a95;
  --clr-pill-bg: #1e2d10;
  --clr-pill-text: #b2f53a;
  --clr-card-bg: #17171a;
  --clr-step-num: #b2f53a;

  --ff-display: "Syne", sans-serif;
  --ff-body: "Inter", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --max-w: 480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ─── */
.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ─── TOP BAR ─── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  margin-bottom: 36px;
  margin-top: 12px;
}

.logo {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--clr-accent);
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ─── HERO ─── */

.live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-pill-text);
  background: var(--clr-pill-bg);
  border: 1px solid #3a5c12;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.headline {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(36px, 9vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--clr-text);
  margin-bottom: 32px;
  margin-top: 50px;
}

.headline em {
  font-style: normal;
  color: var(--clr-accent);
}

.subhead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--clr-muted);
  margin-bottom: 28px;
  max-width: 400px;
}

.subhead strong {
  color: var(--clr-text);
  font-weight: 500;
}

.review-img {
  display: block;
  width: 160px;
  margin: auto;
}

/* ── Notification ticker ── */
.notification-ticker {
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  justify-content: center;
}

@keyframes notification-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.notification-text {
  transition: opacity 0.35s ease;
}

.notification-text.is-fading {
  opacity: 0;
}

/* ── Container ── */
.container {
  max-width: 440px;
  margin: auto;
  padding: 20px;
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

.proof-chip .icon {
  font-size: 15px;
}

/* ─── CTA BUTTON ─── */
.cta-wrap {
  margin-bottom: 12px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--clr-accent);
  color: #0d0d0f;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn:active {
  transform: scale(0.98);
  background: var(--clr-accent-dim);
}

.cta-btn svg {
  flex-shrink: 0;
}

.cta-sub {
  text-align: center;
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 10px;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--clr-border);
  margin: 36px 0;
}

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

/* ─── STEPS ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 16px;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: var(--clr-border);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--clr-step-num);
  flex-shrink: 0;
  background: var(--clr-bg);
  position: relative;
  z-index: 1;
}

.step-body {
  padding-bottom: 28px;
}

.step-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--clr-text);
  margin-bottom: 4px;
  line-height: 1.3;
  padding-top: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* ─── SOCIAL PROOF CARDS ─── */
.proof-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.proof-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.proof-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-pill-bg);
  border: 1px solid #3a5c12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.avatar-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.avatar-detail {
  font-size: 11px;
  color: var(--clr-muted);
}

.proof-amount {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--clr-accent);
  letter-spacing: -0.5px;
}

.proof-text {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.5;
}

.stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 16px;
}

.trust-row svg {
  color: var(--clr-accent);
}

/* ─── DESKTOP FALLBACK ─── */
.desktop-wall {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.desktop-wall svg {
  opacity: 0.3;
}

.desktop-wall h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.desktop-wall p {
  font-size: 15px;
  color: var(--clr-muted);
  max-width: 320px;
  line-height: 1.6;
}

.desktop-wall .url-pill {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--clr-accent);
  background: var(--clr-pill-bg);
  border: 1px solid #3a5c12;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  letter-spacing: -0.3px;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-wall {
    display: flex;
  }
}

/* ─── BOTTOM SPACING ─── */
.bottom-cta {
  margin-top: 40px;
}
