:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #17202a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #dbe2ea;
  display: flex;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: #1d4f91;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

nav a {
  color: #1d4f91;
  font-weight: 800;
  margin-left: 1rem;
  text-decoration: none;
}

.hero,
.plans,
.value-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(2rem, 6vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: calc(100vh - 4.25rem);
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
}

.eyebrow {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
  max-width: 12ch;
}

.hero-copy p:not(.eyebrow) {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  align-items: center;
  background: #1d4f91;
  border: 1px solid #1d4f91;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  border-color: #ccd4de;
  color: #1f2b38;
}

.button:disabled {
  cursor: default;
  opacity: 0.62;
}

.product-visual {
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.visual-bar {
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 0.45rem;
  padding-bottom: 0.8rem;
}

.visual-bar span {
  background: #cbd5e1;
  border-radius: 999px;
  height: 0.7rem;
  width: 0.7rem;
}

.visual-panel {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-panel div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: grid;
  gap: 0.35rem;
  min-height: 5.6rem;
  padding: 0.85rem;
}

.visual-panel small,
.visual-table span {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-panel strong {
  align-self: end;
  font-size: 1.4rem;
}

.visual-table {
  display: grid;
  gap: 0;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.visual-table span,
.visual-table strong {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.8rem 0.6rem;
  text-align: left;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.section-heading p:not(.eyebrow) {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 46rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.plans h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: none;
}

.value-band {
  padding-top: 0;
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article {
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.value-grid h3 {
  font-size: 1.05rem;
}

.value-grid p {
  color: #475569;
  line-height: 1.6;
}

.comparison-wrap {
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  overflow-x: auto;
}

.comparison-grid {
  border-collapse: collapse;
  min-width: 920px;
  width: 100%;
}

.comparison-grid th,
.comparison-grid td {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

.comparison-grid th:first-child {
  color: #334155;
  font-weight: 900;
  text-align: left;
  width: 20%;
}

.comparison-grid thead th {
  background: #f8fafc;
}

.comparison-grid thead th:not(:first-child) {
  min-width: 11rem;
}

.comparison-grid thead span,
.comparison-grid thead strong {
  display: block;
}

.comparison-grid thead span {
  color: #111827;
  font-size: 1.2rem;
  font-weight: 900;
}

.comparison-grid thead strong {
  color: #1d4f91;
  font-size: 1.55rem;
  margin-top: 0.35rem;
}

.comparison-grid .featured-column {
  background: rgba(29, 79, 145, 0.06);
}

.included {
  color: #166534;
  font-weight: 900;
}

.not-included {
  color: #94a3b8;
  font-weight: 800;
}

.action-row td {
  border-bottom: 0;
}

.sales-link {
  color: #1d4f91;
  font-weight: 900;
  text-decoration: none;
}

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

  .hero {
    min-height: 0;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 3.75rem;
  }

  .visual-panel {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-left: 0.65rem;
  }
}
