:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --ink: #1f2933;
  --muted: #5b6472;
  --navy: #111827;
  --blue: #1e3a8a;
  --link: #1d4ed8;
  --border: #e5e7eb;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

.site-header {
  background: var(--navy);
  color: white;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header a,
.site-header a:visited {
  color: white;
  text-decoration: none;
}

.brand {
  color: white;
  font-size: 1.65rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.beta-mark {
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a,
.site-nav a:visited {
  color: #dbeafe;
  font-size: 1rem;
}

.site-nav a:hover {
  color: white;
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  background: var(--blue);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
}

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

.page-header {
  margin-bottom: 46px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 36px;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 18px 0;
  color: var(--navy);
  max-width: 850px;
}

h2 {
  margin-top: 44px;
  color: var(--blue);
  font-size: 1.65rem;
}

h3 {
  color: var(--navy);
  margin-bottom: 6px;
}

p {
  font-size: 1.12rem;
}

.lead {
  font-size: 1.28rem;
  color: var(--muted);
  max-width: 760px;
}

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

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
  color: var(--navy);
}

.contact-card h2:first-child,
.contact-card h3:first-child {
  margin-top: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button,
.button:visited,
.button-secondary,
.button-secondary:visited {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.button,
.button:visited {
  background: var(--blue);
  color: white;
}

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

.button-secondary,
.button-secondary:visited {
  border: 1px solid var(--border);
  background: white;
  color: var(--blue);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--navy);
}

.hero-logo {
  margin: 38px auto 0;
  max-width: 760px;
}

.hero-logo img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 70px;
  padding: 32px 8%;
  background: var(--navy);
  color: #d1d5db;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer a,
.site-footer a:visited {
  color: #dbeafe;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    align-self: flex-end;
    margin-top: -38px;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 12px;
  }

  .site-nav.active {
    display: flex;
  }

  .page {
    margin: 34px auto;
  }

  .contact-card {
    padding: 22px;
  }

  .hero-logo {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .site-nav { display: none !important; flex-direction: column !important; }
  .site-nav.open { display: flex !important; }
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

.compare-table thead tr {
  border-bottom: 2px solid currentColor;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 8px 6px;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(128, 128, 128, 0.3);
}

.compare-row-future {
  opacity: 0.55;
}

.table-note {
  margin-top: 14px;
  font-size: 0.85em;
  opacity: 0.75;
}
