:root {
  --navy: #0d1b2a;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --gray-100: #f0ede8;
  --gray-300: #c8c3bb;
  --gray-600: #6b6560;
  --gray-800: #2d2a27;
  --navy-light: #162338;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 32px 72px;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-verticals span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* PROOF ROW */
.proof-row {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 48px 32px;
}
.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-label {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* SECTION TITLE */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* FEATURES */
.features {
  padding: 88px 32px;
}
.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--off-white);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--amber);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how {
  background: var(--navy);
  padding: 88px 32px;
}
.how-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.how .section-title {
  color: var(--white);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.step:first-child {
  border-top: none;
}
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  min-width: 36px;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 600px;
}

/* PRICING */
.pricing {
  padding: 88px 32px;
  background: var(--off-white);
}
.pricing-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 40px 36px;
  border-radius: 2px;
}
.pricing-card--primary {
  border-color: var(--amber);
  border-width: 2px;
}
.pricing-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--gray-800);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.pricing-note {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}
.pricing-note strong {
  color: var(--navy);
}

/* CLOSING */
.closing {
  padding: 96px 32px;
  background: var(--white);
}
.closing-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 800px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 48px; }
  .proof-row { padding: 40px 24px; }
  .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how { padding: 56px 24px; }
  .step { gap: 24px; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}