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

/* ── TOKENS ── */
:root {
  --bg:        #F8F5F0;
  --bg-dark:   #1A1A1A;
  --bg-card:   #EDEBE6;
  --fg:        #1A1A1A;
  --fg-muted:  #5C5852;
  --fg-light:  #F8F5F0;
  --accent:    #F2894E;
  --accent-dk: #C4601F;
  --border:    #D9D5CD;
  --font-h:   'Syne', system-ui, sans-serif;
  --font-b:   'DM Sans', system-ui, sans-serif;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
}

/* ── BASE ── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 80px 48px 96px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero__headline {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg-light);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: #9E9A94;
  max-width: 420px;
}
.hero__metrics {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric-card {
  background: #232323;
  border: 1px solid #2E2E2E;
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.metric-card__value {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 80px;
}
.metric-card__label {
  font-size: 14px;
  color: #8A8680;
  line-height: 1.4;
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem__inner { max-width: 1200px; margin: 0 auto; }
.problem__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__heading {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.problem__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.problem__item {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}
.problem__item::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #B5B0A8;
  font-size: 14px;
  top: 3px;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 96px 48px;
}
.features__header {
  max-width: 1200px;
  margin: 0 auto 72px;
}
.features__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features__heading {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-light);
  max-width: 560px;
}
.features__stack {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-item {
  background: #232323;
  border: 1px solid #2E2E2E;
  border-radius: var(--r-md);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  align-items: start;
}
.feature-item--alt { background: #1E1E1E; }
.feature-item__number {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.feature-item__title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg-light);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-item__desc {
  font-size: 15px;
  color: #8A8680;
  line-height: 1.65;
}

/* ── CLOSER ── */
.closer {
  background: var(--accent);
  padding: 96px 48px;
}
.closer__inner { max-width: 1200px; margin: 0 auto; }
.closer__quote {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--bg-dark);
  max-width: 760px;
  margin-bottom: 32px;
  font-style: normal;
}
.closer__body {
  font-size: 17px;
  color: #6B3610;
  margin-bottom: 56px;
  max-width: 480px;
}
.closer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(26,26,26,0.2);
  padding-top: 48px;
}
.stat__num {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--bg-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__desc {
  font-size: 14px;
  color: #7A4A1E;
  line-height: 1.4;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  padding: 48px;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__mark { font-size: 18px; color: var(--accent); }
.footer__name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg-light);
  letter-spacing: -0.02em;
}
.footer__tagline {
  font-size: 14px;
  color: #5C5852;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav__tagline { display: none; }
  .hero { padding: 56px 24px 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__headline { font-size: 36px; }
  .metric-card { padding: 18px 20px; gap: 12px; }
  .metric-card__value { font-size: 28px; min-width: 60px; }
  .problem { padding: 64px 24px; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .problem__heading { font-size: 28px; }
  .features { padding: 64px 24px; }
  .feature-item { grid-template-columns: 40px 1fr; gap: 24px; padding: 24px; }
  .feature-item__title { font-size: 17px; }
  .closer { padding: 64px 24px; }
  .closer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 30px; }
  .hero__sub { font-size: 16px; }
  .metric-card__label { font-size: 13px; }
}

/* ── LEAD FORM ── */
.lead-form {
  background: var(--bg);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-form__inner {
  max-width: 720px;
  margin: 0 auto;
}
.lead-form__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.lead-form__heading {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 12px;
}
.lead-form__sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}
.lead-form__form { display: flex; flex-direction: column; gap: 20px; }
.lf-row { display: grid; gap: 20px; }
.lf-row--2 { grid-template-columns: 1fr 1fr; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.lf-optional {
  font-weight: 400;
  color: var(--fg-muted);
}
.lf-input {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.lf-input:focus { border-color: var(--accent); }
.lf-select {
  appearance: none;
  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='%235C5852' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.lf-textarea { resize: vertical; min-height: 100px; }
.lf-error {
  background: #FFF0EE;
  border: 1px solid #FFBFB0;
  color: #C4601F;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
}
.lf-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 16px 32px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lf-btn:hover { background: var(--accent-dk); }
.lf-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lf-btn__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lf-spin 0.7s linear infinite;
}
@keyframes lf-spin { to { transform: rotate(360deg); } }
.lead-form__success { text-align: center; padding: 48px 24px; }
.lf-success__icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.lf-success__heading {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 26px;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.lf-success__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lead-form { padding: 64px 24px; }
  .lf-row--2 { grid-template-columns: 1fr; }
  .lf-btn { width: 100%; justify-content: center; }
}