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

:root {
  --green: #1a4d2e;
  --green-light: #2a6b3f;
  --green-dark: #0f2d1a;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --offwhite: #faf8f4;
  --warm-gray: #f0ece4;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-muted: #8a8a8a;
  --border: #e0dbd1;
  --radius: 14px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--offwhite);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 77, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  background: var(--green);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  padding: 80px 60px 80px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
  padding-top: 48px;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 32px 80px 20px;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--green), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Dashboard card */
.dashboard-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}

.dash-header {
  background: var(--warm-gray);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dash-dot-row { display: flex; gap: 6px; }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; }
.dash-dot.amber { background: #f59e0b; }
.dash-dot.green { background: #22c55e; }

.dash-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 auto;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--green-light);
  font-weight: 500;
}

.status-live {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.dash-body { padding: 20px; }

.dash-section { margin-bottom: 16px; }

.dash-section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.dash-number-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.dash-big-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-sub-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dash-estimate {
  background: var(--warm-gray);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.estimate-label { font-size: 0.78rem; color: var(--text-mid); }
.estimate-val {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--amber-dark);
}

.dash-divider-line {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* Deadlines */
.deadline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}

.deadline-item.urgent .deadline-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deadline-item.urgent .deadline-text {
  color: var(--text-dark);
  font-weight: 500;
}

.deadline-icon.muted {
  font-size: 0.7rem;
  color: var(--border);
  width: 20px;
  text-align: center;
}

.deadline-text { font-size: 0.78rem; color: var(--text-muted); }

/* Deductions */
.dash-deduction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.deduct-tag {
  font-size: 0.78rem;
  background: #ecfdf5;
  color: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.deduct-val {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 0;
  background: var(--offwhite);
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--warm-gray);
  padding: 36px 32px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.step-card:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(26,77,46,0.08);
  border-color: transparent;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== MTD COUNTDOWN ===== */
.mtd-countdown {
  padding: 80px 0;
  background: var(--green-dark);
}

.countdown-inner { max-width: 860px; }

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 24px;
}

.countdown-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
}

.countdown-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.countdown-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

.countdown-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.strip-item {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strip-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.strip-val {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.3;
}

.strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 0;
  background: var(--warm-gray);
}

.manifesto-inner { max-width: 760px; }

.manifesto-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.manifesto-attribution {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--amber);
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.manifesto-rule {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.rule-icon {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rule-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 0 80px;
  background: var(--offwhite);
  text-align: center;
}

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

.closing-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 100px;
  margin: 0 auto 24px;
}

.closing-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--green-dark);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 64px 24px 40px;
    max-width: 100%;
  }

  .hero-right {
    padding: 0 24px 64px;
    justify-content: center;
  }

  .hero-right::before { display: none; }

  .dashboard-card { max-width: 420px; margin: 0 auto; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .countdown-strip {
    grid-template-columns: 1fr;
  }

  .strip-divider {
    display: none;
  }

  .strip-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-left { padding: 48px 20px 32px; }
  .hero-right { padding: 0 20px 48px; }
  .hero-stats { gap: 16px; }
  .manifesto, .howitworks { padding: 72px 0; }
  .closing { padding: 72px 0 56px; }
}
