:root {
  --green: #1B4332;
  --amber: #F4A261;
  --amber-dark: #E08A3C;
  --parchment: #FDF6EC;
  --parchment-dark: #F5EDD8;
  --ink: #1A1A1A;
  --ink-light: #4A4A4A;
  --white: #FFFFFF;
  --green-light: #2D6A4F;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }
.section-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 2rem;
}

/* ── HERO ── */
.hero {
  background: var(--parchment);
  padding: 5rem 2rem 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--parchment-dark);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1px solid var(--amber);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 480px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 420px;
}
.hero-m-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero-m-letter {
  font-family: 'Syne', sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  text-shadow: 8px 8px 0px rgba(28, 67, 50, 0.15);
}
.hero-m-sub {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin-top: 0.5rem;
}
.hero-m-divider {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin: 0.75rem auto;
  opacity: 0.3;
}
.hero-m-meaning {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  color: var(--ink-light);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.hero-shape-group {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
}
.shape-amber-lg {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  opacity: 0.15;
  border-radius: 50%;
}
.shape-green-lg {
  position: absolute;
  bottom: 40px;
  right: 80px;
  width: 80px;
  height: 80px;
  background: var(--green);
  opacity: 0.12;
  border-radius: 50%;
}
.shape-amber-sm {
  position: absolute;
  top: 20px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--amber);
  opacity: 0.25;
  border-radius: 4px;
}
.shape-dots {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.shape-dots span {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--green);
  opacity: 0.3;
  border-radius: 50%;
}

/* ── FEATURES ── */
.features {
  background: var(--white);
  padding: 5rem 2rem;
}
.features-inner {
  max-width: 900px;
  margin: 0 auto;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--parchment-dark);
  align-items: start;
}
.feature-item:first-child { border-top: 1px solid var(--parchment-dark); }
.feature-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.2rem;
}
.feature-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.feature-body p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ── OUTCOMES ── */
.outcomes {
  background: var(--green);
  padding: 5rem 2rem;
}
.outcomes-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.outcomes .section-label { color: rgba(244, 162, 97, 0.7); }
.outcomes .section-title { color: var(--white); }
.outcomes-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.outcome-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
}
.outcome-metric {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.outcome-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.outcome-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ── HOW ── */
.how {
  background: var(--parchment);
  padding: 5rem 2rem;
}
.how-inner {
  max-width: 760px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  position: relative;
}
.step:last-child .step-line { display: none; }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
  margin-top: 0.25rem;
}
.step-line {
  width: 1px;
  flex: 1;
  background: var(--amber);
  opacity: 0.25;
  margin: 0.5rem 0;
  min-height: 40px;
}
.step-content {
  padding-bottom: 3rem;
  padding-left: 2rem;
}
.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── OBJECTIONS ── */
.objections {
  background: var(--white);
  padding: 5rem 2rem;
}
.objections-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.objection {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
}
.q-mark {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1.1;
  opacity: 0.6;
}
.objection-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.objection-body p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  background: var(--green);
  padding: 6rem 2rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}
.closing-letter {
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
}
.closing-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.closing-statement {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ── WAITLIST FORM ── */
.waitlist-form {
  max-width: 480px;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.waitlist-fields input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.waitlist-fields input::placeholder {
  color: rgba(255,255,255,0.4);
}
.waitlist-fields input:focus {
  border-color: rgba(244,162,97,0.6);
  background: rgba(255,255,255,0.12);
}
.btn-waitlist {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--amber);
  color: var(--green);
  border: none;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-waitlist:hover:not(:disabled) {
  background: var(--amber-dark);
  transform: translateY(-1px);
}
.btn-waitlist:active:not(:disabled) {
  transform: translateY(0);
}
.btn-waitlist:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wl-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.4em;
}
.wl-msg.success { color: #6ee7b7; }
.wl-msg.error   { color: #fca5a5; }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 2rem 2rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.footer-links {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-sep { opacity: 0.4; }

/* ── ONBOARDING FORM ── */
.ob-form {
  max-width: 460px;
  margin-top: 0.5rem;
}
.ob-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ob-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}
.ob-step-dot.active {
  background: var(--amber);
  transform: scale(1.25);
}
.ob-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ob-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.ob-fields {
  display: flex;
  flex-direction: column;
}
.ob-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ob-input::placeholder { color: rgba(255,255,255,0.35); }
.ob-input:focus {
  border-color: rgba(244,162,97,0.6);
  background: rgba(255,255,255,0.12);
}
.ob-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-ob {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: var(--amber);
  color: var(--green);
  border: none;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-ob:hover:not(:disabled) {
  background: var(--amber-dark);
  transform: translateY(-1px);
}
.btn-ob:active:not(:disabled) { transform: translateY(0); }
.btn-ob:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-ob-back {
  padding: 0.9rem 1.2rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ob-back:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.ob-msg {
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 1.4em;
}
.ob-msg.success { color: #6ee7b7; }
.ob-msg.error   { color: #fca5a5; }
.ob-complete {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ob-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.ob-complete h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.ob-complete p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { height: 280px; }
  .hero-m-letter { font-size: 9rem; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .objections-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .closing-letter { font-size: 5rem; }
  .waitlist-fields { grid-template-columns: 1fr; }
  .waitlist-form { max-width: 100%; }
  .feature-item { grid-template-columns: 50px 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-m-letter { font-size: 7rem; }
  .features, .how, .objections, .outcomes, .closing { padding: 3.5rem 1.5rem; }
}