/* ── TOKENS ── */
:root {
  --navy:   #0C1C34;
  --gold:   #E09A2A;
  --gold2:  #C8861F;
  --ivory:  #F8F4EE;
  --white:  #FFFFFF;
  --muted:  #6B7280;
  --border: #E5E0D6;
  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
::selection { background:var(--gold); color:#fff; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}
.topbar strong { color: #fff; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(12,28,52,.07);
}
.nav-logo-text {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
  line-height: 1;
}
.nav-logo-text span { color: var(--gold); }
.nav-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 1px solid var(--border);
  margin-left: 2px;
}
.nav-cta {
  margin-left: auto;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold2); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(224,154,42,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(224,154,42,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(224,154,42,.15);
  border: 1px solid rgba(224,154,42,.35);
  border-radius: 999px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(48px, 13vw, 72px);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

/* Pills row */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
}
.pill svg { width:14px; height:14px; flex-shrink:0; }

/* Price badge */
.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.price-badge {
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  line-height: 1;
}
.price-badge .amount {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 900;
  display: block;
}
.price-badge .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 2px;
}
.price-note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}
.price-note strong { color: rgba(255,255,255,.85); }

/* Scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 24px;
}
.scroll-hint::before {
  content:'';
  width: 32px; height: 1px;
  background: rgba(255,255,255,.2);
}

/* ── FORM SECTION ── */
.form-section {
  background: var(--white);
  padding: 40px 24px 48px;
}
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.form-heading {
  font-family: var(--ff-head);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.form-heading .accent { color: var(--gold); }
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Date picker cards */
.date-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.date-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.date-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all .2s;
  background: var(--ivory);
  text-align: center;
  user-select: none;
  position: relative;
}
.date-card:hover { border-color: var(--gold); background: #fff; }
.date-card.active {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,154,42,.15);
}
.date-card .date-num {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  transition: color .2s;
}
.date-card.active .date-num { color: var(--gold); }
.date-card .date-month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.date-card .date-day {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.date-card .tick {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.date-card.active .tick { opacity: 1; }
.date-card .tick svg { width:11px; height:11px; stroke:#fff; stroke-width:2.5; fill:none; }

/* Form fields */
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--ivory);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field input::placeholder { color: #aaa; }

/* Phone row */
.phone-row {
  display: flex;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ivory);
  transition: border-color .2s;
}
.phone-row:focus-within {
  border-color: var(--gold);
  background: var(--white);
}
.phone-prefix {
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(0,0,0,.03);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-row input {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 13px 14px;
  flex: 1;
  min-width: 0;
}
.phone-row input:focus { background: transparent; }

/* Submit button */
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover { background: var(--gold2); transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn svg { width:18px; height:18px; }

.form-trust {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust svg { width:13px; height:13px; flex-shrink:0; }

/* ── ERROR MESSAGE ── */
.error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--ivory);
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}
.why-inner {
  max-width: 480px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content:'';
  width: 20px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: .95;
  margin-bottom: 14px;
}
.section-heading .accent { color: var(--gold); }

.hook-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hook-text strong { color: var(--navy); }

.gain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  padding: 13px 16px;
  border: 1px solid var(--border);
}
.gain-list li svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── DETAILS STRIP ── */
.details-strip {
  background: var(--navy);
  padding: 32px 24px;
}
.details-inner {
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  text-align: center;
}
.detail-item {}
.detail-icon { font-size: 20px; margin-bottom: 6px; }
.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.detail-val {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.bottom-cta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.bottom-cta strong { color: var(--navy); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 8px;
  padding: 13px 24px;
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.wa-btn:hover { background: #1ebe5a; transform: translateY(-1px); }
.wa-btn svg { width: 20px; height: 20px; }

/* ── DISCLAIMER ── */
.disclaimer {
  background: #f5f3ef;
  padding: 20px 24px;
  text-align: center;
  font-size: 11.5px;
  color: #8b8b8b;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.disclaimer p { margin-bottom: 4px; }
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.disclaimer a:hover { color: var(--navy); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}
footer strong { color: rgba(255,255,255,.65); }

/* ── COMMUNITY INVITE ── */
.community-invite {
  margin-top: 24px;
  padding: 24px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  text-align: center;
}
.community-invite-icon {
  font-size: 36px;
  margin-bottom: 8px;
  line-height: 1;
}
.community-invite h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.community-invite p {
  font-size: 14px;
  color: #4a7c59;
  line-height: 1.6;
  margin-bottom: 16px;
}
.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: 8px;
  padding: 12px 22px;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.community-btn:hover { background: #1ebe5a; transform: translateY(-1px); }
.community-btn:active { transform: translateY(0); }

/* ── SUCCESS STATE ── */
.success-msg {
  text-align: center;
  padding: 32px 20px;
}
.success-msg .tick-circle {
  width: 64px; height: 64px;
  background: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-msg .tick-circle svg {
  width: 30px; height: 30px;
  stroke: white; fill: none; stroke-width: 2.5;
}
.success-msg h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MOBILE FINE-TUNE ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 44px; }
  .date-cards { gap: 8px; }
  .date-card .date-num { font-size: 34px; }
  .details-inner { gap: 10px; }
  .detail-val { font-size: 13px; }
}
