:root {
  --bg: #F5F2EE;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --fg-subtle: #9C9690;
  --accent: #F2590C;
  --accent-light: #FEF0E6;
  --border: #E0DBD5;
  --card-bg: #FFFFFF;
  --card-border: #EAE6E0;
  --step-accent: #F2590C;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* — Navigation — */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* — Hero — */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.3;
  max-width: 80px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* — Hero Visual — */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.estimate-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 24px rgba(26, 23, 20, 0.06), 0 1px 4px rgba(26, 23, 20, 0.04);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.card-trade {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.card-date {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.card-lines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.line-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.line-val {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}
.line-accent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
}
.line-accent .line-label {
  color: var(--fg-subtle);
  font-size: 0.75rem;
}
.line-val.accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}
.card-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.total-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}
.total-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.card-badge {
  text-align: center;
  font-size: 0.7rem;
  color: var(--fg-subtle);
  background: var(--bg);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
  display: inline-block;
}

/* — Process — */
.process {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.875rem;
  color: #A8A29E;
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: #3D3833;
  margin-top: 3rem;
}

/* — Features — */
.features {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 16px rgba(26, 23, 20, 0.07);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* — Manifesto — */
.manifesto {
  background: var(--accent-light);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  font-style: normal;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* — Closing — */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

/* — Footer — */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-meta span {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}
.footer-copy {
  color: var(--fg-muted) !important;
}

/* — CTA Button — */
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  margin-bottom: 2rem;
}
.hero-cta:hover {
  background: #D94E0A;
  transform: translateY(-1px);
}

/* — Nav CTA — */
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}
.nav-logo {
  text-decoration: none;
  color: inherit;
}

/* — Responsive — */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2.5rem;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-proof {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-meta {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .features { padding: 3rem 1.25rem; }
  .manifesto { padding: 3rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
}