:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5c6572;
  --line: #dfe4ea;
  --paper: #fbfcfd;
  --panel: #ffffff;
  --accent: #0a7c86;
  --accent-dark: #075b63;
  --amber: #a36500;
  --soft: #eef6f7;
  --shadow: 0 18px 45px rgba(18, 28, 38, 0.08);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

.site-header {
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

main {
  overflow: hidden;
}

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

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0 76px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.tool-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #fff;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel a {
  color: inherit;
  text-decoration: none;
}

.hero-panel a {
  padding: 18px;
  background: var(--soft);
  border-radius: 8px;
}

.hero-panel a:hover {
  outline: 2px solid rgba(10, 124, 134, 0.22);
}

.metric {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.chooser-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.chooser-card:hover {
  border-color: rgba(10, 124, 134, 0.45);
}

.chooser-card strong {
  font-size: 22px;
  line-height: 1.18;
}

.chooser-card span:last-child {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section.muted {
  width: 100%;
  max-width: none;
  background: #eef1f4;
  padding-left: max(16px, calc((100% - 1120px) / 2));
  padding-right: max(16px, calc((100% - 1120px) / 2));
}

.section.compact {
  padding-bottom: 44px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.tool-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tool-card.featured {
  border-color: rgba(10, 124, 134, 0.45);
  box-shadow: var(--shadow);
}

.tool-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tag,
.pending,
.disclosure-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tag {
  background: var(--soft);
  color: var(--accent-dark);
}

.pending {
  background: #fff7e8;
  color: var(--amber);
}

.disclosure-tag {
  background: #e9eefb;
  color: #344b91;
}

.text-link {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.channel-list {
  display: grid;
  gap: 12px;
}

.channel-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.channel-row span {
  color: var(--muted);
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.copy-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.copy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.copy-page h2 {
  margin-top: 34px;
}

.copy-page p,
.copy-page li {
  color: var(--muted);
}

.copy-page a {
  color: var(--accent-dark);
  font-weight: 800;
}

.note-box {
  margin: 24px 0;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(10, 124, 134, 0.22);
  border-radius: 8px;
}

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

  .tool-card {
    min-height: auto;
  }
}

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

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .channel-row {
    grid-template-columns: 1fr;
  }
}
