:root {
  --background: #f3f2f0;
  --foreground: #23201d;
  --heading: #000000;
  --accent: #0041e7;

  --muted: #5d554d;
  --muted-2: #786e64;

  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.55);
  --border: rgba(35, 32, 29, 0.14);
  --border-2: rgba(35, 32, 29, 0.09);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-card: 20px;

  --shadow-sm: 0 1px 0 rgba(35, 32, 29, 0.06), 0 10px 28px rgba(35, 32, 29, 0.08);
  --shadow-md: 0 1px 0 rgba(35, 32, 29, 0.06), 0 16px 44px rgba(35, 32, 29, 0.10);

  --container: 1120px;

  --font-sans: Graphik, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.page {
  min-height: 100%;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  z-index: 30;
}

.header {
  padding: 22px 0 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.logo {
  width: clamp(120px, 14vw, 200px);
  height: auto;
  max-height: 44px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.data-as-of {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.data-as-of-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.data-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: lab(70.5521 -66.5147 45.8073);
  animation: pulse-dot 2s linear infinite;
  flex: none;
}

.data-as-of-title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: normal;
  font-weight: 400;
}

.data-as-of-title time {
  font: inherit;
}

.data-as-of-subtitle {
  margin-left: 18px;
  font-size: 12px;
  line-height: 18px;
  color: var(--muted-2);
  font-style: italic;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.main {
  padding: 24px 0 96px;
}

.hero {
  padding: 26px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.h1 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--heading);
}

.hero-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-note:first-child {
  font-size: 17px;
  color: var(--foreground);
  line-height: 1.55;
}

.hero-note + .hero-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
}

.hero-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hero-counter;
}

.hero-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--foreground);
  line-height: 1.6;
  counter-increment: hero-counter;
}

.hero-list li:last-child {
  margin-bottom: 0;
}

.hero-list li::before {
  content: counter(hero-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 65, 231, 0.08);
  border-radius: 6px;
  letter-spacing: -0.01em;
}

.hero-callout {
  margin: 18px 0 0;
  padding: 10px 14px;
  background: rgba(0, 65, 231, 0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-callout-text {
  font-size: 14px;
  color: var(--accent);
}

.hero-callout-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.hero-callout-email:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-links {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.sep {
  margin: 0 6px;
}

.link {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 3px;
}

.link:hover {
  text-decoration: underline;
}

.link.subtle {
  color: var(--muted);
}

.link.subtle:hover {
  color: var(--foreground);
}

.cards {
  padding: 18px 0 10px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  border-radius: var(--radius-card);
  border: 0;
  background: var(--surface);
  box-shadow: none;
  padding: 16px 16px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-title {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat {
  text-align: right;
}

.stat-value {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.chart {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(35, 32, 29, 0.06);
  background: linear-gradient(180deg, rgba(0, 65, 231, 0.03), rgba(0, 0, 0, 0));
  padding: 10px 10px 6px;
  overflow: hidden;
}

.chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.card-foot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.hint {
  color: var(--muted);
}

.section {
  padding: 44px 0 0;
}

.section-head {
  display: grid;
  gap: 8px;
}

.h2 {
  margin: 0;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 500;
  letter-spacing: normal;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 78ch;
}

.updates-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.update-item {
  display: block;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
}

.update-date {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.update-text {
  display: block;
  color: var(--foreground);
  line-height: 1.6;
  font-size: 15px;
}

.update-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.update-link {
  font-size: 14px;
  font-weight: 600;
}

.update-links-sep {
  color: var(--muted-2);
  font-weight: 400;
  opacity: 0.6;
}

.leadership-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.note-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px;
}

.note-kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.h3 {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.callout {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  padding: 14px 14px;
}

.callout-text {
  color: var(--muted);
  line-height: 1.6;
  max-width: 90ch;
}

code {
  font-family: var(--font-mono);
  font-size: 0.95em;
  padding: 1px 6px;
  border-radius: 8px;
  border: 1px solid rgba(35, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(35, 32, 29, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.pill-link:hover {
  border-color: rgba(35, 32, 29, 0.22);
}

.footer {
  background: #09090b;
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "logo logo"
    "col1 col2"
    "col3 col3";
  gap: 28px 20px;
  align-items: start;
}

.footer-brand {
  grid-area: logo;
  padding-bottom: 8px;
}

.footer-logo-link {
  display: block;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col:nth-child(2) {
  grid-area: col1;
}

.footer-col:nth-child(3) {
  grid-area: col2;
}

.footer-col:nth-child(4) {
  grid-area: col3;
}

.footer-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

:focus-visible {
  outline: 2px solid rgba(0, 65, 231, 0.6);
  outline-offset: 2px;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .hero-right {
    padding-top: 8px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .card {
    padding: 32px 32px;
  }

  .update-item {
    padding: 18px 22px;
  }

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

  .footer {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    grid-template-areas: "logo col1 col2 col3";
    gap: 32px;
  }

  .footer-brand {
    padding-bottom: 0;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

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