:root {
  color-scheme: light;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #1e2524;
  --muted: #5e6b68;
  --border: #dfe5e2;
  --brand: #11695d;
  --brand-dark: #0b453e;
  --accent: #e86f51;
  --soft: #eef7f4;
  --shadow: 0 18px 60px rgba(16, 39, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-dark);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(251, 250, 248, 0.92);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--brand);
  display: inline-block;
  position: relative;
}

.brand-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  right: -3px;
  top: -3px;
}

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

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

.nav-links a:hover {
  color: var(--brand-dark);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: center;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
  margin: 42px 0 14px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 28px 0 8px;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

li {
  margin: 7px 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  max-width: 720px;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

.button:hover {
  color: #fff;
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--soft);
}

.content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.content.wide {
  width: min(1120px, calc(100% - 32px));
}

.page-title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.updated {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.callout {
  background: var(--soft);
  border: 1px solid #cfe4de;
  border-radius: 8px;
  padding: 18px;
  margin: 24px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  margin: 20px 0 28px;
}

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

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

th {
  background: var(--soft);
}

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

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 28px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
}

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

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

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

  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}

