:root {
  --cream:        #FAF6EF;
  --primary:      #E8382A;
  --primary-dark: #CC2A1D;
  --green:        #1A3A2C;
  --yellow:       #FFD000;
  --black:        #161616;
  --mid:          #7A7060;
  --light:        #EDE9DF;
  --white:        #FFFFFF;
  --border:       2.5px solid #161616;
  --shadow-sm:    3px 3px 0 #161616;
  --shadow:       5px 5px 0 #161616;
  --shadow-lg:    7px 7px 0 #161616;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo, .footer-logo { font-family: 'Syne', sans-serif; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 20px; font-weight: 800; color: var(--green); letter-spacing: -0.5px; }

/* ── Buttons ── */
.btn-primary {
  background: var(--primary); color: var(--white);
  border: var(--border); border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.12s;
  white-space: nowrap;
}
.btn-primary:hover  { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #161616; }
.btn-primary:active { transform: translate(1px, 1px);   box-shadow: 2px 2px 0 #161616; }
.btn-primary.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-primary.btn-full { width: 100%; }
.btn-primary.btn-block { display: block; width: 100%; }

.btn-nav {
  background: var(--primary); color: var(--white);
  border: var(--border); border-radius: 6px;
  padding: 8px 16px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-nav:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #161616; }

/* ── Hero ── */
.hero { padding: 80px 0 72px; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--yellow); color: var(--black);
  font-size: 12px; font-weight: 700; font-family: 'DM Sans', sans-serif;
  padding: 6px 14px 6px 12px; border-radius: 100px;
  border: var(--border); box-shadow: var(--shadow-sm);
  margin-bottom: 32px; letter-spacing: 0.5px; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.04em;
  color: var(--black); margin-bottom: 24px;
}
.h1-accent {
  display: inline-block;
  background: var(--yellow);
  padding: 2px 12px 6px;
  border-radius: 6px;
  border: var(--border);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 18px); color: var(--mid);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.75;
}

.signup-row {
  display: flex; gap: 10px; justify-content: center;
  max-width: 480px; margin: 0 auto 14px;
}

.email-input {
  flex: 1; min-width: 0;
  border: var(--border); border-radius: 8px;
  padding: 14px 16px; font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white); color: var(--black);
  transition: box-shadow 0.15s;
}
.email-input:focus  { outline: none; box-shadow: 3px 3px 0 var(--black); }
.email-input::placeholder { color: #B0A898; }

.social-proof { font-size: 13px; color: var(--mid); }
.social-proof-dark { color: rgba(22,22,22,0.5); }
.counter { font-weight: 700; color: var(--primary); }

/* ── Stats strip ── */
.stats-strip {
  background: var(--green);
  border-top: var(--border); border-bottom: var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}
.stat-item {
  padding: 16px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800; color: var(--yellow);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px;
}
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6; max-width: 180px; margin: 0 auto;
}

/* ── How it works ── */
.how-it-works { padding: 88px 0; }

.section-header { margin-bottom: 52px; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800; letter-spacing: -0.03em; color: var(--black);
}

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.step-card {
  background: var(--white);
  border: var(--border); border-radius: 12px;
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  cursor: default;
  transition: transform 0.15s, box-shadow 0.15s;
}
.step-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--primary);
  line-height: 1; margin-bottom: 20px; letter-spacing: -0.03em;
}
.step-card h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 12px;
  letter-spacing: -0.02em; color: var(--black);
}
.step-card p { font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── Bottom CTA ── */
.bottom-cta {
  background: var(--yellow);
  border-top: var(--border);
  padding: 88px 0;
}
.cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.bottom-cta h2 {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800;
  color: var(--black); margin-bottom: 16px; letter-spacing: -0.03em;
}
.cta-sub { color: rgba(22,22,22,0.6); font-size: 16px; margin-bottom: 32px; line-height: 1.75; }

.bottom-cta .email-input {
  background: var(--cream);
}
.bottom-cta .btn-primary {
  background: var(--black); border-color: var(--black);
}
.bottom-cta .btn-primary:hover {
  box-shadow: 5px 5px 0 rgba(0,0,0,0.35);
}

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(22,22,22,0.6);
  display: flex; align-items: center; justify-content: center; z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; padding: 24px;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); border: var(--border); border-radius: 16px;
  padding: 40px 36px; max-width: 420px; width: 100%; text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px); transition: transform 0.25s;
}
.modal-overlay.show .modal { transform: translateY(0); }

.modal-icon {
  width: 52px; height: 52px; background: var(--cream);
  border: var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--black);
}
.modal-icon-win { background: var(--green); color: var(--yellow); }

.modal-title { font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.modal-sub { font-size: 14px; color: var(--mid); margin: 10px 0 20px; line-height: 1.65; }
.modal-step-sub { font-size: 13px; color: var(--mid); margin-bottom: 16px; margin-top: 6px; }

.modal-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 20px; }
.modal-prog-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--light); border: 1.5px solid #C0BBB0; transition: background 0.2s;
}
.modal-prog-dot.active { background: var(--primary); border-color: var(--primary); }

.survey-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; text-align: left; }
.survey-opt {
  background: var(--cream); border: 2px solid var(--light);
  border-radius: 8px; padding: 10px 14px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--black); text-align: left;
}
.survey-opt:hover  { border-color: var(--primary); }
.survey-opt.selected {
  border-color: var(--primary); background: var(--white); font-weight: 600;
  box-shadow: 3px 3px 0 var(--primary);
}

.share-row { display: flex; gap: 10px; margin-bottom: 12px; }
.btn-share {
  flex: 1; border: var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-share:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #161616; }
.btn-share-wa   { background: #25D366; color: var(--white); }
.btn-share-copy { background: var(--cream); color: var(--black); }

.modal-skip {
  background: none; border: none; color: var(--mid); font-size: 13px;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  text-decoration: underline; margin-top: 12px; display: block; width: 100%;
}

/* ── Footer ── */
footer { background: var(--green); border-top: var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-logo  { font-size: 18px; font-weight: 800; color: var(--yellow); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── Mobile sticky bar ── */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px 20px; background: var(--cream);
  border-top: var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.07); z-index: 90;
}
@media (max-width: 640px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 80px; }
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--white);
  padding: 12px 24px; border-radius: 8px; border: var(--border);
  font-size: 14px; font-weight: 500; opacity: 0;
  transition: all 0.3s; pointer-events: none;
  white-space: nowrap; z-index: 200; box-shadow: var(--shadow-sm);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
  }
  .stat-item:last-child { border-bottom: none; }
  .signup-row { flex-direction: column; }
  .signup-row .btn-primary { width: 100%; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 52px; }
  .how-it-works { padding: 64px 0; }
  .bottom-cta { padding: 64px 0; }
  .modal { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .step-card:hover,
  .btn-primary:hover,
  .btn-nav:hover,
  .btn-share:hover { transform: none; }
}
