/* NexaNeura v2 site styles. Single light theme by design. */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/space-grotesk-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/space-grotesk-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --gut: max(var(--pad), calc((100vw - 1400px) / 2 + var(--pad)));
  --sec-x: clamp(24px, 4.2vw, 62px);
  --gut-s: max(var(--sec-x), calc((100vw - 1400px) / 2 + var(--sec-x)));
  color-scheme: light;
  --ground: #FFFFFF;
  --alt: #F4F6FB;
  --navy: #0A1733;
  --body-c: #212B47;
  --second: #3C4866;
  --line: #DFE4EF;
  --indigo: #4F46E5;
  --indigo-deep: #3A31C4;
  --indigo-wash: #EEF0FE;
  --green: #0B8F6C;
  --green-wash: #EAF8F2;
  --amber: #B45309;
  --wine: #9E2F4E;
  --wine-wash: #FBEEF1;
  --hero-bg: #070D1E;
  --hero-line: rgba(255, 255, 255, .13);
  --indigo-lt: #A5A0FF;
  --card-shadow: 0 1px 2px rgba(10, 23, 51, .06), 0 12px 32px rgba(10, 23, 51, .09);
  --card-lift: 0 4px 10px rgba(10, 23, 51, .08), 0 28px 60px rgba(10, 23, 51, .16);
  --r: 16px;
  --f: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --f-deva: "Kohinoor Devanagari", "Nirmala UI", "Noto Sans Devanagari", "Devanagari Sangam MN", var(--f);
  --f-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --pad: clamp(18px, 2.4vw, 34px);
  --nav-h: 62px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ground);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--body-c);
  font-family: var(--f);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

a {
  color: var(--indigo);
  text-underline-offset: 3px;
  font-weight: 500;
}

a:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 5px;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.024em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

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

.mono {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- NAVBAR ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-txt {
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -.032em;
  color: var(--navy);
}

.brand-txt em {
  font-style: normal;
  color: var(--indigo);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.3vw, 18px);
}

.nav-links>a,
.menu-btn {
  font-size: .9rem;
  font-weight: 500;
  color: var(--body-c);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 9px;
  border: 0;
  background: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.nav-links>a:hover,
.menu-btn:hover {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
}

.menu-btn svg {
  transition: transform .18s;
}

.has-menu {
  position: relative;
}

.has-menu[open] .menu-btn svg,
.has-menu:hover .menu-btn svg {
  transform: rotate(180deg);
}

.menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  z-index: 5;
  min-width: 290px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--card-lift);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}

.has-menu:hover .menu,
.has-menu:focus-within .menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
}

.menu a:hover {
  background: var(--alt);
}

.menu a span {
  font-weight: 400;
  font-size: .83rem;
  color: var(--second);
}

.menu-h {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 8px 11px 5px;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.nav-tel {
  font-family: var(--f-mono);
  font-size: .88rem;
  color: var(--second);
  text-decoration: none;
  font-weight: 500;
}

.nav-tel:hover {
  color: var(--indigo-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .14s, box-shadow .16s, background .16s, border-color .16s;
}

.btn-p {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 1px 2px rgba(58, 49, 196, .28), 0 8px 20px rgba(79, 70, 229, .24);
}

.btn-p:hover {
  background: var(--indigo-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(58, 49, 196, .3), 0 14px 30px rgba(79, 70, 229, .3);
}

.btn-s {
  background: var(--ground);
  color: var(--navy);
  border-color: var(--line);
}

.btn-s:hover {
  border-color: var(--indigo);
  color: var(--indigo-deep);
  background: var(--indigo-wash);
}

.nav .btn {
  padding: 10px 17px;
}

.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}

/* ---------- HERO ---------- */
/* the hero and the logo strip share one ground and one set of glows, so the
   shade is continuous across them with no seam where the sections meet */
.band {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1080px 560px at 88% -8%, rgba(79, 70, 229, .34) 0%, transparent 62%),
    radial-gradient(760px 480px at 2% 96%, rgba(11, 143, 108, .15) 0%, transparent 66%);
}

.hero {
  position: relative;
}

.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4.6vw, 52px);
  align-items: stretch;
  padding-block: clamp(16px, 1.8vw, 26px) clamp(28px, 3.4vw, 46px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--indigo-deep);
  background: var(--indigo-wash);
  border: 1px solid #D9DBFB;
  padding: 7px 13px;
  border-radius: 999px;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
  flex: 0 0 auto;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin-top: 18px;
}

.sub {
  margin-top: 18px;
  font-size: clamp(.98rem, 1.14vw, 1.1rem);
  line-height: 1.52;
  max-width: 34ch;
}

.sub b {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-top: 9px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 26px;
  font-size: .88rem;
  color: var(--second);
}

.trust i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust i::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* photo + card */
.shot {
  position: relative;
}

.shot-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-lift);
  aspect-ratio: 4/3.66;
  background: #EDE7E0;
}

.shot-img>img,
.shot-img>video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clip {
  object-position: 50% 34%;
  z-index: 1;
}

.shot-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(10, 23, 51, .72);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .06em;
}

.shot-tag em {
  font-style: normal;
  font-family: var(--f-deva);
  letter-spacing: 0;
}

.dotlive {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F87171;
  box-shadow: 0 0 0 0 rgba(248, 113, 113, .7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(248, 113, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
  }
}

.card {
  position: absolute;
  z-index: 5;
  left: -88px;
  bottom: -24px;
  width: min(64%, 296px);
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--card-lift);
  padding: 15px 16px 14px;
}

.card-h {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--second);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.card-h b {
  color: var(--indigo);
  font-weight: 600;
}

.t {
  padding-top: 11px;
}

.t p {
  font-size: .83rem;
  line-height: 1.45;
}

.t .who {
  font-family: var(--f-mono);
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--second);
  margin-bottom: 2px;
}

.t .hi {
  font-family: var(--f-deva);
  color: var(--navy);
  font-weight: 500;
}

.t .en {
  color: var(--second);
  font-size: .775rem;
  margin-top: 1px;
}

.t+.t {
  margin-top: 9px;
}

.stop {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--wine-wash);
  border: 1px solid #F3D7DE;
  border-radius: 10px;
  padding: 9px 11px;
}

.stop svg {
  flex: 0 0 auto;
  color: var(--wine);
}

.stop p {
  font-size: .775rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.3;
}

.esc {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .775rem;
  color: var(--green);
  font-weight: 600;
}

.esc .mono {
  color: var(--second);
  font-weight: 500;
}

/* ---------- DARK HERO ----------
   Scoped to .hero and to the nav while the hero is in view. Nothing outside
   this block changes; the rest of the page stays on the single light theme. */
.hero {
  color: rgba(255, 255, 255, .68);
}

/* the accent phrase alternates; it leaves upward and the next one arrives from
   below, so the swap reads as one movement rather than a crossfade */
.rot-w {
  display: inline-block;
  transition: opacity .32s ease, transform .32s ease;
}

.rot-w.out {
  opacity: 0;
  transform: translateY(-12px);
}

.rot-w.in {
  animation: rot-in .46s cubic-bezier(.22, .68, .3, 1) both;
}

@keyframes rot-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  color: #FFFFFF;
}

.hero h1 em {
  color: var(--indigo-lt);
}

.hero .sub {
  color: rgba(255, 255, 255, .66);
}

.hero .sub b {
  color: #FFFFFF;
}

.hero .pill {
  color: #D2CFFF;
  background: rgba(79, 70, 229, .18);
  border-color: rgba(148, 142, 255, .34);
}

.hero .pill::before {
  background: var(--indigo-lt);
}

.hero .trust {
  color: rgba(255, 255, 255, .58);
}

.hero .trust i::before {
  background: #34D399;
}

.hero .btn-s {
  background: rgba(255, 255, 255, .07);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .22);
}

.hero .btn-s:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(165, 160, 255, .6);
  color: #FFFFFF;
}

.hero .shot-img {
  background: #101830;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .5), 0 34px 74px rgba(0, 0, 0, .58);
}

.hero .card {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .44), 0 30px 66px rgba(0, 0, 0, .52);
}

/* the nav sits on the dark hero until the page scrolls past it */
.nav.on-hero {
  /* no panel and no rule, just enough of a scrim that hero copy scrolling
     underneath does not collide with the links */
  background: linear-gradient(180deg, rgba(7, 13, 30, .96) 0%, rgba(7, 13, 30, .82) 58%, rgba(7, 13, 30, 0) 100%);
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav.on-hero .brand-txt {
  color: #FFFFFF;
}

.nav.on-hero .brand-txt em {
  color: var(--indigo-lt);
}

.nav.on-hero .nav-links>a,
.nav.on-hero .menu-btn,
.nav.on-hero .nav-tel {
  color: rgba(255, 255, 255, .78);
}

.nav.on-hero .nav-links>a:hover,
.nav.on-hero .menu-btn:hover {
  background: rgba(255, 255, 255, .1);
  color: #FFFFFF;
}

.nav.on-hero .nav-tel:hover {
  color: #FFFFFF;
}

.nav.on-hero .burger {
  border-color: rgba(255, 255, 255, .26);
}

.nav.on-hero .burger svg path {
  stroke: #FFFFFF;
}

/* ---------- responsive ---------- */
@media (max-width:1360px) {
  .nav-tel {
    display: none;
  }
}

@media (max-width:1180px) {
  .burger {
    display: inline-flex;
  }

  .nav-tel {
    display: none;
  }

  .nav-right .btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    bottom: auto;
    max-height: calc(100vh - var(--nav-h));
    transform: none;
    display: block;
    overflow-y: auto;
    background: var(--ground);
    border-top: 1px solid var(--line);
    padding: 14px var(--pad) 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
  }

  .nav.open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links > a,
  .menu-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }

  .has-menu {
    display: block;
  }

  .nav-links .menu,
  .nav-links .menu.mega {
    position: static;
    opacity: 1;
    visibility: inherit;
    transform: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .nav-links .has-menu.open .menu,
  .nav-links .has-menu.open .menu.mega {
    display: block;
    padding: 4px 0 12px;
  }

  /* a submenu left open from a previous visit must not outlive the drawer */
  .nav:not(.open) .nav-links .menu,
  .nav:not(.open) .nav-links .menu.mega {
    visibility: hidden;
    display: none;
  }

  .menu.mega {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-col + .mega-col {
    border-left: 0;
    padding-left: 0;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .menu-btn svg {
    transition: transform .18s ease;
  }

  .has-menu.open .menu-btn svg {
    transform: rotate(180deg);
  }

  .nav-drawer-cta {
    display: flex;
    margin-top: 20px;
  }
}

.nav-drawer-cta {
  display: none;
  gap: 10px;
  flex-direction: column;
}

body.nav-locked {
  overflow: hidden;
}

@media (max-width:1000px) {

  .hero-in {
    grid-template-columns: 1fr;
    padding-block: 32px 30px;
  }

  .sub {
    max-width: 52ch;
  }

  .shot {
    margin-top: 6px;
  }

  .card {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .shot-img {
    aspect-ratio: 16/11;
  }
}

@media (max-width:560px) {
  body {
    font-size: 16.5px;
  }

  h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.6rem);
  }

  .cta {
    gap: 10px;
  }

  .cta .btn {
    flex: 1 1 100%;
  }
}

.has-menu.open .menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-copy .pill {
  align-self: flex-start;
}

h1 em {
  font-style: normal;
  color: var(--indigo);
}

.menu.mega {
  left: -14px;
  min-width: min(620px, calc(100vw - 2 * var(--pad)));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6px;
  padding: 12px;
}

.mega-col + .mega-col {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.menu-h.g {
  color: var(--green);
}

.menu-note {
  font-size: .8rem;
  color: var(--second);
  padding: 0 11px 9px;
  line-height: 1.4;
}

.menu.mega a {
  display: block;
  padding: 8px 11px;
  line-height: 1.35;
}

.menu.mega a span {
  display: block;
  margin-top: 2px;
  font-size: .79rem;
}

@media (max-width:760px) {
  .menu.mega {
    grid-template-columns: 1fr;
  }

  .mega-col + .mega-col {
    border-left: 0;
    padding-left: 0;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
}

/* ---------- SECTIONS ---------- */
.sec > .wrap {
  padding-block: clamp(54px, 6.4vw, 100px);
  padding-inline: var(--sec-x);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: clamp(.78rem, .94vw, .9rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--indigo);
  border-radius: 2px;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.12;
  margin-top: 14px;
}

/* ============ OPTION A ============ */
.ea-sec > .wrap { padding: 0; }
.ea-sec { padding-block: 0; border-top: 1px solid var(--line); }

.ea-head {
  padding: clamp(48px, 5.8vw, 90px) var(--gut-s) clamp(32px, 3.8vw, 54px);
  border-bottom: 1px solid var(--line);
}

.ea {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ea-half {
  padding: clamp(42px, 5.2vw, 82px) 0;
}

.ea-tint { background: #F2F8F5; }

.ea-in { max-width: 46ch; }

.ea-half:first-child {
  padding-left: var(--gut-s);
  padding-right: clamp(26px, 3.4vw, 58px);
}

.ea-tint {
  padding-left: clamp(26px, 3.4vw, 58px);
  padding-right: var(--gut-s);
}

.ea-no {
  font-family: var(--f-mono);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
  color: #C9CDF6;
}

.ea-no.g { color: #A6D6C3; }

.ea-h {
  font-size: clamp(1.8rem, 2.9vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-top: 14px;
}

.ea-l {
  margin-top: 16px;
  font-size: .96rem;
  line-height: 1.58;
  color: var(--second);
  max-width: 40ch;
}

.ea-rows {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.ea-tint .ea-rows { border-color: #CFE6DA; }

.ea-row {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr auto 14px;
  align-items: center;
  gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
}

.ea-tint .ea-row { border-color: #CFE6DA; }

.ea-play {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1.5px solid #C9CDF6;
  border-radius: 50%;
  background: var(--ground);
  color: var(--indigo);
  cursor: pointer;
  transition: background .16s, border-color .16s, color .16s, transform .12s;
}

.ea-tint .ea-play { border-color: #A6D6C3; color: var(--green); }

.ea-play:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.ea-tint .ea-play:hover { background: var(--green); border-color: var(--green); }

.ea-play:active { transform: scale(.94); }

.ea-play .ic-pause { display: none; }
.playing .ea-play .ic-play { display: none; }
.playing .ea-play .ic-pause { display: block; }

.playing .ea-play {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.ea-tint .playing .ea-play,
.playing .ea-play {
  background: var(--indigo);
}

.ea-tint .ea-row.playing .ea-play {
  background: var(--green);
  border-color: var(--green);
}

.ea-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color .18s;
}

.ea-name:hover { color: var(--indigo-deep); }
.ea-tint .ea-name:hover { color: #086a51; }

.ea-time {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--second);
  white-space: nowrap;
}

.ea-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  overflow: hidden;
}

.ea-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--indigo);
  transition: width .2s linear;
}

.ea-tint .ea-bar i { background: var(--green); }

.ea-row.na .ea-play {
  border-color: var(--line);
  color: #A9B1C6;
  cursor: not-allowed;
  background: var(--ground);
}

.ea-row.na .ea-time { color: #A9B1C6; font-style: normal; }

.ea-f {
  margin-top: 26px;
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--second);
}

@media (max-width:860px) {
  .ea { grid-template-columns: 1fr; }
  .ea-in { margin-inline: 0; max-width: none; }
}

/* ============ CARE PATHWAY ============ */
.pw-sec {
  border-top: 1px solid var(--line);
}

.pw-tabsbar {
  margin-top: clamp(20px, 2.2vw, 28px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.pw-tabsbar::-webkit-scrollbar { display: none; }

.pw-tabs {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(14px, 2vw, 30px);
  width: max-content;
  min-width: 100%;
}

.pw-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--second);
  padding: 0 0 13px;
  cursor: pointer;
  transition: color .18s;
}

.pw-tab:hover { color: var(--navy); }
.pw-tab.on { color: var(--indigo-deep); }

.pw-ink {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--pw-w, 80px);
  background: var(--indigo);
  border-radius: 2px;
  transform: translateX(var(--pw-x, 0));
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), width .28s;
}

.pw-pane { display: none; }
.pw-pane.on { display: block; }

.pw-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 2.2vw, 26px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.pw-cell.hot:hover { background: #F1F0FE; }

.pw-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 2.2vw, 26px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.pw-cell.hot:hover { background: #F1F0FE; }

/* ---------- pathway node picker ---------- */
.nd-body {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: stretch;
  margin-top: clamp(20px, 2.4vw, 28px);
}

.nd-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nd-item { min-width: 0; }

.nd-chev { display: none; }

.nd-acc { display: none; }

.nd {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ground);
  font-family: inherit;
  text-align: left;
  padding: 12px 20px;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.nd:hover {
  border-color: #C6CBEF;
  transform: translateX(2px);
}

.nd.on {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), 0 6px 18px rgba(79, 70, 229, .13);
}

.nd-n {
  font-family: var(--f-mono);
  font-size: .76rem;
  color: #A9B1C6;
  flex: 0 0 auto;
}

.nd.on .nd-n { color: var(--indigo); }

.nd-nm {
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.nd.start .nd-nm::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  margin-left: 7px;
  vertical-align: 2px;
}

/* right panel */
.nd-panel {
  display: flex;
  flex-direction: column;
}

.pw-h {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 2;
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -.026em;
  color: #23193A;
}

.lc {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lc-d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C3C9EC;
  transition: background .18s, transform .18s;
}

.lc-d.on {
  background: var(--indigo);
  transform: scale(1.5);
}

.lc-lab {
  margin-left: 8px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  font-weight: 600;
}

.nd-fires {
  margin-top: clamp(22px, 3vw, 38px);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--second);
}

.nd-title {
  margin-top: 8px;
  font-size: clamp(1.36rem, 2.1vw, 1.78rem);
  line-height: 1.08;
  letter-spacing: -.028em;
}

.nd-desc {
  margin-top: 13px;
  font-size: clamp(.96rem, 1.14vw, 1.06rem);
  line-height: 1.5;
  color: var(--body-c);
  max-width: 40ch;
}

.nd-asks {
  margin-top: clamp(20px, 2.6vw, 30px);
}

.nd-asks-h {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  font-weight: 600;
}

.nd-asks ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nd-asks li {
  position: relative;
  padding-left: 18px;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--second);
  max-width: 46ch;
}

.nd-asks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 1.5px;
  background: var(--indigo);
}

.nd-flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 18px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--indigo-deep);
  background: rgba(255, 255, 255, .8);
  border-radius: 999px;
  padding: 8px 15px;
}

.nd-flag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}

.nd-flag[hidden] { display: none; }

@media (max-width:900px) {
  .nd-body {
    display: flex;
    flex-direction: column;
  }

  .nd-panel {
    order: -1;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .pw-art {
    margin-top: 0;
    margin-bottom: 14px;
    height: clamp(200px, 52vw, 300px);
  }

  .pw-play {
    width: 62px;
    height: 62px;
  }

  .pw-h {
    left: 16px;
    top: 14px;
    font-size: 1.18rem;
  }

  .nd-list { gap: 6px; }

  .nd-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s;
  }

  .nd-item.open,
  .nd-item:has(.nd.on) {
    border-color: var(--indigo);
    box-shadow: 0 0 0 1px var(--indigo);
  }

  .nd {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 18px;
  }

  .nd:hover,
  .nd.on {
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nd-nm { flex: 1; }

  .nd-chev {
    display: block;
    flex: 0 0 auto;
    color: var(--second);
    transition: transform .2s;
  }

  .nd.on .nd-chev {
    transform: rotate(180deg);
    color: var(--indigo);
  }

  .nd.on + .nd-acc {
    display: block;
    padding: 0 18px 18px;
    animation: accIn .22s ease;
  }

  .nd-acc-f {
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--indigo-deep);
  }

  .nd-acc-d {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--navy);
  }

  .nd-acc-h {
    margin-top: 16px;
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--indigo-deep);
    font-weight: 600;
  }

  .nd-acc ul {
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .nd-acc li {
    position: relative;
    padding-left: 17px;
    font-size: .92rem;
    line-height: 1.45;
    color: var(--second);
  }

  .nd-acc li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 8px;
    height: 1.5px;
    background: var(--indigo);
  }
}

@keyframes accIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width:760px) {
  .pw-tabsbar {
    scroll-snap-type: x proximity;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
  }

  .pw-tabs { gap: 22px; }

  .pw-tabs::after {
    content: "";
    flex: 0 0 8px;
  }
}

/* ---------- one call ---------- */
.oc-sec {
  background: var(--alt);
  border-top: 1px solid var(--line);
}

.oc-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: clamp(22px, 2.6vw, 32px);
  background: #E7EAF4;
  border-radius: 11px;
  padding: 4px;
}

.oc-sw {
  border: 0;
  background: none;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--second);
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.oc-sw.on {
  background: var(--ground);
  color: var(--navy);
  box-shadow: 0 1px 3px rgba(10, 23, 51, .1);
}

.oc-pane { display: none; }
.oc-pane.on { display: block; }

.oc-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
  margin-top: clamp(18px, 2.2vw, 26px);
}

.oc-script {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 32px);
}

.oc-meta {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--second);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.oc-t {
  padding-top: 15px;
  max-width: 62ch;
}

.oc-t.p { padding-left: clamp(0px, 3vw, 42px); }

.oc-who {
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--second);
}

.oc-t.a .oc-who { color: var(--indigo); }

.oc-en {
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.58;
  color: var(--navy);
}

.oc-stop {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  background: var(--wine-wash);
  border: 1px solid #F3D7DE;
  border-radius: 11px;
  padding: 13px 15px;
}

.oc-stop svg { flex: 0 0 auto; color: var(--wine); }

.oc-stop p {
  font-size: .92rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.35;
}

.oc-stop.ok {
  background: var(--green-wash);
  border-color: #CCEBDF;
}

.oc-stop.ok svg,
.oc-stop.ok p { color: #086a51; }

.oc-never {
  margin-top: 16px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--second);
  max-width: 62ch;
}

/* rail */
.oc-rail {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2vw, 24px);
}

.oc-player {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.oc-player .ea-play {
  width: 38px;
  height: 38px;
  border-width: 1.5px;
}

.oc-play-l {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.oc-play-l em {
  font-style: normal;
  font-family: var(--f-deva);
  font-size: .8rem;
  font-weight: 400;
  color: var(--second);
  margin-top: 2px;
}

.oc-player .ea-time {
  margin-left: auto;
  max-width: 82px;
  text-align: right;
  line-height: 1.3;
  white-space: normal;
}

.oc-rail-h {
  margin-top: 20px;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  font-weight: 600;
}

.oc-tl {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oc-tl li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding-left: 15px;
}

.oc-tl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
}

.oc-tl li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.3em;
  bottom: -14px;
  width: 1px;
  background: var(--line);
}

.oc-tm {
  font-size: .8rem;
  color: var(--navy);
  font-weight: 600;
}

.oc-ev {
  font-size: .88rem;
  line-height: 1.45;
  color: var(--second);
}

@media (max-width:900px) {
  .oc-body { grid-template-columns: 1fr; }
  .oc-rail { order: -1; }
}

/* ============ governance tree ============ */

.tr { margin-top: clamp(26px, 3.2vw, 44px); }

/* the root card */
.tr-root {
  background: var(--ground);
  border: 1.5px solid var(--indigo);
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(79, 70, 229, .08), 0 16px 40px rgba(10, 23, 51, .07);
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 30px);
  max-width: 560px;
}

.tr-k {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 600;
}

.tr-t {
  margin-top: 8px;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.018em;
}

.tr-t.sm { font-size: 1.02rem; }

.tr-m {
  margin-top: 7px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--second);
}

.tr-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.tr-ink {
  width: 104px;
  height: auto;
  flex: 0 0 auto;
  color: var(--indigo-deep);
}

.tr-sig span { display: flex; flex-direction: column; }
.tr-sig b { font-size: .93rem; font-weight: 600; color: var(--navy); }

.tr-sig em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--second);
  margin-top: 2px;
}

/* the middle node */
.tr-node {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 22px;
  max-width: 420px;
}

/* the three tier cards */
.tr-kid {
  background: var(--ground);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 12px;
  padding: 17px 19px 19px;
}

.tr-kid.t1 { border-top-color: var(--wine); background: #FDF8F9; }
.tr-kid.t2 { border-top-color: var(--amber); background: #FDFBF7; }
.tr-kid.t3 { border-top-color: var(--green); background: #F8FCFA; }

.tr-kk {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}

.t1 .tr-kk { color: var(--wine); }
.t2 .tr-kk { color: var(--amber); }
.t3 .tr-kk { color: #086a51; }

.tr-ka {
  margin-top: 7px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.tr-kt {
  margin-top: 7px;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--second);
}

.tr-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: .92rem;
  color: var(--second);
}

.tr-fd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  flex: 0 0 auto;
}

/* ---- vertical tree connectors ---- */
.tr-v .tr-top,
.tr-v .tr-mid {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 34px;
}

.tr-v .tr-top::after,
.tr-v .tr-mid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  height: 34px;
  background: #C3C9EC;
}

.tr-v .tr-mid { padding-top: 0; }

.tr-kids {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  padding-top: 34px;
}

.tr-kids::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.7%;
  right: 16.7%;
  height: 1.5px;
  background: #C3C9EC;
}

.tr-kid { position: relative; }

.tr-kids > .tr-kid::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1.5px;
  height: 34px;
  background: #C3C9EC;
}

/* ---- horizontal tree ---- */

@media (max-width:820px) {
  .tr-kids { grid-template-columns: 1fr; gap: 10px; padding-top: 0; }
  .tr-kids::before { display: none; }
  .tr-kids > .tr-kid::before { display: none; }
  .tr-v .tr-top, .tr-v .tr-mid { justify-content: flex-start; padding-bottom: 26px; }
  .tr-v .tr-top::after, .tr-v .tr-mid::after { left: 26px; height: 26px; }
}

/* ---------- VALUE ---------- */
.vl-sec {
  background: var(--alt);
  border-top: 1px solid var(--line);
}

.vl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: clamp(30px, 3.4vw, 48px);
}

.vl-card {
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 2.2vw, 32px) clamp(18px, 1.6vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 14px;
}

.vl-ico {
  color: var(--indigo);
  flex: none;
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}

.vl-h {
  font-size: 1.06rem;
  line-height: 1.22;
  letter-spacing: -.018em;
}

@media (max-width:1080px) {
  .vl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:720px) {
  .vl-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- FAQ ---------- */
.fq-sec {
  border-top: 1px solid var(--line);
}

.fq {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.5fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: start;
}

.fq-l {
  position: sticky;
  top: calc(var(--nav-h) + 34px);
}

.fq-note {
  margin-top: 16px;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--second);
  max-width: 34ch;
}

.fq-i {
  border-bottom: 1px solid var(--line);
}

.fq-i:first-child {
  border-top: 1px solid var(--line);
}

.fq-i > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.014em;
}

.fq-i > summary::-webkit-details-marker {
  display: none;
}

.fq-i > summary:hover {
  color: var(--indigo);
}

.fq-x {
  flex: none;
  position: relative;
  width: 15px;
  height: 15px;
  margin-top: 4px;
}

.fq-x::before,
.fq-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--indigo);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.fq-x::before {
  width: 15px;
  height: 1.8px;
}

.fq-x::after {
  width: 1.8px;
  height: 15px;
  transition: transform .18s ease;
}

.fq-i[open] .fq-x::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.fq-i > p {
  padding: 0 40px 22px 0;
  font-size: .96rem;
  line-height: 1.6;
  color: var(--second);
  max-width: 66ch;
}

@media (max-width:900px) {
  .fq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fq-l {
    position: static;
  }

  .fq-note { max-width: none; }
}

/* ---------- PILOT ---------- */
.pl-sec {
  background: var(--navy);
}

.pl {
  display: grid;
  grid-template-columns: 1fr minmax(0, 440px);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.pl-eb {
  color: #A5A0FF;
}

.pl-eb::before {
  background: #A5A0FF;
}

.pl-h {
  color: #FFFFFF;
  max-width: 16ch;
}

.pl-blocks {
  margin-top: clamp(28px, 3vw, 42px);
  display: grid;
  gap: 22px;
  max-width: 52ch;
}

.pl-b {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.pl-k {
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8E98BA;
  font-weight: 600;
  margin-bottom: 7px;
}

.pl-b p:last-child {
  color: #D3DAEC;
  font-size: .97rem;
  line-height: 1.55;
}

.pl-form {
  background: var(--ground);
  border-radius: var(--r);
  padding: clamp(22px, 2.2vw, 30px);
  display: grid;
  gap: 14px;
  box-shadow: var(--card-lift);
}

.pl-fh {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.018em;
}

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

.pl-f {
  display: grid;
  gap: 6px;
}

.pl-f > span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--second);
}

.pl-f input,
.pl-f select {
  font-family: var(--f);
  font-size: .95rem;
  color: var(--navy);
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  width: 100%;
}

.pl-f input:focus,
.pl-f select:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
  border-color: transparent;
}

.pl-f input::placeholder {
  color: #9AA3BB;
}

.pl-sub {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.pl-alt {
  font-size: .88rem;
  color: var(--second);
  text-align: center;
}

.pl-alt a {
  color: var(--indigo);
  font-weight: 600;
}

@media (max-width:900px) {
  .pl {
    grid-template-columns: 1fr;
  }

  .pl-h { max-width: none; }
}

@media (max-width:520px) {
  .pl-row { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.ft {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.ft > .wrap {
  padding-block: clamp(40px, 4.4vw, 64px);
  padding-inline: var(--sec-x);
}

.ft-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: clamp(30px, 4vw, 70px);
}

.ft .brand-txt {
  color: #FFFFFF;
}

.ft .brand-txt em {
  color: #A5A0FF;
}

.ft a {
  text-decoration: none;
}

.ft-line {
  margin-top: 14px;
  font-size: .93rem;
  line-height: 1.55;
  color: #A8B2CC;
  max-width: 30ch;
}

.ft-tel {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: .9rem;
  color: #FFFFFF;
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-h {
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7E88A8;
  font-weight: 600;
  margin-bottom: 3px;
}

.ft-col a {
  font-size: .92rem;
  color: #CBD3E6;
}

.ft-col a:hover {
  color: #FFFFFF;
}

.ft-bot {
  margin-top: clamp(32px, 3.4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .83rem;
  color: #8E98BA;
}

.ft-comp {
  font-size: .83rem;
  color: #8E98BA;
}

@media (max-width:820px) {
  .ft-top { grid-template-columns: 1fr; }
  .ft-line { max-width: none; }
}

@media (max-width:560px) {
  .ft-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- HOW IT WORKS ---------- */
.hw-sec {
  border-top: 1px solid var(--line);
}

.hw {
  --hw-gap: clamp(26px, 3.4vw, 56px);
  margin-top: clamp(30px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hw-gap);
  background: var(--alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(30px, 3.2vw, 48px) clamp(22px, 2.4vw, 36px);
}

.hw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* the chevron sitting in the gap is the sequence; these three are a flow,
   not a list, so the order is drawn rather than only numbered */
.hw-step::after {
  content: "";
  position: absolute;
  /* level with the middle of the medallion: number (24) + gap (14) + half of 66 */
  top: 71px;
  left: calc(100% + var(--hw-gap) / 2);
  width: 9px;
  height: 9px;
  border-top: 2px solid #C7CAF6;
  border-right: 2px solid #C7CAF6;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hw-step:last-child::after {
  content: none;
}

.hw-n {
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--indigo);
  font-weight: 600;
  line-height: 1;
}

.hw-med {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: var(--ground);
  border: 1px solid #DCDEFB;
  box-shadow: 0 1px 2px rgba(10, 23, 51, .05), 0 6px 16px rgba(10, 23, 51, .06);
  color: var(--indigo);
}

.hw-step h3 {
  font-size: 1.14rem;
  line-height: 1.26;
  max-width: 15ch;
}

@media (max-width:860px) {
  .hw {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hw-step::after {
    top: auto;
    bottom: calc(-1 * var(--hw-gap) / 2);
    left: 50%;
    transform: translate(-50%, 50%) rotate(135deg);
  }
}

/* ---------- DASHBOARDS ---------- */
.db-sec {
  background: var(--alt);
  border-top: 1px solid var(--line);
}

.db {
  margin-top: clamp(28px, 3.2vw, 44px);
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.db-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px clamp(16px, 1.6vw, 22px);
  border-bottom: 1px solid var(--line);
  background: #FBFCFE;
}

.db-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.db-title {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--second);
}

.db-flag {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--amber);
  background: #FDF3E7;
  border: 1px solid #F2DFC4;
  border-radius: 999px;
  padding: 3px 10px;
}

.db-tabs {
  display: flex;
  gap: 4px;
  padding: 12px clamp(16px, 1.6vw, 22px) 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.db-tab {
  flex: none;
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--f);
  font-size: .93rem;
  font-weight: 600;
  color: var(--second);
  padding: 8px 12px 11px;
  cursor: pointer;
}

.db-tab:hover {
  color: var(--navy);
}

.db-tab[aria-selected="true"] {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
}

.db-panel {
  padding: clamp(18px, 2vw, 26px) clamp(16px, 1.6vw, 22px);
}

.db-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.db-kpi {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: var(--alt);
  border-radius: 11px;
}

.db-kpi span {
  font-size: .78rem;
  color: var(--second);
  font-weight: 600;
}

.db-kpi b {
  font-size: 1.44rem;
  color: var(--navy);
  letter-spacing: -.024em;
  font-variant-numeric: tabular-nums;
}

.db-kpi i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--second);
}

.db-kpi i.up {
  color: var(--green);
}

.db-scroll {
  margin-top: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(90deg, var(--ground) 30%, rgba(255, 255, 255, 0)) left / 28px 100% no-repeat local,
    linear-gradient(270deg, var(--ground) 30%, rgba(255, 255, 255, 0)) right / 28px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(10, 23, 51, .13), rgba(10, 23, 51, 0)) left / 12px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(10, 23, 51, .13), rgba(10, 23, 51, 0)) right / 12px 100% no-repeat scroll;
}

.db-tabs {
  scrollbar-width: none;
}

.db-tabs::-webkit-scrollbar {
  display: none;
}

.db-scroll svg {
  width: 100%;
  min-width: 620px;
  max-width: 840px;
  height: auto;
  display: block;
}

.db-note {
  margin-top: 14px;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--second);
  max-width: 78ch;
}

table.db-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.db-tbl th {
  text-align: left;
  font-family: var(--f-mono);
  font-size: .71rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--second);
  font-weight: 700;
  padding: 0 12px 9px 0;
  border-bottom: 1px solid var(--line);
}

.db-tbl td {
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .93rem;
  color: var(--body-c);
  vertical-align: middle;
}

.db-tbl td.n {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
}

.db-sev {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

.db-sev.s1 {
  color: var(--wine);
  background: var(--wine-wash);
}

.db-sev.s2 {
  color: var(--amber);
  background: #FDF3E7;
}

.db-sev.s3 {
  color: var(--green);
  background: var(--green-wash);
}

@media (max-width:900px) {
  .db-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .db-kpi {
    padding: 11px 12px;
  }

  .db-kpi b {
    font-size: 1.24rem;
  }

  .db-scroll svg {
    min-width: 540px;
  }

  table.db-tbl {
    min-width: 560px;
  }

  .db-note {
    font-size: .84rem;
  }
}

@media (max-width:430px) {
  .db-kpi span { font-size: .74rem; }
  .db-kpi i { font-size: .68rem; }
}

/* The console is a wide, dense read. Below this it stops being worth showing,
   so the section and the link that jumps to it both come out together. */
@media (max-width:900px) {

  .db-sec,
  .ft .nav-db {
    display: none;
  }
}

.pl-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.pl-msg:empty {
  display: none;
}

.pl-msg {
  font-size: .88rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 9px;
}

.pl-msg.good {
  color: var(--green);
  background: var(--green-wash);
}

.pl-msg.bad {
  color: var(--wine);
  background: var(--wine-wash);
}

/* ---------- PATHWAY ARTWORK PLAYER ---------- */
.pw-art {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: clamp(250px, 23vw, 370px);
  cursor: pointer;
  background:
    radial-gradient(120% 90% at 78% 96%, #E9B9CE 0%, rgba(233, 185, 206, 0) 58%),
    radial-gradient(90% 70% at 12% 92%, #DCC6BC 0%, rgba(220, 198, 188, 0) 62%),
    linear-gradient(178deg, #CFC9D6 0%, #D3CAD8 46%, #D9C6D3 62%, #E2BCCC 100%);
  isolation: isolate;
}

.orb {
  position: absolute;
  left: 50%;
  top: 46%;
  height: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 26px 46px rgba(90, 60, 110, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .34);
}

.orb-g,
.orb-s {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
}

.orb-g {
  background:
    radial-gradient(circle at 26% 20%, #8FD8F2 0%, rgba(143, 216, 242, 0) 46%),
    radial-gradient(circle at 16% 68%, #1F51C4 0%, rgba(31, 81, 196, 0) 52%),
    radial-gradient(circle at 46% 58%, #37B394 0%, rgba(55, 179, 148, 0) 46%),
    radial-gradient(circle at 78% 26%, #FBA7D6 0%, rgba(251, 167, 214, 0) 52%),
    radial-gradient(circle at 70% 88%, #C226CF 0%, rgba(194, 38, 207, 0) 56%),
    radial-gradient(circle at 84% 62%, #FBE0EE 0%, rgba(251, 224, 238, 0) 40%),
    #9AA4C6;
  filter: blur(14px);
  transform: scale(1.16);
}

.orb-s {
  background:
    radial-gradient(38% 16% at 30% 22%, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(26% 14% at 74% 70%, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(6px);
}

.pw-play {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .3);
  backdrop-filter: blur(9px) saturate(1.3);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(30, 20, 60, .26);
  transition: transform .2s ease, background .16s ease, opacity .2s ease;
}

.pw-play:hover:not(:disabled) {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, .48);
}

.pw-play svg {
  margin-left: 3px;
}

.pw-art.playing .pw-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.88);
  pointer-events: none;
}

.pw-play:disabled {
  opacity: .55;
  box-shadow: none;
}

.pw-art.na {
  cursor: default;
}

.pw-cap {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #23193A;
}

.pw-nm {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.pw-st {
  margin-top: 3px;
  font-size: .74rem;
  letter-spacing: .05em;
  color: #56496E;
}

.pw-art.na .pw-st {
  color: #6E6180;
}

.pw-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(35, 25, 58, .14);
}

.pw-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--indigo);
  transition: width .2s linear;
}

@media (prefers-reduced-motion: reduce) {
  .pw-play,
  .pw-bar i { transition: none; }
}

/* accordion play, mobile */
.nd-play {
  display: none;
}

@media (max-width:900px) {
  .nd-play {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 13px;
    padding: 8px 14px 8px 11px;
    border: 1px solid var(--indigo);
    border-radius: 999px;
    background: var(--ground);
    color: var(--indigo);
    font-family: var(--f);
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
  }

  .nd-play .ic-pause,
  .pw-pane.pl .nd-item.open .nd-play .ic-play {
    display: none;
  }

  .pw-pane.pl .nd-item.open .nd-play .ic-pause {
    display: block;
  }

  .nd-play:disabled {
    border-color: var(--line);
    color: var(--second);
    cursor: default;
  }

  .nd-play:disabled svg {
    display: none;
  }
}

/* ---------- BACKED BY ---------- */
.mq-sec {
  position: relative;
  padding-block: clamp(26px, 3vw, 40px);
  overflow: hidden;
}

.mq-h {
  text-align: center;
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  font-weight: 600;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.mq {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mq-track {
  display: flex;
  width: max-content;
  animation: mq-scroll 34s linear infinite;
}

.mq:hover .mq-track {
  animation-play-state: paused;
}

.mq-set {
  display: flex;
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
  padding-right: clamp(46px, 6vw, 96px);
}

.mq-item {
  flex: none;
  display: grid;
  place-items: center;
  height: 60px;
}

/* Each mark is sized for its own proportions so they carry equal weight,
   rather than all being cropped to one height. */
.mq-item img {
  max-height: 48px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .74;
  transition: opacity .2s ease;
}

.mq-rtih img { max-height: 38px; }
.mq-ginserv img { max-height: 42px; }
.mq-aic img { max-height: 58px; }
.mq-stpi img { max-height: 38px; max-width: 225px; }
.mq-riti img { max-height: 48px; }
.mq-ayush img { max-height: 44px; }

.mq-item img:hover {
  opacity: 1;
}

.mq-word {
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .74);
  white-space: nowrap;
}

@keyframes mq-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .mq { overflow-x: auto; }
  .mq-track { animation: none; }
  .mq-set[aria-hidden="true"] { display: none; }
}

@media (max-width:700px) {
  .mq-item { height: 48px; }
  .mq-item img { max-height: 38px; max-width: 135px; }
  .mq-rtih img { max-height: 30px; }
  .mq-ginserv img { max-height: 34px; }
  .mq-aic img { max-height: 46px; }
  .mq-stpi img { max-height: 30px; max-width: 178px; }
  .mq-riti img { max-height: 38px; }
  .mq-ayush img { max-height: 35px; }
  .mq-set { gap: 36px; padding-right: 36px; }
}
