/* Gate landing page styles.
 * The approved wireframe stylesheet (08-17-2026/public/styles.css) shipped
 * VERBATIM and complete.
 *
 * An earlier version of this file kept only rules whose selector matched
 * /\.(gate|early-access)/ — 84 of 8129 lines. That filter silently dropped all
 * 26 @keyframes blocks, because their selector is "@keyframes name" and never
 * matches, so the page rendered structurally correct and completely static.
 *
 * While gated this is loaded INSTEAD of wireframe.css, not alongside it: the
 * gate uses this stylesheet's own markup, so there is nothing to merge and no
 * cascade to fight. The full site never loads it.
 */

:root {
  --deep-indigo: #1e0b3c;
  --dark-purple: #26105a;
  --brand-purple: #4a1fa8;
  --pale-purple: #eeedfe;
  --cyan: #16a2d7;
  --cyan-bright: #35c1e3;
  --gold: #c8960c;
  --gold-bright: #e3ad01;
  --light-purple: #7b6fd0;
  --near-black: #0d0520;
  --ink: #171421;
  --muted: #625d73;
  --line: #deddea;
  --field: #f8f8fa;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 48px rgba(30, 11, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #050613;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-indigo);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 19, 0.84);
  border-bottom: 1px solid rgba(227, 173, 1, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-link img {
  width: 178px;
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex: 1;
}

.gold-text {
  color: var(--gold-bright);
}

.nav-link,
.footer-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link {
  padding: 10px 10px;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(123, 111, 208, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .button.small {
  color: var(--near-black);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow:
    0 7px 0 var(--cyan),
    0 0 24px rgba(227, 173, 1, 0.22);
}

.header-actions .button.small:hover {
  box-shadow:
    0 9px 0 var(--cyan-bright),
    0 0 30px rgba(227, 173, 1, 0.34);
}

.portal-action {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-action:hover {
  color: var(--gold-bright);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--deep-indigo);
  border: 1px solid var(--deep-indigo);
  border-radius: 6px;
  box-shadow: 0 8px 0 var(--cyan);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--cyan-bright);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 0 rgba(22, 162, 215, 0.22);
}

.button.secondary.ghost {
  color: var(--cyan-bright);
  border-color: transparent;
}

.button.light {
  color: var(--deep-indigo);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 0 var(--gold-bright);
}

.hero .button.light,
.proof-night .button.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 173, 1, 0.5);
  box-shadow: 0 8px 0 rgba(227, 173, 1, 0.42);
}

.button.gold {
  color: var(--near-black);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 0 var(--cyan);
}

.button.gold-dark {
  color: var(--gold-bright);
  background: var(--near-black);
  border-color: rgba(13, 5, 32, 0.72);
  box-shadow: 0 7px 0 var(--cyan);
}

.button.small {
  min-height: 38px;
  padding-inline: 14px;
}

.button.full {
  width: 100%;
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 6, 19, 0.98) 0%, rgba(12, 8, 37, 0.96) 47%, rgba(30, 11, 60, 0.92) 100%),
    #050613;
}

.hero.home-hero {
  min-height: 748px;
  padding: 78px 0 72px;
}

.hero.subhero {
  padding: 86px 0 68px;
}

.hero-gate {
  min-height: 100vh;
  padding: 46px 0 64px;
}

.hero-mark {
  position: absolute;
  right: min(8vw, 96px);
  top: 54px;
  z-index: -1;
  width: min(40vw, 520px);
  opacity: 0.08;
  animation: eye-breathe 6s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(123, 111, 208, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 111, 208, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.scan-line {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(53, 193, 227, 0.2), transparent);
  height: 1px;
  top: 30%;
  opacity: 0.72;
  animation: scan-drift 7s ease-in-out infinite;
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow.gold {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--gold-bright);
  font-size: 0.86rem;
  text-shadow: 0 0 16px rgba(227, 173, 1, 0.34);
}

.section-header.centered .eyebrow.gold {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow.gold::after {
  display: inline-block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(53, 193, 227, 0.72));
  content: "";
}

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

h1 {
  margin-bottom: 22px;
  font-size: 4.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.about-hero-title {
  max-width: 980px;
  color: var(--gold-bright);
  font-size: 4.05rem;
  text-shadow: 0 0 22px rgba(227, 173, 1, 0.22);
}

h2 {
  margin-bottom: 16px;
  color: var(--deep-indigo);
  font-size: 3.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep-indigo);
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h4 {
  margin: 0 0 8px;
  color: var(--deep-indigo);
  font-size: 1rem;
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(600px, 0.9fr) minmax(510px, 1fr);
  gap: 34px;
  align-items: center;
}

.home-hero .hero-copy h1 {
  max-width: 700px;
  font-size: 3.66rem;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.home-hero .hero-copy h1 {
  text-shadow: 0 0 34px rgba(123, 111, 208, 0.24);
}

.accent-word {
  color: var(--cyan-bright);
  text-shadow: 0 0 24px rgba(53, 193, 227, 0.54);
}

.hero .hero-subtag {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 1.42rem;
  font-weight: 800;
}

.hero .hero-subtag::after {
  display: block;
  width: 112px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan-bright));
  content: "";
}

.signal-visual {
  position: relative;
  min-height: 628px;
  isolation: isolate;
  overflow: visible;
  background-image:
    radial-gradient(circle at 50% 62%, rgba(123, 111, 208, 0.3), transparent 30%),
    radial-gradient(circle at 51% 42%, rgba(53, 193, 227, 0.18), transparent 24%),
    radial-gradient(circle at 68% 54%, rgba(74, 31, 168, 0.28), transparent 34%),
    radial-gradient(circle at 9% 21%, rgba(227, 173, 1, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 17% 69%, rgba(53, 193, 227, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 29% 13%, rgba(227, 173, 1, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 10%, rgba(123, 111, 208, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 24%, rgba(227, 173, 1, 0.84) 0 1px, transparent 2px),
    radial-gradient(circle at 94% 62%, rgba(53, 193, 227, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 86%, rgba(227, 173, 1, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 39% 88%, rgba(255, 255, 255, 0.64) 0 1px, transparent 2px);
  animation: starfield-drift 9s ease-in-out infinite;
}

.signal-visual::before,
.signal-visual::after {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 0;
  width: 690px;
  max-width: 116%;
  aspect-ratio: 1.35;
  border: 1px solid rgba(227, 173, 1, 0.3);
  border-radius: 50%;
  content: "";
  --orbit-start: -14deg;
  --orbit-end: 346deg;
  transform: translate(-50%, -50%) rotate(-14deg);
  animation: signal-orbit-drift 16s linear infinite;
}

.signal-visual::after {
  top: 46%;
  width: 590px;
  max-width: 100%;
  border-color: rgba(123, 111, 208, 0.36);
  --orbit-start: 22deg;
  --orbit-end: 382deg;
  transform: translate(-50%, -50%) rotate(22deg);
  animation-duration: 21s;
  animation-direction: reverse;
}

.signal-beam {
  position: absolute;
  left: 50%;
  bottom: 112px;
  z-index: 4;
  width: 260px;
  height: 178px;
  pointer-events: none;
  background: none;
  filter: drop-shadow(0 0 30px rgba(179, 75, 255, 0.72));
  transform: translateX(-50%);
  animation: beam-pulse 4.8s ease-in-out infinite;
}

.signal-beam::before,
.signal-beam::after {
  position: absolute;
  left: 50%;
  top: 76%;
  content: "";
  transform: translate(-50%, -50%);
}

.signal-beam::before {
  width: 210px;
  height: 190px;
  background:
    conic-gradient(from 0deg at 50% 50%, transparent 0deg 6deg, rgba(244, 188, 255, 0.42) 7deg 8deg, transparent 9deg 28deg, rgba(183, 82, 255, 0.18) 29deg 30deg, transparent 31deg 43deg, rgba(244, 188, 255, 0.25) 44deg 45deg, transparent 46deg 63deg, rgba(183, 82, 255, 0.16) 64deg 65deg, transparent 66deg 84deg, rgba(244, 188, 255, 0.36) 86deg 87deg, transparent 89deg 173deg, rgba(183, 82, 255, 0.16) 174deg 176deg, transparent 178deg 263deg, rgba(183, 82, 255, 0.16) 264deg 266deg, transparent 268deg 295deg, rgba(244, 188, 255, 0.24) 296deg 297deg, transparent 298deg 313deg, rgba(183, 82, 255, 0.18) 314deg 315deg, transparent 316deg 337deg, rgba(244, 188, 255, 0.42) 338deg 339deg, transparent 340deg 360deg);
  filter: blur(0.35px);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 5%, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 0.2) 44%, transparent 66%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 5%, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 0.2) 44%, transparent 66%);
  opacity: 0.76;
  transform: translate(-50%, -50%) scaleY(0.72);
}

.signal-beam::after {
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1) 0 14%, rgba(244, 188, 255, 0.98) 18% 32%, rgba(190, 79, 255, 0.78) 42%, transparent 68%);
  border-radius: 50%;
  clip-path: none;
  filter:
    blur(0.2px)
    drop-shadow(0 0 12px rgba(225, 126, 255, 0.95))
    drop-shadow(0 0 30px rgba(139, 50, 255, 0.76));
}

.signal-core {
  position: absolute;
  left: 50%;
  top: 46%;
  display: grid;
  place-items: center;
  z-index: 4;
  width: min(41vw, 420px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(53, 193, 227, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.01);
  box-shadow:
    0 0 0 1px rgba(53, 193, 227, 0.16),
    0 0 110px rgba(74, 31, 168, 0.68),
    0 0 170px rgba(53, 193, 227, 0.14);
  animation: eye-hover 5.4s ease-in-out infinite;
}

.signal-core::before {
  position: absolute;
  inset: -15%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(123, 71, 255, 0.18), transparent 58%),
    conic-gradient(from 120deg, rgba(53, 193, 227, 0.05), rgba(227, 173, 1, 0.18), rgba(123, 111, 208, 0.04), rgba(53, 193, 227, 0.05));
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  animation: eye-aura 8s linear infinite;
}

.signal-core::after {
  position: absolute;
  left: 50%;
  bottom: -24px;
  z-index: -1;
  width: 18%;
  height: 46px;
  background: radial-gradient(ellipse, rgba(174, 74, 255, 0.56), transparent 70%);
  border-radius: 50%;
  content: "";
  filter: blur(14px);
  transform: translateX(-50%);
  animation: glow-pulse 3.8s ease-in-out infinite;
}

.signal-core img {
  position: relative;
  z-index: 2;
  width: 88%;
  filter:
    drop-shadow(0 0 48px rgba(53, 193, 227, 0.38))
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.28));
}

.signal-platform {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: min(84%, 460px);
  height: 158px;
  pointer-events: none;
  transform: translateX(-50%);
}

.signal-platform::after {
  display: none;
}

.platform-top,
.platform-rim,
.platform-band,
.platform-flare,
.platform-glow {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.platform-top {
  top: 14px;
  z-index: 2;
  width: 86%;
  height: 78px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(166, 55, 255, 0.14), transparent 15%),
    linear-gradient(180deg, rgba(11, 7, 27, 0.99), rgba(3, 4, 13, 1));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(227, 173, 1, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 -10px 22px rgba(227, 173, 1, 0.12),
    inset 0 8px 24px rgba(255, 255, 255, 0.05),
    0 0 50px rgba(123, 71, 255, 0.3);
}

.platform-rim {
  top: 44px;
  z-index: 1;
  width: 92%;
  height: 92px;
  overflow: visible;
  background:
    radial-gradient(ellipse at 50% 9%, rgba(227, 173, 1, 0.24), transparent 25%),
    linear-gradient(180deg, rgba(27, 12, 52, 0.98), rgba(3, 4, 13, 1) 72%),
    var(--near-black);
  border: 1px solid rgba(227, 173, 1, 0.34);
  border-radius: 50%;
  box-shadow:
    inset 0 -16px 26px rgba(0, 0, 0, 0.46),
    0 20px 46px rgba(0, 0, 0, 0.44),
    0 0 28px rgba(227, 173, 1, 0.14);
  animation: platform-rim-glow 4.6s ease-in-out infinite;
}

.platform-band {
  top: 64px;
  z-index: 6;
  width: 94%;
  height: 72px;
  overflow: visible;
  filter:
    drop-shadow(0 0 10px rgba(227, 173, 1, 0.72))
    drop-shadow(0 0 22px rgba(227, 173, 1, 0.22));
}

.platform-band-main,
.platform-band-glow {
  fill: none;
  stroke-linecap: round;
}

.platform-band-main {
  stroke: url(#platformBandGold);
  stroke-width: 9;
}

.platform-band-glow {
  stroke: rgba(227, 173, 1, 0.32);
  stroke-width: 18;
  filter: blur(7px);
}

.platform-flare {
  top: -34px;
  z-index: 7;
  width: 180px;
  height: 122px;
  overflow: visible;
  pointer-events: none;
  filter:
    drop-shadow(0 0 12px rgba(235, 160, 255, 0.82))
    drop-shadow(0 0 32px rgba(139, 50, 255, 0.76));
  animation: platform-light 3.9s ease-in-out infinite;
}

.flare-ray {
  fill: none;
  stroke: url(#flareRayGlow);
  stroke-linecap: round;
  stroke-width: 1.45;
  opacity: 0.82;
}

.flare-ray-primary {
  stroke-width: 1.8;
  opacity: 0.95;
}

.flare-ray.faint {
  stroke-width: 0.95;
  opacity: 0.56;
}

.flare-halo {
  fill: url(#flareCoreGlow);
  opacity: 0.46;
}

.flare-core {
  fill: #fff;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 1))
    drop-shadow(0 0 18px rgba(215, 102, 255, 0.92));
}

.platform-rim::before,
.platform-rim::after {
  position: absolute;
  left: 50%;
  display: block;
  content: "";
  transform: translateX(-50%);
}

.platform-rim::before {
  display: none;
}

.platform-rim::after {
  display: none;
}

.platform-glow {
  top: 12px;
  z-index: 4;
  width: 96px;
  height: 54px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.7) 0 3%, rgba(197, 82, 255, 0.44) 12%, rgba(123, 45, 255, 0.18) 32%, transparent 68%);
  border-radius: 50%;
  filter: blur(8px);
  animation: glow-pulse 3.9s ease-in-out infinite;
}

.platform-glow::before,
.platform-glow::after {
  display: none;
}

.signal-path {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid transparent;
  border-top-color: rgba(227, 173, 1, 0.38);
  border-radius: 50%;
  background: none;
  transform-origin: center;
  animation: signal-sweep 5s ease-in-out infinite;
}

.path-one {
  left: 3%;
  top: 14%;
  width: 88%;
  height: 280px;
  transform: rotate(-16deg);
}

.path-two {
  left: 9%;
  top: 22%;
  width: 86%;
  height: 360px;
  border-top-color: rgba(53, 193, 227, 0.22);
  transform: rotate(18deg);
  animation-delay: -1.8s;
}

.path-three {
  left: 17%;
  top: 5%;
  width: 68%;
  height: 410px;
  border-top-color: rgba(123, 111, 208, 0.28);
  transform: rotate(78deg);
  animation-delay: -3s;
}

.spark {
  position: absolute;
  z-index: 2;
  width: 20px;
  aspect-ratio: 1;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  filter: drop-shadow(0 0 14px rgba(227, 173, 1, 0.62));
  animation: twinkle 3.8s ease-in-out infinite;
}

.spark-zero {
  left: 2%;
  top: 34%;
  width: 28px;
  animation-delay: -3.4s;
}

.spark-one {
  left: 12%;
  top: 15%;
  width: 13px;
}

.spark-two {
  left: 25%;
  top: 31%;
  width: 8px;
  animation-delay: -1.1s;
}

.spark-three {
  left: 8%;
  bottom: 27%;
  width: 18px;
  animation-delay: -2s;
}

.spark-four {
  right: 6%;
  top: 18%;
  width: 16px;
  animation-delay: -0.6s;
}

.spark-five {
  right: 9%;
  bottom: 26%;
  width: 24px;
  animation-delay: -2.7s;
}

.spark-six {
  left: 35%;
  bottom: 15%;
  width: 10px;
  animation-delay: -1.7s;
}

.spark-seven {
  right: 18%;
  top: 13%;
  width: 9px;
  opacity: 0.62;
  animation-delay: -3.1s;
}

.spark-eight {
  left: 50%;
  bottom: 20%;
  width: 7px;
  animation-delay: -0.25s;
}

.spark-nine {
  left: 20%;
  top: 9%;
  width: 6px;
  animation-delay: -2.35s;
}

.spark-ten {
  right: 18%;
  top: 42%;
  width: 11px;
  animation-delay: -1.45s;
}

.spark-eleven {
  right: 32%;
  bottom: 11%;
  width: 6px;
  animation-delay: -3.65s;
}

.buyer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: 34px;
}

.buyer-strip span {
  padding: 9px 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.system-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin-top: 58px;
}

.system-node {
  min-height: 126px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
}

.system-node:nth-child(2) {
  border-top-color: var(--gold-bright);
}

.system-node:nth-child(3) {
  border-top-color: var(--light-purple);
}

.system-node:nth-child(4) {
  border-top-color: var(--cyan);
}

.system-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.system-node span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
  background: var(--field);
}

.section.compact {
  padding: 58px 0;
}

.section.soft {
  background: var(--field);
}

.section.deep {
  color: var(--white);
  background: var(--deep-indigo);
}

.section.deep h2,
.section.deep h3,
.section.deep h4 {
  color: var(--white);
}

.section.deep .lead,
.section.deep p,
.section.deep li {
  color: rgba(255, 255, 255, 0.78);
}

.intro-flow {
  color: var(--white);
  background:
    linear-gradient(180deg, #050613 0%, #09081d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reveal-band {
  display: grid;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.reveal-band .lead,
.reveal-band p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.reveal-band p:not(.eyebrow) {
  max-width: 820px;
}

.buyer-why {
  max-width: 1100px;
}

.buyer-reality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  text-align: left;
}

.buyer-reality-grid article {
  position: relative;
  min-height: 214px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 111, 208, 0.28);
  border-top: 4px solid var(--gold-bright);
  border-radius: 8px;
}

.buyer-reality-grid article::before {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 28px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.46));
}

.buyer-reality-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.buyer-reality-grid p {
  margin-bottom: 0;
}

.stack-diagram-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  scroll-margin-top: 98px;
  background:
    radial-gradient(circle at 18% 16%, rgba(53, 193, 227, 0.14), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(227, 173, 1, 0.12), transparent 32%),
    linear-gradient(180deg, #09081d 0%, #0c0824 52%, #050613 100%);
}

.stack-diagram-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(227, 173, 1, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 72%, rgba(53, 193, 227, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 18%, rgba(227, 173, 1, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 70%, rgba(123, 111, 208, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 94% 34%, rgba(227, 173, 1, 0.66) 0 1px, transparent 2px);
  opacity: 0.62;
  animation: starfield-drift 13s ease-in-out infinite;
}

.stack-diagram-section .container {
  position: relative;
}

.stack-diagram-section h2 {
  color: var(--white);
}

.stack-diagram-section .lead {
  color: rgba(255, 255, 255, 0.74);
}

.supply-stack-diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(190px, 0.3fr) minmax(310px, 0.72fr) minmax(220px, 0.48fr);
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 46%, rgba(227, 173, 1, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 19, 0.68);
  border: 1px solid rgba(123, 111, 208, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

.supply-stack-diagram::before {
  position: absolute;
  left: 30%;
  right: 17%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 193, 227, 0.2), var(--cyan-bright), var(--gold-bright), rgba(53, 193, 227, 0.4));
  content: "";
  filter: drop-shadow(0 0 14px rgba(53, 193, 227, 0.35));
}

.supply-stack-diagram::after {
  position: absolute;
  left: 51%;
  top: 50%;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(227, 173, 1, 0.28);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  animation: bottleneck-pulse 4s ease-in-out infinite;
}

.enterprise-systems,
.carrier-systems {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.stack-system,
.carrier-systems article {
  position: relative;
  min-height: 104px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(74, 31, 168, 0.26), rgba(5, 6, 19, 0.84)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(123, 111, 208, 0.3);
  border-radius: 8px;
}

.stack-system::after {
  position: absolute;
  right: -12px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), rgba(53, 193, 227, 0));
  content: "";
  transform: translateY(-50%);
  filter: drop-shadow(0 0 10px rgba(53, 193, 227, 0.4));
}

.stack-system span,
.carrier-systems span,
.bottleneck-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-system strong,
.carrier-systems strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.stack-system p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.integration-lanes {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 430px;
}

.opti-layer-zone {
  position: relative;
  z-index: 3;
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: minmax(190px, 0.3fr) minmax(310px, 0.72fr);
  gap: 20px;
  align-items: center;
  padding: 54px 18px 18px;
  background:
    radial-gradient(circle at 68% 28%, rgba(53, 193, 227, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(53, 193, 227, 0.06), rgba(74, 31, 168, 0.08));
  border: 1px solid rgba(53, 193, 227, 0.7);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(53, 193, 227, 0.08),
    0 0 34px rgba(53, 193, 227, 0.12);
}

.opti-layer-zone::before,
.opti-layer-zone::after {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--cyan-bright);
  content: "";
  filter: drop-shadow(0 0 9px rgba(53, 193, 227, 0.4));
  pointer-events: none;
}

.opti-layer-zone::before {
  left: -2px;
  top: -2px;
  border-left: 3px solid var(--cyan-bright);
  border-top: 3px solid var(--cyan-bright);
  border-radius: 16px 0 0;
}

.opti-layer-zone::after {
  right: -2px;
  bottom: -2px;
  border-right: 3px solid var(--cyan-bright);
  border-bottom: 3px solid var(--cyan-bright);
  border-radius: 0 0 16px;
}

.opti-layer-badge {
  position: absolute;
  left: 22px;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 9px 13px;
  background: var(--cyan-bright);
  border: 4px solid #09081d;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(53, 193, 227, 0.3);
  transform: translateY(-50%);
}

.opti-layer-badge span,
.opti-layer-badge strong {
  color: var(--deep-indigo);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.opti-layer-badge span {
  padding-right: 9px;
  border-right: 1px solid rgba(12, 8, 36, 0.28);
}

.opti-layer-actions {
  position: relative;
  z-index: 4;
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.opti-layer-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 850;
  background: rgba(5, 6, 19, 0.64);
  border: 1px solid rgba(53, 193, 227, 0.28);
  border-radius: 999px;
}

.opti-layer-actions span::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(53, 193, 227, 0.7);
  content: "";
}

.lane {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(5, 6, 19, 0.94), rgba(30, 11, 60, 0.9));
  border: 1px solid rgba(53, 193, 227, 0.28);
  border-radius: 999px;
  box-shadow:
    0 0 0 4px rgba(5, 6, 19, 0.72),
    0 0 22px rgba(53, 193, 227, 0.18);
}

.lane::before,
.lane::after {
  position: absolute;
  top: 50%;
  z-index: -1;
  height: 2px;
  content: "";
  transform: translateY(-50%);
}

.lane::before {
  left: -54px;
  right: calc(100% + 12px);
  background: linear-gradient(90deg, rgba(53, 193, 227, 0), var(--cyan-bright));
}

.lane::after {
  left: calc(100% + 12px);
  right: -54px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(227, 173, 1, 0));
}

.lane-one,
.lane-three {
  transform: translateX(6px);
}

.lane-two,
.lane-four {
  transform: translateX(-8px);
}

.shipping-bottleneck {
  position: relative;
  z-index: 3;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(227, 173, 1, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.42), rgba(5, 6, 19, 0.92));
  border: 1px solid rgba(227, 173, 1, 0.44);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(53, 193, 227, 0.12),
    0 0 44px rgba(227, 173, 1, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.shipping-bottleneck::before {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  height: 34px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.62));
  opacity: 0.82;
}

.shipping-bottleneck h3 {
  max-width: 280px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.shipping-bottleneck p:not(.bottleneck-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.shipping-bottleneck .bottleneck-note {
  margin-top: 14px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottleneck-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.bottleneck-pills span {
  padding: 7px 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(53, 193, 227, 0.12);
  border: 1px solid rgba(53, 193, 227, 0.28);
  border-radius: 999px;
}

.carrier-systems article {
  min-height: 72px;
  padding: 13px 14px;
  border-color: rgba(53, 193, 227, 0.26);
}

.carrier-systems {
  gap: 8px;
}

.carrier-systems span {
  margin-bottom: 5px;
  font-size: 0.69rem;
}

.carrier-systems strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.carrier-systems article::before {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 173, 1, 0), var(--gold-bright));
  content: "";
  transform: translateY(-50%);
}

.stack-diagram-star {
  position: absolute;
  z-index: 4;
  width: 38px;
  height: 38px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  pointer-events: none;
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.55));
  animation: twinkle 3.8s ease-in-out infinite;
}

.star-a {
  left: 45%;
  top: 18px;
}

.star-b {
  right: 7%;
  bottom: 28px;
  width: 28px;
  height: 28px;
  animation-delay: 1.1s;
}

.domino-effects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.domino-effects article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 111, 208, 0.3);
  border-radius: 8px;
}

.domino-effects article::before {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan-bright), transparent);
  content: "";
}

.domino-effects span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-bright);
  font-weight: 900;
}

.domino-effects strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.domino-effects p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.bridge-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 173, 1, 0.12), transparent 34%),
    linear-gradient(180deg, #09081d 0%, #050613 100%);
}

.bridge-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 11% 18%, rgba(227, 173, 1, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 72%, rgba(53, 193, 227, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 28%, rgba(227, 173, 1, 0.78) 0 1px, transparent 2px),
    radial-gradient(circle at 77% 64%, rgba(123, 111, 208, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 24%, rgba(227, 173, 1, 0.62) 0 1px, transparent 2px);
  opacity: 0.78;
  animation: starfield-drift 13s ease-in-out infinite;
}

.bridge-context {
  position: relative;
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.bridge-context h2 {
  color: var(--white);
}

.bridge-context .lead {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.bridge-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-height: 255px;
  align-items: center;
}

.bridge-graphic::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 193, 227, 0.15), var(--cyan-bright), var(--gold-bright), rgba(123, 111, 208, 0.2));
  content: "";
  filter: drop-shadow(0 0 14px rgba(53, 193, 227, 0.3));
}

.bridge-graphic::after {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 28%;
  height: 46%;
  border: 1px solid rgba(227, 173, 1, 0.24);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  content: "";
}

.bridge-star {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 1;
  width: 56px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 18px rgba(227, 173, 1, 0.58));
  animation: star-glow 3.4s ease-in-out infinite;
}

.bridge-orbits {
  position: absolute;
  inset: 18% 19%;
  border: 1px solid rgba(123, 111, 208, 0.28);
  border-radius: 50%;
  transform: rotate(-4deg);
  animation: orbit-drift 30s linear infinite;
}

.bridge-node {
  position: relative;
  z-index: 2;
  min-height: 144px;
  padding: 26px;
  color: var(--white);
  background: rgba(5, 6, 19, 0.68);
  border: 1px solid rgba(227, 173, 1, 0.26);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.bridge-node span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-weight: 900;
}

.bridge-node strong,
.bridge-node em {
  display: block;
}

.bridge-node strong {
  font-size: 1.12rem;
}

.bridge-node em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
}

.node-layer {
  transform: translateY(-24px);
  border-color: rgba(53, 193, 227, 0.42);
}

.reveal-band h2,
.dark-flow h2,
.proof-night h2,
.motion-section h2 {
  color: var(--white);
}

.reveal-band p,
.dark-flow p,
.proof-night p,
.motion-section p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-flow {
  color: var(--white);
  background:
    linear-gradient(180deg, #09081d 0%, #050613 100%);
}

.home-method-section {
  scroll-margin-top: 98px;
}

.dark-flow .section-header {
  justify-content: center;
  text-align: center;
}

.dark-flow .section-header > div {
  max-width: 850px;
}

.dark-flow .section-header .lead,
.section-header.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

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

.lens-panel {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(74, 31, 168, 0.22), rgba(5, 6, 19, 0.86)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 111, 208, 0.3);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lens-panel::before,
.article-card::before,
.founder-card::before {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.78;
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.45));
}

.lens-panel::after {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold-bright), transparent);
  content: "";
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 180ms ease;
}

.lens-panel:hover::after {
  transform: scaleX(1);
}

.lens-panel > span:first-child {
  color: var(--gold-bright);
  font-weight: 900;
}

.lens-panel h3 {
  margin-top: 70px;
  color: var(--white);
}

.lens-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.ace-grid .lens-panel h3 {
  margin-top: 22px;
}

.ace-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-top: 36px;
  color: var(--cyan-bright);
  background:
    radial-gradient(circle at 36% 30%, rgba(53, 193, 227, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(53, 193, 227, 0.16), rgba(227, 173, 1, 0.1));
  border: 1px solid rgba(53, 193, 227, 0.46);
  border-radius: 18px;
  box-shadow:
    0 0 28px rgba(53, 193, 227, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ace-icon svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.ace-icon path,
.ace-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choose-icon {
  color: var(--gold-bright);
  border-color: rgba(227, 173, 1, 0.5);
  box-shadow:
    0 0 28px rgba(227, 173, 1, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.execute-icon {
  color: var(--cyan-bright);
  background:
    radial-gradient(circle at 62% 22%, rgba(227, 173, 1, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(53, 193, 227, 0.16), rgba(123, 111, 208, 0.14));
}

.motion-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, #050613 0%, #0d0824 52%, #050613 100%);
}

.motion-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 9% 20%, rgba(227, 173, 1, 0.76) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 72%, rgba(53, 193, 227, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 24%, rgba(227, 173, 1, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 80%, rgba(123, 111, 208, 0.68) 0 1px, transparent 2px);
  opacity: 0.55;
  animation: starfield-drift 12s ease-in-out infinite;
}

.motion-section .container {
  position: relative;
}

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

.work-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(5, 6, 19, 0.78), rgba(30, 11, 60, 0.7)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.work-card::before {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.7;
  filter: drop-shadow(0 0 14px rgba(227, 173, 1, 0.5));
}

.work-card.accent-purple {
  border-top-color: var(--light-purple);
}

.work-card.accent-gold {
  border-top-color: var(--gold-bright);
}

.work-card .eyebrow {
  color: var(--cyan-bright);
}

.work-card.accent-gold .eyebrow {
  color: var(--gold-bright);
}

.work-card h3 {
  max-width: 320px;
  margin-top: 46px;
  color: var(--white);
}

.work-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.solution-preview-card {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 18%, rgba(53, 193, 227, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(5, 6, 19, 0.78), rgba(30, 11, 60, 0.72)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.solution-preview-card::before {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.7;
  filter: drop-shadow(0 0 14px rgba(227, 173, 1, 0.5));
}

.solution-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 173, 1, 0.42);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.3);
}

.solution-preview-card.accent-purple {
  border-top-color: var(--light-purple);
}

.solution-preview-card.accent-gold {
  border-top-color: var(--gold-bright);
}

.solution-preview-card span {
  align-self: start;
  max-width: 220px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-preview-card h3 {
  align-self: end;
  margin-top: 58px;
  color: var(--white);
  font-size: 1.28rem;
}

.solution-preview-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.centered-actions {
  justify-content: center;
}

.stack-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.stack-steps {
  display: grid;
  gap: 14px;
}

.stack-steps div {
  position: relative;
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 14px 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stack-steps div::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--cyan-bright);
  content: "";
  animation: trace-grow 4s ease-in-out infinite;
}

.stack-steps span {
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.stack-steps strong {
  color: var(--white);
  font-size: 1.18rem;
}

.stack-steps em {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.proof-night {
  color: var(--white);
  background: #050613;
}

.proof-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 28%, rgba(74, 31, 168, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(19, 10, 45, 0.9), rgba(5, 6, 19, 0.96)),
    #09081d;
  border: 1px solid rgba(123, 111, 208, 0.32);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.proof-stage h2 {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}

.proof-stage .lead {
  color: rgba(255, 255, 255, 0.86);
}

.proof-night .audit-line {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.proof-night .audit-line strong,
.proof-night .audit-score {
  color: var(--white);
}

.proof-night .audit-meter {
  background: rgba(255, 255, 255, 0.12);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(74, 31, 168, 0.28), transparent 32%),
    radial-gradient(circle at 84% 64%, rgba(53, 193, 227, 0.1), transparent 30%),
    #050613;
}

.cta-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 24%, rgba(227, 173, 1, 0.66) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 70%, rgba(53, 193, 227, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 22%, rgba(227, 173, 1, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 76%, rgba(123, 111, 208, 0.56) 0 1px, transparent 2px);
  opacity: 0.78;
  animation: starfield-drift 11s ease-in-out infinite;
}

.cta-section .container {
  position: relative;
}

.audit-workbench {
  background:
    linear-gradient(180deg, #f8f8fa, #eeedfe);
}

.switchboard-section {
  color: var(--white);
  background: #050613;
}

.solution-sticky-nav {
  position: sticky;
  top: 78px;
  z-index: 12;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 19, 0.94), rgba(19, 10, 45, 0.94)),
    #050613;
  border-top: 1px solid rgba(227, 173, 1, 0.24);
  border-bottom: 1px solid rgba(123, 111, 208, 0.26);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.solution-sticky-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
}

.solution-sticky-inner a {
  flex: 0 0 auto;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.solution-sticky-inner a:hover {
  color: var(--deep-indigo);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(227, 173, 1, 0.24);
}

.solution-switchboard {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-detail-stack {
  display: grid;
  gap: 28px;
}

.solution-detail {
  --solution-accent: var(--cyan-bright);
  --solution-accent-rgb: 53, 193, 227;
  position: relative;
  display: grid;
  gap: 28px;
  padding: 34px;
  overflow: hidden;
  scroll-margin-top: 172px;
  background:
    radial-gradient(circle at 92% 10%, rgba(53, 193, 227, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.18), rgba(5, 6, 19, 0.92)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 5px solid var(--solution-accent);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.solution-detail::before {
  position: absolute;
  right: 26px;
  top: 76px;
  width: 36px;
  height: 36px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.62;
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.5));
}

.solution-detail.accent-purple {
  --solution-accent: var(--light-purple);
  --solution-accent-rgb: 123, 111, 208;
}

.solution-detail.accent-gold {
  --solution-accent: var(--gold-bright);
  --solution-accent-rgb: 227, 173, 1;
}

.solution-section-marker {
  position: absolute;
  right: 26px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: var(--solution-accent);
}

.solution-section-marker span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-section-marker strong {
  font-size: 2rem;
  line-height: 0.8;
}

.solution-chapter-signature {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px;
  background: rgba(var(--solution-accent-rgb), 0.07);
  border: 1px solid rgba(var(--solution-accent-rgb), 0.22);
  border-radius: 999px;
}

.solution-chapter-signature span,
.solution-chapter-signature strong {
  padding: 5px 9px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.solution-chapter-signature span {
  color: var(--deep-indigo);
  background: var(--solution-accent);
  border-radius: 999px;
}

.solution-chapter-signature strong {
  color: rgba(255, 255, 255, 0.72);
}

.solution-theme-1 .solution-chapter-signature {
  border-radius: 6px;
}

.solution-theme-2 .solution-chapter-signature {
  border-style: dashed;
}

.solution-theme-3 .solution-chapter-signature {
  box-shadow: 0 0 22px rgba(123, 111, 208, 0.12);
}

.solution-theme-4 .solution-chapter-signature {
  border-left-width: 4px;
  border-radius: 4px 999px 999px 4px;
}

.solution-theme-5 .solution-chapter-signature {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(var(--solution-accent-rgb), 0.08);
}

.solution-theme-6 .solution-chapter-signature {
  background: linear-gradient(90deg, rgba(var(--solution-accent-rgb), 0.14), rgba(var(--solution-accent-rgb), 0.03));
}

.solution-theme-1 {
  background:
    linear-gradient(rgba(53, 193, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 193, 227, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 92% 10%, rgba(53, 193, 227, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(15, 63, 84, 0.28), rgba(5, 6, 19, 0.94));
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.solution-theme-2 {
  background:
    radial-gradient(circle at 8% 12%, rgba(227, 173, 1, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(91, 62, 8, 0.32), rgba(5, 6, 19, 0.94) 64%);
}

.solution-theme-3 {
  background:
    radial-gradient(ellipse at 50% -8%, rgba(123, 111, 208, 0.26), transparent 44%),
    linear-gradient(160deg, rgba(51, 27, 103, 0.4), rgba(5, 6, 19, 0.94));
}

.solution-theme-4 {
  --solution-accent: #79d9ee;
  --solution-accent-rgb: 121, 217, 238;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(53, 193, 227, 0.08) 58% 59%, transparent 59%),
    radial-gradient(circle at 88% 82%, rgba(53, 193, 227, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(8, 52, 80, 0.3), rgba(5, 6, 19, 0.94));
}

.solution-theme-5 {
  --solution-accent: #b9a8ff;
  --solution-accent-rgb: 185, 168, 255;
  background:
    radial-gradient(circle at 12% 88%, rgba(123, 111, 208, 0.22), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(185, 168, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(49, 24, 98, 0.38), rgba(5, 6, 19, 0.94));
}

.solution-theme-6 {
  --solution-accent: #f0c84b;
  --solution-accent-rgb: 240, 200, 75;
  background:
    repeating-linear-gradient(135deg, rgba(240, 200, 75, 0.035) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 86% 18%, rgba(227, 173, 1, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(78, 55, 13, 0.3), rgba(5, 6, 19, 0.94));
}

.solution-detail-copy {
  max-width: 900px;
}

.solution-detail-copy h2 {
  max-width: 860px;
  padding-left: 16px;
  color: var(--white);
  border-left: 3px solid var(--solution-accent);
}

.solution-detail-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}

.solution-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 32%, rgba(53, 193, 227, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(227, 173, 1, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(var(--solution-accent-rgb), 0.28);
  border-radius: 8px;
}

.solution-visual::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 112%, transparent 54%, rgba(123, 111, 208, 0.22) 55%, transparent 56%),
    radial-gradient(ellipse at 88% -12%, transparent 62%, rgba(227, 173, 1, 0.14) 63%, transparent 64%);
  content: "";
  opacity: 0.65;
}

.solution-visual-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28px, 0.18fr) minmax(0, 1fr) minmax(28px, 0.18fr) minmax(0, 0.8fr);
  gap: 10px;
  align-items: center;
  min-height: 132px;
}

.visual-star {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 34px;
  height: 34px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  filter: drop-shadow(0 0 14px rgba(227, 173, 1, 0.54));
  transform: translateX(-50%);
  animation: twinkle 3.8s ease-in-out infinite;
}

.visual-node {
  min-width: 0;
  padding: 16px;
  overflow-wrap: break-word;
  background:
    linear-gradient(145deg, rgba(5, 6, 19, 0.72), rgba(38, 16, 90, 0.54)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.visual-node small,
.visual-node strong {
  display: block;
}

.visual-node small {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-node strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.16;
}

.visual-node-focus {
  border-color: rgba(53, 193, 227, 0.5);
  box-shadow:
    0 0 26px rgba(53, 193, 227, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visual-node-owned {
  border-color: rgba(227, 173, 1, 0.4);
}

.visual-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold-bright));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(53, 193, 227, 0.28);
  transform-origin: left;
  animation: trace-grow 4.2s ease-in-out infinite;
}

.connector-two {
  animation-delay: 0.8s;
}

.solution-visual-pills {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: center;
}

.solution-visual-pills span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 3px solid var(--solution-accent);
  border-radius: 6px;
}

.solution-visual-pills span:nth-child(2) {
  border-left-color: var(--gold-bright);
}

.solution-visual-pills span:nth-child(3) {
  border-left-color: var(--light-purple);
}

.solution-detail-copy p:not(.eyebrow):not(.lead),
.solution-block p,
.solution-output-strip span {
  color: rgba(255, 255, 255, 0.68);
}

.solution-block-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.solution-block {
  min-height: 0;
  height: 100%;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(123, 111, 208, 0.25);
  border-radius: 8px;
}

.solution-detail .solution-block {
  border-top: 2px solid rgba(var(--solution-accent-rgb), 0.46);
}

.solution-theme-2 .solution-visual-map,
.solution-theme-4 .solution-visual-map,
.solution-theme-6 .solution-visual-map {
  order: 2;
}

.solution-theme-2 .solution-visual-pills,
.solution-theme-4 .solution-visual-pills,
.solution-theme-6 .solution-visual-pills {
  order: 1;
}

.solution-theme-2 .solution-visual,
.solution-theme-4 .solution-visual,
.solution-theme-6 .solution-visual {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
}

.solution-block h3 {
  color: var(--white);
}

.solution-output-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(var(--solution-accent-rgb), 0.09);
  border: 1px solid rgba(var(--solution-accent-rgb), 0.25);
  border-radius: 8px;
}

.solution-output-strip span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .solution-visual,
  .solution-theme-2 .solution-visual,
  .solution-theme-4 .solution-visual,
  .solution-theme-6 .solution-visual {
    grid-template-columns: 1fr;
  }

  .solution-theme-2 .solution-visual-map,
  .solution-theme-4 .solution-visual-map,
  .solution-theme-6 .solution-visual-map,
  .solution-theme-2 .solution-visual-pills,
  .solution-theme-4 .solution-visual-pills,
  .solution-theme-6 .solution-visual-pills {
    order: initial;
  }
}

.solution-output-strip strong {
  color: var(--solution-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 1181px) {
  .solution-theme-1,
  .solution-theme-2,
  .solution-theme-3,
  .solution-theme-4,
  .solution-theme-5,
  .solution-theme-6 {
    align-items: stretch;
  }

  .solution-theme-1 {
    grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
    grid-template-areas:
      "copy output"
      "visual visual"
      "blocks blocks";
  }

  .solution-theme-2 {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "copy visual"
      "blocks blocks"
      "output output";
    border-radius: 30px 8px 30px 8px;
  }

  .solution-theme-3 {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    grid-template-areas:
      "copy copy"
      "visual blocks"
      "output blocks";
  }

  .solution-theme-4 {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas:
      "visual copy"
      "blocks blocks"
      "output output";
    border-radius: 8px 30px 8px 30px;
  }

  .solution-theme-5 {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    grid-template-areas:
      "copy blocks"
      "visual blocks"
      "output output";
  }

  .solution-theme-6 {
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
    grid-template-areas:
      "copy copy"
      "blocks visual"
      "output visual";
  }

  .solution-theme-1 .solution-detail-copy,
  .solution-theme-2 .solution-detail-copy,
  .solution-theme-3 .solution-detail-copy,
  .solution-theme-4 .solution-detail-copy,
  .solution-theme-5 .solution-detail-copy,
  .solution-theme-6 .solution-detail-copy {
    grid-area: copy;
  }

  .solution-theme-1 .solution-visual,
  .solution-theme-2 .solution-visual,
  .solution-theme-3 .solution-visual,
  .solution-theme-4 .solution-visual,
  .solution-theme-5 .solution-visual,
  .solution-theme-6 .solution-visual {
    grid-area: visual;
  }

  .solution-theme-1 .solution-block-grid,
  .solution-theme-2 .solution-block-grid,
  .solution-theme-3 .solution-block-grid,
  .solution-theme-4 .solution-block-grid,
  .solution-theme-5 .solution-block-grid,
  .solution-theme-6 .solution-block-grid {
    grid-area: blocks;
  }

  .solution-theme-1 .solution-output-strip,
  .solution-theme-2 .solution-output-strip,
  .solution-theme-3 .solution-output-strip,
  .solution-theme-4 .solution-output-strip,
  .solution-theme-5 .solution-output-strip,
  .solution-theme-6 .solution-output-strip {
    grid-area: output;
  }

  .solution-theme-1 .solution-output-strip {
    display: grid;
    align-content: center;
    padding: 28px;
    border-left: 5px solid var(--solution-accent);
  }

  .solution-theme-2 .solution-visual,
  .solution-theme-4 .solution-visual,
  .solution-theme-6 .solution-visual {
    grid-template-columns: 1fr;
  }

  .solution-theme-2 .solution-visual-map,
  .solution-theme-4 .solution-visual-map,
  .solution-theme-6 .solution-visual-map,
  .solution-theme-2 .solution-visual-pills,
  .solution-theme-4 .solution-visual-pills,
  .solution-theme-6 .solution-visual-pills {
    order: initial;
  }

  .solution-theme-3 .solution-block-grid,
  .solution-theme-5 .solution-block-grid,
  .solution-theme-6 .solution-block-grid {
    grid-template-columns: 1fr;
  }

  .solution-theme-3 .solution-block {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    border-top-width: 1px;
    border-left: 4px solid rgba(var(--solution-accent-rgb), 0.7);
  }

  .solution-theme-3 .solution-block h3,
  .solution-theme-3 .solution-block p {
    margin: 0;
  }

  .solution-theme-4 .solution-block-grid {
    align-items: start;
    padding: 4px 0 14px;
  }

  .solution-theme-4 .solution-block:nth-child(2) {
    margin-top: 16px;
  }

  .solution-theme-4 .solution-block:nth-child(3) {
    margin-top: 32px;
  }

  .solution-theme-5 .solution-block {
    position: relative;
    padding-left: 52px;
    background: rgba(5, 6, 19, 0.38);
    border: 0;
    border-bottom: 1px solid rgba(var(--solution-accent-rgb), 0.3);
    border-radius: 0;
  }

  .solution-theme-5 .solution-block::before {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 18px;
    height: 18px;
    background: var(--solution-accent);
    border: 4px solid rgba(5, 6, 19, 0.88);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(var(--solution-accent-rgb), 0.7);
    content: "";
  }

  .solution-theme-6 .solution-visual {
    align-self: stretch;
    border-width: 2px;
    border-style: double;
  }

  .solution-theme-6 .solution-output-strip {
    display: grid;
    align-content: center;
    background:
      repeating-linear-gradient(135deg, rgba(var(--solution-accent-rgb), 0.05) 0 1px, transparent 1px 10px),
      rgba(var(--solution-accent-rgb), 0.09);
  }
}

.solution-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(190px, 0.38fr);
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  scroll-margin-top: 156px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.solution-row > span {
  color: var(--gold-bright);
  font-weight: 900;
}

.solution-row h3 {
  color: var(--white);
}

.solution-row p,
.solution-row em {
  color: rgba(255, 255, 255, 0.68);
}

.solution-row em {
  font-style: normal;
}

.angled-section {
  position: relative;
  background:
    linear-gradient(180deg, #eeedfe 0%, #f8f8fa 100%);
}

.failure-river {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.failure-river div {
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.failure-river strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep-indigo);
}

.method-path-section {
  color: var(--white);
  background:
    linear-gradient(180deg, #050613 0%, #0c0824 100%);
}

.method-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.method-path::before {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 65px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold-bright), var(--light-purple));
  content: "";
}

.method-path article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 0 8px;
  text-align: center;
}

.method-path span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  background: rgba(74, 31, 168, 0.28);
  border: 1px solid var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(53, 193, 227, 0.26);
}

.method-path h3 {
  color: var(--white);
  margin-bottom: 0;
}

.method-path p {
  color: rgba(255, 255, 255, 0.7);
}

.control-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.control-table div {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.52);
  border-right: 1px solid var(--line);
}

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

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-header > div {
  max-width: 780px;
}

.section-header.centered {
  justify-content: center;
  text-align: center;
}

.section-header.centered > div {
  max-width: 860px;
}

.section-header.centered > div > .lead {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(238, 237, 254, 0.42)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section .button.secondary:not(.ghost),
.article-card .button.secondary:not(.ghost),
.form-card .button.secondary:not(.ghost),
.portal-box .button.secondary:not(.ghost) {
  color: var(--deep-indigo);
  background: var(--white);
  border-color: var(--line);
}

.card.soft-card {
  background: var(--pale-purple);
  border-color: transparent;
}

.card.dark-card {
  color: var(--white);
  background: var(--dark-purple);
  border-color: rgba(255, 255, 255, 0.14);
}

.card.dark-card h3,
.card.dark-card h4 {
  color: var(--white);
}

.card.dark-card p,
.card.dark-card li {
  color: rgba(255, 255, 255, 0.78);
}

.card.accent-cyan {
  border-top: 5px solid var(--cyan-bright);
}

.card.accent-gold {
  border-top: 5px solid var(--gold-bright);
}

.card.accent-purple {
  border-top: 5px solid var(--light-purple);
}

.metric {
  padding: 22px;
  text-align: center;
  background: var(--pale-purple);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
}

.metric strong {
  display: block;
  color: var(--brand-purple);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--near-black);
  font-size: 0.92rem;
  font-weight: 700;
}

.metric:nth-child(2) {
  border-top-color: var(--light-purple);
}

.metric:nth-child(3) {
  border-top-color: var(--brand-purple);
}

.metric:nth-child(4) {
  border-top-color: var(--gold-bright);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-list,
.check-list,
.plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--deep-indigo);
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--pale-purple);
  border-radius: 999px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 13px;
  height: 13px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
}

.numbered {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.numbered-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.numbered-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--deep-indigo);
  font-weight: 900;
  background: var(--gold-bright);
  border-radius: 6px;
}

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

.diagram-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.diagram-panel.before {
  border-top: 5px solid var(--gold-bright);
}

.diagram-panel.after {
  border-top: 5px solid var(--cyan-bright);
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  color: var(--deep-indigo);
  font-weight: 900;
}

.diagram-arrow::before {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--cyan);
  content: "";
}

.proof-output {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.audit-preview {
  display: grid;
  gap: 12px;
}

.audit-line {
  display: grid;
  grid-template-columns: 120px 1fr 78px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.audit-line strong {
  color: var(--deep-indigo);
}

.audit-meter {
  height: 10px;
  overflow: hidden;
  background: var(--pale-purple);
  border-radius: 999px;
}

.audit-meter span {
  display: block;
  height: 100%;
  background: var(--cyan);
}

.audit-line.is-risk .audit-meter span {
  background: var(--gold-bright);
}

.audit-score {
  color: var(--deep-indigo);
  font-weight: 900;
  text-align: right;
}

.cta-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: 36px 34px;
  color: var(--near-black);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(227, 173, 1, 0.96), rgba(200, 150, 12, 0.88)),
    var(--gold-bright);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow:
    0 30px 96px rgba(200, 150, 12, 0.28),
    0 0 0 1px rgba(227, 173, 1, 0.32),
    0 0 70px rgba(53, 193, 227, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  content: "";
  animation: cta-sheen 7s ease-in-out infinite;
}

.cta-band::after {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.18),
    0 0 46px rgba(53, 193, 227, 0.18);
  content: "";
  opacity: 0.64;
  animation: cta-aura 4.8s ease-in-out infinite;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h3 {
  margin-bottom: 8px;
  color: var(--near-black);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.cta-band p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(13, 5, 32, 0.78);
  font-size: 1.04rem;
  font-weight: 700;
}

.cta-band .button {
  min-width: 190px;
  min-height: 48px;
  font-size: 1rem;
}

.cta-star {
  position: absolute;
  right: 38px;
  top: -48px;
  width: 142px;
  opacity: 0.34;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.32));
  animation: star-glow 3.4s ease-in-out infinite;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 24px;
  align-items: start;
}

.form-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audit-form-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 237, 254, 0.86)),
    var(--white);
  border: 1px solid rgba(227, 173, 1, 0.58);
  border-top: 7px solid var(--gold-bright);
  box-shadow:
    0 24px 70px rgba(30, 11, 60, 0.18),
    0 0 0 6px rgba(227, 173, 1, 0.08);
}

.audit-form-card h3 {
  font-size: 1.75rem;
}

.audit-right-column {
  display: grid;
  gap: 24px;
  align-content: start;
  order: -1;
}

.assessment-readout-wide {
  margin-top: 32px;
}

.assessment-readout-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 193, 227, 0.2), transparent 32%),
    linear-gradient(150deg, #21104b, #09091b 74%);
  border: 1px solid rgba(53, 193, 227, 0.32);
  border-top: 6px solid var(--cyan-bright);
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(30, 11, 60, 0.18);
}

.assessment-readout-card::after {
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.09;
  transform: rotate(18deg);
}

.assessment-readout-head,
.readout-deliverables,
.readout-decision {
  position: relative;
  z-index: 1;
}

.assessment-readout-head h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.7vw, 2rem);
}

.assessment-readout-head > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.readout-deliverables {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.readout-deliverables article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  background: rgba(5, 6, 19, 0.78);
}

.readout-deliverables article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep-indigo);
  font-size: 0.76rem;
  font-weight: 900;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(227, 173, 1, 0.22);
}

.readout-deliverables strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
}

.readout-deliverables p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.81rem;
  line-height: 1.45;
}

.readout-decision {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(130deg, rgba(53, 193, 227, 0.15), rgba(227, 173, 1, 0.08));
  border: 1px solid rgba(53, 193, 227, 0.28);
  border-left: 5px solid var(--cyan-bright);
  border-radius: 8px;
}

.readout-decision span,
.readout-decision strong {
  display: block;
}

.readout-decision span {
  color: var(--cyan-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.readout-decision strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 1.28rem;
}

.readout-decision p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

@media (min-width: 981px) {
  .audit-workbench .form-shell {
    align-items: stretch;
  }

  .audit-right-column {
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
  }

  .audit-workbench .audit-form-card {
    position: sticky;
    top: 96px;
  }
}

.assessment-example {
  position: relative;
  margin-top: 28px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(53, 193, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 193, 227, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 90% 8%, rgba(227, 173, 1, 0.18), transparent 28%),
    linear-gradient(145deg, #21104b, #070817 70%);
  background-size: 24px 24px, 24px 24px, auto, auto;
  border: 1px solid rgba(123, 111, 208, 0.34);
  border-top: 6px solid var(--cyan-bright);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(30, 11, 60, 0.2);
}

.assessment-example::after {
  position: absolute;
  right: -44px;
  top: 240px;
  width: 150px;
  height: 150px;
  background: url("/brand/marks/eye-primary.svg") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  transform: rotate(12deg);
}

.assessment-example-head,
.example-persona,
.example-intake-grid,
.example-process,
.example-outcomes,
.example-disclaimer {
  position: relative;
  z-index: 1;
}

.assessment-example-head {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.assessment-example-head h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.example-status {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--deep-indigo);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-bright);
  border-radius: 999px;
}

.example-persona {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.example-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--deep-indigo);
  font-weight: 900;
  background: linear-gradient(145deg, var(--cyan-bright), #9be9f7);
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(53, 193, 227, 0.28);
}

.example-persona strong,
.example-persona span,
.example-persona small {
  display: block;
}

.example-persona strong {
  color: var(--white);
  font-size: 1.02rem;
}

.example-persona span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.example-persona small {
  margin-top: 3px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.example-intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.example-field {
  min-width: 0;
  padding: 14px;
  background: rgba(5, 6, 19, 0.84);
}

.example-field.full {
  grid-column: 1 / -1;
}

.example-field span,
.example-field strong {
  display: block;
}

.example-field > span {
  margin-bottom: 5px;
  color: var(--cyan-bright);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.example-field strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.42;
}

.software-redaction {
  display: inline-block !important;
  width: fit-content;
  padding: 2px 8px;
  color: transparent;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 3px;
  filter: blur(4px);
  user-select: none;
}

.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;
}

.example-process {
  display: grid;
  gap: 0;
  margin-top: 22px;
  counter-reset: example-stage;
}

.example-process article {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 16px 18px 26px;
  background: rgba(255, 255, 255, 0.045);
  border-left: 2px solid var(--cyan-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-process article::before {
  position: absolute;
  left: -7px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--gold-bright);
  border: 3px solid #100827;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 14px rgba(227, 173, 1, 0.5);
}

.example-process article > span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-process article > strong {
  color: var(--white);
  font-size: 0.9rem;
}

.example-process article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.example-outcomes {
  display: grid;
  grid-template-columns: minmax(160px, 0.52fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: 20px;
  background: linear-gradient(125deg, rgba(53, 193, 227, 0.16), rgba(123, 111, 208, 0.11));
  border: 1px solid rgba(53, 193, 227, 0.3);
  border-radius: 8px;
}

.example-outcomes-title span,
.example-outcomes-title strong {
  display: block;
}

.example-outcomes-title span {
  color: var(--cyan-bright);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.example-outcomes-title strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 1.15rem;
}

.example-outcomes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.example-outcomes li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.example-outcomes li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 10px rgba(227, 173, 1, 0.4);
}

.example-disclaimer {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Assessment focus pass: keep the form primary and supporting material quiet. */
.audit-workbench .form-shell {
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 0.68fr);
  gap: 32px;
}

.audit-workbench-intro {
  margin-bottom: 32px;
}

.audit-workbench-intro h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.audit-workbench-intro > .lead {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.audit-workbench .audit-form-card {
  background: var(--white);
  border-color: rgba(227, 173, 1, 0.68);
  box-shadow:
    0 28px 76px rgba(30, 11, 60, 0.2),
    0 0 0 7px rgba(227, 173, 1, 0.09);
}

.audit-workbench .assessment-example {
  margin-top: 0;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  background-size: auto;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(53, 193, 227, 0.62);
  box-shadow: none;
}

.audit-workbench .assessment-example::after,
.audit-workbench .assessment-readout-card::after {
  display: none;
}

.audit-workbench .assessment-example-head {
  margin-bottom: 16px;
}

.audit-workbench .assessment-example-head h3 {
  color: var(--deep-indigo);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.audit-workbench .example-status {
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.audit-workbench .example-persona {
  padding: 14px;
  background: rgba(238, 237, 254, 0.58);
  border-color: var(--line);
}

.audit-workbench .example-avatar {
  color: var(--white);
  background: var(--brand-purple);
  border: 0;
  box-shadow: none;
}

.audit-workbench .example-persona strong {
  color: var(--deep-indigo);
}

.audit-workbench .example-persona span {
  color: var(--muted);
}

.audit-workbench .example-persona small {
  color: var(--brand-purple);
}

.audit-workbench .example-intake-grid {
  gap: 0;
  margin-top: 14px;
  background: transparent;
  border-color: var(--line);
}

.audit-workbench .example-field {
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audit-workbench .example-field:nth-child(2n),
.audit-workbench .example-field.full {
  border-right: 0;
}

.audit-workbench .example-field > span {
  color: var(--brand-purple);
}

.audit-workbench .example-field strong {
  color: var(--ink);
}

.audit-workbench .software-redaction {
  background: rgba(13, 5, 32, 0.78);
}

.audit-workbench .example-process {
  margin-top: 16px;
}

.audit-workbench .example-process article {
  grid-template-columns: 84px minmax(120px, 0.48fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 12px 14px 18px;
  background: transparent;
  border-left: 2px solid rgba(53, 193, 227, 0.5);
  border-bottom-color: var(--line);
}

.audit-workbench .example-process article::before {
  display: none;
}

.audit-workbench .example-process article > span {
  color: var(--brand-purple);
}

.audit-workbench .example-process article > strong {
  color: var(--deep-indigo);
}

.audit-workbench .example-process article p {
  color: var(--muted);
}

.audit-workbench .example-outcomes {
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(238, 237, 254, 0.54);
  border-color: var(--line);
}

.audit-workbench .example-outcomes-title span {
  color: var(--brand-purple);
}

.audit-workbench .example-outcomes-title strong {
  color: var(--deep-indigo);
  font-size: 1.02rem;
}

.audit-workbench .example-outcomes li {
  color: var(--muted);
}

.audit-workbench .example-outcomes li::before {
  background: var(--cyan);
  box-shadow: none;
}

.audit-workbench .example-disclaimer {
  color: var(--muted);
}

.audit-workbench .assessment-readout-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(53, 193, 227, 0.62);
  box-shadow: none;
}

.audit-workbench .assessment-readout-head h3 {
  color: var(--deep-indigo);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.audit-workbench .assessment-readout-head > p:last-child {
  color: var(--muted);
}

.audit-workbench .readout-deliverables {
  gap: 0;
  background: transparent;
  border-color: var(--line);
}

.audit-workbench .readout-deliverables article {
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid var(--line);
}

.audit-workbench .readout-deliverables article:last-child {
  border-bottom: 0;
}

.audit-workbench .readout-deliverables article > span {
  color: var(--brand-purple);
  background: rgba(238, 237, 254, 0.8);
  border: 1px solid rgba(74, 31, 168, 0.18);
  box-shadow: none;
}

.audit-workbench .readout-deliverables strong {
  color: var(--deep-indigo);
}

.audit-workbench .readout-deliverables p {
  color: var(--muted);
}

.audit-workbench .readout-decision {
  padding: 17px;
  background: rgba(53, 193, 227, 0.07);
  border-color: rgba(53, 193, 227, 0.22);
  border-left-width: 3px;
}

.audit-workbench .readout-decision span {
  color: var(--brand-purple);
}

.audit-workbench .readout-decision strong {
  color: var(--deep-indigo);
}

.audit-workbench .readout-decision p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .audit-workbench .form-shell {
    grid-template-columns: 1fr;
  }

  .audit-right-column {
    order: -1;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--deep-indigo);
  font-size: 0.86rem;
  font-weight: 900;
}

.field label span {
  display: inline-flex;
  margin-left: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field label span.required {
  color: var(--gold);
}

.field label span.optional {
  color: var(--cyan);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.method-step {
  position: relative;
  padding: 28px;
  color: var(--white);
  background: var(--deep-indigo);
  border-top: 5px solid var(--cyan-bright);
  border-radius: 8px;
}

.method-step:nth-child(2) {
  border-top-color: var(--gold-bright);
}

.method-step:nth-child(3) {
  border-top-color: var(--light-purple);
}

.method-step span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-step h3 {
  color: var(--white);
}

.method-step p {
  color: rgba(255, 255, 255, 0.78);
}

.resource-hero {
  overflow: hidden;
}

.resource-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.resource-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  isolation: isolate;
}

.resource-orbit::before,
.resource-orbit::after {
  position: absolute;
  inset: 12%;
  z-index: -1;
  border: 1px solid rgba(227, 173, 1, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-16deg);
  animation: orbit-drift 22s linear infinite;
}

.resource-orbit::after {
  inset: 22% 4% 18%;
  border-color: rgba(53, 193, 227, 0.32);
  transform: rotate(18deg);
  animation-duration: 28s;
  animation-direction: reverse;
}

.resource-orbit img {
  width: 150px;
  filter: drop-shadow(0 0 34px rgba(53, 193, 227, 0.32));
  animation: eye-breathe 4.2s ease-in-out infinite;
}

.orbit-node {
  position: absolute;
  min-width: 86px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  background: rgba(5, 6, 19, 0.78);
  border: 1px solid rgba(227, 173, 1, 0.32);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(53, 193, 227, 0.12);
}

.node-a {
  left: 4%;
  top: 22%;
}

.node-b {
  right: 8%;
  top: 28%;
}

.node-c {
  left: 13%;
  bottom: 18%;
}

.node-d {
  right: 14%;
  bottom: 15%;
}

.orbit-star {
  position: absolute;
  right: 28%;
  top: 8%;
  width: 44px;
  height: 44px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(227, 173, 1, 0.7));
  animation: twinkle 3.4s ease-in-out infinite;
}

.shipping-news-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 2%, rgba(227, 173, 1, 0.16), transparent 32%),
    radial-gradient(circle at 83% 18%, rgba(53, 193, 227, 0.12), transparent 30%),
    linear-gradient(180deg, #050613 0%, #11082c 52%, #050613 100%);
}

.shipping-news-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(227, 173, 1, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 19% 72%, rgba(53, 193, 227, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 22%, rgba(227, 173, 1, 0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 70%, rgba(123, 111, 208, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 28%, rgba(227, 173, 1, 0.64) 0 1px, transparent 2px);
  opacity: 0.78;
  animation: starfield-drift 14s ease-in-out infinite;
}

.shipping-news-section::after {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(53, 193, 227, 0.5), rgba(227, 173, 1, 0.5), transparent);
  content: "";
  opacity: 0.5;
  filter: drop-shadow(0 0 14px rgba(53, 193, 227, 0.24));
}

.news-constellation {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.news-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
}

.news-section-head h2 {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--white);
}

.news-section-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-import-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(53, 193, 227, 0.1), rgba(227, 173, 1, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(227, 173, 1, 0.22);
  border-radius: 8px;
}

.news-import-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(5, 6, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

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

.news-system-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-signal-card {
  position: relative;
  display: grid;
  min-height: 306px;
  align-content: start;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(227, 173, 1, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(30, 11, 60, 0.64), rgba(5, 6, 19, 0.9));
  border: 1px solid rgba(227, 173, 1, 0.2);
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.news-signal-card::before {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 24px;
  height: 24px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.7));
  opacity: 0.82;
}

.news-signal-card::after {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold-bright), transparent);
  content: "";
  opacity: 0.72;
}

.news-signal-card:hover,
.news-signal-card:focus {
  border-color: rgba(53, 193, 227, 0.46);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.32), 0 0 36px rgba(53, 193, 227, 0.12);
  transform: translateY(-3px);
}

.news-signal-card.is-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 193, 227, 0.16), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(227, 173, 1, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.5), rgba(5, 6, 19, 0.9));
}

.news-signal-card.is-watch-lane {
  grid-column: 1 / -1;
  min-height: 235px;
  background:
    radial-gradient(circle at 10% 50%, rgba(227, 173, 1, 0.14), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(53, 193, 227, 0.15), transparent 30%),
    linear-gradient(90deg, rgba(74, 31, 168, 0.48), rgba(5, 6, 19, 0.9));
}

.news-type,
.news-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  border-radius: 999px;
}

.news-type {
  color: var(--deep-indigo);
  background: var(--gold-bright);
}

.news-date {
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-signal-card h3 {
  margin-top: 58px;
  color: var(--white);
  font-size: 1.32rem;
}

.news-system-tags {
  margin: 0 0 14px;
}

.news-system-tags span {
  color: var(--deep-indigo);
  background: rgba(227, 173, 1, 0.88);
  border-color: rgba(227, 173, 1, 0.2);
}

.news-signal-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.news-card-foot {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-card-foot strong {
  color: var(--gold-bright);
}

.news-card-foot em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-style: normal;
}

.resource-lab-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 4%, rgba(74, 31, 168, 0.28), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(53, 193, 227, 0.12), transparent 28%),
    linear-gradient(180deg, #050613 0%, #0c0824 48%, #050613 100%);
}

.resource-lab-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 16%, rgba(227, 173, 1, 0.76) 0 1px, transparent 2px),
    radial-gradient(circle at 21% 62%, rgba(53, 193, 227, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 18%, rgba(227, 173, 1, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 76%, rgba(123, 111, 208, 0.68) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 32%, rgba(227, 173, 1, 0.62) 0 1px, transparent 2px);
  opacity: 0.72;
  animation: starfield-drift 13s ease-in-out infinite;
}

.resource-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 96px;
}

.resource-signal-panel {
  padding: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(227, 173, 1, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.28), rgba(5, 6, 19, 0.92));
  border: 1px solid rgba(227, 173, 1, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.resource-signal-panel h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.7rem;
}

.resource-signal-panel p:not(.eyebrow) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.resource-groups {
  display: grid;
  gap: 30px;
}

.resource-results-note {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  background:
    linear-gradient(90deg, rgba(53, 193, 227, 0.12), rgba(227, 173, 1, 0.08)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(53, 193, 227, 0.2);
  border-radius: 999px;
}

.resource-group {
  position: relative;
  padding: 26px;
  scroll-margin-top: 110px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 111, 208, 0.26);
  border-radius: 8px;
}

.resource-group::before {
  position: absolute;
  left: 26px;
  top: 0;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan-bright));
  content: "";
}

.resource-group-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.resource-group-head h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.2rem;
}

.resource-group-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.filter-button {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.filter-button span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  color: var(--deep-indigo);
  font-size: 0.72rem;
  background: var(--gold-bright);
  border-radius: 50%;
}

.filter-button:hover,
.filter-button:focus {
  color: var(--white);
  background: rgba(53, 193, 227, 0.1);
  border-color: rgba(53, 193, 227, 0.46);
  transform: translateX(4px);
}

.filter-button.is-active {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(53, 193, 227, 0.18), rgba(227, 173, 1, 0.1));
  border-color: rgba(227, 173, 1, 0.46);
}

.resource-group[hidden],
.article-card[hidden] {
  display: none;
}

.article-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(227, 173, 1, 0.1), transparent 26%),
    linear-gradient(145deg, rgba(30, 11, 60, 0.54), rgba(5, 6, 19, 0.78)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.article-card:hover {
  border-color: rgba(53, 193, 227, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.article-card h3 {
  color: var(--white);
}

.article-card p {
  color: rgba(255, 255, 255, 0.68);
}

.resource-lab-section .tag-list li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-thumb {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 146px;
  overflow: hidden;
  padding: 12px;
  color: var(--white);
  text-align: left;
  background:
    radial-gradient(circle at 72% 16%, rgba(53, 193, 227, 0.24), transparent 30%),
    radial-gradient(circle at 20% 84%, rgba(227, 173, 1, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.42), rgba(5, 6, 19, 0.96));
  border: 1px solid rgba(53, 193, 227, 0.22);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(53, 193, 227, 0.1);
}

.article-thumb::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(135deg, transparent 6%, #000 42%, transparent 100%);
}

.article-thumb::after {
  position: absolute;
  right: 12px;
  top: 11px;
  width: 22px;
  height: 22px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 10px rgba(227, 173, 1, 0.68));
  opacity: 0.9;
}

.article-thumb span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(5, 6, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.resource-mini-svg {
  position: absolute;
  inset: 12px 8px 22px;
  z-index: 1;
  width: calc(100% - 16px);
  height: calc(100% - 34px);
  overflow: visible;
}

.resource-mini-svg .mini-panel {
  fill: rgba(255, 255, 255, 0.065);
  stroke: rgba(123, 111, 208, 0.5);
  stroke-width: 2;
}

.resource-mini-svg .mini-panel.strong,
.resource-mini-svg .mini-panel.shield {
  fill: rgba(74, 31, 168, 0.32);
  stroke: rgba(53, 193, 227, 0.58);
}

.resource-mini-svg .mini-line,
.resource-mini-svg .mini-muted-stroke,
.resource-mini-svg .mini-cyan-stroke,
.resource-mini-svg .mini-gold-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.resource-mini-svg .gold-line,
.resource-mini-svg .mini-gold-stroke {
  stroke: var(--gold-bright);
}

.resource-mini-svg .cyan-line,
.resource-mini-svg .mini-cyan-stroke {
  stroke: var(--cyan-bright);
}

.resource-mini-svg .mini-muted-stroke {
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 2;
}

.resource-mini-svg .mini-gold-fill,
.resource-mini-svg .mini-star-path {
  fill: var(--gold-bright);
}

.resource-mini-svg .mini-cyan-fill {
  fill: var(--cyan-bright);
}

.resource-mini-svg .mini-purple-fill {
  fill: var(--light-purple);
}

.resource-mini-svg .mini-redact {
  fill: rgba(5, 6, 19, 0.76);
  stroke: rgba(227, 173, 1, 0.52);
}

.visual-rate-shopping {
  background:
    radial-gradient(circle at 78% 18%, rgba(227, 173, 1, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(15, 43, 76, 0.62), rgba(5, 6, 19, 0.96));
}

.visual-pii-and-security {
  background:
    radial-gradient(circle at 74% 18%, rgba(53, 193, 227, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(15, 58, 78, 0.5), rgba(5, 6, 19, 0.96));
}

.visual-client-owned-ip,
.visual-shipping-rules {
  background:
    radial-gradient(circle at 76% 20%, rgba(227, 173, 1, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.5), rgba(5, 6, 19, 0.96));
}

.resource-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--cyan-bright);
  font-size: 0.86rem;
  font-weight: 900;
}

.resource-read-link::after {
  content: "->";
  color: var(--gold-bright);
}

/* Simplified resource-library experience */
.resource-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.58fr);
  gap: clamp(42px, 7vw, 88px);
}

.resource-hero-copy {
  max-width: 760px;
}

.resource-hero-copy h1 {
  max-width: 720px;
}

.brand-no-break {
  white-space: nowrap;
}

.vault-highlight {
  color: var(--cyan-bright);
}

.resource-start-card {
  padding: 26px;
  background: rgba(5, 6, 19, 0.64);
  border: 1px solid rgba(227, 173, 1, 0.28);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.resource-start-card h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.75rem;
}

.resource-page-links {
  display: grid;
  gap: 9px;
}

.resource-page-links a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 9px 12px 9px 9px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.resource-page-links a:hover,
.resource-page-links a:focus-visible {
  background: rgba(53, 193, 227, 0.09);
  border-color: rgba(53, 193, 227, 0.4);
  transform: translateX(3px);
}

.resource-page-links > a > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--deep-indigo);
  font-size: 0.68rem;
  font-weight: 900;
  background: var(--gold-bright);
  border-radius: 7px;
}

.resource-page-links div {
  display: grid;
  gap: 1px;
}

.resource-page-links strong {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.25;
}

.resource-page-links small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.25;
}

.resource-news-digest,
.resource-feature-wrap,
.resource-library-list {
  scroll-margin-top: 104px;
}

.resource-library-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(53, 193, 227, 0.08), transparent 27%),
    linear-gradient(180deg, #f8f7fc 0%, #f2f0f8 100%);
}

.resource-path-head,
.resource-library-head,
.resource-news-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 40px;
  align-items: end;
}

.resource-path-head {
  margin-bottom: 26px;
}

.resource-path-head h2,
.resource-library-head h2 {
  margin-bottom: 0;
  color: var(--deep-indigo);
}

.resource-path-head > p,
.resource-library-head > p {
  margin: 0;
  color: var(--muted);
}

.resource-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.resource-filter-chip {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--deep-indigo);
  font-size: 0.86rem;
  font-weight: 900;
  background: var(--white);
  border: 1px solid #d6d3e4;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.resource-filter-chip:hover,
.resource-filter-chip:focus-visible {
  color: var(--brand-purple);
  border-color: var(--light-purple);
  transform: translateY(-1px);
}

.resource-filter-chip.is-active {
  color: var(--white);
  background: var(--deep-indigo);
  border-color: var(--deep-indigo);
}

.resource-library-section .resource-results-note {
  margin-bottom: 32px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 2px;
  font-size: 0.82rem;
}

.resource-curated-layout {
  gap: 54px;
}

.resource-library-section .article-card {
  color: var(--ink);
  background: var(--white);
  border-color: #dedbea;
  box-shadow: 0 16px 44px rgba(30, 11, 60, 0.08);
}

.resource-library-section .article-card:hover {
  border-color: rgba(74, 31, 168, 0.34);
  box-shadow: 0 22px 54px rgba(30, 11, 60, 0.12);
}

.resource-library-section .article-card h2,
.resource-library-section .article-card h3 {
  color: var(--deep-indigo);
}

.resource-library-section .article-card p {
  color: var(--muted);
}

.resource-feature-card {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 12px;
}

.resource-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 146px;
  overflow: hidden;
  padding: 15px;
  color: var(--deep-indigo);
  background: linear-gradient(155deg, #f4f2fb 0%, #e8e4f5 100%);
  border: 1px solid #d9d5e8;
  border-radius: 8px;
}

.resource-cover::after {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-purple), rgba(74, 31, 168, 0.08));
  content: "";
}

.resource-cover-number {
  color: rgba(74, 31, 168, 0.34);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.resource-cover > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
}

.resource-cover strong {
  font-size: 0.84rem;
  line-height: 1.2;
}

.resource-cover small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-cover-featured {
  min-height: 330px;
  border: 0;
  border-right: 1px solid rgba(53, 193, 227, 0.22);
  border-radius: 11px 0 0 11px;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(145deg, var(--deep-indigo) 0%, #32166c 100%);
}

.resource-cover-featured::after {
  left: 32px;
  right: 32px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(227, 173, 1, 0.08));
}

.resource-cover-featured .resource-cover-number {
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(4rem, 8vw, 6.8rem);
}

.resource-cover-featured strong {
  color: var(--white);
  font-size: 1.35rem;
}

.resource-cover-featured small {
  color: var(--gold-bright);
}

.resource-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.resource-feature-copy h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.resource-kicker,
.resource-format {
  margin: 0 0 8px;
  color: var(--brand-purple) !important;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-library-section .tag-list li {
  color: var(--deep-indigo);
  background: var(--pale-purple);
  border-color: #d9d5f4;
}

.resource-library-section .resource-read-link {
  color: var(--brand-purple);
}

.resource-library-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d6e4;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-library-card {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: 10px;
}

.resource-library-card h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.resource-library-card p:not(.resource-format) {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.resource-library-card .tag-list {
  margin-bottom: 2px;
}

.resource-library-card .tag-list li {
  padding: 5px 8px;
  font-size: 0.7rem;
}

.resource-library-card .resource-read-link {
  margin-top: 12px;
}

.resource-news-digest {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(227, 173, 1, 0.12), transparent 34%),
    linear-gradient(180deg, #0c0824 0%, #050613 100%);
}

.resource-news-head {
  margin-bottom: 28px;
}

.resource-news-head h2 {
  margin: 0;
  color: var(--white);
}

.resource-news-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.resource-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-news-item {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.resource-news-item:hover,
.resource-news-item:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(53, 193, 227, 0.42);
  transform: translateY(-2px);
}

.resource-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
}

.resource-news-meta span {
  color: var(--gold-bright);
  text-transform: uppercase;
}

.resource-news-item h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.resource-news-item p {
  color: rgba(255, 255, 255, 0.64);
}

.resource-news-item strong {
  align-self: end;
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan-bright);
  font-size: 0.84rem;
}

.resource-news-briefs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.resource-news-brief {
  --market-accent: var(--gold-bright);
  --market-accent-rgb: 227, 173, 1;
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--market-accent-rgb), 0.18), transparent 34%),
    linear-gradient(145deg, rgba(var(--market-accent-rgb), 0.075), rgba(255, 255, 255, 0.018) 58%);
  border: 1px solid rgba(var(--market-accent-rgb), 0.32);
  border-top: 5px solid var(--market-accent);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.resource-news-brief::after {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  background: radial-gradient(circle, rgba(var(--market-accent-rgb), 0.34), transparent 66%);
  border: 1px solid rgba(var(--market-accent-rgb), 0.38);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 24px rgba(var(--market-accent-rgb), 0.16);
}

.resource-news-brief:hover {
  border-color: rgba(var(--market-accent-rgb), 0.58);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22), 0 0 30px rgba(var(--market-accent-rgb), 0.08);
  transform: translateY(-2px);
}

.resource-news-brief.market-category-1 {
  --market-accent: #f0c84b;
  --market-accent-rgb: 240, 200, 75;
}

.resource-news-brief.market-category-2 {
  --market-accent: #35c1e3;
  --market-accent-rgb: 53, 193, 227;
}

.resource-news-brief.market-category-3 {
  --market-accent: #b9a8ff;
  --market-accent-rgb: 185, 168, 255;
}

.resource-news-brief.market-category-4 {
  --market-accent: #ff7f8f;
  --market-accent-rgb: 255, 127, 143;
}

.resource-news-brief-head {
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--market-accent-rgb), 0.25);
}

.market-category-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  margin-bottom: 13px;
  color: var(--deep-indigo);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--market-accent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(var(--market-accent-rgb), 0.2);
}

.resource-news-brief-head h3 {
  margin: 0 0 6px;
  color: var(--market-accent);
  font-size: 1.16rem;
}

.resource-news-brief-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.resource-news-brief ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-news-brief li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--market-accent-rgb), 0.14);
}

.resource-news-brief li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resource-news-brief time {
  color: var(--market-accent);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.45;
}

.resource-news-brief a,
.resource-news-brief li span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.resource-news-brief a:hover,
.resource-news-brief a:focus-visible {
  color: var(--market-accent);
}

.resource-news-brief small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .resource-path-head,
  .resource-library-head,
  .resource-news-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .resource-news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-news-briefs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .resource-filter-bar {
    flex-wrap: nowrap;
    margin-inline: -16px;
    overflow-x: auto;
    padding-inline: 16px;
    border-inline: 0;
    border-radius: 0;
    scrollbar-width: thin;
  }

  .resource-filter-chip {
    flex: 0 0 auto;
  }

  .resource-feature-card,
  .resource-library-card,
  .resource-news-list {
    grid-template-columns: 1fr;
  }

  .resource-news-brief li {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .resource-cover-featured {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(53, 193, 227, 0.22);
    border-radius: 11px 11px 0 0;
  }

  .resource-library-card .resource-cover {
    min-height: 150px;
  }

  .resource-news-item {
    min-height: auto;
  }
}

/* Private preview / early-access gate */
.gate-shell {
  min-height: 100vh;
  color: var(--white);
  background: #050613;
}

.gate-page {
  min-height: 100vh;
  overflow: hidden;
}

.gate-stage {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 26px 0 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 54%, rgba(53, 193, 227, 0.13), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(123, 111, 208, 0.23), transparent 31%),
    radial-gradient(circle at 72% 88%, rgba(227, 173, 1, 0.09), transparent 24%),
    linear-gradient(126deg, #050613 0%, #0b0821 48%, #1a0b39 100%);
}

.gate-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(123, 111, 208, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 111, 208, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.gate-nebula {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.gate-nebula-one {
  left: -180px;
  bottom: -260px;
  width: 680px;
  height: 680px;
  background: rgba(53, 193, 227, 0.07);
}

.gate-nebula-two {
  right: -180px;
  top: -250px;
  width: 720px;
  height: 720px;
  background: rgba(123, 111, 208, 0.11);
}

.gate-ghost-eye {
  position: absolute;
  left: -420px;
  right: auto;
  top: 112px;
  z-index: -1;
  width: min(80vw, 1200px);
  opacity: 0.08;
  pointer-events: none;
  filter: drop-shadow(0 0 72px rgba(123, 111, 208, 0.48));
}

.gate-header,
.gate-layout,
.gate-footer {
  width: min(1240px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.gate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.gate-logo {
  width: 204px;
  height: auto;
}

.gate-status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gate-status span {
  width: 8px;
  height: 8px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(53, 193, 227, 0.1), 0 0 18px rgba(53, 193, 227, 0.8);
  animation: gate-status-pulse 2.6s ease-in-out infinite;
}

.gate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.7fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
  min-height: calc(100svh - 146px);
  padding: 44px 0 34px;
}

.gate-copy {
  position: relative;
  max-width: 720px;
}

.gate-intro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  margin-bottom: 12px;
}

.gate-intro-row .eyebrow {
  margin-bottom: 0;
}

.gate-eye-feature {
  position: relative;
  display: grid;
  flex: 0 0 92px;
  place-items: center;
  width: 92px;
  height: 92px;
}

.gate-eye-feature::before {
  position: absolute;
  inset: 9px;
  background: radial-gradient(circle, rgba(53, 193, 227, 0.2), rgba(123, 111, 208, 0.08) 48%, transparent 72%);
  border-radius: 50%;
  content: "";
  filter: blur(5px);
}

.gate-eye-feature img {
  position: relative;
  z-index: 1;
  width: 76px;
  filter: drop-shadow(0 0 20px rgba(123, 111, 208, 0.68));
  animation: gate-eye-bounce 3.8s ease-in-out infinite;
}

.gate-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6vw, 6.1rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 0 42px rgba(123, 111, 208, 0.2);
}

.gate-copy h1 span {
  color: var(--cyan-bright);
  text-shadow: 0 0 28px rgba(53, 193, 227, 0.38);
}

.gate-deck {
  max-width: 620px;
  margin-bottom: 18px;
  padding: 14px 18px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.35;
  background: linear-gradient(90deg, rgba(227, 173, 1, 0.18), rgba(227, 173, 1, 0.035));
  border-left: 4px solid var(--gold-bright);
  border-radius: 0 8px 8px 0;
  box-shadow:
    0 0 34px rgba(227, 173, 1, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gate-note {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.gate-signal {
  position: relative;
  width: min(100%, 650px);
  height: 205px;
  margin-top: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(53, 193, 227, 0.14), transparent 21%),
    radial-gradient(circle at 50% 50%, rgba(123, 111, 208, 0.15), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.gate-signal::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 193, 227, 0.7), rgba(227, 173, 1, 0.85), transparent);
  box-shadow: 0 0 16px rgba(53, 193, 227, 0.45);
  content: "";
}

.gate-signal > img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 112px;
  filter: drop-shadow(0 0 22px rgba(123, 111, 208, 0.72));
  animation: gate-eye-float 4.2s ease-in-out infinite;
}

.gate-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(123, 111, 208, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gate-orbit-one {
  width: 170px;
  height: 82px;
  border-color: rgba(227, 173, 1, 0.42);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.gate-orbit-two {
  width: 250px;
  height: 126px;
  transform: translate(-50%, -50%) rotate(13deg);
}

.gate-orbit-three {
  width: 330px;
  height: 166px;
  border-color: rgba(53, 193, 227, 0.2);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.gate-spark {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(227, 173, 1, 0.9);
  animation: gate-spark-glow 2.8s ease-in-out infinite;
}

.gate-spark-one { left: 27%; top: 32%; }
.gate-spark-two { right: 28%; bottom: 27%; animation-delay: -1.1s; }
.gate-spark-three { right: 16%; top: 25%; width: 4px; height: 4px; animation-delay: -2s; }

.gate-signal-label {
  position: absolute;
  z-index: 4;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(5, 6, 19, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.gate-label-one { left: 7%; top: 24px; }
.gate-label-two { right: 7%; top: 28px; }
.gate-label-three { right: 8%; bottom: 20px; color: var(--gold-bright); border-color: rgba(227, 173, 1, 0.28); }

.gate-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 19px;
}

.gate-proof span {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.gate-proof span::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 5px;
  height: 5px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(53, 193, 227, 0.7);
  content: "";
}

.early-access-card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 193, 227, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(29, 14, 65, 0.94), rgba(7, 8, 25, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--gold-bright);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), 0 0 0 7px rgba(123, 111, 208, 0.06);
  backdrop-filter: blur(18px);
}

.early-access-card::after {
  position: absolute;
  right: -66px;
  bottom: -74px;
  width: 210px;
  height: 210px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.early-access-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.early-access-kicker span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--deep-indigo);
  background: var(--gold-bright);
  border-radius: 50%;
}

.early-access-card h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.5vw, 3.05rem);
}

.early-access-card > p {
  color: rgba(255, 255, 255, 0.86);
}

.early-access-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 18px;
}

.early-access-card .field label {
  color: rgba(255, 255, 255, 0.94);
}

.early-access-card .field input,
.early-access-card .field select {
  min-height: 50px;
  color: var(--white);
  background: rgba(8, 15, 42, 0.82);
  border-color: rgba(53, 193, 227, 0.62);
  box-shadow: inset 0 0 0 1px rgba(53, 193, 227, 0.08), 0 0 18px rgba(53, 193, 227, 0.05);
}

.early-access-card .field input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.early-access-card .field select option {
  color: var(--deep-indigo);
  background: var(--white);
}

.early-access-card .field input:focus,
.early-access-card .field select:focus {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 2px;
  border-color: var(--cyan-bright);
}

.early-access-card .field:nth-child(4) {
  grid-column: 1 / -1;
}

.gate-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.early-access-submit {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  padding-inline: 19px;
  font-size: 0.96rem;
}

.early-access-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.early-access-status {
  min-height: 1.3em;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.early-access-status:empty {
  display: none;
}

.early-access-status.is-success { color: #86e5f2; }
.early-access-status.is-error { color: #ffbfbc; }

.early-access-card .early-access-privacy {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
}

.gate-founders {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 34px;
  align-items: end;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gate-founders-intro .eyebrow {
  margin-bottom: 10px;
}

.gate-founders-intro h2 {
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.08;
}

.gate-founder-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.gate-founder-card {
  min-width: 0;
  padding: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 19, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
}

.gate-founder-card img,
.gate-founder-initials {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: cover;
  color: var(--deep-indigo);
  font-size: 0.76rem;
  font-weight: 900;
  background: linear-gradient(145deg, var(--cyan-bright), var(--gold-bright));
  border: 2px solid rgba(227, 173, 1, 0.46);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(123, 111, 208, 0.16);
}

.gate-founder-card strong,
.gate-founder-card span,
.gate-founder-card a {
  display: block;
}

.gate-founder-card strong {
  overflow: hidden;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gate-founder-card div > span {
  margin-top: 3px;
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.gate-founder-card a {
  width: fit-content;
  margin-top: 10px;
  color: var(--cyan-bright);
  font-size: 0.69rem;
  font-weight: 800;
}

.gate-founder-card a span {
  display: inline;
}

.gate-founder-card a:hover {
  color: var(--gold-bright);
}

.gate-linkedin-follow:hover {
  color: var(--cyan-bright);
}

.gate-linkedin-follow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
}

.gate-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gate-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.gate-footer a:hover {
  color: var(--cyan-bright);
}

.gate-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

@keyframes gate-eye-bounce {
  0%, 100% { transform: translateY(4px) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes gate-ghost-breathe {
  0%, 100% { opacity: 0.09; transform: translateY(8px) scale(0.97); }
  50% { opacity: 0.16; transform: translateY(-10px) scale(1.02); }
}

@keyframes gate-eye-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(4px); }
  50% { transform: translate(-50%, -50%) translateY(-7px); }
}

@keyframes gate-status-pulse {
  0%, 100% { opacity: 0.62; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes gate-spark-glow {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 980px) {
  .gate-stage {
    padding-top: 18px;
  }

  .gate-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 56px;
  }

  .gate-copy {
    max-width: none;
  }

  .early-access-card {
    width: min(100%, 680px);
  }

  .gate-founders {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gate-founders-intro h2 {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .gate-header,
  .gate-layout,
  .gate-founders,
  .gate-footer {
    width: min(100% - 28px, 1240px);
  }

  .gate-logo {
    width: 164px;
  }

  .gate-status {
    max-width: 140px;
    justify-content: flex-end;
    font-size: 0.62rem;
    text-align: right;
  }

  .gate-layout {
    padding-top: 42px;
  }

  .gate-copy h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .gate-intro-row {
    min-height: 74px;
  }

  .gate-eye-feature {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .gate-eye-feature img {
    width: 62px;
  }

  .gate-ghost-eye {
    left: -72%;
    right: auto;
    top: 180px;
    width: min(165vw, 760px);
    opacity: 0.08;
  }

  .gate-signal {
    height: 178px;
  }

  .gate-signal > img {
    width: 92px;
  }

  .gate-orbit-three {
    width: 260px;
  }

  .gate-label-two,
  .gate-label-three {
    display: none;
  }

  .early-access-fields {
    grid-template-columns: 1fr;
  }

  .early-access-card .field:nth-child(4) {
    grid-column: auto;
  }

  .gate-founder-grid {
    display: flex;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gate-founder-grid::-webkit-scrollbar {
    display: none;
  }

  .gate-founder-card {
    flex: 0 0 168px;
    scroll-snap-align: start;
  }

  .gate-footer {
    flex-direction: column;
    gap: 6px;
  }

  .gate-footer > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate-status span,
  .gate-ghost-eye,
  .gate-eye-feature img,
  .gate-signal > img,
  .gate-spark {
    animation: none;
  }
}

.founder-trust {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 31, 168, 0.3), transparent 42%),
    linear-gradient(180deg, #050613 0%, #0c0824 100%);
}

.founder-trust h2,
.founder-trust h3 {
  color: var(--white);
}

.founder-trust .lead,
.founder-trust p {
  color: rgba(255, 255, 255, 0.72);
}

.founders-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.founder-card {
  position: relative;
  grid-column: span 2;
  min-height: 610px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(74, 31, 168, 0.22), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(227, 173, 1, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(227, 173, 1, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.24);
}

.founder-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.founder-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.founder-card h3 {
  margin-bottom: 4px;
  overflow-wrap: normal;
  font-size: clamp(1.18rem, 1.15vw, 1.42rem);
  line-height: 1.18;
  white-space: nowrap;
}

.founder-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 22px;
}

.founder-role {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--gold-bright) !important;
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 900;
  line-height: 1.22;
  white-space: nowrap;
}

.founder-note {
  margin-top: 14px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  border-top: 1px solid rgba(227, 173, 1, 0.22);
}

.founder-note::before {
  color: var(--gold-bright);
  content: "* ";
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--cyan-bright);
  font-size: 0.88rem;
  font-weight: 900;
}

.founder-link::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--deep-indigo);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--cyan-bright);
  border-radius: 4px;
  content: "in";
}

.founder-link:hover {
  color: var(--gold-bright);
}

.founder-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 366px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 16%, rgba(53, 193, 227, 0.24), transparent 32%),
    radial-gradient(circle at 76% 80%, rgba(227, 173, 1, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(74, 31, 168, 0.45), rgba(5, 6, 19, 0.94));
  border-bottom: 1px solid rgba(227, 173, 1, 0.42);
}

.founder-media::before,
.founder-media::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.founder-media::before {
  inset: 22px;
  border: 1px solid rgba(227, 173, 1, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.founder-media::after {
  right: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.62));
}

.founder-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: var(--founder-photo-padding, 0);
  object-fit: var(--founder-photo-fit, cover);
  object-position: var(--founder-photo-position, 50% 38%);
  background: var(--founder-photo-background, transparent);
  filter: saturate(0.96) contrast(1.02);
}

.founder-media.has-photo::before {
  display: none;
}

.founder-media.has-photo::after {
  z-index: 3;
}

.founder-media.is-placeholder span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  color: var(--white);
  font-size: 2.35rem;
  font-weight: 900;
  background:
    radial-gradient(circle at 34% 28%, rgba(53, 193, 227, 0.6), transparent 32%),
    linear-gradient(145deg, var(--deep-indigo), rgba(74, 31, 168, 0.92));
  border: 4px solid rgba(53, 193, 227, 0.82);
  border-radius: 50%;
  box-shadow:
    0 0 34px rgba(53, 193, 227, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.events-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(227, 173, 1, 0.18), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(53, 193, 227, 0.16), transparent 30%),
    linear-gradient(180deg, #050613 0%, #12082f 100%);
}

.events-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 9% 30%, rgba(227, 173, 1, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 78%, rgba(53, 193, 227, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 53% 18%, rgba(227, 173, 1, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 68%, rgba(123, 111, 208, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 34%, rgba(227, 173, 1, 0.8) 0 1px, transparent 2px);
  opacity: 0.8;
  animation: starfield-drift 13s ease-in-out infinite;
}

.events-section .container {
  position: relative;
}

.events-section h2,
.events-section h3 {
  color: var(--white);
}

.events-section .lead,
.events-section p {
  color: rgba(255, 255, 255, 0.72);
}

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

.featured-events {
  border-top: 1px solid rgba(227, 173, 1, 0.18);
}

.events-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.event-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 278px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 19, 0.8);
  border: 1px solid rgba(227, 173, 1, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.featured-event-card {
  min-height: 100%;
  border-color: rgba(227, 173, 1, 0.46);
  background:
    radial-gradient(circle at 88% 18%, rgba(227, 173, 1, 0.17), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 6, 19, 0.84);
}

.event-card::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.32;
}

.event-status {
  margin-bottom: 16px;
  color: var(--gold-bright) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.event-details li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.event-details strong {
  color: var(--gold-bright);
}

.event-scheduler {
  position: relative;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(74, 31, 168, 0.24), rgba(5, 6, 19, 0.9)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(53, 193, 227, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.event-scheduler h3,
.event-scheduler label {
  color: var(--white);
}

.event-scheduler input,
.event-scheduler select,
.event-scheduler textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.event-scheduler textarea {
  min-height: 112px;
}

.event-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 24px;
}

.faq-section {
  background:
    linear-gradient(180deg, #f8f8fa 0%, #eeedfe 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 237, 254, 0.7)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid article::before {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.36));
}

.commitments-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(53, 193, 227, 0.16), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(227, 173, 1, 0.16), transparent 32%),
    linear-gradient(180deg, #050613 0%, #12082f 100%);
  border-top: 1px solid rgba(227, 173, 1, 0.14);
  border-bottom: 1px solid rgba(53, 193, 227, 0.14);
}

.commitments-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 28%, rgba(227, 173, 1, 0.74) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 82%, rgba(53, 193, 227, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 18%, rgba(227, 173, 1, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 36%, rgba(123, 111, 208, 0.76) 0 2px, transparent 3px);
  opacity: 0.52;
}

.commitments-section .container {
  position: relative;
}

.commitments-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: stretch;
}

.commitments-intro {
  display: grid;
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(74, 31, 168, 0.28), rgba(5, 6, 19, 0.8)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(227, 173, 1, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.commitments-intro h2 {
  color: var(--white);
}

.commitments-intro .lead {
  color: rgba(255, 255, 255, 0.76);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.commitment-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(227, 173, 1, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 19, 0.82);
  border: 1px solid rgba(227, 173, 1, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.commitment-card.is-cyan {
  background:
    radial-gradient(circle at 86% 12%, rgba(53, 193, 227, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 19, 0.82);
  border-color: rgba(53, 193, 227, 0.36);
}

.commitment-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  background: url("/brand/marks/star-accent-512.png") center / contain no-repeat;
  content: "";
  opacity: 0.24;
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.55));
}

.commitment-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  margin-bottom: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(53, 193, 227, 0.12), transparent 35%),
    radial-gradient(circle at 76% 72%, rgba(227, 173, 1, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.commitment-visual::before {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  content: "";
  opacity: 0.7;
}

.commitment-visual svg {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  height: auto;
}

.visual-orbit,
.visual-profile,
.visual-shield,
.visual-shield-line,
.visual-chevron {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-clean-frame {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(227, 173, 1, 0.36);
  stroke-width: 1.5;
}

.visual-clean-frame.cyan-frame {
  stroke: rgba(53, 193, 227, 0.34);
}

.visual-crown-point,
.visual-crown-band,
.visual-flag,
.visual-flag-canton {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-crown-point {
  fill: rgba(227, 173, 1, 0.14);
  stroke: var(--gold-bright);
  stroke-width: 3;
  filter: drop-shadow(0 0 16px rgba(227, 173, 1, 0.22));
}

.visual-crown-band {
  fill: rgba(5, 6, 19, 0.58);
  stroke: rgba(227, 173, 1, 0.92);
  stroke-width: 2.5;
}

.visual-crown-gem {
  fill: var(--violet);
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 1.5;
}

.visual-crown-tip {
  fill: var(--gold-bright);
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(227, 173, 1, 0.34));
}

.visual-crown-gem.cyan {
  fill: var(--cyan-bright);
}

.visual-opti-star {
  fill: var(--gold-bright);
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(227, 173, 1, 0.42));
}

.visual-opti-star.cyan {
  fill: var(--cyan-bright);
  filter: drop-shadow(0 0 10px rgba(53, 193, 227, 0.34));
}

.visual-opti-star.small {
  opacity: 0.76;
}

.visual-opti-star.large {
  opacity: 0.62;
}

.visual-opti-star.flag-star {
  fill: var(--gold-bright);
  opacity: 0.98;
}

.visual-flag-pole,
.visual-flag-stripe {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-flag-pole {
  stroke: var(--gold-bright);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(227, 173, 1, 0.2));
}

.visual-flag {
  fill: rgba(74, 31, 168, 0.44);
  stroke: rgba(53, 193, 227, 0.8);
  stroke-width: 4;
  filter: drop-shadow(0 0 16px rgba(53, 193, 227, 0.12));
}

.visual-flag-stripe {
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2.5;
}

.visual-flag-canton {
  fill: rgba(5, 6, 19, 0.56);
  stroke: rgba(227, 173, 1, 0.48);
  stroke-width: 1.5;
}

.visual-connector,
.visual-person-mark,
.visual-person-small,
.visual-service-line,
.visual-shield-clean,
.visual-service-ribbon {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-connector {
  stroke-width: 2.5;
  opacity: 0.76;
}

.visual-connector.cyan {
  stroke: var(--cyan-bright);
}

.visual-person-shell {
  stroke-width: 2.5;
}

.visual-person-shell.main {
  fill: rgba(74, 31, 168, 0.36);
  stroke: rgba(227, 173, 1, 0.72);
}

.visual-person-shell.gold {
  fill: rgba(227, 173, 1, 0.12);
  stroke: rgba(227, 173, 1, 0.68);
}

.visual-person-shell.cyan {
  fill: rgba(53, 193, 227, 0.11);
  stroke: rgba(53, 193, 227, 0.72);
}

.visual-person-mark {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 4;
}

.visual-person-small {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3;
}

.visual-clean-star,
.visual-star-clean {
  fill: var(--gold-bright);
  filter: drop-shadow(0 0 10px rgba(227, 173, 1, 0.42));
}

.visual-service-line {
  stroke-width: 3;
  opacity: 0.56;
}

.visual-service-line.gold {
  stroke: var(--gold-bright);
}

.visual-shield-clean {
  fill: rgba(74, 31, 168, 0.34);
  stroke: rgba(53, 193, 227, 0.76);
  stroke-width: 4;
  filter: drop-shadow(0 0 16px rgba(53, 193, 227, 0.14));
}

.visual-service-ribbon {
  stroke: rgba(227, 173, 1, 0.86);
  stroke-width: 3.5;
}

.visual-orbit {
  stroke-width: 2;
  opacity: 0.72;
}

.visual-orbit.gold,
.visual-chevron.gold {
  stroke: var(--gold-bright);
}

.visual-orbit.cyan {
  stroke: var(--cyan-bright);
}

.visual-node.primary {
  fill: rgba(74, 31, 168, 0.7);
  stroke: rgba(53, 193, 227, 0.74);
  stroke-width: 3;
}

.visual-node.gold-fill,
.visual-star,
.visual-service-star {
  fill: var(--gold-bright);
}

.visual-node.cyan-fill {
  fill: var(--cyan-bright);
}

.visual-node.violet-fill {
  fill: var(--violet);
}

.visual-node.small {
  opacity: 0.82;
}

.visual-profile {
  stroke: var(--white);
  stroke-width: 5;
  opacity: 0.92;
}

.visual-star {
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.55));
}

.visual-shield {
  fill: rgba(74, 31, 168, 0.46);
  stroke: rgba(53, 193, 227, 0.82);
  stroke-width: 4;
  filter: drop-shadow(0 0 18px rgba(53, 193, 227, 0.18));
}

.visual-shield-line {
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 2;
}

.visual-service-star {
  filter: drop-shadow(0 0 12px rgba(227, 173, 1, 0.5));
}

.visual-chevron {
  stroke: var(--cyan-bright);
  stroke-width: 4;
  opacity: 0.82;
}

.commitment-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.commitment-card.is-cyan span {
  color: var(--cyan-bright);
}

.commitment-card h3 {
  max-width: 92%;
  color: var(--white);
}

.commitment-card p,
.commitment-card li {
  color: rgba(255, 255, 255, 0.72);
}

.commitment-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.commitment-card li {
  position: relative;
  padding-left: 24px;
}

.commitment-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold-bright));
  content: "";
}

.portal-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.portal-login {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 34px auto 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portal-login input {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  outline: 0;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 42px;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.legal p,
.legal li {
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--deep-indigo);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.footer-brand img {
  width: 198px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
}

.footer-brand p strong {
  display: inline-block;
  color: var(--white);
}

.footer-brand p span {
  display: inline-block;
  margin-top: 4px;
  color: var(--gold-bright);
}

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

.footer-grid h4 {
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.linkedin-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}

.linkedin-link::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--deep-indigo);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--cyan-bright);
  border-radius: 4px;
  content: "in";
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.no-script {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
}

.no-script img {
  width: 280px;
}

@supports (animation-timeline: view()) {
  .lens-panel,
  .stack-steps div,
  .solution-detail,
  .solution-block,
  .solution-row,
  .method-path article,
  .control-table div,
  .work-card,
  .founder-card,
  .event-card,
  .article-card,
  .form-card {
    animation: rise-in both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .lens-panel:nth-child(2),
  .solution-detail:nth-child(2n),
  .solution-row:nth-child(2n),
  .work-card:nth-child(2n),
  .founder-card:nth-child(2n),
  .event-card:nth-child(2n),
  .article-card:nth-child(2n) {
    animation-name: rise-in-alt;
  }
}

@keyframes rise-in {
  from {
    opacity: 0.15;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise-in-alt {
  from {
    opacity: 0.15;
    transform: translateY(34px) translateX(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes eye-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.14;
  }
}

@keyframes scan-drift {
  0%,
  100% {
    transform: translateY(-70px);
    opacity: 0;
  }
  45%,
  55% {
    opacity: 0.75;
  }
  100% {
    transform: translateY(260px);
  }
}

@keyframes orbit-drift {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: rotate(350deg);
  }
}

@keyframes star-glow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes signal-orbit-drift {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start));
  }
  to {
    transform: translate(-50%, -50%) rotate(var(--orbit-end));
  }
}

@keyframes eye-hover {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes eye-aura {
  from {
    transform: rotate(0deg) scale(0.98);
  }
  to {
    transform: rotate(360deg) scale(0.98);
  }
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.76;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes platform-light {
  0%,
  100% {
    opacity: 0.8;
    filter:
      blur(0.2px)
      drop-shadow(0 0 18px rgba(225, 126, 255, 0.78))
      drop-shadow(0 0 42px rgba(139, 50, 255, 0.58));
  }
  50% {
    opacity: 1;
    filter:
      blur(0.12px)
      drop-shadow(0 0 24px rgba(244, 180, 255, 0.96))
      drop-shadow(0 0 56px rgba(139, 50, 255, 0.8));
  }
}

@keyframes platform-rim-glow {
  0%,
  100% {
    box-shadow:
      inset 0 -16px 26px rgba(0, 0, 0, 0.46),
      0 20px 46px rgba(0, 0, 0, 0.44),
      0 0 24px rgba(227, 173, 1, 0.14);
  }
  50% {
    box-shadow:
      inset 0 -16px 26px rgba(0, 0, 0, 0.42),
      0 20px 46px rgba(0, 0, 0, 0.44),
      0 0 42px rgba(227, 173, 1, 0.28);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-50%) scaleX(0.72);
  }
  50% {
    opacity: 0.76;
    transform: translateX(-50%) scaleX(0.92);
  }
}

@keyframes signal-sweep {
  0%,
  100% {
    opacity: 0.2;
    filter: brightness(0.75);
  }
  50% {
    opacity: 0.95;
    filter: brightness(1.35);
  }
}

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

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.75) rotate(0deg);
  }
  45% {
    opacity: 1;
    transform: scale(1.08) rotate(10deg);
  }
  72% {
    opacity: 0.58;
    transform: scale(0.9) rotate(-6deg);
  }
}

@keyframes cta-sheen {
  0%,
  70%,
  100% {
    transform: translateX(-100%);
  }
  82% {
    transform: translateX(100%);
  }
}

@keyframes cta-aura {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.992);
  }
  50% {
    opacity: 0.82;
    transform: scale(1);
  }
}

@keyframes starfield-drift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 8px -10px, -6px 8px, 10px 4px, -8px -5px, 5px 10px, -10px 6px, 4px -8px, -7px 5px;
  }
}

@keyframes trace-grow {
  0%,
  100% {
    transform: scaleX(0.25);
  }
  50% {
    transform: scaleX(1.1);
  }
}

@keyframes bottleneck-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(0.88);
  }
  50% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 980px) {
  h1,
  .home-hero .hero-copy h1 {
    font-size: 3.65rem;
  }

  .about-hero-title {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  h3 {
    font-size: 1.38rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-open .site-nav,
  .menu-open .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: flex;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .menu-open .nav-link {
    color: var(--deep-indigo);
  }

  .menu-open .portal-action {
    color: var(--deep-indigo);
  }

  .menu-open .header-actions .button.secondary {
    color: var(--deep-indigo);
    border-color: var(--line);
  }

  .menu-open .site-nav {
    top: 78px;
    bottom: 112px;
    flex-direction: column;
    align-items: stretch;
    overflow: auto;
    padding: 14px;
    border-radius: 8px 8px 0 0;
  }

  .menu-open .header-actions {
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .nav-link {
    padding: 12px;
  }

  .system-map,
  .home-hero-layout,
  .resource-hero-layout,
  .news-section-head,
  .news-grid,
  .supply-stack-diagram,
  .reveal-band,
  .events-feature-grid,
  .commitments-shell,
  .bridge-graphic,
  .work-card-grid,
  .lens-grid,
  .stack-flow,
  .proof-stage,
  .solution-row,
  .method-path,
  .control-table,
  .grid.four,
  .grid.six,
  .method-steps,
  .form-shell,
  .proof-output,
  .resource-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .buyer-reality-grid,
  .domino-effects,
  .home-solution-grid,
  .solution-block-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supply-stack-diagram::before,
  .supply-stack-diagram::after,
  .stack-system::after,
  .carrier-systems article::before {
    display: none;
  }

  .enterprise-systems,
  .carrier-systems {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-lanes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: auto;
  }

  .opti-layer-zone {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 50px 18px 18px;
  }

  .lane {
    min-height: 42px;
    background: rgba(53, 193, 227, 0.08);
    border: 1px solid rgba(53, 193, 227, 0.18);
    border-radius: 999px;
    transform: none;
  }

  .lane::before,
  .lane::after {
    display: none;
  }

  .solution-visual {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .founder-card,
  .founder-card:nth-child(4),
  .founder-card:nth-child(5) {
    grid-column: auto;
  }

  .founder-media {
    min-height: 344px;
  }

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

  .headline-line {
    white-space: normal;
  }

  .bridge-graphic {
    min-height: auto;
  }

  .bridge-context {
    margin-bottom: 28px;
  }

  .bridge-graphic::before,
  .bridge-graphic::after,
  .bridge-orbits {
    display: none;
  }

  .bridge-node,
  .node-layer {
    transform: none;
  }

  .filter-panel {
    position: static;
  }

  .news-signal-card.is-featured,
  .news-signal-card.is-watch-lane {
    grid-column: auto;
  }

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

  .diagram-arrow {
    min-height: 44px;
    transform: rotate(90deg);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .signal-visual {
    min-height: 460px;
  }

  .signal-core {
    top: 45%;
    width: min(56vw, 340px);
  }

  .signal-platform {
    bottom: 26px;
    width: min(82%, 380px);
    height: 132px;
  }

  .signal-beam {
    bottom: 96px;
    width: 220px;
    height: 150px;
  }

  .platform-flare {
    top: -28px;
    width: 154px;
    height: 104px;
  }

  .hero .hero-subtag {
    font-size: 1.26rem;
  }

  .failure-river {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .method-path::before {
    display: none;
  }

  .audit-form-card {
    position: static;
  }

  .example-process article {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .example-process article p {
    grid-column: 2;
  }

  .resource-group-head {
    grid-template-columns: 1fr;
  }

  .resource-orbit {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  h1,
  .home-hero .hero-copy h1 {
    font-size: 2.75rem;
  }

  .about-hero-title {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: 154px;
  }

  .hero.home-hero {
    min-height: auto;
    padding: 72px 0 62px;
  }

  .hero.subhero {
    padding: 62px 0 52px;
  }

  .section {
    padding: 62px 0;
  }

  .section-header {
    display: block;
  }

  .grid.two,
  .grid.three,
  .grid.five,
  .founders-grid,
  .buyer-reality-grid,
  .news-grid,
  .enterprise-systems,
  .carrier-systems,
  .domino-effects,
  .work-card-grid,
  .home-solution-grid,
  .events-grid,
  .events-feature-grid,
  .commitment-grid,
  .faq-grid,
  .form-grid,
  .footer-grid,
  .failure-river {
    grid-template-columns: 1fr;
  }

  .signal-visual {
    min-height: 360px;
  }

  .assessment-example {
    padding: 20px;
  }

  .assessment-example-head {
    display: grid;
  }

  .example-status {
    justify-self: start;
  }

  .example-intake-grid,
  .example-outcomes,
  .example-outcomes ul {
    grid-template-columns: 1fr;
  }

  .example-process article {
    grid-template-columns: 1fr;
    padding-left: 22px;
  }

  .example-process article p {
    grid-column: auto;
  }

  .supply-stack-diagram {
    padding: 18px;
  }

  .shipping-bottleneck {
    padding: 24px;
  }

  .integration-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opti-layer-badge {
    left: 12px;
    right: 12px;
    justify-content: center;
    border-radius: 10px;
  }

  .opti-layer-badge span,
  .opti-layer-badge strong {
    font-size: 0.61rem;
  }

  .opti-layer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .resource-orbit {
    min-height: 260px;
  }

  .resource-orbit img {
    width: 118px;
  }

  .news-section-head {
    grid-template-columns: 1fr;
  }

  .news-import-strip {
    width: 100%;
  }

  .news-signal-card {
    min-height: auto;
  }

  .news-signal-card::after {
    top: 96px;
  }

  .news-signal-card h3 {
    margin-top: 36px;
  }

  .news-date {
    position: static;
    margin-top: 8px;
  }

  .orbit-node {
    min-width: 72px;
    font-size: 0.7rem;
  }

  .solution-visual {
    grid-template-columns: 1fr;
  }

  .solution-visual-map {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .visual-star {
    left: auto;
    right: 12px;
    top: 8px;
    transform: none;
  }

  .visual-connector {
    justify-self: center;
    width: 2px;
    height: 34px;
    animation: none;
    transform-origin: top;
  }

  .signal-core {
    left: 50%;
    top: 44%;
    width: min(72vw, 270px);
  }

  .signal-platform {
    bottom: 22px;
    width: min(84%, 300px);
    height: 104px;
  }

  .platform-top {
    top: 11px;
    height: 58px;
  }

  .platform-rim {
    top: 34px;
    height: 64px;
  }

  .platform-band {
    top: 48px;
    height: 58px;
  }

  .platform-flare {
    top: -22px;
    width: 122px;
    height: 84px;
  }

  .platform-glow {
    top: 8px;
    width: 70px;
    height: 42px;
  }

  .signal-beam {
    bottom: 74px;
    width: 164px;
    height: 118px;
  }

  .stack-steps div {
    grid-template-columns: 1fr;
  }

  .stack-steps em {
    grid-column: 1;
  }

  .solution-row {
    gap: 10px;
  }

  .solution-detail {
    padding: 26px;
  }

  .solution-section-marker {
    position: static;
    justify-content: flex-end;
    margin-bottom: -12px;
  }

  .solution-detail::before {
    display: none;
  }

  .solution-block-grid {
    grid-template-columns: 1fr;
  }

  .method-path span {
    width: 96px;
    height: 96px;
  }

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

  .audit-line {
    grid-template-columns: 1fr;
  }

  .audit-score {
    text-align: left;
  }

  .portal-login {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .founder-card h3,
  .founder-role {
    white-space: normal;
  }

  .founder-media {
    min-height: 360px;
  }
}
