:root {
  --ink: #07161c;
  --ink-soft: #0d252b;
  --ink-muted: #769198;
  --paper: #f3f4ee;
  --paper-deep: #e5e9df;
  --white: #fffef8;
  --acid: #d8f36a;
  --aqua: #86e6dc;
  --coral: #ff8068;
  --teal: #2e7773;
  --line: rgba(7, 22, 28, .14);
  --dark-line: rgba(255, 254, 248, .17);
  --max-width: 1240px;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font: inherit; }

p,
h1,
h2,
h3,
figure { margin: 0; }

h1,
h2,
h3 { font-weight: 650; letter-spacing: -.055em; line-height: .96; }

h1,
h2 { text-wrap: balance; }

em {
  color: var(--acid);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.06em;
}

::selection { color: var(--ink); background: var(--acid); }

.wrap {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 22, 28, .88);
  border-color: rgba(255, 254, 248, .14);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.brand:hover { color: var(--acid); }

.brand-lockup { display: block; width: 150px; height: auto; flex: none; }

.brand-dot { color: var(--acid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 254, 248, .73);
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-links > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta).is-active { color: var(--white); }

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta).is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--acid);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.nav-cta { padding: 13px 18px; border-radius: 999px; }

.nav-cta span,
.btn span { font-size: 1rem; line-height: 0; transition: transform .25s var(--ease); }

.nav-cta:hover,
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 32px rgba(216, 243, 106, .18);
  transform: translateY(-2px);
}

.nav-cta:hover span,
.btn:hover span { transform: translate(3px, -3px); }

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 254, 248, .25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-open .menu-toggle > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-open .menu-toggle > span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: min(920px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .48;
  background-image: linear-gradient(rgba(255, 254, 248, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 254, 248, .055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .85), transparent 85%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 76% 39%, rgba(134, 230, 220, .17), transparent 29%), radial-gradient(ellipse at 2% 100%, rgba(216, 243, 106, .12), transparent 32%);
  content: "";
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(216, 243, 106, .18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 22px 8px rgba(216, 243, 106, .16);
  content: "";
}

.hero-orb--one { top: 16%; right: -13%; width: 680px; height: 680px; }
.hero-orb--one::after { margin: -3px 0 0 -3px; }

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
  padding-top: 128px;
  padding-bottom: 80px;
}

.hero-copy { max-width: 680px; }

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  color: var(--aqua);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker-line { width: 38px; height: 1px; background: var(--aqua); }

.section-number {
  margin-bottom: 23px;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 29px;
  color: var(--white);
  font-size: clamp(4.2rem, 7.8vw, 7.6rem);
  line-height: .86;
}

.hero-lede {
  max-width: 58ch;
  color: rgba(255, 254, 248, .8);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.btn { min-height: 50px; padding: 15px 22px; border-radius: 999px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.text-link span { color: var(--acid); font-size: 1.05rem; transition: transform .25s var(--ease); }
.text-link:hover { color: var(--acid); }
.text-link:hover span { transform: translateY(4px); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 254, 248, .18);
  color: rgba(255, 254, 248, .53);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); }

/* Signal board */
.signal-board {
  position: relative;
  width: 100%;
  max-width: 610px;
  justify-self: end;
  padding: 17px;
  border: 1px solid rgba(255, 254, 248, .2);
  border-radius: 21px;
  background: rgba(255, 254, 248, .055);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 254, 248, .1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.signal-board:hover { border-color: rgba(216, 243, 106, .48); box-shadow: 0 44px 100px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 254, 248, .1); }

.signal-board__top,
.signal-board__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.signal-board__top { padding: 2px 4px 17px; }

.signal-label,
.signal-status,
.plot-axis,
.plot-callout,
.signal-board__bottom span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-label { color: rgba(255, 254, 248, .58); }
.signal-status { display: inline-flex; align-items: center; gap: 7px; color: var(--acid); }
.signal-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(216, 243, 106, .12); }

.signal-board__plot {
  position: relative;
  aspect-ratio: 1.36;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, .12);
  border-radius: 13px;
  background-color: rgba(7, 22, 28, .56);
  background-image: linear-gradient(rgba(255, 254, 248, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 254, 248, .075) 1px, transparent 1px);
  background-size: 12.5% 20%;
}

.signal-board__plot::before,
.signal-board__plot::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.signal-board__plot::before { top: 0; bottom: 0; left: 78%; width: 1px; background: linear-gradient(transparent, var(--acid), transparent); opacity: .65; }
.signal-board__plot::after { top: 12%; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(134, 230, 220, .5), transparent); }

.signal-board__plot svg { position: absolute; inset: 12% 4% 10% 6%; width: 90%; height: 80%; overflow: visible; }

.signal-fill { fill: url(#signalFill); }

.signal-path { fill: none; stroke: url(#signalGradient); stroke-linecap: round; stroke-linejoin: round; stroke-width: 4; stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw-signal 2.2s .5s var(--ease) forwards; }
.signal-path--ghost { stroke: rgba(255, 254, 248, .12); stroke-width: 1; stroke-dasharray: none; }

.signal-points circle { fill: var(--ink); stroke: var(--acid); stroke-width: 2; }
.signal-points circle:nth-child(2) { stroke: var(--aqua); }
.signal-points circle:nth-child(3) { stroke: var(--aqua); }
.signal-points circle:nth-child(4) { fill: var(--acid); stroke: var(--white); stroke-width: 2; }

.plot-axis { position: absolute; z-index: 2; color: rgba(255, 254, 248, .4); }
.plot-axis--y { top: 17px; bottom: 23px; left: 10px; display: flex; flex-direction: column; justify-content: space-between; writing-mode: vertical-rl; transform: rotate(180deg); }
.plot-axis--x { right: 18px; bottom: 11px; left: 47px; display: flex; justify-content: space-between; }

.plot-callout { position: absolute; z-index: 3; display: flex; align-items: center; gap: 6px; padding: 5px 7px; border: 1px solid rgba(255, 254, 248, .2); border-radius: 4px; background: rgba(7, 22, 28, .72); color: rgba(255, 254, 248, .7); font-size: .6rem; }
.plot-callout span { color: var(--acid); }
.plot-callout--one { top: 36%; left: 17%; }
.plot-callout--two { top: 48%; left: 48%; }
.plot-callout--three { top: 17%; right: 6%; color: var(--white); }
.plot-callout--three span { color: var(--acid); }

.signal-board__bottom { padding: 18px 4px 4px; }
.signal-board__bottom > div { display: flex; flex-direction: column; gap: 3px; }
.signal-board__bottom strong { color: var(--white); font-size: 1.22rem; letter-spacing: -.05em; line-height: 1; }
.signal-board__bottom span { color: rgba(255, 254, 248, .58); font-size: .62rem; letter-spacing: .07em; }

.signal-board figcaption { margin: 14px 4px 0; color: rgba(255, 254, 248, .58); font-size: .76rem; }

/* Neutral disruptive ecosystem banner */
.signal-strip {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  color: var(--ink);
  border-top: 1px solid rgba(7, 22, 28, .16);
  border-bottom: 1px solid rgba(7, 22, 28, .16);
  isolation: isolate;
}

.signal-strip::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(7, 22, 28, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 22, 28, .04) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .8), transparent 76%);
}

.ecosystem-wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(54px, 7vw, 93px);
  padding-bottom: clamp(38px, 5vw, 66px);
}

.ecosystem-topline,
.ecosystem-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.ecosystem-index,
.ecosystem-footer {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ecosystem-index { color: rgba(7, 22, 28, .64); }
.ecosystem-cross { color: var(--teal); font-size: 2rem; line-height: .7; transform: rotate(15deg); }

.ecosystem-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .5fr);
  align-items: end;
  gap: 70px;
  margin: clamp(35px, 5vw, 62px) 0 49px;
}

.ecosystem-heading h2 {
  max-width: 9ch;
  color: var(--ink);
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  line-height: .82;
}

.ecosystem-heading h2 em {
  color: var(--teal);
  text-shadow: 3px 3px 0 rgba(134, 230, 220, .18);
}

.ecosystem-heading p {
  max-width: 28ch;
  padding-bottom: 7px;
  color: rgba(7, 22, 28, .68);
  font-size: 1.03rem;
  line-height: 1.6;
}

.ecosystem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 28, .23);
  background: rgba(7, 22, 28, .23);
}

.ecosystem-item {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  padding: 19px 20px 17px;
  background: rgba(255, 254, 248, .42);
  color: var(--ink);
  transition: background .3s ease, border-color .3s ease;
}

.ecosystem-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ink);
  content: "";
  transition: background .3s ease;
}

.ecosystem-item:nth-child(2)::before { background: var(--ink-soft); }
.ecosystem-item:nth-child(3)::before { background: var(--teal); }
.ecosystem-item:nth-child(4)::before { background: var(--acid); }

.ecosystem-item:hover { background: rgba(255, 254, 248, .72); }
.ecosystem-item:hover::before { background: var(--teal); }

.ecosystem-item__top { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; }

.ecosystem-item h3 {
  max-width: 14ch;
  color: inherit;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: .92;
  text-transform: none;
}

.ecosystem-rule { height: 1px; background: rgba(7, 22, 28, .25); }
.ecosystem-rule span { display: block; width: 31%; height: 3px; background: var(--teal); transform: translateY(-1px); }
.ecosystem-item p { color: rgba(7, 22, 28, .68); font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

.ecosystem-footer { justify-content: flex-start; gap: 10px 18px; margin-top: 22px; color: rgba(7, 22, 28, .57); }
.ecosystem-footer strong { color: var(--ink); font-weight: 750; }

/* Shared sections */
.section-pad { padding: clamp(82px, 8.5vw, 128px) 0; }

.section-intro { max-width: 670px; margin-bottom: 62px; }
.section-intro .section-number { color: var(--teal); }
.section-intro h2 { margin-bottom: 25px; color: var(--ink); font-size: clamp(2.8rem, 5.3vw, 5.5rem); }
.section-intro h2 em { color: var(--teal); }
.section-intro > p:last-child { max-width: 58ch; color: #50666a; font-size: 1.03rem; line-height: 1.7; }

/* Services */
.services { background: var(--paper); }

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

.service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  padding: 23px 23px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 254, 248, .63);
  transition: transform .45s var(--ease), border-color .3s ease, box-shadow .45s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--acid);
  content: "";
  opacity: .45;
}

.service-card:hover { border-color: rgba(46, 119, 115, .5); }

.service-card--feature {
  grid-column: span 6;
  min-height: 390px;
  background: var(--ink);
  color: var(--white);
}

.service-card:nth-child(2),
.service-card:nth-child(3) { grid-column: span 3; }

.service-card:nth-child(n + 4) { grid-column: span 4; }

.service-card--feature::before {
  position: absolute;
  top: -25%;
  right: -5%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(216, 243, 106, .21);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(216, 243, 106, .035), 0 0 0 108px rgba(216, 243, 106, .025);
  content: "";
  pointer-events: none;
}

.service-card--feature .service-card__top,
.service-card--feature .service-card__foot { position: relative; z-index: 1; }
.service-card--feature .service-number,
.service-card--feature .service-kicker { color: var(--aqua); }
.service-card--feature p:not(.service-kicker) { max-width: 63ch; color: rgba(255, 254, 248, .7); }
.service-card--feature .service-card__foot { border-color: rgba(255, 254, 248, .2); color: var(--acid); }

.service-card__top,
.service-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.service-card__top { color: var(--teal); }
.service-number { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; }
.service-icon { display: inline-flex; width: 27px; height: 27px; align-items: center; justify-content: center; color: var(--teal); }
.service-icon svg { display: block; width: 100%; height: 100%; }

.service-kicker { margin-bottom: 15px; color: var(--teal); font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3 { max-width: 16ch; margin-bottom: 16px; color: var(--ink); font-size: 1.65rem; line-height: 1; }
.service-card--feature h3 { max-width: 12ch; color: var(--white); font-size: clamp(1.9rem, 2.8vw, 3rem); }
.service-card p:not(.service-kicker) { color: #596d71; font-size: .98rem; line-height: 1.62; }

.service-card__foot { padding-top: 17px; border-top: 1px solid var(--line); color: var(--teal); font-family: var(--mono); font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }

/* Journey */
.journey { background: var(--paper-deep); }

.section-intro--split { display: grid; grid-template-columns: 1fr minmax(240px, .6fr); align-items: end; gap: 80px; max-width: none; }
.section-intro--split > p { max-width: 36ch; justify-self: end; padding-bottom: 8px; color: #50666a; font-size: 1.03rem; line-height: 1.7; }
.section-intro--split h2 { margin-bottom: 0; }

.journey-rail { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.journey-rail::before { position: absolute; top: 31px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, var(--teal), var(--acid), var(--teal)); content: ""; opacity: .65; }
.journey-step { position: relative; z-index: 1; padding: 0 25px 4px; }
.journey-step__marker { display: flex; align-items: center; justify-content: center; width: 63px; height: 63px; margin-bottom: 34px; border: 1px solid var(--teal); border-radius: 50%; background: var(--paper-deep); color: var(--teal); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; }
.journey-step:nth-child(2) .journey-step__marker { border-color: var(--teal); background: var(--teal); color: var(--white); box-shadow: 0 0 0 5px rgba(46, 119, 115, .18); }
.journey-step:nth-child(3) .journey-step__marker { border-color: var(--ink); color: var(--ink); }
.journey-step h3 { max-width: 13ch; margin-bottom: 15px; color: var(--ink); font-size: 1.9rem; line-height: 1; }
.journey-step > p:last-child { max-width: 30ch; color: #596d71; font-size: .98rem; line-height: 1.65; }

/* About */
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.about-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr); gap: clamp(55px, 10vw, 150px); align-items: start; }
.about-copy .section-number { color: var(--aqua); }
.about-copy h2 { max-width: 11ch; margin-bottom: 34px; color: var(--white); font-size: clamp(3rem, 5.5vw, 5.7rem); }
.about-copy h2 em { color: var(--acid); }
.about-copy > p:not(.section-number) { max-width: 57ch; margin-bottom: 19px; color: rgba(255, 254, 248, .68); font-size: 1.03rem; line-height: 1.72; }
.therapeutic-experience { margin-top: 45px; padding-top: 19px; border-top: 1px solid var(--dark-line); }
.therapeutic-experience .service-kicker { color: var(--aqua); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 9px 13px; border: 1px solid rgba(255, 254, 248, .22); border-radius: 999px; color: rgba(255, 254, 248, .78); font-size: .78rem; }

.about-stats { display: grid; gap: 0; border-top: 1px solid var(--dark-line); }
.big-stat { display: flex; align-items: flex-end; gap: 20px; padding: 27px 0 31px; border-bottom: 1px solid var(--dark-line); }
.big-stat strong { color: var(--acid); font-size: clamp(6rem, 12vw, 10rem); font-weight: 650; letter-spacing: -.1em; line-height: .68; }
.big-stat strong span { color: var(--aqua); font-size: .55em; vertical-align: top; }
.big-stat > span { padding-bottom: 4px; color: rgba(255, 254, 248, .58); font-family: var(--mono); font-size: .64rem; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }
.stat-row { display: flex; justify-content: space-between; gap: 24px; padding: 23px 0; border-bottom: 1px solid var(--dark-line); }
.stat-row strong { color: var(--white); font-size: 1.15rem; letter-spacing: -.04em; }
.stat-row span { max-width: 19ch; color: rgba(255, 254, 248, .49); font-size: .8rem; line-height: 1.45; text-align: right; }

/* Standards */
.standards { background: var(--paper); }

.standards-shell { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr); gap: 45px 60px; overflow: hidden; padding: clamp(34px, 5.5vw, 68px); border-radius: 22px; background: var(--ink-soft); color: var(--white); isolation: isolate; }
.standards-shell::before { position: absolute; z-index: -1; top: -45%; right: -12%; width: 650px; height: 650px; border: 1px solid rgba(134, 230, 220, .18); border-radius: 50%; box-shadow: 0 0 0 75px rgba(134, 230, 220, .035), 0 0 0 150px rgba(134, 230, 220, .025); content: ""; }
.standards-shell::after { position: absolute; z-index: -1; right: 0; bottom: 0; left: 0; height: 50%; background: linear-gradient(transparent, rgba(216, 243, 106, .05)); content: ""; }
.standards-main .section-number { color: var(--aqua); }
.standards-main h2 { max-width: 10ch; margin-bottom: 28px; color: var(--white); font-size: clamp(3rem, 5vw, 5.4rem); }
.standards-main h2 em { color: var(--acid); }
.standards-main > p:last-child { max-width: 50ch; color: rgba(255, 254, 248, .72); font-size: 1.02rem; line-height: 1.7; }
.standards-list { display: flex; flex-wrap: wrap; align-content: center; gap: 9px; padding-top: 20px; }
.standard-pill { padding: 11px 13px; border: 1px solid rgba(255, 254, 248, .2); border-radius: 4px; color: rgba(255, 254, 248, .8); font-size: .8rem; line-height: 1.35; }
.standard-pill::before { display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--acid); content: ""; }
.standards-seal { position: static; grid-column: 2; justify-self: end; display: flex; align-items: center; gap: 9px; color: rgba(255, 254, 248, .45); font-family: var(--mono); font-size: .6rem; letter-spacing: .11em; line-height: 1.35; text-align: right; }
.standards-seal i { color: var(--aqua); font-size: 1.25rem; font-style: normal; }

/* Contact */
.contact { position: relative; overflow: hidden; background: var(--paper-deep); color: var(--ink); }
.contact-inner { max-width: 890px; text-align: center; }
.contact .section-number { color: var(--teal); }
.contact h2 { max-width: 10ch; margin: 0 auto 26px; color: var(--ink); font-size: clamp(3.5rem, 6.5vw, 6.7rem); }
.contact h2 em { color: var(--teal); }
.contact-inner > p:not(.section-number):not(.contact-hint) { max-width: 52ch; margin: 0 auto; color: rgba(7, 22, 28, .66); font-size: 1.05rem; line-height: 1.7; }
.email-box { display: inline-flex; align-items: center; justify-content: center; gap: 16px; max-width: 100%; margin-top: 34px; padding: 8px 8px 8px 20px; border: 1px solid rgba(255, 254, 248, .18); border-radius: 999px; background: var(--ink); box-shadow: 0 20px 45px rgba(7, 22, 28, .16); }
#email-slot { display: inline-flex; min-width: 214px; align-items: center; justify-content: center; color: rgba(255, 254, 248, .58); font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-align: center; }
#email-slot a { display: inline-block; color: var(--acid); text-align: center; }
#reveal-btn { display: inline-flex; align-items: center; gap: 11px; padding: 12px 17px; border: 1px solid var(--acid); border-radius: 999px; background: var(--acid); color: var(--ink); cursor: pointer; font-size: .74rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .25s var(--ease); }
#reveal-btn:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
#reveal-btn span { font-size: 1rem; line-height: 0; }
.contact-hint { margin-top: 17px !important; color: rgba(7, 22, 28, .68) !important; font-family: var(--mono); font-size: .66rem !important; letter-spacing: .07em; text-transform: uppercase; }
.rtl { unicode-bidi: bidi-override; direction: rtl; }

/* Footer */
.site-footer { padding: 29px 0; background: var(--ink); color: var(--white); }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.foot .brand { font-size: 1rem; }
.foot .brand-lockup { width: 132px; }
.foot-right { display: flex; align-items: center; gap: 17px; }
.foot p { margin: 0; color: rgba(255, 254, 248, .46); font-size: .72rem; }
.social { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255, 254, 248, .2); border-radius: 50%; color: rgba(255, 254, 248, .7); transition: color .2s ease, border-color .2s ease, transform .25s var(--ease); }
.social:hover { border-color: var(--acid); color: var(--acid); transform: translateY(-2px); }
.social svg { display: block; }

/* Reveal and interaction states */
.has-js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s var(--ease); }
.has-js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.has-js .service-card:nth-child(2) { transition-delay: .06s; }
.has-js .service-card:nth-child(3) { transition-delay: .12s; }
.has-js .service-card:nth-child(4) { transition-delay: .18s; }
.has-js .service-card:nth-child(5) { transition-delay: .24s; }
.has-js .service-card:nth-child(6) { transition-delay: .3s; }

@keyframes draw-signal { to { stroke-dashoffset: 0; } }

/* Responsive */
@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 44px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 7rem); }
  .service-card--feature h3 { font-size: clamp(1.9rem, 2.8vw, 3rem); }
  .about-layout { gap: 60px; }
  .service-catalog { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) { grid-column: span 1; }
  .service-card--feature { grid-column: span 2; }
}

@media (max-width: 920px) {
  .nav { min-height: 74px; }
  .menu-toggle { display: block; }
  .has-js .nav-links { position: absolute; top: calc(100% + 1px); right: 24px; left: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 13px; border: 1px solid rgba(255, 254, 248, .16); border-radius: 15px; background: rgba(7, 22, 28, .96); box-shadow: 0 20px 40px rgba(0, 0, 0, .2); }
  .has-js .nav-open .nav-links { display: flex; }
  .nav-links > a:not(.nav-cta) { padding: 14px 10px; }
  .nav-links > a:not(.nav-cta)::after { right: auto; bottom: 7px; left: 10px; width: 35px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero-layout { grid-template-columns: 1fr; align-content: center; padding-top: 130px; }
  .hero-copy { max-width: 690px; }
  .hero h1 { max-width: 12ch; }
  .signal-board { justify-self: start; max-width: 640px; }
  .ecosystem-heading { grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr); gap: 38px; }
  .ecosystem-list { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 70px; }
  .about-copy h2 { max-width: 11ch; }
  .standards-shell { grid-template-columns: 1fr; gap: 28px; }
  .standards-list { padding-top: 0; }
  .standards-seal { grid-column: auto; justify-self: start; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 32px), var(--max-width)); }
  .hero { min-height: auto; }
  .hero-layout { gap: 52px; padding-top: 116px; padding-bottom: 70px; }
  .hero h1 { margin-bottom: 27px; font-size: clamp(3.35rem, 14.5vw, 5.3rem); }
  .hero-lede { font-size: .98rem; }
  .hero-proof { margin-top: 36px; }
  .hero-orb--one { top: 36%; right: -55%; width: 520px; height: 520px; }
  .signal-board { padding: 13px; border-radius: 17px; }
  .signal-board__bottom { gap: 8px; }
  .signal-board__bottom strong { font-size: 1rem; }
  .signal-board__bottom span { font-size: .55rem; }
  .signal-board figcaption { font-size: .7rem; }
  .plot-callout { display: none; }
  .ecosystem-wrap { padding-top: 48px; padding-bottom: 38px; }
  .ecosystem-heading { display: block; margin-top: 34px; margin-bottom: 35px; }
  .ecosystem-heading h2 { font-size: clamp(3.2rem, 14.5vw, 5.2rem); }
  .ecosystem-heading p { margin-top: 25px; padding-bottom: 0; }
  .ecosystem-item { min-height: 205px; padding: 17px 16px 15px; }
  .ecosystem-item h3 { font-size: clamp(1.35rem, 5.5vw, 2rem); }
  .ecosystem-footer { flex-wrap: wrap; }
  .section-pad { padding: 72px 0; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .service-catalog { display: flex; flex-direction: column; gap: 12px; }
  .service-card,
  .service-card--feature { min-height: 0; padding: 21px 20px 18px; }
  .service-card--feature h3 { font-size: 2.15rem; }
  .service-card h3 { font-size: 1.5rem; }
  .service-card__foot { margin-top: 8px; }
  .section-intro--split { display: block; }
  .section-intro--split > p { margin-top: 24px; }
  .journey-rail { display: block; }
  .journey-rail::before { top: 0; right: auto; bottom: 0; left: 31px; width: 1px; height: auto; background: linear-gradient(var(--teal), var(--acid), var(--teal)); }
  .journey-step { display: grid; grid-template-columns: 63px 1fr; column-gap: 21px; padding: 0 0 43px; }
  .journey-step:last-child { padding-bottom: 0; }
  .journey-step__marker { grid-row: span 3; margin-bottom: 0; }
  .journey-step .service-kicker { align-self: end; margin-bottom: 8px; }
  .journey-step h3 { font-size: 1.75rem; }
  .journey-step > p:last-child { grid-column: 2; }
  .about-layout { gap: 52px; }
  .about-copy h2 { font-size: clamp(3rem, 13vw, 5.2rem); }
  .big-stat strong { font-size: 7rem; }
  .stat-row { align-items: flex-start; }
  .stat-row strong { max-width: 12ch; }
  .standards-shell { padding: 31px 23px 25px; border-radius: 18px; }
  .standards-main h2 { font-size: clamp(3rem, 13vw, 4.9rem); }
  .standard-pill { font-size: .76rem; }
  .contact h2 { font-size: clamp(3.1rem, 14vw, 5.2rem); }
  .email-box { display: flex; flex-direction: column; gap: 9px; padding: 14px; border-radius: 16px; }
  #email-slot { min-width: 0; padding: 3px 5px; text-align: center; }
  #reveal-btn { width: 100%; }
  .foot { align-items: flex-start; flex-direction: column; }
  .foot-right { width: 100%; justify-content: space-between; }
  .foot p { max-width: 29ch; }
}

@media (max-width: 620px) {
  .has-js .nav-links { right: 16px; left: 16px; }
}

@media (max-width: 460px) {
  .ecosystem-list { grid-template-columns: 1fr; }
  .ecosystem-item { min-height: 165px; }
  .ecosystem-item h3 { max-width: 16ch; }
}

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

:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }
.contact :focus-visible { outline-color: var(--ink); }
