:root {
  --navy-950: #050b14;
  --navy-900: #08111f;
  --navy-850: #0b1728;
  --navy-800: #0f2035;
  --navy-700: #17314d;
  --blue-500: #4d9fff;
  --blue-400: #74b6ff;
  --mint-500: #52dfbf;
  --mint-400: #7cf0d4;
  --lime-400: #c8f06b;
  --white: #ffffff;
  --ink: #152132;
  --muted: #607086;
  --line: #dbe4eb;
  --surface: #f5f8fa;
  --surface-2: #ebf1f4;
  --shadow-sm: 0 10px 30px rgba(13, 30, 48, 0.08);
  --shadow-lg: 0 25px 70px rgba(6, 20, 35, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--navy-950);
  background: var(--mint-400);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.75rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background: var(--navy-900);
}

.section-dark p {
  color: #a9b8c9;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--mint-400);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  background: rgba(8, 17, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 17, 31, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy-950);
}

.brand-ring {
  position: absolute;
  inset: 1px;
  border: 2px solid var(--mint-400);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(124, 240, 212, 0.32);
}

.brand-ring::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(116, 182, 255, 0.9);
  border-radius: 50%;
}

.brand-core {
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 900;
  background: var(--mint-400);
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--mint-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a {
  position: relative;
  color: #c3cfda;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--mint-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 11px 16px;
  color: var(--navy-950);
  background: var(--mint-400);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--navy-950);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mint-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #167f71;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--mint-400);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(124, 240, 212, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(124, 240, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 240, 212, 0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 44px;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(121, 173, 209, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 173, 209, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.hero-orb-one {
  top: -120px;
  right: 10%;
  width: 430px;
  height: 430px;
  background: #1aa3a3;
}

.hero-orb-two {
  bottom: 10%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: #2767b5;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.hero-content h1 span {
  color: var(--mint-400);
}

.hero-content > p {
  max-width: 690px;
  margin-bottom: 32px;
  color: #b7c5d2;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.readiness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border var(--transition), color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--mint-400);
  box-shadow: 0 10px 30px rgba(82, 223, 191, 0.2);
}

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

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: #b8c6cf;
}

.button-outline-dark:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 690px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.hero-trust span {
  color: #8497a9;
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.globe {
  width: min(100%, 610px);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.network-lines {
  animation: linePulse 3.8s ease-in-out infinite alternate;
}

@keyframes linePulse {
  from { opacity: 0.48; }
  to { opacity: 1; }
}

.floating-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 230px;
  padding: 14px 16px;
  background: rgba(11, 27, 46, 0.82);
  border: 1px solid rgba(124, 240, 212, 0.25);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 15%;
  right: -2%;
}

.floating-card-bottom {
  bottom: 14%;
  left: -4%;
}

.floating-icon {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  font-weight: 900;
  background: var(--mint-400);
  border-radius: 12px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.8rem;
}

.floating-card small {
  margin-top: 2px;
  color: #93a7b7;
  font-size: 0.67rem;
}

.logo-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 28px;
  color: #63778b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.section-copy .lead {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 560;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: #0f766b;
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.stat-card {
  min-height: 190px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid #e6edf1;
  border-radius: var(--radius-md);
}

.stat-card strong,
.stat-suffix {
  display: inline;
  color: #0d7569;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 750;
  letter-spacing: -0.07em;
}

.stat-suffix {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.stat-card p {
  max-width: 190px;
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.section-header {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header.centered p {
  max-width: 720px;
  margin-inline: auto;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe8ed;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: #b4d8d0;
  box-shadow: var(--shadow-lg);
}

.pillar-card.featured {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.pillar-card.featured p,
.pillar-card.featured li {
  color: #b6c5d2;
}

.pillar-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #d7e2e7;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.featured .pillar-number {
  color: rgba(255, 255, 255, 0.08);
}

.pillar-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 90px;
  place-items: center;
  color: #0f756a;
  font-size: 1.55rem;
  background: #dff8f1;
  border-radius: 18px;
}

.featured .pillar-icon {
  color: var(--navy-950);
  background: var(--mint-400);
}

.pillar-card p {
  min-height: 102px;
}

.pillar-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid #e6ecef;
}

.featured ul {
  border-color: rgba(255, 255, 255, 0.1);
}

.pillar-card li {
  color: #506174;
  font-size: 0.88rem;
}

.pillar-card li::before {
  margin-right: 8px;
  color: var(--mint-500);
  content: "•";
}

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

.service-card {
  min-height: 315px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition), border var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(124, 240, 212, 0.32);
}

.service-index {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--mint-400);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card p {
  min-height: 100px;
}

.service-card a {
  color: var(--mint-400);
  font-size: 0.85rem;
  font-weight: 800;
}

.readiness-section {
  background: linear-gradient(130deg, #edf8f5 0%, #ffffff 50%, #eef4fb 100%);
}

.readiness-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.readiness-panel > p {
  font-size: 1.03rem;
}

.readiness-dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 34px;
}

.readiness-dimensions span,
.team-tags span {
  padding: 8px 12px;
  color: #315465;
  font-size: 0.76rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cedfe5;
  border-radius: 999px;
}

.score-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid #d8e6e9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.score-card-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.score-card-header div {
  display: flex;
  flex-direction: column;
}

.score-card-header span {
  color: #788998;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.score-card-header strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.status-badge {
  padding: 7px 10px;
  color: #8a6211 !important;
  background: #fff0c7;
  border-radius: 999px;
}

.score-main {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #e1e9ed;
}

.score-ring {
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  place-items: center;
  background: conic-gradient(var(--mint-500) calc(var(--score) * 1%), #e5edf0 0);
  border-radius: 50%;
}

.score-ring::before {
  grid-area: 1 / 1;
  width: 112px;
  aspect-ratio: 1;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.score-ring span {
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.score-ring strong {
  font-size: 2.7rem;
  letter-spacing: -0.08em;
}

.score-ring small {
  color: #7b8b98;
}

.score-summary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.score-summary p {
  margin: 0;
  font-size: 0.86rem;
}

.bar-list {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
}

.bar-row > span {
  color: #5e7180;
}

.bar-row > div {
  height: 7px;
  overflow: hidden;
  background: #e5ecef;
  border-radius: 999px;
}

.bar-row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3dc8ab, #6cabff);
  border-radius: inherit;
}

.bar-row strong {
  text-align: right;
}

.insights-heading {
  display: flex;
  max-width: none;
  gap: 35px;
  align-items: flex-end;
  justify-content: space-between;
}

.insights-heading > div:first-child {
  max-width: 760px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  padding: 8px 13px;
  color: #596a78;
  font-size: 0.75rem;
  font-weight: 800;
  background: transparent;
  border: 1px solid #cbd7dc;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dde6ea;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.insight-card.hidden {
  display: none;
}

.insight-featured {
  grid-column: span 2;
}

.insight-visual {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  background: var(--navy-900);
}

.insight-featured .insight-visual {
  min-height: 320px;
}

.insight-visual::before,
.insight-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.insight-visual::before {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-visual::after {
  width: 130px;
  height: 130px;
  background: rgba(124, 240, 212, 0.16);
  box-shadow: 0 0 70px rgba(124, 240, 212, 0.3);
}

.visual-one {
  background: linear-gradient(135deg, #07111f, #154765);
}

.visual-one::before {
  top: 40px;
  right: 10%;
}

.visual-one::after {
  right: 20%;
  bottom: 35px;
}

.visual-two {
  background: linear-gradient(135deg, #061b20, #157c75);
}

.visual-two::before {
  top: -60px;
  right: -30px;
}

.visual-two::after {
  bottom: -20px;
  left: 30px;
}

.visual-three {
  background: linear-gradient(135deg, #151f35, #485978);
}

.visual-three::before {
  right: 30px;
  bottom: -80px;
}

.visual-three::after {
  top: 25px;
  left: 30px;
}

.visual-four {
  background: linear-gradient(135deg, #23174a, #8353ad);
}

.visual-four::before {
  top: 20px;
  left: -100px;
}

.visual-four::after {
  right: 30px;
  bottom: 20px;
}

.visual-five {
  background: linear-gradient(135deg, #17202a, #8a6a2c);
}

.visual-five::before {
  top: -60px;
  left: 25px;
}

.visual-five::after {
  right: 25px;
  bottom: -15px;
}

.insight-visual > span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  padding: 7px 10px;
  color: var(--navy-950);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--mint-400);
  border-radius: 999px;
}

.insight-body {
  padding: 25px;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #7d8e9c;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.insight-meta span {
  color: #0f786c;
}

.insight-body h3 {
  min-height: 58px;
}

.insight-featured .insight-body h3 {
  min-height: auto;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.insight-body p {
  min-height: 78px;
  font-size: 0.88rem;
}

.article-link {
  padding: 0;
  color: #0e756a;
  font-size: 0.82rem;
  font-weight: 800;
  background: none;
  border: 0;
  cursor: pointer;
}

.insights-footer {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.events-section {
  background: var(--white);
}

.event-list {
  display: grid;
  border-top: 1px solid #d9e3e7;
}

.event-card {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #d9e3e7;
}

.event-date {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  align-content: center;
  background: var(--surface);
  border: 1px solid #d9e3e7;
  border-radius: 18px;
}

.event-date strong {
  color: #0e756a;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.event-date span {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.event-type {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f786c;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 8px;
}

.event-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.event-card > a {
  color: #0f756a;
  font-size: 0.82rem;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.team-card {
  min-height: 370px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.team-card-primary {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
}

.team-avatar {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  color: var(--navy-950);
  font-size: 2.4rem;
  font-weight: 850;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), transparent 24%),
    linear-gradient(135deg, var(--mint-400), var(--blue-400));
  border-radius: 30px;
}

.team-avatar-alt {
  width: 92px;
  height: 92px;
  margin-bottom: 48px;
  color: var(--white);
  font-size: 1.5rem;
  background: linear-gradient(135deg, #163b57, #214f53);
  border: 1px solid rgba(124, 240, 212, 0.24);
  border-radius: 24px;
}

.team-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint-400);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-copy p {
  font-size: 0.86rem;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.team-tags span {
  color: #a7c9c3;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.network-banner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 30px;
  background: linear-gradient(120deg, rgba(82, 223, 191, 0.12), rgba(77, 159, 255, 0.1));
  border: 1px solid rgba(124, 240, 212, 0.2);
  border-radius: var(--radius-md);
}

.network-banner span {
  color: var(--mint-400);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.network-banner h3 {
  max-width: 720px;
  margin: 7px 0 0;
}

.chapter-section {
  background: var(--surface);
}

.chapter-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.chapter-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 34px;
  background: var(--white);
  border: 1px solid #dde7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.chapter-node {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--surface);
  border: 1px solid #e1e9ed;
  border-radius: 16px;
}

.chapter-node.active {
  grid-column: span 2;
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.chapter-node strong {
  font-size: 1rem;
}

.chapter-node span {
  margin-top: 3px;
  color: #748694;
  font-size: 0.78rem;
}

.chapter-node.active span {
  color: var(--mint-400);
}

.contact-section {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 223, 191, 0.12), transparent 30%),
    var(--navy-900);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.contact-copy p {
  color: #aebdca;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-details a {
  color: var(--mint-400);
  font-weight: 800;
}

.contact-details span {
  color: #728699;
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dce5ec;
  font-size: 0.77rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  outline: none;
  transition: border var(--transition), background var(--transition);
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--mint-400);
}

.contact-form option {
  color: var(--ink);
}

.contact-form .button {
  justify-self: start;
}

.form-status,
.newsletter-status {
  min-height: 22px;
  margin: 0;
  color: var(--mint-400) !important;
  font-size: 0.8rem;
}

.newsletter-section {
  padding: 60px 0;
  color: var(--white);
  background: #0d7569;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.newsletter-layout > div span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-layout h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
}

.newsletter-form input {
  min-width: 0;
  padding: 0 16px;
  background: transparent;
  border: 0;
  outline: none;
}

.newsletter-form button {
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 800;
  background: var(--navy-900);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.newsletter-status {
  grid-column: 2;
  color: var(--white) !important;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: var(--navy-950);
}

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

.footer-brand p {
  max-width: 340px;
  margin-top: 22px;
  color: #8193a3;
  font-size: 0.86rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.86rem;
}

.footer-column a {
  color: #8193a3;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--mint-400);
}

.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 22px;
  color: #637687;
  font-size: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.76);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 88vh;
  padding: 40px;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font-size: 1.5rem;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal-category {
  color: #0f786c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-content h2 {
  padding-right: 40px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-article p,
.modal-article li {
  color: #536577;
}

.modal-article h3 {
  margin-top: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a {
    font-size: 0.8rem;
  }

  .hero-layout {
    gap: 24px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

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

  .team-card-primary {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 10vw;
    background: rgba(5, 11, 20, 0.98);
    transform: translateX(100%);
    transition: transform 300ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a {
    font-size: 1.2rem;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-layout,
  .split-layout,
  .readiness-layout,
  .chapter-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .stats-grid,
  .pillar-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

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

  .insight-featured {
    grid-column: span 2;
  }

  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-status {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .hero-trust,
  .stats-grid,
  .pillar-grid,
  .service-grid,
  .insights-grid,
  .team-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .floating-card {
    min-width: auto;
    max-width: 230px;
  }

  .floating-card-top {
    top: 8%;
  }

  .floating-card-bottom {
    bottom: 4%;
  }

  .logo-strip {
    justify-content: flex-start;
  }

  .insight-featured,
  .team-card-primary {
    grid-column: auto;
  }

  .team-card-primary {
    grid-template-columns: 1fr;
  }

  .team-card-primary .team-avatar {
    width: 100px;
    height: 100px;
    font-size: 1.8rem;
  }

  .score-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bar-row {
    grid-template-columns: 90px 1fr 26px;
  }

  .event-card {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .event-card > a {
    grid-column: 2;
  }

  .network-banner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chapter-map {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .chapter-node.active {
    grid-column: auto;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    background: transparent;
  }

  .newsletter-form input,
  .newsletter-form button {
    min-height: 48px;
    border-radius: 999px;
  }

  .newsletter-form input {
    background: var(--white);
  }

  .modal-content {
    padding: 32px 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
