* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  --bg: #0b0d10;
  --panel: #12151a;
  --panel-2: #101318;
  --text: #f5f6f8;
  --muted: #a4a9b2;
  --line: #30343d;
  --gold: #d8b45a;
  --white: #ffffff;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(216,180,90,.07), transparent 30%),
    var(--bg);
  color: var(--text);
  font: 16px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  min-height: 70px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,13,16,.92);
  backdrop-filter: blur(14px);
}

.brand, .footer-brand {
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand span, .footer-brand span { opacity: .5; }

nav { display: flex; align-items: center; gap: 24px; }
nav a { opacity: .72; transition: opacity .18s ease, transform .18s ease; }
nav a:hover { opacity: 1; }
nav .nav-cta {
  opacity: 1;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 86px 7%;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  padding-top: 118px;
  padding-bottom: 70px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 900px;
  margin: 18px 0 25px;
}

.hero h1 span {
  display: block;
  opacity: .52;
}

.hero-copy {
  font-size: 20px;
  line-height: 1.55;
  color: #c2c6cd;
  max-width: 700px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 11px;
  padding: 14px 22px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-submit {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn-submit { width: 100%; margin-top: 8px; }
.btn-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.text-link { font-weight: 750; opacity: .78; }
.text-link:hover { opacity: 1; }

.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #8f959f;
  font-size: 13px;
}
.hero-proof span::before {
  content: "•";
  color: var(--gold);
  margin-right: 7px;
}

.btn:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.lead-section { padding-top: 35px; }

.lead-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #14181e, var(--panel));
  box-shadow: 0 25px 80px rgba(0,0,0,.25);
}

.lead-copy h2,
.offers-section h2,
.journey-section h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 820px;
  margin: 15px 0;
}

.lead-intro {
  font-size: 18px;
  color: #b9bec7;
  max-width: 600px;
}

.benefits {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
}

.benefit strong { display: block; margin-bottom: 2px; }
.benefit small { display: block; color: #8f959f; }

.lead-form-wrap {
  display: flex;
  align-items: center;
}

#lead { width: 100%; }

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.form-step {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(216,180,90,.12);
  border: 1px solid rgba(216,180,90,.30);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.form-heading strong { display: block; }
.form-heading small { display: block; color: #7f8691; margin-top: 1px; }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 750;
  opacity: .82;
}

.field input {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  background: #0b0d10;
  border: 1px solid #363b45;
  border-radius: 11px;
  color: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input:hover { border-color: #4a505b; }
.field input::placeholder { color: #777e89; }

.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,180,90,.12);
  outline: none;
}

.form-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #737a85;
  text-align: center;
}

.form-message {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.form-message.success {
  background: rgba(76,175,80,.12);
  border: 1px solid rgba(76,175,80,.35);
  color: #d9f5dc;
}

.form-message.error {
  background: rgba(220,80,80,.12);
  border: 1px solid rgba(220,80,80,.35);
  color: #ffdada;
}

.section-intro { color: #8f959f; max-width: 700px; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.offer-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--panel-2);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: #505762;
  background: #13171d;
}

.offer-card.featured {
  border-color: rgba(216,180,90,.45);
  box-shadow: inset 0 1px 0 rgba(216,180,90,.08);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-number {
  opacity: .45;
  font-size: 13px;
  font-weight: 800;
}

.offer-tag {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .10em;
}
.offer-tag.recurring { opacity: .72; }

.offer-card h3 { margin: 20px 0 5px; font-size: 20px; }
.offer-card strong { font-size: 32px; display: block; margin: 7px 0 12px; }
.price-period { font-size: 15px; opacity: .6; margin-left: 3px; }
.offer-card p { color: #9298a2; margin: 0; }
.offer-link { margin-top: auto; padding-top: 20px; font-weight: 850; }
.offer-link:hover { color: var(--gold); }

.journey-section { padding-bottom: 105px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.journey-grid > div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.journey-grid span { opacity: .45; font-size: 13px; font-weight: 800; }
.journey-grid h3 { margin: 9px 0 5px; }
.journey-grid p { color: #7f8691; margin: 0; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 7%;
  color: #6e7580;
  border-top: 1px solid #20242b;
  font-size: 13px;
}

@media (max-width: 900px) {
  .lead-card { grid-template-columns: 1fr; gap: 35px; padding: 38px; }
  .grid, .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 90px; }
}

@media (max-width: 600px) {
  .site-header { min-height: 64px; padding: 0 5%; }
  nav { gap: 0; }
  nav a:not(.nav-cta) { display: none; }
  nav .nav-cta { font-size: 13px; padding: 8px 12px; }

  section { padding-left: 5%; padding-right: 5%; }
  .hero { padding-top: 72px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .hero-copy { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn, .hero-actions .text-link { width: 100%; text-align: center; }
  .hero-proof { gap: 8px 14px; }

  .lead-card { padding: 28px 20px; border-radius: 17px; }
  .lead-copy h2 { font-size: 34px; }

  .grid, .journey-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: auto; }
  .offer-link { padding-top: 18px; }

  footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
