:root {
  --navy: #1E2761;
  --navy-dk: #141A47;
  --ice: #CADCFC;
  --white: #FFFFFF;
  --alert: #E63946;
  --slate: #5B6B8C;
  --offwhite: #F4F6FB;
  --text-dk: #1B2340;
  --green: #2C5F2D;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--text-dk);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- nav ---- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #E9ECF5;
}
header.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
header.site-nav .logo img { height: 32px; }
header.site-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header.site-nav nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dk);
}
header.site-nav nav a.active { color: var(--navy); }
header.site-nav nav a:hover { color: var(--navy); }
header.site-nav nav a.btn-primary,
header.site-nav nav a.btn-alert { color: var(--white); }
header.site-nav nav a.btn-primary:hover,
header.site-nav nav a.btn-alert:hover { color: var(--white); }
header.site-nav nav a.btn-outline { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dk); }
.btn-alert { background: var(--alert); color: var(--white); }
.btn-alert:hover { background: #C22834; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--offwhite); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---- hero ---- */
.hero {
  background: var(--navy-dk);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 20px;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ice);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- sections ---- */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
section.alt { background: var(--offwhite); }
section.dark { background: var(--navy-dk); color: var(--white); }

.eyebrow-sm {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.dark .eyebrow-sm { color: var(--ice); }

h2.section-title {
  font-size: 34px;
  font-weight: 800;
  max-width: 640px;
  margin-bottom: 16px;
  line-height: 1.2;
}
p.section-lede {
  font-size: 16px;
  color: var(--slate);
  max-width: 620px;
  margin-bottom: 48px;
}
.dark p.section-lede { color: var(--ice); }

/* ---- cards / grids ---- */
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #E9ECF5;
  border-radius: 12px;
  padding: 28px;
}
.dark .card, .navy-card {
  background: var(--navy);
  border: none;
  color: var(--white);
}
.card .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}
.dark .card .num, .navy-card .num { background: var(--alert); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--slate); }
.dark .card p, .navy-card p { color: var(--ice); }

.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 28px;
}
.stat-card .stat-num { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.stat-card .stat-desc { font-size: 13px; color: var(--ice); }

/* ---- table ---- */
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E9ECF5;
}
table.compare th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
}
table.compare td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #E9ECF5;
}
table.compare tr:last-child td { border-bottom: none; }

/* ---- pricing ---- */
.price-card {
  background: var(--white);
  border: 1px solid #E9ECF5;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border: 2px solid var(--navy); position: relative; }
.price-card .badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.price-card .price { font-size: 30px; font-weight: 800; color: var(--navy); margin: 12px 0; }
.price-card .price span { font-size: 13px; font-weight: 500; color: var(--slate); }
.price-card ul { list-style: none; margin: 20px 0 28px; flex: 1; }
.price-card li {
  font-size: 13.5px;
  color: var(--text-dk);
  padding: 8px 0;
  border-top: 1px solid #EFF1F8;
  display: flex;
  gap: 8px;
}
.price-card li:first-child { border-top: none; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---- waitlist form ---- */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"], .waitlist-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #C7CCDB;
  font-size: 14px;
  font-family: inherit;
}
.dark .waitlist-form input[type="email"] { border: 1px solid #3A4380; background: var(--navy); color: var(--white); }
.dark .waitlist-form input[type="email"]::placeholder { color: #9FB3D9; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 10px; }
.dark .form-note { color: #9FB3D9; }
.form-success {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  padding: 13px 0;
}
.dark .form-success { color: #8FE39C; }

/* ---- contact card / about ---- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }

/* ---- footer ---- */
footer.site-footer {
  background: var(--navy-dk);
  color: var(--ice);
  padding: 48px 0 32px;
}
footer.site-footer .foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
footer.site-footer .foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
footer.site-footer .foot-links a { font-size: 13px; color: var(--ice); }
footer.site-footer .foot-links a:hover { color: var(--white); }
footer.site-footer .foot-bottom {
  border-top: 1px solid #2B3470;
  padding-top: 20px;
  font-size: 12px;
  color: #7C8DB5;
}

/* ---- responsive ---- */
@media (max-width: 860px) {
  header.site-nav nav { display: none; }
  .hero h1 { font-size: 34px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
