:root {
  --navy: #07111f;
  --navy-2: #0a1728;
  --navy-3: #10233a;
  --ink: #0d1b2a;
  --text: #344054;
  --muted: #667085;
  --line: #dce3ea;
  --surface: #ffffff;
  --surface-muted: #f2f6f7;
  --mint: #74efd3;
  --mint-dark: #24b99a;
  --blue: #6ca9ff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 22px 60px rgba(6, 21, 35, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  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,
strong {
  color: var(--ink);
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 20px;
}

ul {
  padding-left: 22px;
}

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

.narrow {
  max-width: 920px;
}

.article-narrow {
  max-width: 820px;
}

.section {
  position: relative;
  padding: 118px 0;
}

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

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

.section-dark {
  color: #c8d3df;
  background:
    radial-gradient(circle at 74% 20%, rgba(25, 126, 140, 0.22), transparent 28%),
    linear-gradient(150deg, #06101d, #081524 58%, #08111f);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: #07111f;
  background: var(--mint);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #07111f;
  border-radius: 50%;
  background: rgba(116, 239, 211, 0.08);
  box-shadow: 0 0 30px rgba(116, 239, 211, 0.24);
}

.brand-ring {
  position: absolute;
  inset: 3px;
  border: 2px solid var(--mint);
  border-radius: 50%;
}

.brand-core {
  position: relative;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 50%;
  background: var(--mint);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

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

.main-nav a {
  position: relative;
  color: #d1d9e2;
  font-size: 0.88rem;
  font-weight: 650;
}

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

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  color: #07111f !important;
  background: var(--mint);
}

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

.button-primary {
  color: #07111f;
  background: var(--mint);
  box-shadow: 0 16px 32px rgba(77, 220, 189, 0.18);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline-dark {
  color: var(--ink);
  border: 1px solid #aebbc7;
  background: transparent;
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: 95px 0 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(92, 137, 169, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 137, 169, 0.16) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

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

.hero-orb-one {
  width: 500px;
  height: 500px;
  top: -200px;
  right: 0;
  background: rgba(25, 177, 169, 0.12);
}

.hero-orb-two {
  width: 420px;
  height: 420px;
  bottom: -190px;
  left: -140px;
  background: rgba(67, 118, 220, 0.12);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--mint);
}

.hero-content > p {
  max-width: 650px;
  color: #b9c5d2;
  font-size: 1.22rem;
}

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

.eyebrow-dark {
  color: #168d78;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(116, 239, 211, 0.08);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust div {
  display: grid;
  gap: 6px;
}

.hero-trust strong {
  color: #fff;
}

.hero-trust span {
  color: #8392a3;
  font-size: 0.87rem;
}

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

.digital-globe {
  position: relative;
  width: min(440px, 76vw);
  aspect-ratio: 1;
  border: 1px solid #2c6386;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(31, 102, 134, 0.46), rgba(8, 17, 31, 0.18) 66%),
    linear-gradient(140deg, rgba(116, 239, 211, 0.03), rgba(108, 169, 255, 0.08));
  box-shadow:
    inset 0 0 70px rgba(33, 119, 149, 0.22),
    0 0 90px rgba(24, 116, 138, 0.12);
}

.digital-globe::before,
.digital-globe::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(91, 170, 211, 0.48);
  border-radius: 50%;
}

.digital-globe::before {
  inset: 16% 3%;
}

.digital-globe::after {
  inset: 3% 30%;
}

.globe-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(103, 179, 216, 0.42);
  border-radius: 50%;
}

.ring-one {
  transform: rotate(26deg) scaleX(1.28);
}

.ring-two {
  transform: rotate(-34deg) scaleX(1.22);
}

.ring-three {
  transform: rotate(90deg) scaleX(1.18);
}

.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.node-one { top: 21%; left: 26%; }
.node-two { top: 18%; right: 25%; background: var(--blue); }
.node-three { top: 48%; right: 8%; }
.node-four { bottom: 18%; right: 29%; background: var(--blue); }
.node-five { bottom: 20%; left: 26%; }
.node-six { top: 48%; left: 8%; background: var(--blue); }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(140, 202, 220, 0.28);
  border-radius: 14px;
  background: rgba(11, 29, 46, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

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

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

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #07111f;
  border-radius: 10px;
  background: var(--mint);
  font-weight: 900;
}

.floating-card div {
  display: grid;
  gap: 2px;
}

.floating-card small {
  color: #8291a2;
}

.logo-strip {
  position: relative;
  margin-top: 72px;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #698095;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.page-hero,
.article-hero {
  padding: 115px 0 105px;
}

.page-hero h1,
.article-hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.9rem);
}

.page-hero p,
.article-hero p {
  max-width: 770px;
  color: #b9c5d2;
  font-size: 1.2rem;
}

.section-header {
  max-width: 830px;
  margin-bottom: 55px;
}

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

.section-header p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-dark .section-header p,
.section-dark .section-copy p {
  color: #aebdcc;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.section-copy .lead,
.long-form .lead,
.article-main .lead {
  color: var(--ink);
  font-size: 1.25rem;
}

.text-link,
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #147c6c;
  font-weight: 800;
}

.stats-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat-card {
  min-height: 190px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 28px;
}

.shift-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.shift-card > span {
  color: var(--muted);
  font-weight: 800;
}

.shift-card-featured {
  color: #d2dee9;
  border-color: rgba(116, 239, 211, 0.34);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.shift-card-featured h3 {
  color: #fff;
}

.shift-arrow {
  align-self: center;
  color: var(--mint-dark);
  font-size: 2.5rem;
  font-weight: 900;
}

.platform-grid,
.resource-grid,
.value-grid,
.network-role-grid,
.output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.platform-card,
.output-card {
  min-height: 300px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(116, 239, 211, 0.45);
  background: rgba(116, 239, 211, 0.055);
}

.platform-card > span,
.service-card > span,
.resource-card > span,
.value-card > span,
.network-role > span,
.dimension-card > span {
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.platform-card h3 {
  margin-top: 60px;
}

.platform-card p {
  color: #9dafc0;
}

.platform-card strong {
  display: block;
  margin-top: 26px;
  color: var(--mint);
}

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

.pillar-card,
.resource-card,
.value-card,
.network-role,
.dimension-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.pillar-card.featured {
  color: #d1dde8;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.pillar-card.featured h3,
.pillar-card.featured strong {
  color: #fff;
}

.pillar-number {
  margin-bottom: 42px;
  color: var(--mint-dark);
  font-weight: 900;
}

.compact-grid .pillar-card {
  padding: 30px;
}

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

.service-card {
  min-height: 285px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.service-card h3 {
  margin-top: 48px;
}

.service-card p {
  color: #aebdcc;
}

.light-card {
  border-color: var(--line);
  background: #fff;
}

.light-card h3,
.light-card strong {
  color: var(--ink);
}

.light-card p {
  color: var(--text);
}

.readiness-preview,
.readiness-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(116, 239, 211, 0.12), transparent 35%),
    #fff;
}

.readiness-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 75px;
}

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

.readiness-dimensions {
  margin: 35px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.readiness-dimensions span,
.team-tags span {
  padding: 9px 13px;
  color: #276356;
  border: 1px solid #b9e5db;
  border-radius: 999px;
  background: #eefaf7;
  font-size: 0.79rem;
  font-weight: 800;
}

.score-card {
  padding: 34px;
  color: #c6d3df;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.score-card-header,
.score-main,
.bar-row {
  display: flex;
  align-items: center;
}

.score-card-header {
  justify-content: space-between;
  gap: 20px;
}

.score-card-header div {
  display: grid;
}

.score-card-header span {
  color: #8393a4;
  font-size: 0.76rem;
}

.score-card-header strong {
  color: #fff;
}

.status-badge {
  padding: 8px 12px;
  color: #15291f !important;
  border-radius: 999px;
  background: var(--mint);
  font-weight: 900;
}

.score-main {
  gap: 28px;
  margin: 38px 0;
}

.score-ring {
  --value: calc(var(--score) * 1%);
  position: relative;
  width: 140px;
  height: 140px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--mint) var(--value), #1c3043 0);
}

.score-ring::before {
  position: absolute;
  inset: 11px;
  content: "";
  border-radius: 50%;
  background: var(--navy);
}

.score-ring span {
  position: relative;
  display: flex;
  align-items: baseline;
}

.score-ring strong {
  color: #fff;
  font-size: 2.6rem;
}

.score-ring small {
  color: #8090a1;
}

.score-summary strong {
  color: #fff;
}

.score-summary p {
  margin: 8px 0 0;
  color: #9dafc0;
}

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

.bar-row {
  display: grid;
  grid-template-columns: 105px 1fr 30px;
  gap: 14px;
}

.bar-row span,
.bar-row strong {
  font-size: 0.83rem;
}

.bar-row strong {
  color: #fff;
}

.bar-row div {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #1c3145;
}

.bar-row i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

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

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

.insight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.insight-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.insight-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background-color: #0b1727;
}

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

.insight-visual::before {
  width: 260px;
  height: 260px;
  top: -60px;
  right: -40px;
  border: 1px solid rgba(116, 239, 211, 0.45);
}

.insight-visual::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -20px;
  border: 1px solid rgba(108, 169, 255, 0.4);
}

.visual-one { background: linear-gradient(135deg, #07111f, #133852); }
.visual-two { background: linear-gradient(135deg, #0b1727, #165c67); }
.visual-three { background: linear-gradient(135deg, #07111f, #253a6c); }
.visual-four { background: linear-gradient(135deg, #10243a, #3b496f); }
.visual-five { background: linear-gradient(135deg, #07111f, #25554c); }

.insight-visual > span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  color: var(--navy);
  border-radius: 99px;
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.insight-body {
  padding: 30px;
}

.insight-meta {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.light-meta {
  justify-content: flex-start;
  color: var(--mint);
}

.coming-label {
  color: #6e7d8b;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-toolbar,
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
}

.filter-button {
  padding: 10px 15px;
  color: #536271;
  border: 1px solid #cdd7df;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #07111f;
  border-color: var(--mint);
  background: var(--mint);
}

.event-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.event-card {
  display: grid;
  grid-template-columns: 115px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.event-date {
  display: grid;
  color: var(--ink);
}

.event-date strong {
  color: #168d78;
  font-size: 0.74rem;
}

.event-date span {
  font-size: 2.4rem;
  font-weight: 900;
}

.text-date span {
  font-size: 1rem;
}

.event-type {
  color: #168d78;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card p {
  margin-bottom: 0;
}

.event-card > a {
  color: #147c6c;
  font-weight: 900;
}

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

.team-card {
  display: flex;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.team-card-primary {
  border-color: rgba(116, 239, 211, 0.35);
}

.team-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #07111f;
  border-radius: 18px;
  background: var(--mint);
  font-weight: 900;
}

.team-avatar-alt {
  color: #fff;
  background: #1a3a56;
}

.team-copy > span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-copy p {
  color: #aebdcc;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  color: #c9eee5;
  border-color: rgba(116, 239, 211, 0.18);
  background: rgba(116, 239, 211, 0.07);
}

.chapter-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.chapter-node {
  min-height: 150px;
  padding: 24px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.chapter-node.active {
  border-color: rgba(116, 239, 211, 0.5);
  background: rgba(116, 239, 211, 0.08);
}

.chapter-node strong {
  color: #fff;
}

.chapter-node span {
  color: #8fa2b4;
  font-size: 0.84rem;
}

.contact-section {
  padding: 110px 0;
  color: #c9d5e0;
  background:
    radial-gradient(circle at 15% 20%, rgba(116, 239, 211, 0.13), transparent 30%),
    var(--navy);
}

.standalone-contact {
  min-height: 650px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
}

.contact-copy h2 {
  color: #fff;
}

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

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

.contact-details span {
  color: #91a2b4;
}

.contact-form {
  padding: 32px;
  color: var(--ink);
  border-radius: var(--radius-md);
  background: #fff;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid #cfd8df;
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #33bda2;
  box-shadow: 0 0 0 4px rgba(51, 189, 162, 0.12);
}

.consent-label {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 500 !important;
}

.consent-label input {
  width: auto;
  margin-top: 5px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #147c6c;
  font-weight: 800;
}

.newsletter-section {
  padding: 65px 0;
  color: #c9d5e0;
  background: #0b1c2c;
}

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

.newsletter-layout h2 {
  max-width: 700px;
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.newsletter-layout > div > span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  min-width: 260px;
  padding: 14px 16px;
  border: 0;
  border-radius: 999px 0 0 999px;
  outline: none;
}

.newsletter-form button {
  padding: 0 22px;
  color: var(--navy);
  border: 0;
  border-radius: 0 999px 999px 0;
  background: var(--mint);
  font-weight: 900;
  cursor: pointer;
}

.newsletter-layout .form-status {
  grid-column: 1 / -1;
  color: var(--mint);
}

.site-footer {
  padding: 80px 0 30px;
  color: #8fa0b0;
  background: #050d17;
}

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

.footer-brand p {
  max-width: 370px;
  margin-top: 25px;
}

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

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
}

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

.footer-bottom {
  margin-top: 65px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 75px;
}

.article-sidebar {
  position: sticky;
  top: 115px;
  display: grid;
  gap: 12px;
}

.article-sidebar strong {
  margin-bottom: 8px;
}

.article-sidebar a {
  color: var(--muted);
}

.article-sidebar a:hover {
  color: #147c6c;
}

.content-section {
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
}

.comparison-table > div > * {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-table > div > *:last-child {
  border-right: 0;
}

.comparison-head {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.comparison-head span {
  color: #fff;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.feature-list p {
  margin: 0;
}

.callout-box,
.cta-panel {
  padding: 50px;
  color: #cbd7e2;
  border-radius: var(--radius-lg);
  background: var(--navy);
}

.callout-box h2,
.callout-box strong,
.cta-panel h2 {
  color: #fff;
}

.resource-grid,
.value-grid,
.network-role-grid {
  grid-template-columns: repeat(4, 1fr);
}

.agenda-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
}

.agenda-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.agenda-list span {
  color: var(--mint-dark);
  font-weight: 900;
}

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

.process-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.process-list {
  display: grid;
}

.process-list article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  color: var(--mint-dark);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.output-card p {
  color: #aebdcc;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-panel h2 {
  margin-bottom: 0;
}

.section-light .cta-panel .eyebrow {
  color: var(--mint);
}

.back-link {
  display: inline-block;
  margin-bottom: 45px;
  color: #9dafc0;
  font-weight: 800;
}

.long-form {
  font-family: Georgia, "Times New Roman", serif;
  color: #293948;
  font-size: 1.11rem;
  line-height: 1.9;
}

.long-form h2 {
  margin-top: 55px;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 2rem;
}

.long-form li {
  margin-bottom: 10px;
}

.article-callout {
  margin-top: 50px;
  padding: 28px;
  border-left: 4px solid var(--mint-dark);
  background: #eff8f6;
}

.article-callout p {
  margin-bottom: 0;
}

.article-author {
  margin-top: 70px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-author div:last-child {
  display: grid;
}

.article-author p {
  margin: 3px 0 0;
}

.article-next {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.article-next a {
  color: #147c6c;
  font-weight: 900;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: calc(100vh - 82px);
    padding: 28px 20px 40px;
    display: grid;
    gap: 20px;
    overflow-y: auto;
    background: rgba(7, 17, 31, 0.99);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

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

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

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

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

  .resource-grid,
  .value-grid,
  .network-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chapter-map {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero {
    padding-top: 70px;
  }

  .hero-layout {
    gap: 45px;
  }

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

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

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

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

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

  .stats-grid,
  .service-grid,
  .dimension-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .output-grid,
  .insights-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .insight-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .shift-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

  .article-sidebar {
    position: static;
    padding: 20px;
    border-radius: 12px;
    background: var(--surface-muted);
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table > div {
    min-width: 700px;
  }

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

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

  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }

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

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

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

  h1 {
    font-size: 3.15rem;
  }

  .nav-shell {
    min-height: 74px;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .brand-copy {
    display: none;
  }

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

  .floating-card {
    padding: 12px;
  }

  .floating-card small {
    display: none;
  }

  .score-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row,
  .resource-grid,
  .value-grid,
  .network-role-grid,
  .chapter-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    display: grid;
    gap: 10px;
  }

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

  .footer-bottom,
  .article-next {
    flex-direction: column;
  }
}

/* =========================
   FIREBASE FORM STATES
========================= */

button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none !important;
}

.form-status[data-status="success"] {
  color: #168d78;
}

.form-status[data-status="error"] {
  color: #c83d4c;
}

.newsletter-section .form-status[data-status="success"] {
  color: #74efd3;
}

.newsletter-section .form-status[data-status="error"] {
  color: #ff9ca7;
}

/* =========================
   MEMBER AUTH MODAL
========================= */

body.modal-open {
  overflow: hidden;
}

.member-auth-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.member-auth-modal.open {
  display: flex;
}

.member-auth-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 9, 16, 0.78);
  backdrop-filter: blur(9px);
  cursor: default;
}

.member-auth-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 38px;
  color: var(--text);
  border: 1px solid rgba(116, 239, 211, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(116, 239, 211, 0.1),
      transparent 35%
    ),
    #ffffff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

.member-auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #536271;
  border: 1px solid #dce3ea;
  border-radius: 50%;
  background: #fff;
  font-size: 1.45rem;
  cursor: pointer;
}

.member-auth-heading {
  padding-right: 45px;
}

.member-auth-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.member-auth-heading p {
  color: var(--muted);
}

.member-auth-google {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--ink);
  border: 1px solid #cfd8df;
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}

.member-auth-google:hover {
  border-color: #9aabb8;
  background: #f8fafb;
}

.google-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background:
    conic-gradient(
      #4285f4 0 25%,
      #34a853 0 50%,
      #fbbc05 0 75%,
      #ea4335 0
    );
  font-size: 0.8rem;
  font-weight: 900;
}

.member-auth-divider {
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8694a1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-auth-divider::before,
.member-auth-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: #dde4e9;
}

.member-auth-email-form {
  display: grid;
  gap: 12px;
}

.member-auth-email-form label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.member-auth-email-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #cfd8df;
  border-radius: 12px;
  outline: none;
}

.member-auth-email-form input:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(36, 185, 154, 0.12);
}

.member-auth-email-form button,
.member-sign-out {
  min-height: 52px;
  padding: 0 20px;
  color: var(--navy);
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  font-weight: 900;
  cursor: pointer;
}

.member-auth-notice {
  margin: 18px 0 0;
  color: #798895;
  font-size: 0.8rem;
}

.member-auth-status {
  min-height: 24px;
  margin: 20px 0 0;
  font-size: 0.87rem;
  font-weight: 800;
}

.member-auth-status[data-status="success"] {
  color: #168d78;
}

.member-auth-status[data-status="error"] {
  color: #c83d4c;
}

.member-auth-profile {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid #dce5e9;
  border-radius: 18px;
  background: #f5f9f8;
}

.member-auth-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  border-radius: 16px;
  background: var(--mint);
  font-weight: 900;
}

.member-auth-profile-copy {
  min-width: 0;
  flex: 1;
  display: grid;
}

.member-auth-profile-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-auth-profile-copy span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-sign-out {
  margin-top: 20px;
  width: 100%;
  color: #fff;
  background: var(--navy);
}

.footer-member-link {
  color: var(--mint) !important;
  font-weight: 850;
}

@media (max-width: 560px) {
  .member-auth-dialog {
    padding: 30px 22px 24px;
    border-radius: 22px;
  }
}

.member-portal-button {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  border-radius: 999px;
  background: #74efd3;
  font-weight: 900;
}
