:root {
  --ink: #091526;
  --navy: #0b1f3a;
  --blue: #075fd8;
  --steel: #637083;
  --mist: #edf2f7;
  --line: #d7dde7;
  --white: #ffffff;
  --orange: #e66f2a;
  --orange-dark: #b94d19;
  --shadow: 0 22px 60px rgba(9, 21, 38, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(9, 21, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-width: 154px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.94);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.9) 0%, rgba(5, 12, 24, 0.72) 44%, rgba(5, 12, 24, 0.3) 100%),
    linear-gradient(0deg, rgba(5, 12, 24, 0.75) 0%, rgba(5, 12, 24, 0.05) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button.primary:hover {
  background: var(--orange-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats span {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.hero-stats span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.intro-band,
.resources,
.network-section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(100%, 860px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-grid article,
.resource-card,
.membership-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.intro-grid article {
  min-height: 230px;
  padding: 28px;
}

.intro-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 34px;
  color: var(--blue);
}

.intro-grid p,
.resource-card p,
.membership p,
.split-copy p,
.partner-panel p,
.event-panel p {
  color: var(--steel);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 92px clamp(20px, 5vw, 72px);
  background: var(--mist);
}

.split-copy {
  max-width: 560px;
  justify-self: end;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.focus-grid div {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  padding: 20px;
  color: var(--white);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(7, 95, 216, 0.82)),
    radial-gradient(circle at 90% 8%, rgba(230, 111, 42, 0.55), transparent 28%);
}

.resources {
  background: var(--navy);
  color: var(--white);
}

.resources .section-heading h2 {
  color: var(--white);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.resource-card {
  min-height: 290px;
  padding: 26px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.resource-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--orange);
  font-weight: 900;
}

.resource-card p {
  color: rgba(255, 255, 255, 0.68);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 620px;
}

.event-image img,
.contact-section img,
.network-layout > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 78px);
  background: var(--white);
}

.event-meta {
  color: var(--ink);
  font-weight: 800;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.network-layout > img {
  min-height: 390px;
  border-radius: var(--radius);
}

.partner-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  background: var(--ink);
}

.partner-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.partner-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.membership {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: 92px clamp(20px, 5vw, 72px);
  background: var(--mist);
}

.membership > div:first-child {
  max-width: 570px;
  justify-self: end;
}

.membership-cards {
  display: grid;
  gap: 12px;
}

.membership-cards article {
  padding: 22px 24px;
}

.membership .button {
  grid-column: 2;
  justify-self: start;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
  background: var(--ink);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
  color: var(--white);
}

address {
  margin: 4px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-links svg {
  width: 19px;
  height: 19px;
  color: var(--orange);
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 28px;
  align-items: start;
  padding: 38px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 13px;
}

.site-footer img {
  width: 160px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-brand p {
  margin-top: 14px;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal a {
  color: var(--ink);
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero img,
.page-hero::after {
  position: absolute;
  inset: 0;
}

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

.page-hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(5, 12, 24, 0.9), rgba(5, 12, 24, 0.42));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 138px 0 58px;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.content-section {
  padding: 84px clamp(20px, 5vw, 72px);
}

.content-section.alt {
  background: var(--mist);
}

.content-section.compact {
  padding-top: 34px;
}

.content-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.lead {
  color: var(--steel);
  font-size: 18px;
}

.event-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.event-facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.event-facts svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex: 0 0 auto;
}

.stack {
  display: grid;
  gap: 16px;
}

.info-card,
.program-card,
.doc-card,
.timeline-card,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card,
.program-card,
.doc-card,
.timeline-card,
.contact-info-card {
  padding: 24px;
}

.info-card p,
.program-card p,
.doc-card p,
.timeline-card p,
.contact-info-card p,
.check-list,
.plain-list {
  color: var(--steel);
}

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

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

.icon-card svg,
.program-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--blue);
}

.check-list,
.plain-list {
  margin: 0;
  padding-left: 18px;
}

.check-list li,
.plain-list li {
  margin-bottom: 9px;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.kpi-strip div {
  padding: 22px;
}

.kpi-strip div + div {
  border-left: 1px solid var(--line);
}

.kpi-strip strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.kpi-strip span {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #102f5d);
}

.page-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.doc-list {
  display: grid;
  gap: 12px;
}

.doc-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--orange-dark);
  background: rgba(230, 111, 42, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
}

.timeline-card time {
  color: var(--blue);
  font-weight: 900;
}

.timeline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.timeline-actions a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

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

.logo-cloud span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  color: var(--steel);
  background: var(--white);
  font-weight: 800;
}

.logo-cloud.verified span {
  min-height: 92px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}

.logo-note {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--steel);
  text-align: center;
  font-size: 13px;
}

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

.news-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-content {
  padding: 22px;
}

.news-card time,
.article-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card p,
.article-body p {
  color: var(--steel);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 42px);
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.resource-mini-list {
  display: grid;
  gap: 12px;
}

.resource-mini-list a {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.resource-mini-list strong {
  color: var(--ink);
}

.resource-mini-list span {
  color: var(--steel);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  font-weight: 800;
}

.contact-actions svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

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

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 710px;
  }

  .hero-stats,
  .intro-grid,
  .resource-grid,
  .split-section,
  .event-feature,
  .network-layout,
  .membership,
  .contact-section,
  .site-footer,
  .two-column,
  .contact-grid,
  .news-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .split-copy,
  .membership > div:first-child {
    justify-self: start;
  }

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

  .card-grid,
  .card-grid.two,
  .kpi-strip,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .membership .button {
    grid-column: auto;
  }

  .event-image,
  .contact-section img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 36px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-stats,
  .focus-grid,
  .resource-grid,
  .card-grid,
  .card-grid.two,
  .kpi-strip,
  .service-grid,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .hero-stats span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .intro-band,
  .resources,
  .network-section,
  .split-section,
  .membership,
  .content-section {
    padding: 64px 16px;
  }

  .event-panel,
  .contact-card,
  .page-hero-content {
    padding: 44px 16px;
  }

  .page-hero-content {
    width: 100%;
    padding-top: 130px;
  }

  .doc-card,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .page-cta {
    padding: 24px;
  }

  .kpi-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
