:root {
  --navy: #071c4f;
  --blue: #1167e8;
  --gold: #d6b24a;
  --text: #111827;
  --muted: #6b7280;
  --bg: #f7f9fc;
  --card: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand img {
  height: 54px;
  object-fit: contain;
}

nav a {
  margin-left: 28px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 92px 7% 80px;
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  color: var(--navy);
  margin: 16px 0;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--navy);
  margin: 0 0 18px;
}

h3 {
  color: var(--navy);
  font-size: 24px;
}

.sub {
  max-width: 760px;
  font-size: 21px;
  color: var(--muted);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: var(--navy);
  color: white;
}

.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid #d7dce8;
}

.product-card, .split, .roadmap, .contact {
  margin: 64px 7%;
}

.product-card {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 32px;
  background: var(--card);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(7, 28, 79, 0.08);
}

.product-card p, .split p, .contact p {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
}

ul {
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.9;
}

li::marker {
  color: var(--gold);
}

.status-box {
  background: #071c4f;
  color: white;
  padding: 32px;
  border-radius: 24px;
}

.status-box h3, .status-box p {
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split > div, .roadmap, .contact {
  background: white;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(7, 28, 79, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.steps div {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  background: #fbfcff;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.steps p {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0;
}

.contact {
  text-align: center;
  background: linear-gradient(135deg, #071c4f 0%, #0c3b92 100%);
}

.contact h2, .contact p {
  color: white;
}

.light-btn {
  background: white;
  color: var(--navy);
}

footer {
  text-align: center;
  padding: 32px;
  color: var(--muted);
}

@media (max-width: 800px) {
  .nav { flex-direction: column; gap: 16px; }
  nav a { margin: 0 10px; }
  .product-card, .split, .steps {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 60px; }
}
