*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --green: #007190; /* kept */
  --green-bright: #b5decc; /* kept */
  --yellow: #f9ec00; /* kept */
  --navy: #2f8f4e; /* medium leaf green */
  --navy-deep: #14532a; /* deep forest green — darkest */
  --navy-bright: #9ec90a; /* chartreuse/lime — vivid accent */
  --bg: #a7d4e4; /* kept */
  --bg-1: #c5e5f0;
  --bg-2: #ddf1f8;
  --bg-3: #f3fbfe;
  --tx: #06173f; /* was #caced3 — now dark, primary text */
  --tx-mid: #2b3d63; /* was #9ba5b8 — secondary text */
  --tx-dim: #4d5c80; /* was #5a6478 — muted text */
  --tx-dimmer: #6a7794; /* was #3f4858 — most muted, still readable */
  --line: rgba(6, 26, 97, 0.15); /* was = --bg (invisible) */
  --line-strong: rgba(6, 26, 97, 0.3); /* was white (invisible on light) */
  --line-green: rgba(0, 113, 144, 0.35);
  --line-navy: rgba(45, 84, 224, 0.494);
  --green-glow: rgba(0, 113, 144, 0.1);
  --navy-glow: rgba(45, 85, 224, 0.1);
  --tri: linear-gradient(
    90deg,
    var(--yellow) 0%,
    var(--yellow) 33.333%,
    var(--green) 33.333%,
    var(--green) 66.666%,
    var(--navy-bright) 66.666%,
    var(--navy-bright) 100%
  );
  --f-sans: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #4b877e;
  will-change: opacity, transform;
}

/* TRICOLOUR STRIP — reusable utility */
.tri-stripe {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--tri);
  border-radius: 1px;
}
.tri-stripe.thin {
  height: 2px;
}
.tri-stripe.thick {
  height: 4px;
}

body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--f-sans);
  font-weight: 600;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.spine-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(
      90deg,
      transparent calc(50% - 580px),
      var(--line) calc(50% - 580px),
      var(--line) calc(50% - 579px),
      transparent calc(50% - 579px)
    ),
    linear-gradient(
      90deg,
      transparent calc(50% + 579px),
      var(--line) calc(50% + 579px),
      var(--line) calc(50% + 580px),
      transparent calc(50% + 580px)
    );
  opacity: 0.55;
}
@media (max-width: 1340px) {
  .spine-bg {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--f-sans);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h3 {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
h4 {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  color: var(--tx-mid);
  font-size: 1.1rem;
  line-height: 1.68;
}
p.lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--tx);
}

.green {
  color: var(--green);
}
.yellow {
  color: var(--yellow);
}
.tx {
  color: var(--tx);
}
.mid {
  color: var(--tx-mid);
}
.dim {
  color: var(--tx-dim);
}

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-dim);
}
.eyebrow .num {
  display: none;
}
.eyebrow .dot {
  display: none;
}
.eyebrow .dot {
  color: var(--tx-dimmer);
  margin: 0 0.7em;
}
/* Alternate yellow accent on even-numbered sections */
#what .eyebrow .num,
#impact .eyebrow .num,
#team .eyebrow .num,
#faq .eyebrow .num {
  color: var(--yellow);
}
#what .section-meta .meta-line,
#impact .section-meta .meta-line,
#team .section-meta .meta-line,
#faq .section-meta .meta-line {
  background: var(--tri);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.92rem 1.7rem;
  border-radius: 2px;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  font-weight: 400;
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--green);
  color: #06080f;
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: var(--navy-bright);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    border-color 0.3s;
}
#nav.scrolled {
  background: #0f4f45;
  border-bottom-color: var(--line-strong);
}
.nav-in {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  color: #fff;
  text-transform: uppercase;
}
.nav-logo .logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 2px;
  background: #b5decc;
  color: #06080f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}

/* =============== DROPDOWN =============== */

/* --- shared base (needed for all three) --- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff; /* matches your white nav links */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown:hover > button::after,
.dropdown:focus-within > button::after {
  transform: rotate(180deg);
}

.dropdown .content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  /* animate with opacity/visibility — NOT display:none */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 200;
}
.dropdown:hover .content,
.dropdown:focus-within .content {
  /* :focus-within = keyboard friendly */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown .content a {
  display: block;
  font-size: 0.85rem;
  color: #06173f;
  text-decoration: none;
}

.dropdown .content {
  background: #fff;
  border: 1px solid rgba(6, 23, 63, 0.1);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(6, 30, 28, 0.15);
}
.dropdown .content a {
  padding: 10px 14px;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
}
.dropdown .content a:hover {
  background: rgba(0, 113, 144, 0.09);
  color: #007190;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s;
}

section {
  position: relative;
  z-index: 2;
}

.section-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: start;
}
.section-meta {
  position: sticky;
  top: 100px;
}
.section-meta .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}
.section-meta .meta-line {
  width: 60px;
  height: 2px;
  margin-top: 1rem;
  background: var(--tri);
  border-radius: 1px;
}
.section-title {
  max-width: 780px;
}
.section-title h2 {
  margin-bottom: 1.2rem;
  color: #fff;
}
.section-title p.lead {
  max-width: 640px;
}
@media (max-width: 880px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .section-meta {
    position: static;
  }
}

/* =============== HERO =============== */
.hero {
  min-height: auto;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(6, 26, 97, 0.42) 0%,
    rgba(6, 26, 97, 0.12) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(119, 232, 146, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border: 1px solid var(--line-green);
  border-radius: 100px;
  background: rgba(119, 232, 146, 0.04);
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(119, 232, 146, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(119, 232, 146, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(119, 232, 146, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(119, 232, 146, 0);
  }
}

/* Hero tagline: three lines, all same size, decisive */
.hero-title {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  color: #fff;
  animation: fadeUp 0.8s 0.2s both;
  text-wrap: balance;
}
.hero-title .l1 {
  position: relative;
  left: 1rem;
  display: inline-block;
}
.hero-title .l2 {
  display: inline-block;
}
.hero-title .l3 {
  position: relative;
  left: 15.5rem;
  display: block;
  color: var(--yellow);
  margin-top: 0.15em;
}
.hero-title .nb {
  white-space: nowrap;
}

.hero-sub {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--tx-mid);
  max-width: 10000px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.35s both;
  position: relative;
  left: 2rem;
}
.hero-sub strong {
  color: var(--tx);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.8s 0.65s both;
  max-width: 520px;
}
.hero-stat .stat-v {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stat .stat-v .unit {
  color: var(--green);
  font-weight: 700;
}
.hero-stat:nth-child(2) .stat-v .unit {
  color: var(--yellow);
}
.hero-stat .stat-l {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-dim);
  line-height: 1.4;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== DASHBOARD MOCKUP (HERO RIGHT) =============== */
.dash-frame {
  position: relative;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(119, 232, 146, 0.04) inset,
    0 60px 100px -40px rgba(6, 26, 97, 0.4);
  animation: fadeUp 1s 0.3s both;
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}
.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dash-dot:nth-child(1) {
  background: #ff5f57;
}
.dash-dot:nth-child(2) {
  background: #febc2e;
}
.dash-dot:nth-child(3) {
  background: #28c840;
}
.dash-tab {
  margin-left: auto;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  color: var(--tx-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dash-body {
  padding: 1.4rem 1.4rem 1.5rem;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.dash-section-label {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  color: var(--tx-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dash-live .live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Heatmap grid */
.heatmap {
  display: grid;
  grid-template-columns: 90px repeat(12, 1fr);
  gap: 3px;
  margin-bottom: 1.5rem;
  position: relative;
}
/* Scanning bar — sweeps across heatmap */
.heatmap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 90px;
  width: 30px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(119, 232, 146, 0.18) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: hm-scan 5.5s linear infinite;
  z-index: 3;
  mix-blend-mode: screen;
}
@keyframes hm-scan {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100% + 30px));
    opacity: 0;
  }
}
.hm-label {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  color: var(--tx-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
  padding-right: 0.5rem;
  text-align: right;
  line-height: 1.2;
}
.hm-cell {
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s,
    filter 0.2s;
  animation: hm-flicker 6s ease-in-out infinite;
}
/* Stagger cells so they shimmer at different times */
.hm-cell:nth-child(13n + 2) {
  animation-delay: 0s;
}
.hm-cell:nth-child(13n + 3) {
  animation-delay: 0.4s;
}
.hm-cell:nth-child(13n + 4) {
  animation-delay: 0.9s;
}
.hm-cell:nth-child(13n + 5) {
  animation-delay: 1.4s;
}
.hm-cell:nth-child(13n + 6) {
  animation-delay: 1.9s;
}
.hm-cell:nth-child(13n + 7) {
  animation-delay: 2.4s;
}
.hm-cell:nth-child(13n + 8) {
  animation-delay: 2.9s;
}
.hm-cell:nth-child(13n + 9) {
  animation-delay: 3.4s;
}
.hm-cell:nth-child(13n + 10) {
  animation-delay: 3.9s;
}
.hm-cell:nth-child(13n + 11) {
  animation-delay: 4.4s;
}
.hm-cell:nth-child(13n + 12) {
  animation-delay: 4.9s;
}
.hm-cell:nth-child(13n + 13) {
  animation-delay: 5.4s;
}
@keyframes hm-flicker {
  0%,
  90%,
  100% {
    filter: brightness(1);
  }
  93% {
    filter: brightness(1.45) saturate(1.2);
  }
  95% {
    filter: brightness(0.92);
  }
  97% {
    filter: brightness(1.25);
  }
}
.hm-cell:hover {
  transform: scale(1.15);
  filter: brightness(1.4);
  z-index: 5;
  position: relative;
}
.hm-cell.l0 {
  background: rgba(119, 232, 146, 0.04);
}
.hm-cell.l1 {
  background: rgba(119, 232, 146, 0.15);
}
.hm-cell.l2 {
  background: rgba(119, 232, 146, 0.35);
}
.hm-cell.l3 {
  background: rgba(252, 207, 20, 0.5);
}
.hm-cell.l4 {
  background: rgba(252, 207, 20, 0.85);
}
.hm-cell.l5 {
  background: rgba(255, 95, 87, 0.7);
}
.hm-cell.l6 {
  background: rgba(255, 95, 87, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 95, 87, 0.3);
}
/* Hottest cells get a steady pulse to draw the eye */
.hm-cell.l5,
.hm-cell.l6 {
  animation: hm-hot 2.4s ease-in-out infinite;
}
.hm-cell.l6 {
  animation-delay: 0.6s;
}
@keyframes hm-hot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 95, 87, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 95, 87, 0);
  }
}

.hm-x-axis {
  display: grid;
  grid-template-columns: 90px repeat(12, 1fr);
  gap: 3px;
  margin-top: -1rem;
  margin-bottom: 1.3rem;
}
.hm-tick {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  color: var(--tx-dimmer);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Bottom row: PCF card + Decision card */
.dash-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.1rem;
}
.dash-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 0.95rem;
}
.dash-card-label {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-dim);
  margin-bottom: 0.55rem;
}
.dash-card-v {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.dash-card-v .v-unit {
  color: var(--tx-dim);
  font-size: 0.65em;
  font-weight: 500;
  margin-left: 0.2em;
}
.dash-card-meta {
  font-size: 0.65rem;
  color: var(--tx-mid);
  line-height: 1.4;
}
.dash-card-meta .delta {
  color: var(--green);
  font-weight: 600;
  font-family: var(--f-sans);
}
.dash-card-meta .delta.warn {
  color: var(--yellow);
}

.confidence-bar {
  display: flex;
  gap: 2px;
  margin-top: 0.5rem;
  height: 5px;
}
.confidence-seg {
  flex: 1;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.confidence-seg.primary {
  background: var(--green);
}
.confidence-seg.estimated {
  background: rgba(252, 207, 20, 0.6);
}

@media (max-width: 540px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .heatmap {
    grid-template-columns: 70px repeat(10, 1fr);
  }
  .heatmap .hm-cell:nth-child(13n),
  .heatmap .hm-cell:nth-child(13n + 1) {
    display: none;
  }
  .hm-x-axis {
    display: none;
  }
}

/* =============== TRUST STRIP =============== */
.trust,
.trust-1 {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  position: relative;
}
.trust-1 {
  top: 82px;
} /* subpage version sits below the fixed nav */

.trust::before,
.trust-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 46%;
  transform: translateX(-50%);
  width: 240px;
  height: 3px;
  background: var(--tri);
  border-radius: 1px;
}

.trust-in {
  display: flex;
  justify-content: center; /* margins position the sides, not space-between */
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.trust-side--right {
  align-items: flex-end;
  text-align: center;
  margin-left: auto; /* sends it to the right edge */
  margin-right: 1rem; /* then pulls it inward — tune this number */
}
.trust-side--right .trust-items {
  justify-content: flex-end;
  margin-right: -5rem;
}

.trust-label {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--tx-mid);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  transition: color 0.2s;
}
.trust-item:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.55;
}
.trust-item:hover {
  color: var(--green);
}

/* stack the two sides on narrow screens instead of colliding */
@media (max-width: 760px) {
  .trust-in {
    flex-direction: column;
    gap: 2rem;
  }
  .trust-side {
    align-items: center;
    text-align: center;
  }
  .trust-side--right {
    align-items: center;
    text-align: center;
    margin-left: 0; /* reset the desktop push */
    margin-right: 0;
  }
  .trust-side--right .trust-items {
    justify-content: center;
  }
}
/* =============== WORLD =============== */
.world {
  padding: 7rem 0 5.5rem;
}
.pullquote {
  margin-top: 3rem;
  padding: 2.4rem 2.6rem;
  border-left: 3px solid var(--green);
  background: linear-gradient(
    90deg,
    var(--green-glow) 0%,
    rgba(252, 207, 20, 0.04) 60%,
    transparent 100%
  );
  border-radius: 0 4px 4px 0;
  position: relative;
}
.pullquote::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 40%;
  background: var(--yellow);
}
.pullquote-text {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
}
.pullquote-text em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}
.pullquote-attr {
  margin-top: 1.2rem;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* =============== WHAT IS — pillars =============== */
.what-is {
  padding: 6rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: none;
  border-left: 1px solid var(--line);
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tri);
  z-index: 2;
}
.pillar {
  padding: 2.2rem 1.8rem 2.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
  position: relative;
}
.pillar:hover {
  background: rgba(119, 232, 146, 0.04);
}
.pillar:nth-child(2):hover {
  background: rgba(252, 207, 20, 0.04);
}
.pillar:nth-child(4):hover {
  background: rgba(252, 207, 20, 0.04);
}
.pillar-num {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.pillar:nth-child(2) .pillar-num {
  color: var(--yellow);
}
.pillar:nth-child(4) .pillar-num {
  color: var(--yellow);
}
.pillar h3 {
  margin-bottom: 0.7rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}
.pillar p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--tx-mid);
}
@media (max-width: 900px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* =============== TWO AUDIENCES =============== */
.audiences {
  padding: 7rem 0;
}
/* Value-chain video — section 3 */
.chain-video {
  margin-top: 3.5rem;
  position: relative;
}
.chain-video-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.chain-video-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.chain-video-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.3rem 0 0;
}
.chain-video-note {
  font-size: 0.9rem;
  color: var(--tx-mid);
  max-width: 460px;
  line-height: 1.6;
}
.chain-video-frame {
  border: 1px solid var(--line-strong);
  background: var(--bg-1);
  overflow: hidden;
}
.chain-video-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tri);
  z-index: 2;
}

.arch-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--tx-mid);
  font-style: italic;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.arch-note strong {
  color: var(--tx);
  font-weight: 600;
  font-style: normal;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3.2rem;
}
.audience-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.4rem 2.2rem 2.2rem;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.audience-card:hover {
  border-color: var(--line-strong);
}
.audience-card.enterprise {
  background: linear-gradient(
    180deg,
    var(--bg-2) 0%,
    rgba(6, 26, 97, 0.18) 100%
  );
  border-color: rgba(6, 26, 97, 0.5);
}
.audience-card.enterprise:hover {
  border-color: rgba(119, 232, 146, 0.4);
}
.audience-tag {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.audience-tag .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.audience-card.enterprise .audience-tag {
  color: var(--yellow);
}
.audience-card.enterprise .audience-tag .tag-dot {
  background: var(--yellow);
}
.audience-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.audience-card .audience-for {
  font-style: italic;
  color: var(--tx-mid);
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.audience-card p.audience-context {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--tx-mid);
  margin-bottom: 1.6rem;
}
.audience-card .audience-context strong {
  color: var(--tx);
  font-weight: 600;
}
.audience-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.audience-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tx);
}
.audience-points li:last-child {
  padding-bottom: 0;
}
.audience-points .check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.audience-points .check svg {
  width: 13px;
  height: 13px;
}
.audience-card.enterprise .check svg {
  color: var(--yellow);
}
.audience-card.snapshot .check svg {
  color: var(--green);
}
.snapshot-availability {
  display: inline-block;
  margin-top: 1.3rem;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  color: var(--tx-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
}
@media (max-width: 840px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* =============== IMPACT =============== */
.impact {
  padding: 7rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-stages {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem 1.3rem;
  max-width: 760px;
}
.stage-num {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  padding-top: 0.1rem;
}
.impact-stages .stage-num:nth-of-type(2) {
  color: var(--yellow);
}
.impact-stages .stage-num:nth-of-type(3) {
  color: var(--green);
}
.stage-text {
  font-size: 0.98rem;
  color: var(--tx);
  line-height: 1.55;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.stage-text:last-of-type {
  border-bottom: none;
}

.scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--line);
}
.scenario {
  padding: 2.2rem 2rem;
  position: relative;
}
.scenario:first-child {
  border-right: 1px solid var(--line);
}
.scenario-tag {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.scenario h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.scenario p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--tx-mid);
}
.scenario p strong {
  color: var(--tx);
  font-weight: 600;
}
@media (max-width: 780px) {
  .scenarios {
    grid-template-columns: 1fr;
  }
  .scenario:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* =============== WHY DIFFERENT — with mini supplier visual =============== */
.why-diff {
  padding: 7rem 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.diff-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.2rem 1.9rem;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.diff-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.diff-card:hover::before {
  opacity: 0.7;
}
.diff-mark {
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
}
.diff-mark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.diff-card:nth-child(2) .diff-mark {
  color: var(--yellow);
}
.diff-card:nth-child(2) .diff-mark::after {
  background: linear-gradient(
    90deg,
    var(--line) 0%,
    rgba(252, 207, 20, 0.2) 100%
  );
}
.diff-card:nth-child(1) .diff-mark::after,
.diff-card:nth-child(3) .diff-mark::after {
  background: linear-gradient(
    90deg,
    var(--line) 0%,
    rgba(119, 232, 146, 0.2) 100%
  );
}
.diff-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.diff-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--tx-mid);
}

/* Lineage visual — embedded in the "Built on primary truth" card */
.lineage-vis {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.lineage-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  font-family: var(--f-sans);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--tx-mid);
}
.lineage-step:last-child {
  margin-bottom: 0;
}
.lineage-step .arrow {
  color: var(--green);
  width: 10px;
}
.lineage-step .pill {
  font-size: 0.62rem;
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
  background: rgba(119, 232, 146, 0.1);
  color: var(--green);
  border: 1px solid var(--line-green);
  margin-left: auto;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lineage-step .pill.est {
  background: rgba(252, 207, 20, 0.08);
  color: var(--yellow);
  border-color: rgba(252, 207, 20, 0.22);
}

/* Sector-specific micro-visual */
.sector-vis {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.sector-cell {
  aspect-ratio: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--tx-dim);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
  border: 1px solid var(--line);
  line-height: 1.1;
  text-align: center;
  padding: 2px;
  overflow: hidden;
}
.sector-cell.active {
  background: rgba(119, 232, 146, 0.12);
  color: var(--green);
  border-color: var(--line-green);
}

/* Derive vs predict micro-visual */
.derive-vis {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.6rem;
  font-family: var(--f-sans);
  font-size: 0.62rem;
}
.derive-vis .col {
  flex: 1;
  padding: 0.7rem 0.6rem;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.derive-vis .col.predict {
  opacity: 0.55;
}
.derive-vis .col.derive {
  border-color: var(--line-green);
  background: rgba(119, 232, 146, 0.05);
}
.derive-vis .col-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  font-size: 0.55rem;
  color: var(--tx-dim);
}
.derive-vis .col.derive .col-label {
  color: var(--green);
}
.derive-vis .col-text {
  color: var(--tx);
  font-size: 0.7rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
  font-family: var(--f-sans);
  font-weight: 500;
}
.derive-vis .col strike {
  text-decoration: line-through;
  color: var(--tx-dim);
}

.diff-footer {
  margin-top: 2.8rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--tx-mid);
  font-style: italic;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 840px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

/* =============== TEAM =============== */
.team {
  padding: 6.5rem 0;
  background: #c5e5f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.member {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.member:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.member-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.04) saturate(0.92);
}
.member:nth-child(1) .member-photo img {
  transform: scale(1.35);
  object-position: center 28%;
}
.member:nth-child(2) .member-photo img {
  object-position: center 15%;
}
.member:nth-child(3) .member-photo img {
  object-position: center 20%;
  filter: contrast(1.02) saturate(0.95) brightness(1.15);
}
.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(6, 8, 15, 0.45) 100%
  );
  pointer-events: none;
}
.member-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--bg-3) 0%,
    rgba(6, 26, 97, 0.4) 100%
  );
  position: relative;
}
.member-photo.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(119, 232, 146, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 232, 146, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.placeholder-initials {
  font-family: var(--f-sans);
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}
.placeholder-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: var(--f-sans);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-dim);
  padding: 0.25rem 0.55rem;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.4);
}
.member-body {
  padding: 1.5rem 1.6rem 1.7rem;
}
.member-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.member-role {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #017190;
  margin-bottom: 1rem;
}
.member:nth-child(2) .member-role {
  color: #017190;
}
.member-bio {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--tx-mid);
}
.member-bio strong {
  color: var(--tx);
  font-weight: 600;
}
@media (max-width: 840px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============== ADVISORY BOARD =============== */
.advisory {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.advisory::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--yellow);
}
.advisory::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 80px;
  width: 120px;
  height: 1px;
  background: var(--green);
}
.advisory-header {
  margin-bottom: 2.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.advisory-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.65rem;
}
.advisory-title {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.advisor {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.7rem;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.advisor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--green);
}
.advisor:nth-child(2)::before,
.advisor:nth-child(4)::before {
  background: var(--yellow);
}
.advisor:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.advisor-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.advisor:nth-child(2) .advisor-icon,
.advisor:nth-child(4) .advisor-icon {
  color: var(--yellow);
}
.advisor-icon svg {
  width: 100%;
  height: 100%;
}
.advisor-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.advisor-desc {
  font-size: 0.82rem;
  color: var(--tx-mid);
  line-height: 1.55;
  margin-top: auto;
}
@media (max-width: 980px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

/* Advisory Board sub-section within People */
.advisory {
  margin-top: 5rem;
  padding-top: 3.5rem;
  position: relative;
}
.advisory::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 3px;
  background: var(--tri);
  border-radius: 1px;
}
.advisory-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.advisory-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.advisory-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0;
}
.advisory-note {
  font-size: 0.92rem;
  color: var(--tx-mid);
  max-width: 520px;
  line-height: 1.6;
}
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) {
  .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

.advisor {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.6rem;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 180px;
}
.advisor:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.advisor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--green);
}
.advisor:nth-child(2)::before {
  background: var(--yellow);
}
.advisor:nth-child(3)::before {
  background: var(--navy-bright);
}
.advisor:nth-child(4)::before {
  background: var(--green);
}

.advisor-icon {
  width: 30px;
  height: 30px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.advisor:nth-child(2) .advisor-icon {
  color: var(--yellow);
}
.advisor:nth-child(3) .advisor-icon {
  color: var(--navy-bright);
}
.advisor:nth-child(4) .advisor-icon {
  color: var(--green);
}
.advisor-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advisor-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.advisor-desc {
  font-size: 0.78rem;
  color: var(--tx-mid);
  line-height: 1.5;
  margin-top: auto;
}

/* =============== CTA =============== */
.final-cta {
  padding: 6.5rem 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(6, 26, 97, 0.32) 0%,
      transparent 60%
    ),
    var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--green), transparent);
}
.cta-mark {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.4rem;
}
.final-cta h2 {
  max-width: 18ch;
  margin: 0 auto 1.4rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}
.final-cta h2 em {
  color: var(--green);
  font-style: normal;
}
.final-cta p {
  font-size: 1rem;
  color: var(--tx-mid);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============== FOOTER =============== */
footer {
  padding: 4rem 0 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--tx-mid);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-dim);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: var(--tx-mid);
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--tx-dim);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .legal {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .legal a {
  color: var(--tx-dim);
  transition: color 0.2s;
}
.footer-bottom .legal a:hover {
  color: var(--tx-mid);
}
@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}

/* Impact CTA */
.impact {
  background: #a8d4e4;
}

.impact-cta {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.4rem;
  background: linear-gradient(
    90deg,
    rgba(119, 232, 146, 0.06) 0%,
    rgba(252, 207, 20, 0.04) 100%
  );
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
  flex-wrap: wrap;
}
.impact-cta-text {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0;
  max-width: 520px;
}
@media (max-width: 640px) {
  .impact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============== FAQ =============== */
.faq {
  padding: 7rem 0;
  border-bottom: 1px solid var(--line);
}
.faq-list {
  margin-top: 3rem;
  position: relative;
  padding-top: 3px;
}
.faq-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tri);
  border-radius: 1px;
}

/* Section divider rows */
.faq-section {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 2.2rem 0 0.85rem;
  border-bottom: 1px solid var(--line);
}
.faq-list .faq-section:first-of-type {
  padding-top: 1.6rem;
}
.faq-section-num {
  font-family: var(--f-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--green);
}
.faq-section-name {
  font-family: var(--f-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--tx);
  text-transform: uppercase;
}
.faq-section:nth-of-type(2) .faq-section-num,
.faq-section:nth-of-type(4) .faq-section-num {
  color: var(--yellow);
}

.faq-bullets {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0;
}
.faq-bullets li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.3rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--tx-mid);
}
.faq-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--green);
  font-weight: 700;
}
.faq-bullets li:nth-child(even)::before {
  color: var(--yellow);
}
.faq-bullets li strong {
  color: var(--tx);
  font-weight: 600;
}

/* Section sub-labels within the FAQ list */
.faq-section-label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 2.2rem 0 1rem;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 0.5rem;
}
.faq-section-label:first-child {
  padding-top: 1.6rem;
}
.faq-sec-num {
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green);
}
.faq-section-label.alt .faq-sec-num {
  color: var(--yellow);
}
.faq-sec-name {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.faq-item:hover {
  background: rgba(119, 232, 146, 0.025);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.35;
  user-select: none;
}
.faq-q .toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--green);
  transition:
    transform 0.3s,
    border-color 0.2s,
    background 0.2s;
  font-size: 0.8rem;
  line-height: 1;
}
.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
  background: var(--green);
  color: #06080f;
  border-color: var(--green);
}
.faq-item:nth-child(even) .faq-q .toggle {
  color: var(--yellow);
}
.faq-item:nth-child(even).open .faq-q .toggle {
  background: var(--yellow);
  color: #06080f;
  border-color: var(--yellow);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 1400px;
}
.faq-a-inner {
  padding: 0 0 1.8rem 0;
  font-size: 0.94rem;
  color: var(--tx-mid);
  line-height: 1.7;
  max-width: 880px;
}
.faq-a-inner strong {
  color: var(--tx);
  font-weight: 600;
}
.faq-a-inner .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1rem;
}
.faq-a-inner .split-card {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--green);
  background: rgba(119, 232, 146, 0.04);
  border-radius: 0 4px 4px 0;
}
.faq-a-inner .split-card.enterprise {
  border-left-color: var(--yellow);
  background: rgba(252, 207, 20, 0.04);
}
.faq-a-inner .split-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.faq-a-inner .split-card.enterprise .split-tag {
  color: var(--yellow);
}
@media (max-width: 680px) {
  .faq-a-inner .split {
    grid-template-columns: 1fr;
  }
}

/* =============== CONTACT FORM =============== */
.contact {
  padding: 7rem 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.contact-info p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--tx-mid);
  margin-bottom: 1.8rem;
}
.contact-meta {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.contact-meta-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
}
.contact-meta-row:last-child {
  margin-bottom: 0;
}
.contact-meta-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  width: 110px;
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.contact-meta-row:nth-child(2) .contact-meta-label {
  color: var(--yellow);
}
.contact-meta-value {
  color: var(--tx);
  line-height: 1.5;
}
.contact-meta-value a {
  color: #fff;
  border-bottom: 1px solid var(--line-green);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.contact-meta-value a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.4rem;
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tri);
}
.form-row {
  margin-bottom: 1.4rem;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-mid);
  margin-bottom: 0.55rem;
}
.form-label .req {
  color: var(--green);
  margin-left: 0.2em;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--tx);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--green);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(119, 232, 146, 0.08);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
  font-family: var(--f-sans);
}
.form-submit-row {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-help {
  font-size: 0.74rem;
  color: var(--tx-dim);
  line-height: 1.4;
  max-width: 240px;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--green);
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.error {
  color: var(--yellow);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 130px 0 70px;
  }
  .wrap {
    padding: 0 1.5rem;
  }
  nav {
    padding: 0 1.5rem;
  }
}
@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    justify-content: center;
  }
}
/* Custom cursor — wind streak. Desktop only. */
@media (hover: hover) and (pointer: fine) {
    body {
    cursor: auto;
  }
}
#wind-cursor {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99998;
}
#wind-path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  transition:
    stroke-width 0.2s ease,
    opacity 0.2s ease;
  filter: drop-shadow(0 0 6px rgba(119, 232, 146, 0.45));
}
#wind-path.is-hot {
  stroke-width: 4;
  opacity: 0.95;
}
#wind-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(119, 232, 146, 0.6);
}
@media (hover: none), (pointer: coarse) {
  #wind-cursor,
  #wind-dot {
    display: none;
  }
}

.member-li-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.li-arrow {
  font-size: 0.75em;
  opacity: 0.45;
  transition: opacity 0.2s;
  margin-left: 0.25rem;
}
.member-li-link:hover .member-name {
  color: var(--green);
}
.member-li-link:hover .li-arrow {
  opacity: 1;
}

/* FAQ Accordion */

/* Back-to-top button */
#btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(6, 26, 97, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s,
    border-color 0.2s,
    background 0.2s;
}
#btt.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#btt:hover {
  background: var(--green);
  border-color: var(--green);
}
#btt svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Video thumbnail card */
.chain-video-thumb {
  display: block;
  text-decoration: none;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  transition: border-color 0.25s;
}
.chain-video-thumb:hover {
  border-color: var(--green);
}
.chain-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(119, 232, 146, 0.06) 0%,
    transparent 70%
  );
}
.cvt-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.cvt-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.9;
}
.cvt-play {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cvt-play svg {
  width: 72px;
  height: 72px;
}
.chain-video-thumb:hover .cvt-play {
  transform: scale(1.08);
}
.cvt-label {
  text-align: center;
}
.cvt-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.cvt-sub {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.8;
}

.faq-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--line);
}
.faq-section:hover .faq-section-name {
  color: #fff;
}
.faq-section-name {
  transition: color 0.2s;
}
.faq-acc-arrow {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-section.open .faq-acc-arrow {
  transform: rotate(45deg);
}
.faq-item {
  display: none;
}
.faq-item.visible {
  display: block;
}
.member-li-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.li-arrow {
  font-size: 0.75em;
  opacity: 0.45;
  transition: opacity 0.2s;
  margin-left: 0.25rem;
}
.member-li-link:hover .member-name {
  color: var(--green);
}
.member-li-link:hover .li-arrow {
  opacity: 1;
}
