:root {
  color-scheme: light;
  --ink: #10213f;
  --muted: #475569;
  --line: #dbe4ee;
  --soft: #f8fafc;
  --brand: #14532d;
  --accent: #16a34a;
  --blue: #2563eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  background: #f1f5f9;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  margin: 0;
}

a {
  color: var(--brand);
  font-weight: 800;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  padding: 16px 20px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: 34px;
}

.brand span {
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.content {
  margin: 0 auto;
  max-width: 1080px;
  padding: 44px 20px;
}

.hero-inner {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 6vw, 62px);
}

h2 {
  font-size: 28px;
  margin-top: 34px;
}

h3 {
  font-size: 18px;
  margin-top: 22px;
}

p {
  color: var(--muted);
  margin: 12px 0 0;
}

ul {
  color: var(--muted);
  margin: 12px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  align-items: center;
  background: var(--brand);
  border-radius: 7px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
}

.button.secondary {
  background: #334155;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.metric-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.metric {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.metric strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  margin-top: 3px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.card strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
}

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

.plan-table {
  background: var(--white);
  border-collapse: collapse;
  min-width: 680px;
  width: 100%;
}

.plan-table th,
.plan-table td {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}

.plan-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.plan-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.plan-table tr:last-child td {
  border-bottom: 0;
}

.legal-page {
  background: var(--white);
}

.legal-page .content {
  max-width: 900px;
}

.updated {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #166534;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 14px;
  padding: 5px 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin: 0 auto;
  max-width: 1080px;
  padding: 22px 20px 36px;
}

@media (max-width: 760px) {
  .nav,
  .hero-inner,
  .grid,
  .metric-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 8px;
  }

  .hero-inner,
  .content {
    padding: 30px 16px;
  }
}
