:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe4ef;
  --paper: #ffffff;
  --wash: #f8fafc;
  --blue: #1d4ed8;
  --green: #15803d;
}

* {
  box-sizing: border-box;
}

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

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

.site-header,
.site-main,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 40px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero,
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero {
  padding: clamp(28px, 6vw, 64px);
  margin: 24px 0;
}

.hero p {
  max-width: 780px;
  font-size: 1.1rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
}

h2 {
  margin-top: 48px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.panel {
  padding: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.button.primary {
  color: #ffffff;
  background: var(--blue);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #ffffff;
}

.list {
  padding-left: 20px;
}

.list li {
  margin: 10px 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

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

.table th {
  background: #f1f5f9;
}

.site-footer {
  color: var(--muted);
  padding: 48px 0;
}

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

  .nav {
    justify-content: flex-start;
  }
}
