:root {
  --primary: #081774;
  --primary-hover: #06125c;
  --primary-active: #040d45;
  --on-primary: #ffffff;
  --ink: #111827;
  --text-secondary: #4b5563;
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --surface-tint: #eef0f9;
  --border: #d8dce8;
  --event-orange: #ec7e35;
  --event-teal: #47b4b1;
  --event-red: #96110d;
  --focus: #ec7e35;
  --error: #96110d;
  --content-max: 1200px;
  --text-max: 720px;
  --page-margin: 32px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: var(--primary);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  color: var(--primary);
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

p {
  margin-bottom: 0;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - (var(--page-margin) * 2)), var(--content-max));
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

.section-compact {
  padding-block: 64px;
}

.surface-soft {
  background: var(--surface-soft);
}

.surface-tint {
  background: var(--surface-tint);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
}

.section-intro {
  display: grid;
  gap: 20px;
  max-width: var(--text-max);
}

.section-intro-narrow {
  margin-bottom: 48px;
}

.list-label {
  margin-top: 32px;
  color: var(--ink);
  font-weight: 700;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--primary);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--surface);
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.site-header.is-raised {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 8px rgba(8, 23, 116, .1);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 148px;
  min-height: 65px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: 65px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-list,
.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="true"] {
  color: var(--primary);
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease-out, top 160ms ease-out;
}

.menu-icon span:first-child { top: 3px; }
.menu-icon span:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-icon span:first-child { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon span:last-child { top: 7px; transform: rotate(-45deg); }

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.button-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.button-primary:not(:disabled):hover { background: var(--primary-hover); }
.button-primary:not(:disabled):active { background: var(--primary-active); }

.button-secondary {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--primary);
}

.button:disabled {
  border-color: var(--text-secondary);
  background: var(--border);
  color: var(--ink);
  cursor: not-allowed;
}

.button-secondary:disabled {
  border-color: var(--border);
  background: var(--surface-tint);
  color: var(--ink);
}

.status {
  color: var(--error);
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4;
}

.status-compact {
  max-width: 118px;
  flex: 0 0 118px;
  font-size: .75rem;
}

.microcopy {
  font-size: .875rem;
}

.action-group {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy .action-group {
  margin-top: 8px;
}

.media {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-tint);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 24px;
  place-items: center;
  color: var(--text-secondary);
  text-align: center;
}

.media-hero {
  aspect-ratio: 3 / 2;
}

.media-hero img {
  object-position: 68% center;
}

.media-four-three {
  aspect-ratio: 4 / 3;
}

.split-statement {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: center;
}

.split-statement h2 { grid-column: 1; color: var(--primary); }
.split-statement p { grid-column: 3; }

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.editorial-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.editorial-list li {
  display: flex;
  min-height: 56px;
  padding-block: 14px;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.highlights {
  margin-top: 12px;
  font-weight: 700;
}

.marker {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  flex: 0 0 10px;
  border-radius: 9999px;
}

.marker-primary { background: var(--primary); }
.marker-orange { background: var(--event-orange); }
.marker-teal { background: var(--event-teal); }
.marker-red { background: var(--event-red); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.event-card {
  position: relative;
  display: grid;
  min-height: 248px;
  padding: 24px;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.event-card h3 {
  align-self: start;
  padding-top: 16px;
}

.event-signals {
  display: flex;
  gap: 6px;
}

.event-signals i {
  width: 26px;
  height: 4px;
  border-radius: 9999px;
}

.event-signals i:nth-child(1) { background: var(--event-orange); }
.event-signals i:nth-child(2) { background: var(--event-teal); }
.event-signals i:nth-child(3) { background: var(--event-red); }

.event-date {
  color: var(--primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.event-place {
  min-height: 3em;
  font-size: .875rem;
}

.events-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 48px;
  padding-top: 32px;
  align-items: start;
  gap: 32px;
  border-top: 1px solid var(--border);
}

.events-action > p {
  max-width: 520px;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 700;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 4fr 1fr 7fr;
  align-items: start;
}

.editorial-grid h2 { grid-column: 1; }
.editorial-grid .numbered-list { grid-column: 3; }

.numbered-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.numbered-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
}

.numbered-list h3 {
  margin-bottom: 8px;
}

.index {
  color: var(--primary);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: center;
}

.ecosystem-copy {
  display: grid;
  grid-column: 3;
  gap: 40px;
}

.ecosystem-media {
  grid-column: 1;
  grid-row: 1;
}

.ecosystem-list li {
  padding-block: 20px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: start;
}

.audience-grid .section-intro { grid-column: 1; }
.audience-list { grid-column: 3; }

.audience-list li {
  font-size: 1.125rem;
}

.audience-list li span {
  color: var(--primary);
  font-weight: 700;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.voices-grid blockquote {
  display: grid;
  margin-bottom: 0;
  padding-block: 32px;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.voices-grid blockquote:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.voices-grid blockquote p {
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.65;
}

.voices-grid blockquote footer {
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 1fr 6fr;
  align-items: center;
}

.about-copy {
  display: grid;
  grid-column: 3;
  gap: 20px;
}

.about-media {
  grid-column: 1;
  grid-row: 1;
}

.faq-wrap {
  max-width: var(--text-max);
}

.faq-wrap > h2 {
  margin-bottom: 40px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  color: var(--primary);
}

.faq-state {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq-panel {
  padding: 0 48px 24px 0;
}

.faq-panel[hidden] {
  display: none;
}

.final-cta {
  background: var(--primary);
  color: var(--on-primary);
}

.final-cta :focus-visible {
  outline-color: var(--focus);
  box-shadow: 0 0 0 2px var(--surface);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 7fr 1fr 4fr;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: var(--on-primary);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.action-on-dark {
  grid-column: 3;
}

.action-on-dark .status {
  color: var(--on-primary);
}

.site-footer {
  padding-block: 64px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
}

.site-footer address {
  display: grid;
  align-content: start;
  gap: 16px;
  font-style: normal;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-secondary);
}

@media (max-width: 1199px) {
  .section { padding-block: 80px; }

  .nav-list { gap: 12px; }

  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card { min-height: 224px; }
}

@media (max-width: 1049px) {
  .js .menu-toggle { display: inline-flex; margin-left: auto; }

  .js .nav-panel[hidden] { display: none; }

  .nav-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 20px var(--page-margin) 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-list li + li {
    border-top: 1px solid var(--border);
  }

  .nav-list a {
    width: 100%;
    min-height: 52px;
  }

  .header-action {
    display: grid;
    justify-items: stretch;
  }

  .status-compact {
    max-width: none;
    flex-basis: auto;
  }

  .positioning-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: var(--text-max);
  }

  .split-statement,
  .editorial-grid,
  .ecosystem-layout,
  .audience-grid,
  .about-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-statement h2,
  .split-statement p,
  .editorial-grid h2,
  .editorial-grid .numbered-list,
  .ecosystem-copy,
  .ecosystem-media,
  .audience-grid .section-intro,
  .audience-list,
  .about-copy,
  .about-media,
  .action-on-dark {
    grid-column: 1;
    grid-row: auto;
  }

  .ecosystem-copy,
  .about-copy { grid-row: 1; }
  .ecosystem-media,
  .about-media { grid-row: 2; }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --page-margin: 20px;
  }

  .section,
  .section-compact {
    padding-block: 64px;
  }

  h1 {
    max-width: none;
    font-size: 2.5rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .positioning-grid {
    gap: 40px;
  }

  .media-hero {
    aspect-ratio: 4 / 3;
  }

  .event-grid,
  .voices-grid,
  .events-action,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto;
  }

  .event-place { min-height: 0; }

  .events-action {
    gap: 20px;
  }

  .numbered-list li {
    grid-template-columns: 48px 1fr;
  }

  .voices-grid blockquote {
    border-bottom: 0;
  }

  .voices-grid blockquote:last-child {
    border-bottom: 1px solid var(--border);
  }

  .action-group,
  .action-group .button {
    width: 100%;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 389px) {
  :root {
    --page-margin: 16px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .event-card {
    padding: 20px;
  }

  .numbered-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .faq-state {
    font-size: .6875rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: enter-copy 480ms var(--ease-out) both;
  }

  .hero-copy > :nth-child(2) { animation-delay: 70ms; }
  .hero-copy > :nth-child(3) { animation-delay: 140ms; }

  .media-hero {
    animation: reveal-media 560ms 100ms var(--ease-out) both;
  }

  @keyframes enter-copy {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes reveal-media {
    from { opacity: 0; clip-path: inset(0 0 0 16% round 20px); }
    to { opacity: 1; clip-path: inset(0 0 0 0 round 20px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
