@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia Pro Regular Az.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia Pro Semi Bold Az.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia Pro Bold Az.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #03111f;
  --brand-navy: #051831;
  --raised-navy: #0c2942;
  --porcelain: #f6f3ee;
  --paper: #ffffff;
  --border: #d5dde2;
  --ink: #10243a;
  --slate: #526477;
  --teal: #2cb5ac;
  --teal-accessible: #137b76;
}

* { box-sizing: border-box; }

html { background: var(--porcelain); }

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: 'Sofia Pro', Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--brand-navy);
  color: var(--porcelain);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--porcelain);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-lockup img { display: block; width: 28px; height: auto; }

.header-tools { display: flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: 0.12em; }
.header-status { color: rgba(246, 243, 238, 0.58); text-transform: uppercase; }

.staging-badge {
  border: 1px solid rgba(183, 121, 77, 0.8);
  border-radius: 999px;
  color: #f2c9a9;
  padding: 6px 9px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.language-link {
  border: 1px solid rgba(246, 243, 238, 0.22);
  border-radius: 4px;
  padding: 9px 12px;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.language-link:hover,
.language-link:focus-visible { border-color: var(--teal); color: var(--teal); }

.language-link:focus-visible,
.primary-link:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--porcelain); }

.hero__grid {
  min-height: calc(100vh - 72px - 115px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 80px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(213, 221, 226, 0.72); border-radius: 50%; pointer-events: none; }
.hero-orbit--large { width: 360px; height: 360px; top: 62px; right: 8%; }
.hero-orbit--medium { width: 250px; height: 250px; top: 118px; right: 13%; }
.hero-orbit--small { width: 130px; height: 130px; top: 178px; right: 19%; border-color: rgba(44, 181, 172, 0.22); }

.hero-copy { max-width: 650px; }
.eyebrow, .micro-label { margin: 0; color: var(--slate); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

h1 {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--brand-navy);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h1 span { display: block; }
.hero-description { max-width: 560px; margin: 32px 0 0; color: var(--slate); font-size: 20px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 38px; }

.primary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--brand-navy);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease;
}

.primary-link:hover { background: var(--raised-navy); }
.primary-link span { color: var(--teal); font-size: 18px; }
.status-line { display: inline-flex; align-items: center; gap: 8px; color: var(--slate); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.principle { min-width: 0; padding: 20px 20px 20px 0; }
.principle--divided { border-left: 1px solid var(--border); padding-left: 20px; }
.principle__index { color: var(--teal-accessible); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; }
.principle h2 { margin: 12px 0 0; color: var(--brand-navy); font-size: 16px; line-height: 1.3; }
.principle p { margin: 8px 0 0; color: var(--slate); font-size: 13px; line-height: 1.65; }

.framework-shell { position: relative; width: 100%; max-width: 500px; margin-left: auto; }
.framework-shell::before { content: ''; position: absolute; inset: -20px; border: 1px solid rgba(213, 221, 226, 0.65); border-radius: 20px; }
.framework-card { position: relative; overflow: hidden; padding: 32px; border-radius: 12px; background: var(--brand-navy); color: var(--porcelain); box-shadow: 0 24px 70px rgba(5, 24, 49, 0.16); }
.framework-card__topline { position: absolute; inset: 0 0 auto; height: 4px; background: var(--teal); }
.framework-card__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.framework-card h2 { margin: 12px 0 0; font-size: 28px; font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.framework-status { flex-shrink: 0; border: 1px solid rgba(44, 181, 172, 0.45); border-radius: 999px; padding: 7px 10px; color: var(--teal); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.chart-panel { position: relative; overflow: hidden; margin-top: 38px; padding: 20px 20px 14px; border: 1px solid rgba(246, 243, 238, 0.15); border-radius: 8px; background: rgba(246, 243, 238, 0.04); }
.chart-grid { position: absolute; inset: 0; opacity: 0.5; background-image: linear-gradient(to right, rgba(246, 243, 238, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(246, 243, 238, 0.08) 1px, transparent 1px); background-size: 42px 42px; }
.chart-bars { position: relative; display: flex; height: 180px; align-items: flex-end; gap: 7px; padding: 20px 4px 12px; }
.chart-bar { display: block; width: 100%; border-radius: 3px 3px 0 0; background: rgba(246, 243, 238, 0.3); }
.chart-bar--1 { height: 36%; }
.chart-bar--2 { height: 62%; }
.chart-bar--3 { height: 48%; }
.chart-bar--4 { height: 73%; }
.chart-bar--5 { height: 58%; }
.chart-bar--6 { height: 82%; }
.chart-bar--7 { height: 68%; }
.chart-bar--8 { height: 76%; }
.chart-bar--9 { height: 64%; }
.chart-bar--10 { height: 88%; }
.chart-point { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(44, 181, 172, 0.15); }
.chart-point--one { bottom: 29%; left: 12%; }
.chart-point--two { top: 28%; right: 11%; }
.chart-footer { position: relative; display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(246, 243, 238, 0.15); color: rgba(246, 243, 238, 0.55); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.board-rows { margin-top: 24px; border-top: 1px solid rgba(246, 243, 238, 0.1); border-bottom: 1px solid rgba(246, 243, 238, 0.1); }
.board-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(246, 243, 238, 0.1); color: rgba(246, 243, 238, 0.85); font-size: 14px; }
.board-row:last-child { border-bottom: 0; }
.board-row__index { color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; }
.board-row__dot { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: rgba(246, 243, 238, 0.35); }

.site-footer { background: var(--brand-navy); color: var(--porcelain); }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 32px; padding-bottom: 32px; }
.brand-lockup--footer { font-size: 18px; }
.brand-lockup--footer img { width: 24px; }
.site-footer p { margin: 10px 0 0; color: rgba(246, 243, 238, 0.6); font-size: 13px; }
.site-footer .copyright { margin: 0; color: rgba(246, 243, 238, 0.48); font-size: 12px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 64px; padding-top: 76px; padding-bottom: 80px; }
  .framework-shell { margin: 0 auto; }
  .hero-orbit--large { right: -120px; top: 260px; }
  .hero-orbit--medium { right: -40px; top: 320px; }
  .hero-orbit--small { right: 44px; top: 380px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1240px); }
  .site-header__inner { min-height: 64px; }
  .header-status { display: none; }
  .header-tools { gap: 8px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-description { font-size: 17px; line-height: 1.75; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle--divided { padding: 18px 0; border-left: 0; }
  .principle + .principle { border-top: 1px solid var(--border); }
  .framework-card { padding: 24px; }
  .framework-card__heading { display: block; }
  .framework-status { display: inline-flex; margin-top: 18px; }
  .chart-bars { height: 150px; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
}

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