:root {
  --navy: #10233f;
  --navy-light: #1c3a63;
  --blue: #2f6fed;
  --blue-light: #eaf1ff;
  --green: #1f9d55;
  --red: #d64545;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-300: #d3d8e0;
  --gray-500: #6b7280;
  --gray-700: #3a4150;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(16, 35, 63, 0.08), 0 8px 24px rgba(16, 35, 63, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--gray-50);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
}

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

p {
  margin: 0;
}

/* Layout */

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 32px 24px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo .accent {
  color: var(--blue);
}

.logo:not(.accent) {
  color: var(--navy);
}

/* Card */

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
}

/* Sections */

section {
  padding: 56px 0;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.section-heading {
  text-align: center;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 40px;
}

/* Hero */

.hero {
  max-width: 780px;
  margin: 0 auto;
}

.hero-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.hero .eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero .lede {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 32px;
}

.hero .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-light);
  background: var(--gray-100);
  border-radius: 999px;
  padding: 6px 14px;
}

.hero .cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .cta-email {
  font-size: 14px;
  color: var(--gray-500);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 24px;
  transition: background-color 0.15s ease;
}

.btn:hover {
  background: #2559c9;
}

.btn-secondary {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 18px;
  transition: background-color 0.15s ease;
}

.btn-secondary:hover {
  background: #dce8ff;
}

/* Value props grid */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.value-card .num {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Feature grid (2-column, emoji icon) */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.feature-card .icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Numbered step list */

.steps {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.step:last-child {
  border-bottom: none;
}

.step .badge-num {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.step p {
  font-size: 13px;
  color: var(--gray-500);
}

/* Products */

.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card .product-info {
  flex: 1;
  min-width: 240px;
}

.product-card .product-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.product-card .product-logo .navy {
  color: var(--navy);
}

.product-card .product-logo .blue {
  color: var(--blue);
}

.product-card p {
  font-size: 14px;
  color: var(--gray-500);
}

.product-card-placeholder {
  background: #fff;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

/* Footer */

.site-footer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  padding: 40px 24px 56px;
}

.site-footer a {
  color: var(--gray-500);
}

/* Responsive */

@media (max-width: 720px) {
  .card {
    padding: 32px 24px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .value-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 40px 0;
  }
}
