:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --fg: #e8e6e1;
  --fg-muted: #8a8780;
  --accent: #d4a853;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --red: #c44d4d;
  --green: #4dc47a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero .highlight {
  color: var(--accent);
  position: relative;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.problem-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
}

.problem-card.dead .strike {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: line-through;
  color: var(--red);
  opacity: 0.7;
}

.problem-card.dead p {
  color: var(--fg-muted);
  margin-top: 10px;
  font-size: 0.95rem;
}

.problem-card.alive {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(212,168,83,0.05) 0%, var(--bg) 100%);
}

.problem-card.alive .glow {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.problem-card.alive p {
  color: var(--fg);
  margin-top: 10px;
  font-size: 0.95rem;
}

/* HOW */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step {
  position: relative;
  padding-left: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* NUMBERS */
.numbers {
  padding: 80px 24px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.numbers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.35;
  margin-bottom: 20px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* HERO CTA */
.hero-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 0 0 rgba(212,168,83,0);
}
.hero-cta:hover {
  background: #e8bc5f;
  box-shadow: 0 6px 28px rgba(212,168,83,0.35);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .problem, .how, .numbers, .closing { padding: 60px 20px; }
  .hero-accent { width: 300px; height: 300px; top: -30px; right: -80px; }
  .problem-grid, .steps { grid-template-columns: 1fr; }
  .numbers-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   FUNNEL PAGES
   ============================================================ */

.funnel-body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top chrome: brand + step progress */
.funnel-chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.funnel-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
}
.funnel-brand:hover { color: var(--accent); }

.funnel-steps {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fstep {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--fg-muted);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fstep.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.fstep.done {
  border-color: var(--green);
  color: var(--green);
  background: rgba(77,196,122,0.1);
  font-size: 11px;
}

.fstep-line {
  width: 28px;
  height: 1.5px;
  background: rgba(255,255,255,0.1);
}
.fstep-line--done {
  background: var(--green);
  opacity: 0.5;
}

/* Main funnel layout */
.funnel-main {
  flex: 1;
  padding: 48px 24px 64px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.funnel-main--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Card */
.funnel-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 40px 40px 36px;
}

.funnel-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 16px;
}

.funnel-h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}

.funnel-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.funnel-error {
  background: rgba(196,77,77,0.12);
  border: 1px solid rgba(196,77,77,0.35);
  color: #e07070;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Form elements */
.funnel-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.form-group--sm { max-width: 120px; }

.form-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-display);
}
.req { color: var(--accent); }
.form-optional { color: var(--fg-muted); font-weight: 400; }

.form-input {
  background: var(--bg);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(138,135,128,0.6); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8780' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* Signature section */
.sig-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.sig-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-display);
}
.sig-input {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.sig-legal {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Submit button */
.funnel-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.funnel-btn:hover {
  background: #e8bc5f;
  box-shadow: 0 6px 24px rgba(212,168,83,0.3);
  transform: translateY(-1px);
}
.funnel-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.funnel-link {
  color: var(--fg-muted);
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
}
.funnel-link:hover { color: var(--fg); }

.funnel-disclaimer {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Trust bar below the card */
.funnel-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.trust-icon { font-size: 1rem; }

/* ---- OFFER PAGE ---- */
.offer-card { }

.offer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.06);
}
.offer-address-icon { font-size: 1rem; }

.offer-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.offer-row--muted .offer-label,
.offer-row--muted .offer-value { color: var(--fg-muted); font-size: 0.95rem; }
.offer-row--total { padding-top: 18px; border-bottom: none; }

.offer-label { font-size: 1rem; color: var(--fg); }
.offer-value { font-family: var(--font-display); font-weight: 600; color: var(--fg); }
.offer-value--arv { font-size: 1.1rem; }
.offer-value--big {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.offer-divider {
  height: 1px;
  background: rgba(212,168,83,0.2);
  margin: 4px 0;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.offer-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.offer-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* Why section below offer card */
.offer-why {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.offer-why-title {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.offer-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.offer-why-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.offer-why-item strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 4px; }
.offer-why-item p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; margin: 0; }

/* ---- THANK YOU PAGE ---- */
.thankyou-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.thankyou-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(77,196,122,0.12);
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thankyou-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.ty-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ty-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ty-step strong { display: block; font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 3px; }
.ty-step p { font-size: 0.88rem; color: var(--fg-muted); margin: 0; }

/* Utility */
.text-accent { color: var(--accent); }

/* Responsive funnel */
@media (max-width: 600px) {
  .funnel-card { padding: 28px 20px 24px; }
  .form-row { flex-direction: column; }
  .form-group--sm { max-width: 100%; }
  .offer-why-grid { grid-template-columns: 1fr; }
  .offer-value--big { font-size: 1.6rem; }
  .funnel-trust { gap: 16px; }
  .funnel-chrome { padding: 16px 20px; }
}