:root {
  color-scheme: light;
  --ink: #102a43;
  --ink-soft: #486581;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #d9e2ec;
  --teal: #0f766e;
  --teal-bright: #14b8a6;
  --amber: #f4b860;
  --focus: #f59e0b;
  --shadow: 0 18px 44px rgba(16, 42, 67, 0.10);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

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

a:hover { color: #0b5f59; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.draft-banner {
  padding: 0.65rem 1rem;
  text-align: center;
  background: #7c2d12;
  color: white;
  font-weight: 750;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(217, 226, 236, 0.85);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img { border-radius: 12px; }

.nav-list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: #e8f5f2;
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 92% 18%, rgba(20, 184, 166, 0.20), transparent 28rem),
    radial-gradient(circle at 8% 84%, rgba(244, 184, 96, 0.17), transparent 24rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
}

h2 { font-size: clamp(1.9rem, 4vw, 3.15rem); }

h3 { font-size: 1.25rem; }

.lede {
  max-width: 64ch;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: #1d496c; color: white; }

.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: white; color: var(--ink); }

.hero-mark {
  position: relative;
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(217, 226, 236, 0.8);
  border-radius: 34%;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.hero-mark::before {
  inset: 12%;
  border: 1px dashed rgba(15, 118, 110, 0.35);
}

.hero-mark::after {
  width: 42%;
  height: 42%;
  background: rgba(244, 184, 96, 0.20);
  filter: blur(4px);
}

.hero-mark img { position: relative; z-index: 1; width: 54%; border-radius: 24%; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-white { background: var(--surface); }
.section-tint { background: #edf8f5; }

.section-heading { max-width: 720px; margin-bottom: 2.4rem; }
.section-heading p { color: var(--ink-soft); }

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

.card {
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.05);
}

.card p:last-child { margin-bottom: 0; color: var(--ink-soft); }

.number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.3rem;
  place-items: center;
  border-radius: 12px;
  background: #e8f5f2;
  color: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.fact-list { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; }

.fact-list li {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--teal-bright);
  border-radius: 0 12px 12px 0;
  background: white;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 3rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f4f7f7, #edf8f5);
}

.page-hero h1 { max-width: 18ch; font-size: clamp(2.4rem, 6vw, 4.6rem); }

.prose {
  width: min(780px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.prose h2 { margin-top: 2.8rem; font-size: clamp(1.5rem, 3vw, 2.05rem); }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: #334e68; }
.prose li + li { margin-top: 0.45rem; }
.prose strong { color: var(--ink); }

.callout {
  margin: 2rem 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid #a7d9d3;
  border-radius: 16px;
  background: #edf8f5;
}

.callout-warning { border-color: #e9b68c; background: #fff7ed; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th { color: var(--ink); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.86rem;
  font-weight: 800;
}

.status::before { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #f97316; content: ""; }

.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--ink);
  color: #d9e2ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.footer-brand { color: white; }
.footer-note { max-width: 34ch; color: #bcccdc; }
.footer-links { flex-direction: column; align-items: flex-start; }
.footer-links a { color: #d9e2ec; }
.copyright { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid #334e68; color: #9fb3c8; font-size: 0.86rem; }

@media (max-width: 780px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 0.8rem 0; }
  .nav-list { width: 100%; overflow-x: auto; padding-bottom: 0.2rem; }
  .nav-list a { white-space: nowrap; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero-mark { width: min(70vw, 280px); justify-self: start; }
  .card-grid { grid-template-columns: 1fr; }
  .data-table { display: block; overflow-x: auto; }
}

@media (max-width: 420px) {
  .shell, .prose { width: min(100% - 1.25rem, 1120px); }
  .brand { font-size: 1rem; }
  .nav-list { gap: 0; }
  .nav-list a { padding-inline: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .site-footer, .draft-banner, .button-row { display: none; }
  body { background: white; color: black; }
  .prose { width: 100%; padding: 0; }
}

