:root {
  --bg: #F8F5EF;
  --bg-alt: #EDE9DF;
  --fg: #111110;
  --fg-muted: #6B6B67;
  --accent: #1A5C3A;
  --accent-light: #D1EAD9;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --card-bg: #FFFFFF;
  --border: #D6D0C8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-link {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-link:hover { color: var(--fg); }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-line { display: block; }

.hero-line.accent { color: var(--accent); }

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 400px;
}

/* Rent Card */
.rent-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.rent-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.rent-card-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
}

.rent-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.rent-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.rent-card-val {
  font-weight: 600;
  color: var(--fg);
}

.rent-card-progress {
  margin-top: 24px;
}

.rent-card-progress-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.rent-card-progress-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 99px;
  overflow: hidden;
}

.rent-card-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 0%;
}

.rent-card-progress-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-top: 8px;
  text-align: right;
}

/* Stats */
.stats {
  background: var(--accent);
  padding: 60px 48px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--accent-light);
  max-width: 180px;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

/* How It Works */
.hiw {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.hiw-header {
  margin-bottom: 60px;
}

.hiw-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}

.hiw-sub {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
}

.hiw-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hiw-side-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hiw-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.hiw-step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.hiw-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}

.hiw-step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Guarantee */
.guarantee {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.guarantee-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.guarantee-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 60px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.guarantee-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.guarantee-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.outcomes-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 48px;
}

.outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.outcome-marker {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.outcome-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.outcome-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--accent-light);
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
  .hero-headline { font-size: 64px; }
  .stats { padding: 48px 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .hiw { padding: 60px 24px; }
  .hiw-title { font-size: 40px; }
  .hiw-sides { grid-template-columns: 1fr; gap: 40px; }
  .guarantee { padding: 60px 24px; }
  .guarantee-title { font-size: 32px; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 24px; }
  .outcomes-title { font-size: 32px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-top, .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}