:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6875;
  --paper: #fbfaf6;
  --wash: #f3efe6;
  --line: #ddd3c3;
  --navy: #17212f;
  --blue: #325b9a;
  --green: #146c54;
  --gold: #b68a2c;
  --gold-soft: #f3d27a;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.topbar nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0;
}

.topbar nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(243, 210, 122, 0.22), transparent 32%),
    linear-gradient(180deg, var(--paper), var(--wash));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
}

.band {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

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

.proof-points div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 18px;
}

.metric,
.label {
  display: block;
}

.metric {
  font-size: 32px;
  font-weight: 800;
}

.label {
  color: #c9d4e5;
  font-size: 14px;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan.featured {
  border-color: rgba(20, 108, 84, 0.5);
  box-shadow: inset 0 5px 0 var(--green);
}

.plan p {
  color: var(--muted);
  line-height: 1.45;
}

.price {
  color: var(--ink) !important;
  font-size: 31px;
  font-weight: 850;
  line-height: 1.05 !important;
  overflow-wrap: anywhere;
}

.price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

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

li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--wash);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #fbf6eb;
  font-size: 13px;
  text-transform: uppercase;
}

td:last-child,
th:last-child {
  text-align: right;
  font-weight: 750;
}

.access {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.steps p {
  color: var(--muted);
  line-height: 1.45;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--navy);
  color: var(--white);
}

.callout p:not(.eyebrow) {
  max-width: 760px;
  color: #d7dfec;
  font-size: 18px;
  line-height: 1.5;
}

.callout .button.primary {
  flex: 0 0 auto;
  background: var(--gold-soft);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual img {
    margin-left: 0;
  }

  .plan-grid,
  .proof-points,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 42px;
  }

  .plan-grid,
  .proof-points,
  .steps {
    grid-template-columns: 1fr;
  }

  .plan,
  .steps li {
    min-height: 0;
  }

  .price {
    font-size: 28px;
  }

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