:root {
  --navy: #0f1b2d;
  --deep: #162038;
  --amber: #f0a830;
  --cream: #faf6f0;
  --warm-gray: #e8e2d9;
  --text-primary: #2c3e50;
  --text-light: #6b7c93;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgb(15 27 45 / 92%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.pill {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgb(240 168 48 / 12%);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  padding: 140px 0 96px;
  background: var(--navy);
}

.hero-inner {
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 2px solid var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 8px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero p {
  color: rgb(255 255 255 / 62%);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 26px;
}

.steps {
  background: var(--deep);
  border-top: 1px solid rgb(240 168 48 / 16%);
  border-bottom: 1px solid rgb(240 168 48 / 16%);
  padding: 56px 0;
}

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

.steps article {
  padding: 6px 20px;
}

.num {
  color: rgb(240 168 48 / 30%);
  font-size: 2.5rem;
  font-weight: 800;
}

.steps h3 {
  color: #fff;
  font-size: 1rem;
  margin-top: 12px;
}

.steps p {
  color: rgb(255 255 255 / 46%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 8px;
}

.problem {
  padding: 96px 0;
}

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

.problem h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  max-width: 850px;
}

.problem p {
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
  margin-top: 18px;
}

.features {
  padding: 24px 0 80px;
  background: #fff;
}

.feature-row {
  padding: 56px 0;
  border-bottom: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.feature-row.no-border {
  border-bottom: 0;
}

.feature-num {
  font-size: 5rem;
  color: rgb(15 27 45 / 6%);
  font-weight: 800;
  line-height: 1;
}

.feature-row h3 {
  color: var(--navy);
  font-size: 1.7rem;
  margin: 6px 0 14px;
}

.feature-row p {
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.feature-row blockquote {
  margin: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: 30px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

.feature-row blockquote strong {
  color: var(--navy);
  font-style: normal;
}

.feature-row.alt > :first-child {
  order: 2;
}

.feature-row.alt > :last-child {
  order: 1;
}

.comparison {
  padding: 88px 0;
  background: var(--navy);
}

.comparison-inner {
  max-width: 850px;
}

.comparison h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 34px;
}

.comparison h2 em {
  color: var(--amber);
  font-style: normal;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.col-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 36%);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  margin-bottom: 10px;
}

.col-label.primer {
  color: var(--amber);
}

.comparison ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  color: rgb(255 255 255 / 85%);
  font-size: 0.95rem;
  padding: 9px 0;
}

.comparison .muted li {
  color: rgb(255 255 255 / 34%);
}

.cta {
  padding: 96px 0;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
}

.cta h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

.cta p {
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 14px;
}

footer {
  background: var(--navy);
  padding: 36px 0;
  text-align: center;
}

.footer-copy {
  color: rgb(255 255 255 / 32%);
  font-size: 0.8rem;
  margin-top: 8px;
}

@media (max-width: 920px) {
  .pill {
    display: none;
  }

  .steps-grid,
  .feature-row,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.alt > :first-child,
  .feature-row.alt > :last-child {
    order: initial;
  }

  .steps {
    padding: 40px 0;
  }

  .feature-row {
    gap: 22px;
    padding: 40px 0;
  }

  .hero {
    padding-top: 120px;
  }
}
