:root {
  --rate-green: #2d8659;
  --rate-green-deep: #1a5d3a;
  --rate-green-soft: #d4ebde;
  --rate-orange: #e8782e;
  --rate-orange-deep: #c45a1a;
  --rate-yellow: #f4c430;

  --ink: #131818;
  --ink-soft: #2a3439;
  --muted: #5a646b;
  --paper: #fbfaf6;
  --cream: #f5f1e8;
  --panel: #ffffff;
  --line: #e2e0d8;
  --line-soft: #ecebe4;
  --dark: #0e1614;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--rate-green-deep); text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: .8; }

/* Micro bar */
.micro-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--ink);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

.micro-back {
  color: var(--rate-yellow);
  font-weight: 600;
}
.micro-back:hover { opacity: 1; color: #fff; }

.micro-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--rate-green);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 12px;
}

.micro-text { font-weight: 600; }

.micro-pill {
  margin-left: auto;
  padding: 4px 12px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rate-yellow);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 24px 56px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,134,89,.14), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,120,46,.12), transparent 70%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 22px 0 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 em { font-style: italic; font-weight: 500; color: var(--rate-green-deep); }

h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}
h2 { margin: 0 0 14px; font-size: clamp(28px, 3.6vw, 42px); font-weight: 600; }
h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
h4 { margin: 0 0 10px; font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.h-light { color: #fff; }

p { margin: 0 0 14px; color: var(--ink-soft); }

.lead {
  max-width: 720px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 32px;
}

.lead-2 {
  max-width: 700px;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--rate-green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rate-green-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(26,93,58,.55);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  opacity: 1;
}

/* Bands */
.band { padding: 80px 24px; }
.band-cream { background: var(--cream); }
.band-dark { background: var(--dark); color: #fff; }
.band-dark p { color: rgba(255,255,255,.8); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 14px;
  background: var(--cream);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255,255,255,.12);
  color: var(--rate-yellow);
}

/* Stage list */
.stage-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.stage-list::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--rate-green-soft) 0%, var(--rate-orange) 100%);
  z-index: 0;
}

.stage {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 32px 28px 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  z-index: 1;
}

.stage-num {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 4px 0 0 4px;
  background: linear-gradient(135deg, var(--rate-green) 0%, var(--rate-green-deep) 100%);
  color: #fff;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 16px -8px rgba(26,93,58,.4);
}

.stage:nth-child(2) .stage-num { background: linear-gradient(135deg, var(--rate-orange) 0%, var(--rate-orange-deep) 100%); }
.stage:nth-child(3) .stage-num { background: linear-gradient(135deg, var(--rate-yellow) 0%, #c89e1f 100%); color: var(--ink); }
.stage:nth-child(4) .stage-num { background: linear-gradient(135deg, var(--rate-green-deep) 0%, #0d3a25 100%); }
.stage:nth-child(5) .stage-num { background: linear-gradient(135deg, var(--rate-orange-deep) 0%, #8a3d10 100%); }

.stage-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 999px;
}

.stage-body h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.dual-col ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.dual-col li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Tools grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.tool {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.tool strong {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
}

.tool span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* Limits grid */
.limits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.limit {
  padding: 24px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.limit h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 8px;
}

.limit p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* CTA card */
.cta-card {
  padding: 48px 36px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 48px -32px rgba(0,0,0,.16);
}

.cta-card h2 {
  margin-bottom: 12px;
}

.cta-card p {
  max-width: 580px;
  margin: 0 auto 24px;
  font-size: 17px;
}

.cta-card .hero-ctas {
  justify-content: center;
}

/* Footer */
.footer {
  padding: 28px 24px;
  background: var(--ink);
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer strong { color: #fff; }
.footer a { color: var(--rate-yellow); }

/* Responsive */
@media (max-width: 800px) {
  .stage { grid-template-columns: 60px 1fr; padding: 24px 20px 24px 0; }
  .stage-num { width: 56px; height: 56px; font-size: 22px; }
  .stage-list::before { left: 32px; }
  .dual { grid-template-columns: 1fr; }

  .tools-grid { grid-template-columns: 1fr; }
  .limits-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
