:root {
  color-scheme: light;
  --ink: #132234;
  --muted: #5e6b78;
  --line: #dce5ec;
  --soft: #eef6fa;
  --panel: #ffffff;
  --blue: #0d78a5;
  --green: #2c9a70;
  --yellow: #f4c84a;
  --shadow: 0 18px 45px rgba(16, 43, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, var(--blue), var(--green));
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  background:
    linear-gradient(120deg, rgba(13, 120, 165, 0.12), transparent 42%),
    linear-gradient(300deg, rgba(44, 154, 112, 0.14), transparent 44%),
    #f7fafc;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.75fr);
  margin: 0 auto;
  max-width: 1080px;
  min-height: 640px;
  padding: 82px 24px 64px;
}

.eyebrow {
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 680px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 20px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  margin: 24px 0 0;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
}

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

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.hero-card {
  align-self: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.metric {
  background: var(--soft);
  border: 1px solid #d8edf4;
  border-radius: 8px;
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.today-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 16px;
  padding: 18px;
}

.today-panel p {
  color: var(--muted);
  margin: 8px 0 0;
}

.section {
  margin: 0 auto;
  max-width: 1080px;
  padding: 72px 24px;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
  max-width: 720px;
}

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

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

.card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.band {
  background: #102b40;
  color: #fff;
}

.band .section-intro,
.band .muted {
  color: #c5d7e2;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  padding: 9px 14px;
}

.content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 28px;
  padding: 28px;
}

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

.content h2:first-child {
  margin-top: 0;
}

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

.content ul {
  padding-left: 22px;
}

.notice {
  background: #fff8df;
  border: 1px solid #ead999;
  border-radius: 8px;
  color: #5c4a05;
  margin-top: 24px;
  padding: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0 auto;
  max-width: 1080px;
  padding: 28px 24px 44px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

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