/* Self-hosted latin WOFF2 — sharper paint, no Google Fonts @import latency */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/space-grotesk-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('assets/fonts/ibm-plex-mono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('assets/fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Finalized AutonomeX Gate 2 tokens */
  --violet-core: #6d28d9;
  --violet-mark-dark: #8b5cf6;
  --violet-bright: #a78bfa;
  --violet-pale: #ddd6fe;
  --violet-deep: #4c1d95;
  --ink: #0f0b19;
  --ink-raised: #171121;
  --ink-soft: #21182f;
  --paper: #f7f5f0;
  --paper-warm: #f7f5f0;
  --paper-violet: #eeeafd;
  --slate: #5c5a66;
  --caption: #a5a3ae;
  --teal: #06b6d4;
  --teal-dark: #0e7490;
  --amber: #d97706;
  --red: #b3372f;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --ink-hairline: rgba(15, 11, 25, 0.12);
  --display: 'Space Grotesk', Arial, sans-serif;
  --body: 'Inter', Arial, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --shell: 1240px;
  --section-space: clamp(88px, 11vw, 152px);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --duration-fast: 150ms;
  --duration-ui: 350ms;
  --duration-deliberate: 600ms;
  --duration-reveal: 1400ms;
  --ease-control: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

/*
  Interactive aurora field — atmosphere for intelligence under Pragraha.
  Violet = authority / bound. Teal + paper dust = useful signal.
  Lives behind content; paper sections stay opaque for readability.
*/
.site-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-aurora canvas {
  display: block;
  width: 100%;
  height: 100%;
  /* Present field; section vaults keep long copy readable */
  opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
  .site-aurora canvas {
    opacity: 0.58;
  }
}

/* Keep content above the fixed aurora. Do NOT set position on the header —
   that was overriding .site-header { position: fixed } and hiding the
   progressive scroll line (founder-site pattern under the nav). */
body > .skip-link,
body > main,
body > .site-footer {
  position: relative;
  z-index: 1;
}

body > .site-header {
  z-index: 100;
}

body::selection {
  background: var(--violet-core);
  color: white;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  transition: transform var(--duration-fast);
}

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

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.eyebrow,
.mono-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--violet-bright);
}

.mono-label {
  color: var(--caption);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(196, 181, 253, 0.08);
  background: linear-gradient(180deg, rgba(15, 11, 25, 0.72), rgba(15, 11, 25, 0.36));
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  transition: background var(--duration-ui), border-color var(--duration-ui), box-shadow var(--duration-ui);
}

.site-header.is-scrolled {
  border-color: rgba(196, 181, 253, 0.18);
  background: rgba(15, 11, 25, 0.9);
  box-shadow: 0 14px 44px rgba(5, 3, 10, 0.28);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

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

.brand-lockup {
  position: relative;
  z-index: 2;
  display: inline-block;
  flex: none;
}

.brand-lockup picture {
  display: block;
}

.brand-lockup img {
  width: 206px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(196, 181, 253, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-links a {
  position: relative;
  padding: 9px 11px;
  border-radius: 999px;
  color: #d2ceda;
  font-size: 0.8rem;
  font-weight: 540;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);
}

.nav-links a::after {
  content: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #fff;
  background: rgba(139, 92, 246, 0.14);
}

.nav-links a.is-active {
  box-shadow: inset 0 0 0 1px rgba(196, 181, 253, 0.16);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.site-prefs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-language {
  color: rgba(196, 181, 253, 0.72);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.site-pref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.site-pref-label {
  color: rgba(196, 181, 253, 0.72);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-pref select {
  appearance: none;
  min-width: 5.5rem;
  max-width: 7.75rem;
  min-height: 34px;
  padding: 6px 28px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.32);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ddd6fe' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      right 10px center / 10px no-repeat,
    rgba(15, 11, 25, 0.55);
  color: #f5f3ff;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.site-pref select:focus-visible {
  outline: none;
  border-color: rgba(167, 139, 250, 0.85);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.22);
}

.site-pref select option {
  color: #1a1428;
  background: #f7f4ee;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--duration-fast), box-shadow var(--duration-ui), background var(--duration-ui), border-color var(--duration-ui);
}

.button-primary {
  background: linear-gradient(115deg, #6d28d9, var(--violet-core));
  color: white;
  box-shadow: 0 12px 34px rgba(124, 58, 237, 0.32);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.45);
}

.button-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.05));
  font-size: 0.94rem;
}

.button-large {
  min-height: 54px;
  padding: 12px 12px 12px 24px;
}

.button-large .button-arrow {
  width: 34px;
  height: 34px;
}

.button-quiet {
  border-color: var(--hairline-strong);
  background: transparent;
  color: var(--paper);
  padding: 10px 20px;
}

.button-quiet:hover {
  border-color: var(--violet-bright);
  background: rgba(124, 58, 237, 0.09);
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet-pale);
  font-weight: 500;
}

.quiet-link span {
  transition: transform var(--duration-ui) var(--ease-control);
}

.quiet-link:hover span {
  transform: translate(3px, -3px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
  transition: transform var(--duration-ui), opacity var(--duration-fast);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (min-width: 901px) and (max-width: 1390px) {
  .nav-links {
    position: fixed;
    top: 76px;
    right: 24px;
    left: auto;
    display: grid;
    min-width: 260px;
    gap: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-10px);
    border: 1px solid var(--hairline-strong);
    border-radius: 18px;
    padding: 10px;
    background: rgba(23, 17, 33, 0.98);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-ui), transform var(--duration-ui), visibility var(--duration-ui);
  }

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

  .nav-links a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .menu-button {
    display: grid;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  padding: clamp(138px, 15vw, 196px) 0 58px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(17, 12, 27, 0.12) 0%, rgba(15, 11, 25, 0.45) 72%, var(--ink) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
}

.hero-aura {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: -1;
  width: min(1040px, 90vw);
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(26px);
  background:
    radial-gradient(circle at 32% 35%, rgba(124, 58, 237, 0.28), transparent 45%),
    radial-gradient(circle at 72% 52%, rgba(6, 182, 212, 0.12), transparent 38%);
}

.aperture-field {
  position: absolute;
  top: 102px;
  right: max(-92px, calc((100vw - var(--shell)) / 2 - 164px));
  z-index: -1;
  display: grid;
  width: 320px;
  justify-items: center;
  opacity: 0.16;
}

.aperture-field span {
  margin-top: 14px;
  color: var(--caption);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aperture-mark {
  display: block;
  width: 240px;
  height: 240px;
}

.aperture-authorization {
  opacity: 0;
  transform-origin: 48px 48px;
}

.aperture-mark .aperture-tr,
.aperture-mark .aperture-br {
  fill: var(--paper);
}

.aperture-mark .aperture-tl {
  animation: aperture-in-tl 450ms var(--ease-control) both;
}

.aperture-mark .aperture-tr {
  animation: aperture-in-tr 450ms var(--ease-control) both, aperture-authorize-right 350ms ease 950ms both;
}

.aperture-mark .aperture-bl {
  animation: aperture-in-bl 450ms var(--ease-control) both;
}

.aperture-mark .aperture-br {
  animation: aperture-in-br 450ms var(--ease-control) both, aperture-authorize-right 350ms ease 800ms both;
}

.aperture-mark .aperture-authorization {
  animation: aperture-authorize 1400ms linear both;
}

@keyframes aperture-in-tl {
  from { transform: translate(-30px, -30px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes aperture-in-tr {
  from { transform: translate(30px, -30px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes aperture-in-bl {
  from { transform: translate(-30px, 30px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes aperture-in-br {
  from { transform: translate(30px, 30px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes aperture-authorize-right {
  to { fill: var(--violet-mark-dark); }
}

@keyframes aperture-authorize {
  0%, 46% { opacity: 0; transform: scale(0.2); }
  54%, 64% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(1); }
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(6, 182, 212, 0.1), 0 0 16px rgba(6, 182, 212, 0.9);
}

.product-line {
  margin: 30px 0 0;
  color: #c7c3d1;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero h1 {
  max-width: 720px;
  margin: 14px 0 26px;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 span {
  color: var(--violet-bright);
}

.hero h1 .fw-kine-line {
  color: var(--paper);
}

.hero h1 .fw-kine-clear {
  color: var(--violet-bright);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c2becb;
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  line-height: 1.72;
}

.hero-lead strong {
  color: white;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: var(--caption);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.proof-violet { background: var(--violet-bright); }
.proof-teal { background: var(--teal); box-shadow: 0 0 10px rgba(6, 182, 212, 0.6); }
.proof-outline { border: 1px solid var(--caption); }

.hero-product {
  position: relative;
  z-index: 2;
  width: 118%;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
  transition: transform var(--duration-deliberate) var(--ease-control);
}

.product-glow {
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  filter: blur(55px);
  background: linear-gradient(130deg, rgba(124, 58, 237, 0.62), rgba(6, 182, 212, 0.23));
}

.product-window {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(25, 19, 36, 0.72);
  box-shadow: 0 60px 120px rgba(3, 2, 7, 0.62), 0 12px 38px rgba(124, 58, 237, 0.16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--hairline);
  padding: 0 16px;
  color: var(--caption);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: #83e7d9;
}

.window-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.product-window img {
  width: 100%;
  height: auto;
}

.product-window figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 11, 25, 0.7);
  color: #c8c4d2;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(31, 23, 45, 0.82);
  box-shadow: 0 22px 58px rgba(3, 2, 7, 0.44);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.float-label {
  display: block;
  margin-bottom: 7px;
  color: var(--caption);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.float-card strong {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
}

.float-risk {
  top: -54px;
  right: 4%;
  width: 174px;
  padding: 15px;
  animation: float-y 6s var(--ease-control) infinite alternate;
}

.float-risk .status {
  margin-top: 9px;
}

.float-route {
  top: 34%;
  left: -52px;
  width: 150px;
  padding: 15px;
  animation: float-y 7s var(--ease-control) 0.8s infinite alternate-reverse;
}

.route-line {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.route-line i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--violet-bright);
  transform: rotate(45deg);
}

.route-line b {
  flex: 1;
  height: 1px;
  border-top: 1px dashed rgba(167, 139, 250, 0.58);
}

.float-human {
  right: 8%;
  bottom: -40px;
  display: flex;
  min-width: 215px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  animation: float-y 6.5s var(--ease-control) 0.4s infinite alternate;
}

.float-human > span:last-child {
  display: grid;
}

.float-human small {
  margin-top: 2px;
  color: var(--caption);
  font-size: 0.68rem;
}

.approval-ring {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: none;
  border: 1px solid rgba(6, 182, 212, 0.5);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.13);
  color: #67e8f9;
}

@keyframes float-y {
  from { transform: translateY(-3px); }
  to { transform: translateY(8px); }
}

.flow-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(100px, 12vw, 146px);
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}

.flow-intro p {
  max-width: 28ch;
  margin: 7px 0 0;
  color: #b9b5c3;
  font-size: 0.9rem;
}

.micro-flow {
  --flow-diamond: 38px;
  --flow-node: 58px;
  --flow-rail-y: calc(var(--flow-node) / 2);
  --flow-gap: 22px;
  --flow-pad-top: 10px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
}

.micro-flow::before,
.micro-flow::after {
  content: none;
}

.micro-flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: var(--flow-pad-top) 6px 8px;
  border: 0;
  color: #c0bbc9;
  text-align: center;
  transition: color 280ms ease;
  background: transparent;
  box-shadow: none;
}

/*
  Connectors only in the open air between node plates.
  Never drawn under icons, so nothing can read as a strike-through.
*/
.micro-flow li:not(:last-child)::before,
.micro-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--flow-pad-top) + var(--flow-rail-y));
  left: calc(50% + (var(--flow-node) / 2) + var(--flow-gap));
  width: calc(100% - var(--flow-node) - (var(--flow-gap) * 2));
  z-index: -1;
  pointer-events: none;
}

.micro-flow li:not(:last-child)::before {
  height: 0;
  border-top: 1.5px dashed rgba(196, 181, 253, 0.55);
  transform: translateY(-0.5px);
}

.micro-flow li:not(:last-child)::after {
  top: calc(var(--flow-pad-top) + var(--flow-rail-y) - 1px);
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.95), rgba(45, 212, 191, 0.95));
  /* No outer glow: it was bleeding into the node plates */
  animation: flow-pulse 4.8s var(--ease-control) infinite;
}

.micro-flow li:nth-child(2)::after { animation-delay: 1.1s; }
.micro-flow li:nth-child(3)::after { animation-delay: 2.2s; }

@keyframes flow-pulse {
  0%, 18% { transform: scaleX(0); opacity: 0; }
  28%, 48% { transform: scaleX(1); opacity: 0.95; }
  62%, 100% { transform: scaleX(1); opacity: 0; }
}

.flow-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--flow-node);
  height: var(--flow-node);
  place-items: center;
  flex: none;
  color: #efe9ff;
  border-radius: 50%;
  background-color: #12101a;
  background-image:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.1), transparent 52%),
    radial-gradient(circle at 70% 78%, rgba(109, 40, 217, 0.22), transparent 55%);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.28),
    0 0 0 7px #0f0b19;
}

/* Faceted diamond behind the glyph (38 * √2 ≈ 53.7 < 58) */
.flow-icon::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--flow-diamond);
  height: var(--flow-diamond);
  border: 1.5px solid rgba(196, 181, 253, 0.78);
  transform: rotate(45deg);
  background-color: #2a1f3d;
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(320deg, rgba(124, 58, 237, 0.42), transparent 52%),
    linear-gradient(90deg, rgba(167, 139, 250, 0.14), transparent 40%, rgba(45, 212, 191, 0.1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 14px rgba(109, 40, 217, 0.22),
    0 0 18px rgba(109, 40, 217, 0.28);
}

.flow-glyph {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: inherit;
}

.flow-glyph svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-icon::after {
  content: none;
}

.micro-flow li > span:last-child {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  justify-items: center;
}

.micro-flow strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.micro-flow small {
  max-width: 14ch;
  color: var(--caption);
  font-size: 0.68rem;
  line-height: 1.3;
  white-space: normal;
}

.flow-approved .flow-icon {
  color: #a5f3fc;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.32),
    0 0 0 7px #0f0b19;
}

.flow-approved .flow-icon::before {
  border-color: rgba(103, 232, 249, 0.85);
  background-color: #163039;
  background-image:
    linear-gradient(145deg, rgba(34, 211, 238, 0.28), transparent 52%),
    linear-gradient(320deg, rgba(6, 182, 212, 0.22), transparent 48%);
}

.micro-flow li.is-active {
  color: #ebe7f4;
  background: transparent;
  box-shadow: none;
}

.micro-flow li.is-active .flow-icon {
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.65),
    0 0 0 7px #0f0b19,
    0 0 22px rgba(109, 40, 217, 0.45);
}

.micro-flow li.is-active .flow-icon::before {
  border-color: rgba(237, 233, 254, 0.98);
  background-color: #3b2560;
  background-image:
    linear-gradient(145deg, rgba(237, 233, 254, 0.42), transparent 55%),
    linear-gradient(320deg, rgba(139, 92, 246, 0.48), transparent 50%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 16px rgba(124, 58, 237, 0.4);
}

.micro-flow li.is-active strong {
  color: #fff;
}

.micro-flow li.is-active > span:last-child {
  padding: 7px 12px 8px;
  border-radius: 12px;
  background: rgba(109, 40, 217, 0.16);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.micro-flow li.flow-approved.is-active .flow-icon {
  color: #cffafe;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.55),
    0 0 0 7px #0f0b19,
    0 0 16px rgba(6, 182, 212, 0.28);
}

.micro-flow li.flow-approved.is-active .flow-icon::before {
  border-color: rgba(103, 232, 249, 0.92);
  background-color: #102027;
  background-image:
    linear-gradient(145deg, rgba(34, 211, 238, 0.3), transparent 55%),
    linear-gradient(320deg, rgba(6, 182, 212, 0.18), transparent 50%);
}

.micro-flow li.flow-approved.is-active > span:last-child {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(34, 211, 238, 0.3);
}

/* Shared section typography */
.paper-section {
  position: relative;
  padding: var(--section-space) 0;
  background: var(--paper-warm);
  color: var(--ink);
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-heading h2,
.truth-heading h2,
.pilot-copy h2 {
  margin: 14px 0 22px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.8vw, 5.65rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-heading h2 span,
.pilot-copy h2 span {
  color: var(--violet-bright);
}

.section-heading > p:last-child,
.section-heading-split > p,
.truth-heading > p:last-child,
.pilot-copy > p {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.paper-section .eyebrow {
  color: var(--violet-core);
}

.paper-section .section-heading > p:last-child,
.paper-section .section-heading-split > p {
  color: var(--slate);
}

.section-heading-wide {
  max-width: 890px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 64px;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

/* Truth band */
.truth-band {
  position: relative;
  padding: clamp(74px, 9vw, 112px) 0;
  border-top: 1px solid var(--hairline);
  background: #130e1d;
}

.truth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.truth-heading {
  padding: 20px 44px 20px 0;
}

.truth-heading h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.truth-heading > p:last-child {
  color: #aaa5b4;
  font-size: 0.95rem;
}

.truth-card {
  min-height: 100%;
  border: 1px solid var(--hairline-strong);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.028);
}

.truth-now {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.09), rgba(255, 255, 255, 0.025));
}

.truth-next {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(255, 255, 255, 0.025));
}

.truth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.truth-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  color: var(--caption);
}

.truth-card h3 {
  margin: 34px 0 22px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 9px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.status-teal {
  border-color: rgba(6, 182, 212, 0.34);
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
}

.status-amber {
  border-color: rgba(217, 119, 6, 0.38);
  background: rgba(217, 119, 6, 0.14);
  color: #fbbf24;
}

.status-violet {
  border-color: rgba(124, 58, 237, 0.38);
  background: rgba(124, 58, 237, 0.1);
  color: #c4b5fd;
}

.status-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--caption);
}

.circle-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.circle-list li {
  position: relative;
  padding-left: 20px;
  color: #bcb8c5;
  font-size: 0.88rem;
}

.circle-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--violet-bright);
  border-radius: 50%;
}

.truth-now .circle-list li::before {
  border-color: var(--teal);
}

.truth-heading-wide {
  max-width: 48rem;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: 0;
}

.truth-heading-wide h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.truth-heading-wide > p:last-child {
  max-width: 40rem;
  color: #aaa5b4;
  font-size: 0.98rem;
}

.maturity-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.maturity-rail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.028);
  min-height: 100%;
  transform: perspective(1200px) rotateY(var(--rail-y, 0deg));
  transform-style: preserve-3d;
}

.maturity-rail-now { --rail-y: 1.4deg; }
.maturity-rail-next { --rail-y: -1.4deg; }

.maturity-rail::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.16), transparent 68%);
  pointer-events: none;
}

.maturity-rail-now::before {
  background: radial-gradient(circle, rgba(103, 232, 249, 0.14), transparent 68%);
}

.maturity-rail-now {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(255, 255, 255, 0.02));
}

.maturity-rail-next {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.02));
}

.maturity-rail header {
  margin-bottom: 22px;
}

.maturity-rail h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--paper);
}

.maturity-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.maturity-steps li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(10, 8, 16, 0.52);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 2px 0 rgba(0, 0, 0, 0.35);
  transform: perspective(700px) rotateX(8deg) translateZ(0);
  transform-origin: center bottom;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.maturity-steps li:hover {
  transform: perspective(700px) rotateX(2deg) translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 18px 34px rgba(0, 0, 0, 0.34);
}

.maturity-steps li span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: #67e8f9;
}

.maturity-rail-next .maturity-steps li span {
  color: #c4b5fd;
}

.maturity-steps li strong {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.maturity-steps li small {
  color: #aaa5b4;
  font-size: 0.72rem;
  line-height: 1.35;
}

.maturity-steps li.is-gate {
  border-color: rgba(251, 191, 36, 0.35);
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.14), rgba(10, 8, 16, 0.5));
}

.maturity-steps li.is-gate span {
  color: #fbbf24;
}

.decision-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(34, 28, 52, 0.7), rgba(14, 11, 23, 0.85));
}

.decision-split-copy .mono-label {
  margin-bottom: 10px;
  color: #a5f3fc;
}

.decision-split-copy h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--paper);
}

.decision-split-copy p:last-child {
  margin: 0;
  max-width: 36rem;
  color: #bbb5c4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.autonomy-dial {
  margin: 0;
  text-align: center;
}

.autonomy-dial svg {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.autonomy-dial .dial-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.autonomy-dial .dial-knob {
  fill: #f4f0ff;
  stroke: rgba(15, 11, 25, 0.8);
  stroke-width: 2;
}

.autonomy-dial text {
  fill: #9b95a8;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.autonomy-dial .dial-center {
  fill: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.autonomy-dial .dial-sub {
  fill: #c4b5fd;
  font-size: 8px;
}

.autonomy-dial figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.dial-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d5d0df;
}

.dial-chip.is-auto {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.12);
  color: #67e8f9;
}

.dial-chip.is-gate {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

@media (max-width: 900px) {
  .maturity-chart,
  .decision-split {
    grid-template-columns: 1fr;
  }

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

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

  .maturity-steps li {
    min-height: 84px;
    transform: none;
  }
}

/* Problem */
.problem {
  overflow: hidden;
}

.problem::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(90px);
  background: var(--violet-bright);
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.problem-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--ink-hairline);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  transition: transform var(--duration-ui) var(--ease-control), box-shadow var(--duration-ui);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(58, 43, 86, 0.1);
}

.problem-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr minmax(260px, 0.7fr);
  align-items: center;
  gap: 38px;
  min-height: 240px;
}

.card-index {
  align-self: start;
  color: var(--violet-core);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.problem-card h3 {
  max-width: 22ch;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.problem-card p {
  max-width: 55ch;
  margin: 0;
  color: var(--slate);
}

.problem-card-violet {
  border-color: transparent;
  background: linear-gradient(145deg, #5621ba, #7c3aed);
  color: white;
}

.problem-card-violet .card-index,
.problem-card-violet p {
  color: #e4ddff;
}

.signal-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 320px);
}

.signal-inbox {
  display: grid;
  gap: 10px;
}

.signal-inbox::before {
  content: "";
  position: absolute;
  inset: 18% 8% auto;
  height: 54%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
  pointer-events: none;
}

.signal-inbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(58, 43, 86, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 252, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 36px rgba(58, 43, 86, 0.08);
}

.signal-inbox-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(58, 43, 86, 0.08);
  background: rgba(248, 246, 252, 0.9);
}

.signal-inbox-head span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd6e8;
}

.signal-inbox-head span:nth-child(1) { background: #f0b4b4; }
.signal-inbox-head span:nth-child(2) { background: #f0d39a; }
.signal-inbox-head span:nth-child(3) { background: #b8e0c4; }

.signal-inbox-head em {
  margin-left: auto;
  color: #8b8499;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-inbox-row {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(58, 43, 86, 0.06);
  color: #6f687c;
}

.signal-inbox-row:last-child {
  border-bottom: 0;
}

.signal-inbox-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d2e2;
  box-shadow: none;
}

.signal-inbox-row b {
  overflow: hidden;
  color: #3a2b56;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.signal-inbox-row em {
  color: #9a93a8;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-inbox-row.is-hold {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.08), transparent 55%);
  box-shadow: inset 2px 0 0 #d97706;
}

.signal-inbox-row.is-hold i {
  background: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.16);
}

.signal-inbox-row.is-hold b {
  color: #1f1830;
}

.signal-inbox-row.is-hold em {
  padding: 3px 7px;
  border-radius: 999px;
  color: #9a3412;
  background: rgba(251, 191, 36, 0.28);
  border: 1px solid rgba(217, 119, 6, 0.28);
}

.signal-inbox-caption {
  position: relative;
  z-index: 1;
  color: #8b8499;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.problem-card:has(.signal-threads),
.problem-card:has(.signal-router) {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}

.problem-card:has(.signal-threads) .signal-visual,
.problem-card:has(.signal-router) .signal-visual {
  justify-self: stretch;
  align-self: end;
  width: 100%;
  margin-top: 22px;
}

.signal-threads,
.signal-router {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.signal-threads .signal-inbox-caption,
.signal-router .signal-inbox-caption {
  text-align: center;
  width: 100%;
}

.signal-thread-scatter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.signal-thread-scatter i {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(58, 43, 86, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(58, 43, 86, 0.08);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.04em;
  transform: rotate(var(--r, 0deg));
}

.signal-thread-scatter i:nth-child(1) { --r: -6deg; }
.signal-thread-scatter i:nth-child(2) { --r: 4deg; }
.signal-thread-scatter i:nth-child(3) { --r: -3deg; }
.signal-thread-scatter i:nth-child(4) { --r: 7deg; }

.signal-thread-funnel {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.55));
}

.signal-thread-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 14px;
  padding: 12px 16px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(255, 255, 255, 0.9));
  color: var(--violet-core);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 14px 28px rgba(88, 48, 170, 0.12);
}

.signal-router-person {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #fff 0 28%, transparent 29%),
    radial-gradient(circle at 50% 88%, #fff 0 42%, transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.signal-router-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.signal-router-lanes em {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(15, 11, 25, 0.18);
  color: #f4f0ff;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-card-violet .signal-inbox-caption {
  color: rgba(244, 240, 255, 0.72);
}

/* Editorial artwork: scroll-driven 3D zoom into a full-screen blueprint */
.operational-art {
  --art-progress: 0;
  position: relative;
  /* Do not overflow-clip — sticky expand needs a live containing block */
  padding: clamp(72px, 9vw, 124px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #172b4d;
  color: #f7f5f0;
  isolation: isolate;
}

.operational-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: calc(0.28 * (1 - var(--art-progress) * 0.85));
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 52%);
  mask-image: linear-gradient(to bottom, black, transparent 52%);
  pointer-events: none;
}

.operational-art-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(34px, 7vw, 110px);
  margin-bottom: clamp(8px, 1.5vw, 18px);
}

.operational-art .eyebrow {
  margin-bottom: 16px;
  color: #a5f3fc;
}

.operational-art .mono-label {
  margin: 0;
  color: rgba(247, 245, 240, 0.62);
}

.operational-art-intro h2 {
  max-width: 12ch;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(3rem, 6.6vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.operational-art-intro > div:last-child > p {
  max-width: 48rem;
  margin: 0;
  color: rgba(247, 245, 240, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

/* Compact runway — the zoom should feel quick, not a long hold */
.operational-art-pin {
  position: relative;
  height: 190vh;
  margin-top: clamp(4px, 1vw, 12px);
}

.operational-art-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  perspective: 1600px;
  perspective-origin: 50% 42%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(34, 211, 238, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 48% at 78% 30%, rgba(109, 40, 217, 0.14), transparent 55%),
    #0c1a33;
}

.operational-art-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 26, 51, 0.72) 0%, transparent 18%, transparent 82%, rgba(12, 26, 51, 0.8) 100%),
    linear-gradient(90deg, rgba(12, 26, 51, 0.55) 0%, transparent 16%, transparent 84%, rgba(12, 26, 51, 0.55) 100%);
  opacity: calc(1 - var(--art-progress) * 0.95);
}

.operational-art-figure {
  --art-inset-x: 18vw;
  --art-inset-y: 16vh;
  --art-radius: 28px;
  --art-scale: 1.08;
  --art-rotate-x: 9deg;
  --art-rotate-y: -4deg;
  --art-depth: -120px;
  --art-caption: 0.35;
  position: absolute;
  z-index: 1;
  inset: var(--art-inset-y) var(--art-inset-x);
  margin: 0;
  border-radius: var(--art-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, calc(0.2 * (1 - var(--art-progress))));
  background: #10213d;
  transform-style: preserve-3d;
  transform:
    translate3d(0, 0, var(--art-depth))
    rotateX(var(--art-rotate-x))
    rotateY(var(--art-rotate-y))
    scale(calc(0.92 + var(--art-progress) * 0.08));
  transform-origin: 50% 55%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, calc(0.12 * (1 - var(--art-progress)))) inset,
    0 0 0 1px rgba(34, 211, 238, calc(0.14 * (1 - var(--art-progress)))),
    0 28px 70px rgba(0, 0, 0, calc(0.55 * (1 - var(--art-progress) * 0.55))),
    0 60px 140px rgba(8, 18, 40, calc(0.55 * (1 - var(--art-progress) * 0.7))),
    0 0 90px rgba(34, 211, 238, calc(0.12 * (1 - var(--art-progress))));
  will-change: transform, inset, border-radius;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.operational-art-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, calc(0.08 * (1 - var(--art-progress)))),
    inset 0 -40px 90px rgba(0, 0, 0, calc(0.22 + var(--art-progress) * 0.18));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, calc(0.08 * (1 - var(--art-progress)))) 0%, transparent 18%),
    radial-gradient(ellipse 95% 75% at 50% 40%, transparent 42%, rgba(8, 16, 34, calc(0.18 + var(--art-progress) * 0.12)) 100%);
}

.operational-art-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.operational-art-media picture,
.operational-art-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.operational-art-media img {
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(var(--art-scale));
  transform-origin: 48% 44%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.operational-art-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(16px, 4vw, 48px);
  align-items: end;
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 56px) clamp(22px, 3.5vw, 36px);
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(8, 16, 34, 0.08) 28%,
      rgba(8, 16, 34, 0.62) 72%,
      rgba(8, 16, 34, 0.86) 100%
    );
  opacity: var(--art-caption);
  pointer-events: none;
}

.operational-art-caption span {
  color: #a5f3fc;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.operational-art-caption p {
  max-width: 42rem;
  margin: 0;
  color: rgba(247, 245, 240, 0.86);
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.operational-art-kicker {
  grid-column: 1 / -1;
  margin: 10px 0 0 !important;
  font-family: var(--mono);
  font-size: 0.62rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, calc(0.9 * (1 - var(--art-progress)))) !important;
  opacity: calc(1 - max(0, var(--art-progress) - 0.45) / 0.4);
}

.operational-art.is-art-open .operational-art-kicker {
  opacity: 0;
}

@media (max-width: 900px) {
  .operational-art-pin {
    height: 180vh;
  }

  .operational-art-figure {
    --art-inset-x: 8vw;
    --art-inset-y: 14vh;
    --art-radius: 20px;
    --art-rotate-x: 6deg;
    --art-rotate-y: -2deg;
  }

  .operational-art-caption {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .operational-art-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .operational-art-intro h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 5.2rem);
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 520px) {
  .operational-art-pin {
    height: auto;
    margin-top: 18px;
    padding: 0 clamp(16px, 4vw, 28px) clamp(36px, 6vw, 64px);
  }

  .operational-art-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    perspective: none;
    background: transparent;
  }

  .operational-art-sticky::before {
    display: none;
  }

  .operational-art-figure {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    --art-inset-x: 0;
    --art-inset-y: 0;
    --art-radius: 18px;
    --art-scale: 1;
    --art-rotate-x: 0deg;
    --art-rotate-y: 0deg;
    --art-depth: 0px;
    --art-caption: 1;
    border-radius: 18px;
    transform: none;
    will-change: auto;
  }

  .operational-art-media {
    position: relative;
    aspect-ratio: 16 / 9;
  }

  .operational-art-media img {
    transform: none;
    will-change: auto;
    object-position: center;
  }

  .operational-art-caption {
    position: relative;
    opacity: 1;
    padding: 18px 4px 0;
    background: none;
    grid-template-columns: 1fr;
  }

  .operational-art-kicker {
    display: none;
  }
}

html.is-low-power .operational-art-pin {
  height: auto;
  margin-top: 18px;
  padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 72px);
}

html.is-low-power .operational-art-sticky {
  position: relative;
  height: auto;
  perspective: none;
  background: transparent;
}

html.is-low-power .operational-art-sticky::before {
  display: none;
}

html.is-low-power .operational-art-figure {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  --art-scale: 1;
  --art-rotate-x: 0deg;
  --art-rotate-y: 0deg;
  --art-depth: 0px;
  --art-caption: 1;
  border-radius: 20px;
  transform: none;
}

html.is-low-power .operational-art-media {
  position: relative;
  aspect-ratio: 16 / 9;
}

html.is-low-power .operational-art-media img {
  transform: none;
}

html.is-low-power .operational-art-caption {
  position: relative;
  opacity: 1;
  background: none;
  padding: 18px 8px 0;
}

html.is-low-power .operational-art-kicker {
  display: none;
}

/* Product story */
.product-section,
.platform-section,
.pilot-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 0;
  background: var(--ink);
}

.product-section {
  overflow: visible;
}

.product-section .section-heading > p:last-child,
.platform-section .section-heading > p:last-child {
  color: #aba6b5;
}

.product-story {
  overflow: visible;
  border: 1px solid var(--hairline-strong);
  border-radius: 24px;
  background: #120e1a;
  box-shadow: 0 36px 90px rgba(4, 2, 8, 0.32);
}

.story-tabs {
  position: sticky;
  top: 76px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 23px 23px 0 0;
  background: rgba(18, 14, 26, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.story-tab {
  min-height: 60px;
  border: 0;
  border-right: 1px solid var(--hairline);
  background: transparent;
  color: var(--caption);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.95rem;
  transition: background var(--duration-ui), color var(--duration-ui);
}

.story-tab:last-child {
  border-right: 0;
}

.story-tab span {
  margin-right: 10px;
  color: #9b95a3;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.story-tab.is-selected {
  background: rgba(124, 58, 237, 0.12);
  color: white;
}

.story-tab.is-selected span {
  color: var(--violet-bright);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  min-height: 0;
  padding: 18px;
  border-radius: 0 0 23px 23px;
  background:
    radial-gradient(circle at 78% 12%, rgba(109, 40, 217, 0.14), transparent 34%),
    #100c18;
}

.story-panel[hidden] {
  display: none;
}

.story-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(34px, 4vw, 50px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
    #15101e;
}

.story-copy h3 {
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.story-copy > p:not(.mono-label) {
  margin: 0;
  color: #aaa5b4;
  line-height: 1.7;
}

.compact-list {
  margin-top: 28px;
}

.story-media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 470px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(24px, 3.2vw, 40px);
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.68;
}

.story-media-violet::before {
  background: linear-gradient(135deg, #5017b8 0%, #7959e8 46%, #06a6c2 100%);
}

.story-media-teal::before {
  background: linear-gradient(140deg, #0f6e78, #06b6d4 48%, #7c3aed);
}

.story-media-ink::before {
  background: radial-gradient(circle at 60% 20%, #3e1875, #181022 50%, #08070d);
}

.story-media picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 28px 62px rgba(15, 11, 25, 0.42);
}

.story-media-ink img {
  width: auto;
  max-width: 100%;
}

.story-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(15, 11, 25, 0.66);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--mono);
  font-size: 0.55rem;
}

/* Walkthrough */
.walkthrough-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.walkthrough-copy {
  position: sticky;
  top: 125px;
}

.walkthrough h2 {
  margin: 15px 0 28px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.walkthrough blockquote {
  margin: 0 0 26px;
  border-left: 2px solid var(--amber);
  padding: 2px 0 2px 20px;
  color: #352f3b;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.walkthrough-copy > p:not(.eyebrow):not(.control-note) {
  color: var(--slate);
}

.control-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  color: var(--ink);
}

.control-note span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  color: var(--teal-dark);
}

.routing-flow {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.routing-flow::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 36px;
  width: 1px;
  background: linear-gradient(var(--violet-core), rgba(124, 58, 237, 0.12), var(--teal));
}

.routing-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border: 1px solid var(--ink-hairline);
  border-radius: 20px;
  padding: 30px;
  background: white;
  box-shadow: 0 16px 40px rgba(38, 28, 58, 0.05);
}

.route-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--violet-core);
  font-family: var(--mono);
  font-size: 0.63rem;
}

.route-number::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(124, 58, 237, 0.28);
  transform: rotate(45deg);
  background: var(--paper);
}

.routing-flow .mono-label {
  color: var(--violet-core);
}

.routing-flow h3 {
  margin: 7px 0 8px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.routing-flow p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.routing-flow .route-risk {
  border-color: rgba(217, 119, 6, 0.28);
  background: #fffaf1;
}

.routing-flow .route-risk .route-number {
  color: var(--amber);
}

.routing-flow .route-risk .route-number::before {
  border-color: rgba(217, 119, 6, 0.4);
  background: #fff4dc;
}

.routing-flow .route-risk .mono-label {
  color: var(--amber);
}

.routing-flow .route-human {
  border-color: rgba(6, 182, 212, 0.3);
  background: #f1fcfd;
}

.routing-flow .route-human .route-number {
  color: var(--teal-dark);
}

.routing-flow .route-human .route-number::before {
  border-color: rgba(6, 182, 212, 0.48);
  background: rgba(6, 182, 212, 0.1);
}

.routing-flow .route-human .mono-label {
  color: var(--teal-dark);
}

/* Platform */
.platform-section {
  background: #100b19;
}

.platform-aura {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 900px;
  height: 600px;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 0.32;
  filter: blur(100px);
  background: var(--violet-core);
}

.pack-system {
  position: relative;
}

.core-card {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 24px;
  padding: 38px;
  text-align: center;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 70px rgba(4, 2, 8, 0.35);
}

.core-logo {
  width: min(286px, 88%);
  height: auto;
  margin: 0 auto 22px;
}

.core-card h3 {
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
}

.core-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.core-pills span {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 6px 10px;
  color: #bdb8c6;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pack-branches {
  position: relative;
  width: 68%;
  height: 82px;
  margin: 0 auto;
  border-right: 1px dashed rgba(167, 139, 250, 0.32);
  border-bottom: 1px dashed rgba(167, 139, 250, 0.32);
  border-left: 1px solid rgba(167, 139, 250, 0.32);
}

.pack-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-left: 1px solid rgba(167, 139, 250, 0.32);
}

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

.pack-card {
  min-height: 340px;
  border: 1px solid var(--hairline-strong);
  border-radius: 22px;
  padding: clamp(28px, 3.6vw, 42px);
  background: rgba(255, 255, 255, 0.028);
  transition: transform var(--duration-ui) var(--ease-control), border-color var(--duration-ui);
}

.pack-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.36);
}

.pack-live {
  border-color: rgba(6, 182, 212, 0.28);
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.11), rgba(255, 255, 255, 0.025));
}

.pack-card h3 {
  margin: 42px 0 18px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.pack-card p {
  margin: 0;
  color: #aaa5b4;
  font-size: 0.92rem;
}

.pack-next .quiet-link {
  margin-top: 28px;
  font-size: 0.88rem;
}

/* Trust */
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: clamp(48px, 8vw, 96px);
}

.trust-principles {
  display: grid;
  gap: 4px;
}

.trust-principles article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--ink-hairline);
  padding: 24px 0;
}

.trust-principles article:first-child {
  padding-top: 0;
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--violet-core);
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(124, 58, 237, 0.25);
  transform: rotate(45deg);
  background: var(--paper-violet);
}

.trust-icon-teal {
  color: var(--teal-dark);
}

.trust-icon-teal::before {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.1);
}

.trust-principles h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.trust-principles p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.control-card {
  align-self: start;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(30px, 5vw, 52px);
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.44), transparent 38%),
    var(--ink);
  color: var(--paper);
}

.control-graphic {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 54px 0;
  color: #d9d4e2;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.control-gate {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
}

.control-gate img {
  width: 64px;
  height: 64px;
}

.control-input,
.control-output {
  position: relative;
}

.control-input::after,
.control-output::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  border-top: 1px dashed rgba(167, 139, 250, 0.52);
}

.control-input::after { right: -24px; }
.control-output::before { left: -24px; border-top-style: solid; border-color: var(--teal); }

.control-identity {
  display: grid;
  gap: 4px;
  margin: -22px 0 30px;
}

.control-identity strong {
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.control-identity span {
  color: var(--caption);
  font-size: 0.78rem;
}

.control-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.control-caption {
  margin: 28px 0 0;
  color: var(--caption);
  font-size: 0.84rem;
}

/* Founder */
.founder-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 14%, rgba(124, 58, 237, 0.22), transparent 30%),
    linear-gradient(155deg, #1b1029 0%, #0f0b19 48%, #120c1e 100%);
}

.founder-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.founder-aura {
  position: absolute;
  top: 18%;
  left: -220px;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(120px);
  background: var(--teal);
}

.founder-word {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.founder-word-one {
  top: 7%;
  right: -4%;
}

.founder-word-two {
  bottom: 6%;
  left: -8%;
}

.founder-shell {
  position: relative;
  z-index: 1;
}

.founder-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
  margin-bottom: clamp(58px, 8vw, 96px);
}

.founder-heading .eyebrow,
.founder-heading h2 {
  grid-column: 1;
}

.founder-heading h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.founder-heading h2 span {
  color: var(--violet-bright);
}

.founder-intro {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.founder-intro p {
  margin: 0;
  color: #b8b3c1;
  font-size: clamp(0.96rem, 1.25vw, 1.1rem);
  line-height: 1.76;
}

.founder-intro p + p {
  margin-top: 18px;
}

.founder-dossier {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 18px;
}

.founder-profile {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 85% 8%, rgba(124, 58, 237, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 35px 85px rgba(4, 2, 8, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.founder-monogram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 90px;
  height: 90px;
  align-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(167, 139, 250, 0.34);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.26), rgba(6, 182, 212, 0.08));
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.2);
  color: white;
  font-family: var(--display);
  font-size: 1.42rem;
  text-align: center;
}

.founder-monogram i {
  width: 1px;
  height: 38px;
  transform: rotate(25deg);
  background: linear-gradient(transparent, var(--violet-bright), transparent);
}

.founder-profile-copy h3 {
  margin: 9px 0 15px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.founder-profile-copy > p:last-child {
  margin: 0;
  color: #aaa5b4;
  line-height: 1.7;
}

.founder-profile blockquote {
  margin: 38px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.founder-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-focus span {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 6px 10px;
  color: #aaa5b4;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 16px;
  padding: 17px 18px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--duration-ui) var(--ease-control), border-color var(--duration-ui), background var(--duration-ui);
}

.founder-link:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(124, 58, 237, 0.17);
}

.founder-link span {
  display: grid;
}

.founder-link small {
  margin-bottom: 3px;
  color: var(--caption);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-link i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.founder-arc {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
}

.founder-arc article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 24px;
  border-bottom: 1px solid var(--hairline);
  padding: clamp(28px, 4vw, 44px);
  transition: background var(--duration-ui);
}

.founder-arc article:last-child {
  border-bottom: 0;
}

.founder-arc article:hover {
  background: rgba(255, 255, 255, 0.035);
}

.founder-arc article::before {
  content: "";
  position: absolute;
  top: 70px;
  bottom: -24px;
  left: calc(clamp(28px, 4vw, 44px) + 20px);
  width: 1px;
  background: linear-gradient(rgba(167, 139, 250, 0.45), rgba(167, 139, 250, 0.08));
}

.founder-arc article:last-child::before {
  display: none;
}

.arc-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.59rem;
}

.arc-marker::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(167, 139, 250, 0.38);
  transform: rotate(45deg);
  background: var(--ink-raised);
}

.arc-company {
  margin: 0 0 10px;
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.arc-copy h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.arc-copy p:last-child {
  max-width: 64ch;
  margin: 0;
  color: #aaa5b4;
  font-size: 0.9rem;
  line-height: 1.72;
}

.arc-capability {
  align-self: start;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 6px 9px;
  color: #8f8998;
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.founder-arc .arc-convergence {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.05));
}

.arc-convergence .arc-marker {
  color: #67e8f9;
}

.arc-convergence .arc-marker::before {
  border-color: rgba(6, 182, 212, 0.48);
  background: rgba(6, 182, 212, 0.08);
}

.arc-convergence .arc-company {
  color: #67e8f9;
}

.founder-principles {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.025);
}

.founder-principles > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.founder-principles article {
  border-right: 1px solid var(--hairline);
  padding: 0 clamp(22px, 3vw, 38px);
}

.founder-principles article:first-child {
  padding-left: 0;
}

.founder-principles article:last-child {
  border-right: 0;
  padding-right: 0;
}

.founder-principles article > span {
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.founder-principles h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.founder-principles p {
  margin: 0;
  color: #938e9c;
  font-size: 0.84rem;
  line-height: 1.68;
}

/* Pilot */
.pilot-section {
  padding-bottom: clamp(100px, 11vw, 150px);
  background: #0d0915;
}

.pilot-aura {
  position: absolute;
  top: 8%;
  right: -18%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(100px);
  background: linear-gradient(var(--violet-core), var(--teal));
}

.pilot-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.02fr);
  align-items: start;
  gap: clamp(58px, 9vw, 116px);
}

.pilot-copy {
  position: sticky;
  top: 120px;
}

.pilot-copy h2 {
  font-size: clamp(3rem, 5.7vw, 5.6rem);
}

.pilot-copy > p {
  color: #aca7b6;
}

.pilot-points {
  display: grid;
  gap: 20px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-points li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
}

.pilot-points li > span {
  padding-top: 3px;
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.pilot-points p {
  margin: 0;
  color: #aaa5b4;
  font-size: 0.9rem;
}

.pilot-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-weight: 500;
}

.form-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 42px 90px rgba(3, 2, 7, 0.4);
}

.form-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 28px;
}

.form-card-top h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.form-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: #87eaf3;
  font-family: var(--mono);
  font-size: 0.58rem;
  white-space: nowrap;
}

.form-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.demo-form {
  display: grid;
  gap: 18px;
}

.demo-form[hidden],
.demo-success[hidden] {
  display: none;
}

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

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

.field label {
  color: #d3cfdb;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--violet-bright);
}

.field label em {
  color: #77717f;
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.field small {
  color: #77717f;
  font-size: 0.7rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--hairline-strong);
  border-radius: 11px;
  outline: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}

.demo-form textarea {
  min-height: 96px;
  resize: vertical;
}

.demo-form select {
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A8A3B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #716c79;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--violet-bright);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.demo-form [aria-invalid="true"] {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.16);
}

.form-error {
  margin: 0;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  padding: 10px 13px;
  background: rgba(248, 113, 113, 0.08);
  color: #fca5a5;
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.form-actions > small {
  color: #77717f;
  font-size: 0.66rem;
  line-height: 1.5;
}

.demo-success {
  padding: 18px 0 6px;
}

.success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(6, 182, 212, 0.42);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
  font-size: 1.25rem;
}

.demo-success h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}

.demo-success p {
  color: #aaa5b4;
}

.demo-success a:not(.button) {
  color: var(--violet-pale);
}

/* Footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.055), transparent 34%),
    #0a0710;
}

.footer-glow {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: 8%;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.13);
  filter: blur(120px);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(64px, 9vw, 146px);
  padding-top: clamp(76px, 9vw, 132px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.footer-intro h2,
.footer-intro .footer-tagline {
  max-width: 550px;
  margin: 32px 0 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 3.1vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.footer-intro > p {
  max-width: 49ch;
  margin: 0;
  color: #9993a2;
  font-size: 0.92rem;
  line-height: 1.72;
}

.footer-brand img {
  width: 129px;
  height: auto;
}

.footer-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #d7c5ff;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    color var(--duration-fast) var(--ease-control),
    gap var(--duration-fast) var(--ease-control);
}

.footer-demo-link:hover {
  gap: 15px;
  color: var(--paper);
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding-top: 8px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.footer-column > p {
  margin: 0 0 9px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-column a {
  color: #96909e;
  font-size: 0.79rem;
  line-height: 1.38;
  transition:
    color var(--duration-fast) var(--ease-control),
    transform var(--duration-fast) var(--ease-control);
}

.footer-column a:hover {
  color: var(--paper);
  transform: translateX(2px);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  padding-bottom: 18px;
  color: #77717f;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
}

.footer-meta a {
  color: #8d8795;
}

.footer-meta a:hover {
  color: var(--paper);
}

.footer-watermark {
  width: 100%;
  padding: clamp(24px, 4vw, 52px) clamp(18px, 3.5vw, 64px) 0;
  pointer-events: none;
  user-select: none;
}

.footer-watermark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 270px;
  opacity: 0.055;
  transform: translateY(9%);
}

/* Additive reveal only: without JS, everything remains visible. */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-deliberate) var(--ease-control),
    transform var(--duration-deliberate) var(--ease-control);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 1080px) {
  .nav-links {
    gap: 0;
  }

  .hero {
    min-height: auto;
  }

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

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

  .hero-product {
    width: 100%;
    margin-top: 40px;
    transform: none;
  }

  .flow-strip {
    margin-top: 120px;
  }

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

  .truth-heading {
    grid-column: 1 / -1;
    max-width: 760px;
    padding: 0 0 32px;
  }

  .walkthrough-grid,
  .trust-layout,
  .pilot-grid {
    gap: 60px;
  }

  .story-panel {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-10px);
    border: 1px solid var(--hairline-strong);
    border-radius: 18px;
    padding: 10px 20px;
    background: rgba(23, 17, 33, 0.98);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-ui), transform var(--duration-ui), visibility var(--duration-ui);
  }

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

  .nav-links a {
    border-bottom: 1px solid var(--hairline);
    padding: 15px 4px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .menu-button {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(4rem, 11vw, 6.2rem);
  }

  .flow-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .problem-card-wide {
    grid-template-columns: auto 1fr;
  }

  .signal-visual {
    grid-column: 1 / -1;
  }

  .story-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

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

  .story-media {
    min-height: 390px;
  }

  .walkthrough-grid,
  .trust-layout,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .walkthrough-copy,
  .pilot-copy {
    position: static;
  }

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

  .pack-next {
    grid-column: 1 / -1;
  }

  .pilot-copy {
    max-width: 760px;
  }

  .founder-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founder-heading .eyebrow,
  .founder-heading h2,
  .founder-intro {
    grid-column: 1;
    grid-row: auto;
  }

  .founder-dossier {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    position: static;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

  .brand-lockup {
    line-height: 0;
  }

  .brand-lockup img {
    width: 104px;
    height: auto;
  }

  .nav-button {
    min-height: 40px;
    padding: 9px 9px 9px 14px;
    font-size: 0.75rem;
  }

  .nav-button .button-arrow {
    width: 25px;
    height: 25px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 44px;
  }

  .hero-aura {
    top: 90px;
    height: 360px;
  }

  .aperture-field {
    top: 88px;
    right: -155px;
    width: 260px;
    opacity: 0.1;
  }

  .aperture-field span {
    display: none;
  }

  .aperture-mark {
    width: 190px;
    height: 190px;
  }

  .product-line {
    margin-top: 24px;
    font-size: 0.82rem;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(3.15rem, 15.4vw, 4.8rem);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-product {
    margin-top: 78px;
  }

  .product-window {
    border-radius: 16px;
  }

  .window-bar {
    grid-template-columns: 1fr 1fr;
    min-height: 38px;
    padding: 0 10px;
  }

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .window-status {
    font-size: 0.51rem;
  }

  .product-window img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .product-window figcaption {
    display: none;
  }

  .float-risk {
    top: -53px;
    right: -7px;
    width: 148px;
  }

  .float-route {
    display: none;
  }

  .float-human {
    right: 10px;
    bottom: -52px;
    min-width: 190px;
  }

  .flow-strip {
    margin-top: 116px;
  }

  .micro-flow {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .micro-flow::before,
  .micro-flow::after,
  .micro-flow li::before,
  .micro-flow li::after {
    display: none;
  }

  .micro-flow li {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 12px;
    padding: 10px 12px;
  }

  .micro-flow li > span:last-child {
    justify-items: start;
  }

  .micro-flow small {
    max-width: none;
  }

  .flow-intro p {
    max-width: none;
  }

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

  .truth-heading {
    grid-column: auto;
  }

  .truth-heading h2,
  .section-heading h2,
  .pilot-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .truth-card {
    padding: 28px 24px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .problem-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .signal-visual {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .signal-inbox-caption {
    text-align: left;
  }

  .story-tabs {
    top: 68px;
    overflow-x: auto;
  }

  .story-tab {
    min-width: 116px;
  }

  .story-copy {
    padding: 34px 24px 40px;
  }

  .story-copy h3 {
    font-size: 2.25rem;
  }

  .story-media {
    min-height: 0;
    padding: 20px;
  }

  .story-media picture {
    width: 100%;
  }

  .story-media img {
    width: 100%;
    max-height: 520px;
  }

  .story-media-ink img {
    width: auto;
  }

  .walkthrough-grid {
    gap: 48px;
  }

  .routing-flow li {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .route-number {
    width: 38px;
    height: 38px;
  }

  .routing-flow::before {
    left: 39px;
  }

  .pack-branches {
    width: 50%;
    height: 62px;
  }

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

  .pack-next {
    grid-column: auto;
  }

  .pack-card {
    min-height: 0;
  }

  .control-card {
    padding: 30px 24px;
  }

  .control-graphic {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 42px 0;
  }

  .control-gate {
    justify-self: center;
  }

  .control-input::after,
  .control-output::before {
    display: none;
  }

  .pilot-grid {
    gap: 46px;
  }

  .founder-heading h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .founder-dossier {
    gap: 14px;
  }

  .founder-profile {
    padding: 28px 24px;
  }

  .founder-monogram {
    width: 76px;
    height: 76px;
  }

  .founder-arc article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 28px 20px;
  }

  .founder-arc article::before {
    top: 66px;
    left: 40px;
  }

  .arc-capability {
    grid-column: 2;
    justify-self: start;
    margin-top: 3px;
  }

  .founder-principles {
    padding: 28px 22px;
  }

  .founder-principles > div {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .founder-principles article,
  .founder-principles article:first-child,
  .founder-principles article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 0 0 24px;
  }

  .founder-principles article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .form-card {
    border-radius: 20px;
    padding: 26px 20px;
  }

  .form-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 32px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand img {
    width: 116px;
    height: auto;
  }

  .footer-watermark {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 430px) {
  .footer-directory {
    grid-template-columns: 1fr 1fr;
    gap: 38px 18px;
  }

  .footer-column {
    gap: 13px;
  }

  .footer-watermark {
    width: 138%;
    padding-right: 0;
    padding-left: 18px;
  }

  .nav-button span:first-child {
    max-width: 73px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .focus-window .nav-button .nav-cta-full {
    display: none;
  }

  .focus-window .nav-button .nav-cta-short {
    display: inline;
    max-width: none;
    overflow: visible;
  }

  .focus-window .nav-button .nav-cta-short + .button-arrow {
    margin-left: 2px;
  }

  .nav-actions {
    gap: 8px;
  }

  .site-pref-label {
    display: none;
  }

  .site-pref select {
    min-width: 3.6rem;
    max-width: 4.8rem;
    padding-left: 8px;
    font-size: 0.64rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }
}

@media (max-width: 720px) {
  .site-prefs {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    padding-top: 2px;
  }

  .nav-shell {
    flex-wrap: wrap;
  }
}

/* —— /inboxos focus window (v2 craft) —— */
/* Keep content visible: hash jumps must never land on invisible reveals.
   `js` lives on <html>; `focus-window` lives on <body> — do not compound them. */
html.js .focus-window [data-reveal] {
  opacity: 1;
  transform: none;
}

.fw-hero {
  min-height: auto;
}

.fw-signal {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(109, 40, 217, 0.2), transparent 42%),
    linear-gradient(180deg, #120d1c 0%, var(--ink) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.fw-signal-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1100px;
}

.fw-brand-motion {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.fw-brand-stage {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid var(--hairline-strong);
  background:
    radial-gradient(circle at 50% 42%, rgba(109, 40, 217, 0.28), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1), transparent 45%),
    #0b0812;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.35);
}

.fw-brand-stage::before,
.fw-brand-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

.fw-brand-stage::before {
  top: -24%;
  bottom: -24%;
  left: 30%;
  width: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.96) 42%,
    rgba(196, 181, 253, 0.98) 55%,
    rgba(34, 211, 238, 0.58) 72%,
    transparent
  );
  filter: blur(1px) drop-shadow(0 0 18px rgba(167, 139, 250, 0.9));
  transform: translate3d(-310%, -8%, 0) skewX(-16deg) rotate(12deg);
  mix-blend-mode: screen;
}

.fw-brand-stage::after {
  inset: -18%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9), rgba(139, 92, 246, 0.5) 18%, rgba(34, 211, 238, 0.14) 38%, transparent 62%);
  mix-blend-mode: screen;
}

.fw-brand-stage.is-striking::before {
  animation: fw-bolt-strike 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fw-brand-stage.is-striking::after {
  animation: fw-bolt-flash 620ms ease-out both;
}

.fw-brand-stage.is-striking .fw-brand-still {
  animation: fw-mark-impact 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fw-bolt-strike {
  0% {
    opacity: 0;
    transform: translate3d(-310%, -8%, 0) skewX(-16deg) rotate(12deg);
  }
  14% {
    opacity: 1;
  }
  46% {
    opacity: 0.96;
    transform: translate3d(115%, 4%, 0) skewX(-16deg) rotate(12deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(310%, 12%, 0) skewX(-16deg) rotate(12deg);
  }
}

@keyframes fw-bolt-flash {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }
  18% {
    opacity: 0.88;
    transform: scale(1);
  }
  42% {
    opacity: 0.24;
    transform: scale(1.08);
  }
}

@keyframes fw-mark-impact {
  0% {
    filter: brightness(1.8) saturate(1.15) drop-shadow(0 0 24px rgba(196, 181, 253, 0.85));
    transform: scale(0.975);
  }
  34% {
    filter: brightness(1.3) saturate(1.08) drop-shadow(0 0 34px rgba(139, 92, 246, 0.72));
    transform: scale(1.018);
  }
  100% {
    filter: none;
    transform: scale(1);
  }
}

.fw-brand-video,
.fw-brand-still {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fw-brand-still {
  z-index: 1;
  padding: 22%;
  object-fit: contain;
  background: transparent;
  opacity: 1;
  transition: opacity 220ms ease;
}

.fw-brand-video {
  z-index: 2;
  background: transparent;
  opacity: 0;
  transition: opacity 180ms ease;
  mix-blend-mode: screen;
  pointer-events: none;
}

.fw-brand-video[hidden],
.fw-brand-still[hidden] {
  display: none;
}

/* Only cover the still once frames are painting */
.fw-brand-stage.is-playing .fw-brand-video {
  opacity: 1;
}

.fw-brand-stage.is-playing .fw-brand-still {
  opacity: 0;
}

.fw-brand-stage.is-settled .fw-brand-video {
  opacity: 0;
}

.fw-brand-replay {
  appearance: none;
  border: 1px solid rgba(196, 181, 253, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(15, 11, 25, 0.72);
  color: rgba(237, 233, 254, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.fw-brand-replay:hover,
.fw-brand-replay:focus-visible {
  color: var(--paper);
  border-color: rgba(196, 181, 253, 0.85);
  background: rgba(36, 24, 56, 0.92);
  outline: none;
}

.fw-brand-replay[hidden]:not(.is-ready) {
  display: none !important;
}

.fw-signal-copy-block .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.1em;
}

.fw-signal-copy {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.22;
  color: var(--paper);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.fw-signal-copy em {
  font-style: normal;
  color: var(--violet-bright);
}

@media (max-width: 820px) {
  .fw-signal-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .fw-brand-stage {
    width: min(100%, 280px);
  }

  .fw-signal-copy {
    max-width: none;
  }
}

/* Freight modes — postcard → full-bleed cinematic expand on scroll */
.fw-modes {
  --modes-progress: 0;
  padding: clamp(64px, 9vw, 110px) 0 0;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(34, 211, 238, 0.12), transparent 48%),
    radial-gradient(ellipse at 86% 52%, rgba(109, 40, 217, 0.18), transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgba(15, 11, 25, 0.9), transparent 55%),
    #0a0812;
  border-top: 1px solid var(--hairline);
  color: var(--paper);
  /* Do not set overflow:hidden/clip here — it kills position:sticky */
}

.fw-modes-head {
  max-width: 42rem;
  margin-bottom: clamp(4px, 1vw, 12px);
}

.fw-modes-head .eyebrow {
  color: var(--violet-bright);
}

.fw-modes-head h2 {
  margin: 10px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.fw-modes-head h2 span {
  color: #c4b5fd;
}

.fw-modes-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Tall runway; sticky viewport holds the expanding plate */
.fw-modes-pin {
  position: relative;
  height: 360vh;
  margin-top: clamp(8px, 1.5vw, 20px);
}

.fw-modes-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 48%, rgba(34, 211, 238, 0.07), transparent 64%),
    radial-gradient(ellipse 58% 52% at 78% 38%, rgba(124, 58, 237, 0.12), transparent 58%),
    #05040c;
}

.fw-modes-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 12, 0.62) 0%, transparent 16%, transparent 84%, rgba(5, 4, 12, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 4, 12, 0.5) 0%, transparent 14%, transparent 86%, rgba(5, 4, 12, 0.5) 100%);
  opacity: calc(1 - var(--modes-progress) * 0.92);
}

.fw-modes-figure {
  /* Postcard start → true edge-to-edge */
  --modes-inset-x: 24vw;
  --modes-inset-y: 24vh;
  --modes-radius: 40px;
  --modes-scale: 1.03;
  --modes-caption: 0.32;
  position: absolute;
  z-index: 1;
  inset: var(--modes-inset-y) var(--modes-inset-x);
  margin: 0;
  border-radius: var(--modes-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, calc(0.18 * (1 - var(--modes-progress))));
  background: #04030a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, calc(0.1 * (1 - var(--modes-progress)))) inset,
    0 0 0 1px rgba(124, 58, 237, calc(0.16 * (1 - var(--modes-progress)))),
    0 0 80px rgba(109, 40, 217, calc(0.18 * (1 - var(--modes-progress) * 0.85))),
    0 32px 90px rgba(0, 0, 0, calc(0.58 * (1 - var(--modes-progress) * 0.65))),
    0 70px 160px rgba(15, 11, 25, calc(0.5 * (1 - var(--modes-progress))));
  transition: none;
}

.fw-modes-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, calc(0.08 * (1 - var(--modes-progress)))),
    inset 0 0 80px rgba(0, 0, 0, calc(0.28 + var(--modes-progress) * 0.12));
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, transparent 40%, rgba(5, 4, 10, calc(0.22 + var(--modes-progress) * 0.1)) 100%);
  opacity: 1;
}

.fw-modes-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fw-modes-media picture,
.fw-modes-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.fw-modes-media img {
  object-fit: cover;
  object-position: 50% 46%;
  /* Scale grows with scroll; 5K master keeps retina sharp */
  transform: scale(var(--modes-scale));
  transform-origin: 50% 45%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fw-modes-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding:
    clamp(72px, 14vw, 140px)
    clamp(20px, 5vw, 64px)
    clamp(22px, 4vw, 44px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5, 4, 10, 0.08) 34%,
    rgba(5, 4, 10, 0.55) 72%,
    rgba(5, 4, 10, 0.82) 100%
  );
  opacity: var(--modes-caption);
  pointer-events: none;
  transition: none;
}

.fw-modes-labels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fw-modes-labels li {
  display: flex;
  justify-content: center;
}

.fw-modes-labels span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.72rem, 1.15vw, 0.88rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.96);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

.fw-modes-kicker {
  margin: 16px 0 0;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, calc(0.9 * (1 - var(--modes-progress))));
  opacity: calc(1 - max(0, var(--modes-progress) - 0.55) / 0.45);
  transition: opacity 120ms linear;
}

.fw-modes.is-modes-open .fw-modes-kicker {
  opacity: 0;
}

@media (max-width: 900px) {
  .fw-modes-pin {
    height: 300vh;
  }

  .fw-modes-figure {
    --modes-inset-x: 10vw;
    --modes-inset-y: 18vh;
    --modes-radius: 24px;
  }

  .fw-modes-labels span {
    letter-spacing: 0.14em;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 520px) {
  .fw-modes-pin {
    height: auto;
    margin-top: 18px;
    padding: 0 clamp(16px, 4vw, 28px) clamp(40px, 6vw, 64px);
  }

  .fw-modes-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .fw-modes-sticky::before {
    display: none;
  }

  .fw-modes-figure {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    --modes-inset-x: 0;
    --modes-inset-y: 0;
    --modes-radius: 18px;
    --modes-scale: 1;
    --modes-caption: 1;
    border-radius: 18px;
  }

  .fw-modes-figure::after {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .fw-modes-media img {
    transform: none;
    will-change: auto;
  }

  .fw-modes-kicker {
    display: none;
  }
}

html.is-low-power .fw-modes-pin {
  height: auto;
  margin-top: 18px;
  padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 72px);
}

html.is-low-power .fw-modes-sticky {
  position: relative;
  height: auto;
  background: transparent;
}

html.is-low-power .fw-modes-sticky::before {
  display: none;
}

html.is-low-power .fw-modes-figure {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  --modes-scale: 1;
  --modes-caption: 1;
  border-radius: 20px;
}

html.is-low-power .fw-modes-media img {
  transform: none;
}

html.is-low-power .fw-modes-kicker {
  display: none;
}

.fw-industries {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(109, 40, 217, 0.16), transparent 40%),
    linear-gradient(180deg, #14101d 0%, var(--ink) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--paper);
}

.fw-industries-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.fw-industries-copy .eyebrow {
  color: var(--violet-bright);
}

.fw-industries-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.fw-industries-copy h2 span {
  color: var(--violet-bright);
}

.fw-industries-lead,
.fw-industries-invite {
  margin: 0 0 16px;
  max-width: 40rem;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

.fw-industries-lead strong,
.fw-industries-invite strong {
  color: var(--paper);
  font-weight: 600;
}

.fw-industries-copy .button {
  margin-top: 10px;
}

.fw-industries-aside {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid var(--hairline-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%),
    rgba(15, 11, 25, 0.7);
}

.fw-industries-aside-label {
  margin: 0 0 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.fw-industries-aside-label + .fw-industries-aside-label {
  margin-top: 22px;
}

.fw-industries-aside-main {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.fw-industries-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.fw-industries-aside li {
  color: var(--caption);
  font-size: 0.98rem;
  padding-left: 14px;
  position: relative;
}

.fw-industries-aside li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d3ee;
}

@media (max-width: 820px) {
  .fw-industries-inner {
    grid-template-columns: 1fr;
  }
}

.fw-product {
  padding-top: clamp(72px, 9vw, 120px);
}

.fw-diff {
  padding: var(--section-space) 0;
  background:
    linear-gradient(180deg, #16111f 0%, var(--ink) 100%);
  color: var(--paper);
  border-top: 1px solid var(--hairline);
}

.fw-diff-head {
  max-width: 40rem;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.fw-diff-head h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-diff-head h2 span {
  color: var(--violet-bright);
}

.fw-diff-head p {
  margin: 0;
  color: var(--caption);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 38rem;
}

.fw-diff-table {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.fw-diff-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(22px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--hairline);
}

.fw-diff-compare {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.fw-diff-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}

.fw-diff-label {
  margin: 0 0 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.fw-diff-split p:last-child {
  margin: 0;
  color: var(--caption);
  font-size: 0.98rem;
  line-height: 1.5;
}

.fw-diff-split > div:last-child p:last-child {
  color: var(--paper);
}

.fw-diff-line {
  margin: clamp(28px, 4vw, 40px) 0 0;
  max-width: 36rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--violet-pale);
}

@media (max-width: 820px) {
  .fw-diff-row,
  .fw-diff-split {
    grid-template-columns: 1fr;
  }
}

.fw-benefits {
  position: relative;
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(109, 40, 217, 0.08), transparent 40%),
    var(--paper);
  color: var(--ink);
}

.fw-benefits-head {
  max-width: 640px;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.fw-benefits-head .eyebrow {
  color: var(--violet-core);
}

.fw-benefits-head h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-benefits-head h2 span {
  color: var(--violet-core);
}

.fw-benefits-head p {
  margin: 0;
  color: var(--slate);
  font-size: 1.08rem;
  max-width: 46ch;
}

.fw-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fw-benefit {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--ink-hairline);
}

.fw-benefit:last-child {
  border-bottom: 1px solid var(--ink-hairline);
}

.fw-benefit-index {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--violet-core);
}

.fw-benefit h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fw-benefit p {
  margin: 0;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
}

.fw-benefit-visual {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-hairline);
  box-shadow: 0 24px 60px rgba(15, 11, 25, 0.12);
  transform: rotate(1.2deg);
}

.fw-benefit:nth-child(even) .fw-benefit-visual {
  transform: rotate(-1.2deg);
}

.fw-benefit-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.fw-benefit-chip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 22px 22px 24px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(15, 11, 25, 0.22);
}

.fw-benefit-chip strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.fw-benefit-chip small {
  color: var(--slate-dark);
  font-size: 0.88rem;
}

.fw-benefit-chip-approve {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.priority-scorecard {
  display: grid;
  gap: 8px;
  width: min(100%, 280px);
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(58, 43, 86, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 252, 0.98));
  box-shadow: 0 16px 36px rgba(58, 43, 86, 0.1);
}

.priority-score-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.priority-score-row span {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.priority-score-row b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.55));
  width: var(--w, 42%);
}

.priority-score-row:nth-child(1) b { --w: 92%; background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.priority-score-row:nth-child(2) b { --w: 58%; }
.priority-score-row:nth-child(3) b { --w: 28%; background: linear-gradient(90deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.35)); }

.priority-score-row em {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b8499;
}

.priority-score-row.is-hot em {
  color: #b45309;
}

.priority-scorecard figcaption {
  margin-top: 4px;
  color: #8b8499;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idea-contrast {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 10px;
  margin: 18px 0 14px;
}

.idea-lane {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 12px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.idea-lane > span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b95a8;
}

.idea-lane ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idea-lane li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  color: #d5d0df;
  font-size: 0.72rem;
}

.idea-lane.is-deep {
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.03));
}

.idea-lane.is-deep > span {
  color: #c4b5fd;
}

.idea-lane.is-deep li {
  border-color: rgba(196, 181, 253, 0.28);
  background: rgba(15, 11, 25, 0.28);
  color: #f4f0ff;
}

.fw-benefit-chip-approve .approval-ring {
  flex-shrink: 0;
}

.fw-benefit-more {
  margin-top: 40px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: rgba(109, 40, 217, 0.06);
  border: 1px solid rgba(109, 40, 217, 0.14);
}

.fw-benefit-more p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.55;
}

.fw-benefit-more strong {
  color: var(--ink);
}

.fw-trust {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.fw-trust-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.28), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.fw-trust-head {
  position: relative;
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.fw-trust-head h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-trust-head h2 span {
  color: var(--violet-bright);
}

.fw-trust-lead {
  margin: 0;
  color: var(--caption);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 44rem;
}

.fw-worry {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.fw-worry-card {
  margin: 0;
  padding: 20px 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--hairline-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(23, 17, 33, 0.72);
  transition: border-color 200ms ease, transform 200ms ease;
}

.fw-worry-card:hover,
.fw-worry-card:focus-within {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-2px);
}

.fw-worry-q {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--paper);
}

.fw-worry-a {
  margin: 0;
  color: var(--caption);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fw-worry-a strong {
  color: #a5f3fc;
  font-weight: 600;
}

.fw-trust-cta {
  position: relative;
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  color: var(--caption);
  font-size: 1rem;
}

.fw-trust-cta a {
  color: var(--violet-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}

.fw-trust-cta a:hover,
.fw-trust-cta a:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
  outline: none;
}

.fw-trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 980px) {
  .fw-worry {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .fw-worry {
    grid-template-columns: 1fr;
  }
}

.fw-trust-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.fw-trust-panel-paper {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(247, 245, 240, 0.08);
}

.fw-trust-panel-ink {
  background: linear-gradient(165deg, #1a1428 0%, #0f0b19 70%);
  border: 1px solid var(--hairline-strong);
  color: var(--paper);
}

.fw-trust-panel .mono-label {
  margin-bottom: 14px;
}

.fw-trust-panel-paper .mono-label {
  color: var(--violet-core);
}

.fw-trust-panel h3 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.fw-trust-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fw-trust-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--slate);
  line-height: 1.5;
}

.fw-trust-panel-ink li {
  color: var(--slate-dark);
}

.fw-trust-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-core);
}

.fw-trust-panel-ink li::before {
  background: var(--violet-mark-dark);
}

.fw-trust-gate {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--hairline);
}

.fw-trust-gate span {
  font-size: 0.92rem;
  color: var(--slate-dark);
  line-height: 1.45;
}

.fw-docs {
  padding: var(--section-space) 0;
  background:
    linear-gradient(180deg, #efece4 0%, var(--paper) 40%);
  color: var(--ink);
}

.fw-docs-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.fw-docs-head .eyebrow {
  color: var(--violet-core);
}

.fw-docs-head h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-docs-head h2 span {
  color: var(--violet-core);
}

.fw-docs-head > p {
  margin: 0;
  max-width: 34ch;
  color: var(--slate);
  font-size: 1.02rem;
}

.fw-docs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-hairline);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 11, 25, 0.08);
  border: 1px solid var(--ink-hairline);
}

.knowledge-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-bottom: 1px solid var(--ink-hairline);
  transition: background var(--duration-ui) var(--ease-control);
}

.knowledge-row:last-child {
  border-bottom: 0;
}

.knowledge-row:hover {
  background: rgba(109, 40, 217, 0.04);
}

.knowledge-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.knowledge-format {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.knowledge-body h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
}

.knowledge-body p {
  margin: 0;
  color: var(--slate);
  max-width: 48ch;
}

.fw-founder {
  padding: var(--section-space) 0;
  background: var(--ink);
  color: var(--paper);
}

.fw-founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.fw-founder h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-founder h2 span {
  color: var(--violet-bright);
}

.fw-letter {
  margin: 0;
  padding: clamp(32px, 4vw, 44px);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.fw-letter p {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.fw-letter footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.fw-letter strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0;
}

.fw-letter a {
  color: var(--violet-core);
  text-decoration: none;
  margin-left: auto;
}

.fw-letter a:hover {
  text-decoration: underline;
}

.fw-begin {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(109, 40, 217, 0.18), transparent 40%),
    linear-gradient(180deg, #15101f 0%, var(--ink) 55%);
  color: var(--paper);
}

.fw-begin-aura {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.fw-begin-intro {
  position: relative;
  max-width: 38rem;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.fw-begin-intro h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fw-begin-intro h2 span {
  color: var(--violet-bright);
}

.fw-begin-lead {
  margin: 0;
  color: var(--caption);
  font-size: 1.08rem;
  line-height: 1.55;
}

.fw-system {
  position: relative;
  margin: 0 0 clamp(40px, 6vw, 72px);
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--hairline-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    rgba(23, 17, 33, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.fw-system-top {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.fw-system-block {
  margin: 0;
}

.fw-system-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.fw-system-plus {
  display: grid;
  place-items: center;
  color: var(--violet-bright);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
}

.fw-system-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0;
  min-height: 42px;
}

.fw-system-rail {
  width: 1px;
  flex: 1;
  min-height: 18px;
  background: linear-gradient(180deg, transparent, var(--violet-bright), transparent);
}

.fw-system-arrow {
  color: var(--violet-bright);
  font-size: 0.85rem;
  line-height: 1;
}

.fw-system-node {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: rgba(15, 11, 25, 0.55);
}

.fw-system-node h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.fw-system-node p {
  margin: 0;
  color: var(--caption);
  font-size: 0.92rem;
  line-height: 1.45;
}

.fw-system-kicker {
  margin: 0 0 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.fw-system-outcome {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  border-color: rgba(167, 139, 250, 0.35);
  background:
    radial-gradient(circle at 50% 0%, rgba(109, 40, 217, 0.22), transparent 70%),
    rgba(15, 11, 25, 0.7);
}

.fw-system-outcome .fw-system-kicker {
  margin-bottom: 8px;
}

.fw-system-buy {
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--hairline);
}

.fw-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fw-journey li {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 16px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: rgba(15, 11, 25, 0.55);
  min-height: 100%;
}

.fw-journey-num {
  display: inline-flex;
  width: fit-content;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--violet-bright);
}

.fw-journey h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.fw-journey p {
  margin: 0;
  color: var(--caption);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fw-journey-data {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-size: 0.84rem !important;
}

.fw-journey-data span {
  display: block;
  margin-bottom: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.85);
}

.fw-system-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  color: var(--caption);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

/* Desk capacity / ROI estimate (website only) */
.roi-band {
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(124, 58, 237, 0.16), transparent 40%),
    linear-gradient(180deg, #120d1c 0%, var(--ink) 100%);
  border-top: 1px solid var(--hairline);
}

.fw-begin .roi-stage {
  margin: clamp(28px, 4vw, 44px) 0;
}

.roi-stage {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.08), transparent 30%),
    radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.2), transparent 42%),
    rgba(12, 9, 20, 0.92);
  box-shadow: 0 36px 80px rgba(3, 2, 8, 0.4);
}

.roi-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.roi-head-copy {
  max-width: 40rem;
}

.roi-head .eyebrow {
  color: var(--violet-bright);
}

.roi-head h2,
.roi-head h3 {
  margin: 8px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--paper);
}

.roi-head p {
  margin: 0;
  color: var(--caption);
  font-size: 1rem;
  line-height: 1.5;
}

.roi-beyond {
  margin-top: clamp(18px, 2.5vw, 26px);
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  background:
    linear-gradient(165deg, rgba(36, 28, 56, 0.55), rgba(18, 14, 30, 0.42));
  perspective: 1200px;
}

.roi-beyond-head {
  max-width: 40rem;
  margin-bottom: 16px;
}

.roi-beyond-head .mono-label {
  margin-bottom: 8px;
}

.roi-beyond-head h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--paper);
}

.roi-beyond-head p {
  margin: 0;
  color: var(--caption);
  font-size: 0.92rem;
  line-height: 1.45;
}

.roi-beyond-spine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  position: relative;
}

.roi-beyond-spine::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.15), rgba(167, 139, 250, 0.55), rgba(251, 191, 36, 0.45));
  pointer-events: none;
}

.roi-beyond-spine li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  padding: 4px 6px 0;
}

.rbs-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #1a1428;
  box-shadow: 0 0 0 4px rgba(15, 11, 25, 0.65);
}

.roi-beyond-spine li:nth-child(1) .rbs-mark {
  border-color: #67e8f9;
  background: rgba(6, 182, 212, 0.35);
}

.roi-beyond-spine li:nth-child(2) .rbs-mark {
  border-color: #c4b5fd;
  background: rgba(124, 58, 237, 0.45);
}

.roi-beyond-spine li:nth-child(3) .rbs-mark {
  border-color: #fbbf24;
  background: rgba(217, 119, 6, 0.4);
}

.roi-beyond-spine strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.roi-beyond-spine small {
  color: #9b95a8;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roi-beyond-constellation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.roi-beyond-constellation > li {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  padding: 14px 14px 13px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.05), transparent 40%),
    rgba(12, 9, 20, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 32px rgba(0, 0, 0, 0.22);
  transform: perspective(700px) rotateX(5deg);
  transform-origin: center bottom;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.roi-beyond-constellation > li:hover {
  transform: perspective(700px) rotateX(1deg) translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 20px 36px rgba(0, 0, 0, 0.3);
}

.roi-beyond-constellation strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.roi-beyond-constellation > li > p {
  margin: 0;
  color: #bbb5c4;
  font-size: 0.82rem;
  line-height: 1.4;
}

.rb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rb-chips li {
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(124, 58, 237, 0.1);
  color: #ddd6fe;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rb-viz {
  position: relative;
  display: grid;
  place-items: end center;
  height: 56px;
  margin: 0 0 2px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rb-viz-radar {
  place-items: center;
}

.rb-radar-svg {
  display: block;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.35));
}

.rb-radar-sweep {
  transform-origin: 32px 32px;
  animation: rb-radar-sweep 4.2s linear infinite;
}

@keyframes rb-radar-sweep {
  to { transform: rotate(360deg); }
}

.rb-viz-rise {
  grid-auto-flow: column;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 5px;
  padding: 10px 12px 8px;
}

.rb-bar {
  display: block;
  width: 100%;
  height: var(--h, 40%);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.75), rgba(124, 58, 237, 0.28));
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
  transform: skewX(-8deg);
}

.rb-bar.is-hot {
  background: linear-gradient(180deg, #fbbf24, rgba(217, 119, 6, 0.45));
}

.rb-viz-split {
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  gap: 4px;
  padding: 10px;
  place-items: stretch;
}

.rb-lane {
  display: grid;
  place-items: end center;
  border-radius: 8px;
  padding: 6px 2px;
  background: rgba(255, 255, 255, 0.04);
}

.rb-lane em {
  font-family: var(--mono);
  font-size: 0.5rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.rb-lane.is-act { background: linear-gradient(180deg, rgba(103, 232, 249, 0.22), rgba(103, 232, 249, 0.05)); }
.rb-lane.is-aware { background: linear-gradient(180deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.05)); }
.rb-lane.is-noise { background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)); }
.rb-lane.is-noise em { color: #9b95a8; }

.rb-viz-funnel {
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 18px;
  place-items: center;
}

.rb-viz-funnel span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.22);
}

.rb-viz-funnel span:nth-child(1) { width: 88%; }
.rb-viz-funnel span:nth-child(2) { width: 62%; }
.rb-viz-funnel span:nth-child(3) { width: 36%; }
.rb-viz-funnel span.is-focus {
  background: linear-gradient(90deg, #67e8f9, #a78bfa);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.35);
}

.rb-viz-path {
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}

.rb-viz-path i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.45);
  box-shadow: 8px 0 0 -3px rgba(196, 181, 253, 0.25);
}

.rb-viz-path i.is-gate {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

.rb-viz-stack {
  place-items: center;
  padding: 10px;
}

.rb-viz-stack span {
  display: block;
  width: 70%;
  height: 9px;
  margin: 3px 0;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.55), rgba(103, 232, 249, 0.25));
  transform: perspective(200px) rotateX(40deg) skewX(-12deg);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.rb-viz-stack span:nth-child(1) { width: 78%; opacity: 0.55; }
.rb-viz-stack span:nth-child(2) { width: 70%; opacity: 0.75; }
.rb-viz-stack span:nth-child(3) { width: 62%; opacity: 1; }

.roi-beyond-note {
  margin: 16px 0 0;
  color: var(--caption);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

  .roi-beyond-constellation > li {
    transform: none;
  }

  .roi-beyond-spine::before {
    left: 18%;
    right: 18%;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .roi-beyond-constellation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .roi-beyond-constellation > li,
  .roi-beyond-constellation > li:hover {
    transform: none;
  }

  .rb-radar-sweep {
    animation: none;
  }
}

.roi-method-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.roi-method-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: rgba(124, 58, 237, 0.12);
  color: #ddd6fe;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Info tip (?): hover / focus / tap explanations                              */
/* -------------------------------------------------------------------------- */

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 0.2em;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
}

.info-tip-btn {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.45);
  background: rgba(28, 22, 44, 0.9);
  color: #ddd6fe;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  cursor: help;
}

.info-tip-btn:hover,
.info-tip-btn:focus-visible,
.info-tip.is-open .info-tip-btn {
  border-color: rgba(167, 139, 250, 0.85);
  color: #fff;
  background: rgba(109, 40, 217, 0.35);
  outline: none;
}

.info-tip-panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 40;
  width: min(18.5rem, 72vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(18, 14, 30, 0.96);
  color: #ebe7f4;
  font-family: var(--body, inherit);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-transform: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.info-tip-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -6px;
  border-right: 1px solid rgba(196, 181, 253, 0.28);
  border-bottom: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(18, 14, 30, 0.96);
  transform: rotate(45deg);
}

.info-tip:hover .info-tip-panel,
.info-tip:focus-within .info-tip-panel,
.info-tip.is-open .info-tip-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.roi-mix-legend .info-tip-panel,
.roi-bridge-card .info-tip-panel,
.roi-scenarios .info-tip-panel {
  left: 0;
  transform: translateX(0) translateY(4px);
}

.roi-mix-legend .info-tip:hover .info-tip-panel,
.roi-mix-legend .info-tip:focus-within .info-tip-panel,
.roi-mix-legend .info-tip.is-open .info-tip-panel,
.roi-bridge-card .info-tip:hover .info-tip-panel,
.roi-bridge-card .info-tip:focus-within .info-tip-panel,
.roi-bridge-card .info-tip.is-open .info-tip-panel,
.roi-scenarios .info-tip:hover .info-tip-panel,
.roi-scenarios .info-tip:focus-within .info-tip-panel,
.roi-scenarios .info-tip.is-open .info-tip-panel {
  transform: translateX(0) translateY(0);
}

.roi-mix-legend .info-tip-panel::after,
.roi-bridge-card .info-tip-panel::after,
.roi-scenarios .info-tip-panel::after {
  left: 14px;
  margin-left: 0;
}

.roi-stage .info-tip-panel {
  width: min(20.5rem, 78vw);
  font-size: 0.8rem;
  line-height: 1.38;
}

.roi-method-chips .info-tip-btn {
  width: 1rem;
  height: 1rem;
  font-size: 0.62rem;
  border-color: rgba(196, 181, 253, 0.4);
}

/* Method chips sit at the top edge: open tips downward */
.roi-method-chips .info-tip-panel {
  bottom: auto;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
}

.roi-method-chips .info-tip:hover .info-tip-panel,
.roi-method-chips .info-tip:focus-within .info-tip-panel,
.roi-method-chips .info-tip.is-open .info-tip-panel {
  transform: translateX(-50%) translateY(0);
}

.roi-method-chips .info-tip-panel::after {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -6px;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(196, 181, 253, 0.28);
  border-top: 1px solid rgba(196, 181, 253, 0.28);
}

.roi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.roi-controls,
.roi-results {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.025);
}

.roi-results {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.08), transparent 40%),
    radial-gradient(circle at 10% 0%, rgba(124, 58, 237, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.02);
}

.roi-panel-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.roi-panel-label:first-child {
  margin-top: 0;
}

.roi-panel-label-out .roi-step {
  background: rgba(34, 211, 238, 0.16);
  border-color: rgba(34, 211, 238, 0.35);
  color: #67e8f9;
}

.roi-step {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(124, 58, 237, 0.16);
  color: var(--violet-bright);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roi-panel-label strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.roi-panel-label small {
  display: block;
  margin-top: 2px;
  color: var(--caption);
  font-size: 0.86rem;
}

.roi-slider-group {
  display: grid;
  gap: 14px;
}

.roi-slider {
  display: grid;
  gap: 8px;
}

.roi-slider-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  color: #d4cede;
  font-size: 0.92rem;
}

.roi-slider-top strong {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--violet-bright);
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: rgba(124, 58, 237, 0.12);
}

.roi-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #8b5cf6 0%,
      #8b5cf6 var(--roi-fill, 40%),
      rgba(255, 255, 255, 0.12) var(--roi-fill, 40%),
      rgba(255, 255, 255, 0.12) 100%
    );
  outline: none;
  cursor: pointer;
}

.roi-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ede9fe;
  background: linear-gradient(145deg, #a78bfa, #7c3aed);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.roi-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ede9fe;
  background: linear-gradient(145deg, #a78bfa, #7c3aed);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.roi-mix {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: rgba(0, 0, 0, 0.18);
}

.roi-mix-bar {
  display: flex;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.roi-mix-bar i {
  display: block;
  min-width: 4px;
  height: 100%;
}

.roi-mix-a { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.roi-mix-b { background: rgba(34, 211, 238, 0.75); }
.roi-mix-c { background: rgba(165, 163, 174, 0.55); }

.roi-mix-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.roi-mix-legend li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  color: var(--caption);
  font-size: 0.78rem;
  line-height: 1.3;
}

.roi-mix-legend strong {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
}

.roi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.roi-dot-a { background: #a78bfa; }
.roi-dot-b { background: #22d3ee; }
.roi-dot-c { background: #a5a3ae; }

.roi-meta {
  margin: 0;
  color: #b7b0c6;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.roi-fx-note {
  color: #9b93ad;
}

.roi-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
  gap: 10px;
  align-items: stretch;
}

.roi-bridge-card {
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 4px;
}

.roi-bridge-card-live {
  border-color: rgba(167, 139, 250, 0.45);
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.28), transparent 60%),
    rgba(18, 13, 30, 0.95);
}

.roi-bridge-card span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7b0c6;
}

.roi-bridge-card strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--paper);
  line-height: 1.1;
}

.roi-bridge-card small {
  color: var(--caption);
  font-size: 0.82rem;
}

.roi-bridge-arrow {
  align-self: center;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(124, 58, 237, 0.18);
  color: var(--violet-bright);
  font-size: 1rem;
}

.roi-hero-metric {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.22), transparent 55%),
    rgba(18, 13, 30, 0.95);
}

.roi-hero-soft {
  border-color: var(--hairline-strong);
  background: rgba(255, 255, 255, 0.03);
}

.roi-metric-label {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7b0c6;
}

.roi-metric-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--paper);
}

.roi-metric-value em {
  font-style: normal;
  font-size: 0.45em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-left: 0.2em;
  vertical-align: 0.35em;
}

.roi-metric-value-sm {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.roi-metric-sub {
  margin: 10px 0 0;
  color: var(--caption);
  font-size: 0.9rem;
  line-height: 1.45;
}

.roi-metric-sub strong {
  color: var(--teal);
  font-weight: 600;
}

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

.roi-scenarios article {
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.025);
  display: grid;
  gap: 4px;
}

.roi-scenarios article.is-expected {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.12);
}

.roi-scenarios span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a93a8;
}

.roi-scenarios strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.02em;
}

.roi-scenarios small {
  color: var(--caption);
  font-size: 0.78rem;
}

.roi-results .button {
  justify-self: stretch;
  justify-content: center;
}

@media (max-width: 900px) {
  .roi-head,
  .roi-layout {
    grid-template-columns: 1fr;
  }

  .roi-method-chips {
    justify-content: flex-start;
  }

  .roi-mix-legend,
  .roi-scenarios {
    grid-template-columns: 1fr;
  }

  .roi-bridge {
    grid-template-columns: 1fr;
  }

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

.fw-begin-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(10, 7, 18, 0.88);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(24px) saturate(115%);
  backdrop-filter: blur(24px) saturate(115%);
}

.fw-begin-aside-title {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fw-begin-aside-copy {
  margin: 0 0 20px;
  color: #d4cedd;
  font-size: 1.02rem;
  line-height: 1.55;
}

.fw-begin-aside-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fw-begin-aside-points li {
  position: relative;
  padding-left: 18px;
  color: var(--paper);
  font-size: 0.95rem;
  line-height: 1.4;
}

.fw-begin-aside-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-bright);
}

@media (max-width: 1100px) {
  .fw-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .fw-system-inputs {
    grid-template-columns: 1fr;
  }

  .fw-system-plus {
    transform: rotate(90deg);
    padding: 2px 0;
  }

  .fw-system-outcome {
    max-width: none;
    text-align: left;
  }

  .fw-journey {
    grid-template-columns: 1fr;
  }

  .fw-system-note {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .fw-benefit,
  .fw-trust-grid,
  .fw-docs-head,
  .fw-founder-grid,
  .fw-begin-grid {
    grid-template-columns: 1fr;
  }

  .fw-benefit-visual,
  .fw-benefit-chip {
    max-width: 360px;
  }

  .fw-docs-head {
    align-items: start;
  }

  .knowledge-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fw-letter a {
    margin-left: 0;
  }
}

/* —— /inboxos focus window craft v3 (10/10) —— */
.focus-window {
  --fw-scroll-pad: 88px;
}

.focus-window #industries,
.focus-window #modes,
.focus-window #product,
.focus-window #benefits,
.focus-window #different,
.focus-window #trust,
.focus-window #documents,
.focus-window #begin,
.focus-window #founder,
.focus-window #idea,
.focus-window #how,
.focus-window #platform,
.focus-window #maturity,
.focus-window #problem,
.focus-window #shift,
.focus-window #attention,
.focus-window #enter {
  scroll-margin-top: var(--fw-scroll-pad);
}

/* Attention: noise vs signals by org level */
.fw-attention {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(109, 40, 217, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(34, 211, 238, 0.08), transparent 45%),
    var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--paper);
}

.fw-attention-head {
  max-width: 40rem;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.fw-attention-head h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.fw-attention-head p {
  margin: 0;
  color: var(--caption);
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.fw-attention-card {
  padding: 26px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(32, 26, 48, 0.92), rgba(18, 14, 28, 0.88)),
    rgba(15, 11, 25, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.fw-attention-card-signal {
  border-color: rgba(167, 139, 250, 0.42);
  background:
    linear-gradient(165deg, rgba(56, 36, 96, 0.94), rgba(22, 16, 38, 0.9)),
    rgba(15, 11, 25, 0.92);
}

.fw-attention-card .mono-label {
  margin: 0 0 12px;
  color: var(--violet-bright);
}

.fw-attention-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.fw-attention-card > p {
  margin: 0;
  color: var(--caption);
  font-size: 0.98rem;
  line-height: 1.5;
}

.fw-attention-levels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fw-attention-levels li {
  color: var(--caption);
  font-size: 0.95rem;
  line-height: 1.45;
}

.fw-attention-levels strong {
  color: var(--paper);
  font-weight: 560;
}

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

/* Scroll progress line — under the fixed header (shubhankarmittal.com pattern) */
.site-progress,
.fw-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 2px;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}

.site-progress i,
.fw-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--violet-bright), #22d3ee);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
  transition: none;
  will-change: transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-progress i,
  .fw-progress i {
    transition: none;
  }
}

.focus-window .nav-links a[data-spy-link].is-active {
  color: var(--paper);
}

.focus-window .nav-links a[data-spy-link].is-active::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--violet-bright);
}

.fw-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fw-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Entry markfield: bold brand presence in atmosphere, under copy */
.fw-hero-markfield {
  position: absolute;
  left: clamp(-2%, 4vw, 8%);
  top: clamp(6%, 10vh, 14%);
  z-index: 1;
  width: min(48vw, 480px);
  aspect-ratio: 1;
  opacity: 0.48;
  mask-image: radial-gradient(circle at 50% 48%, #000 48%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 48%, transparent 82%);
}

.fw-hero-markfield-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.34), transparent 62%),
    radial-gradient(circle at 60% 40%, rgba(34, 211, 238, 0.12), transparent 55%);
  filter: blur(28px);
}

.fw-hero-markfield-stage,
.fw-hero-markfield .fw-brand-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 36px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.fw-hero-markfield .fw-brand-still,
.fw-hero-markfield .fw-brand-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 14%;
  background: transparent;
}

.fw-hero-markfield .fw-brand-still {
  z-index: 1;
  opacity: 1;
  filter: drop-shadow(0 12px 40px rgba(109, 40, 217, 0.35));
  transition: opacity 220ms ease;
}

.fw-hero-markfield .fw-brand-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.fw-hero-markfield-stage.is-playing .fw-brand-video,
.fw-hero-markfield .fw-brand-stage.is-playing .fw-brand-video {
  opacity: 1;
}

.fw-hero-markfield-stage.is-playing .fw-brand-still,
.fw-hero-markfield .fw-brand-stage.is-playing .fw-brand-still {
  opacity: 0;
}

.fw-hero-markfield-stage.is-settled .fw-brand-video,
.fw-hero-markfield .fw-brand-stage.is-settled .fw-brand-video {
  opacity: 0;
}

@media (max-width: 820px) {
  .fw-hero-markfield {
    width: min(68vw, 300px);
    left: auto;
    right: -8%;
    top: 2%;
    opacity: 0.34;
  }

  .fw-hero-markfield .fw-brand-video {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fw-hero-markfield .fw-brand-video {
    display: none !important;
  }
}

.fw-hero-pool {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
}

.fw-hero-pool-violet {
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  top: -18%;
  right: 2%;
  background: rgba(124, 58, 237, 0.16);
}

.fw-hero-pool-teal {
  width: min(42vw, 460px);
  height: min(42vw, 460px);
  bottom: 4%;
  left: -2%;
  background: rgba(6, 182, 212, 0.08);
}

.fw-hero-mesh {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 72%);
  opacity: 0.55;
  transform: rotate(-12deg);
}

.fw-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.focus-window .fw-hero .hero-shell,
.focus-window .fw-hero .flow-strip,
.focus-window .fw-hero .fw-trust-strip,
.focus-window .fw-hero .home-trust-strip {
  position: relative;
  z-index: 1;
}

.focus-window .fw-hero .flow-strip {
  margin-top: clamp(28px, 4vw, 56px);
}

.focus-window .fw-hero {
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 108px 0 36px;
  background:
    linear-gradient(180deg, rgba(17, 12, 27, 0.08) 0%, rgba(15, 11, 25, 0.35) 70%, var(--ink) 100%);
}

.fw-hero-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.fw-hero-brand {
  flex: none;
  position: relative;
  width: min(240px, 56vw);
  max-width: 240px;
  margin: 0 0 28px;
  padding-bottom: 2.75rem; /* reserve space so Replay is never clipped */
  opacity: 1;
  overflow: visible;
  /* Stage stays non-interactive; replay button re-enables itself */
  pointer-events: none;
}

.fw-hero-brand-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.35);
  background:
    radial-gradient(circle at 40% 35%, rgba(139, 92, 246, 0.28), transparent 60%),
    #0b0812;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(109, 40, 217, 0.28);
}

.fw-hero-brand .fw-brand-still,
.fw-hero-brand .fw-brand-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10%;
  object-fit: contain;
  background: transparent;
}

.fw-hero-brand .fw-brand-still {
  z-index: 1;
  opacity: 1;
  transition: opacity 420ms ease;
}

.fw-hero-brand .fw-brand-video {
  z-index: 2;
  opacity: 0;
  /* Opacity is driven inline by site.js during play/hold so it cannot lose a cascade fight */
  transition: none;
  pointer-events: none;
}

.fw-hero-brand-stage.is-playing .fw-brand-video,
.fw-hero-brand-stage.is-holding .fw-brand-video {
  opacity: 1;
}

.fw-hero-brand-stage.is-playing .fw-brand-still,
.fw-hero-brand-stage.is-holding .fw-brand-still {
  opacity: 0;
}

.fw-hero-brand-stage.is-settled .fw-brand-video {
  opacity: 0;
}

.fw-brand-stage.is-playing .fw-brand-video,
.fw-brand-stage.is-holding .fw-brand-video {
  opacity: 1;
}

.fw-hero-brand-stage.is-playing,
.fw-hero-brand-stage.is-holding {
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.45),
    0 0 56px rgba(109, 40, 217, 0.55);
}

.fw-hero-brand-replay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: auto;
  white-space: nowrap;
}

.fw-hero-brand-replay[hidden] {
  display: none !important;
}

.fw-hero-brand-replay.is-ready {
  display: inline-flex !important;
}

.fw-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d8d4e2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fw-hero-haze {
  position: absolute;
  inset: -10% 10% auto -5%;
  height: 70%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(167, 139, 250, 0.1), transparent 55%),
    radial-gradient(ellipse at 70% 10%, rgba(34, 211, 238, 0.05), transparent 45%);
  filter: blur(8px);
  pointer-events: none;
}

.fw-trust-strip,
.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.home-trust-strip {
  margin-top: 36px;
  padding-top: 4px;
}

.fw-trust-strip article,
.home-trust-strip article {
  padding: 22px 20px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.fw-trust-strip article:last-child,
.home-trust-strip article:last-child {
  border-right: 0;
}

.fw-trust-strip strong,
.home-trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.fw-trust-strip span,
.home-trust-strip span {
  color: var(--caption);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .fw-trust-strip,
  .home-trust-strip {
    grid-template-columns: 1fr;
  }

  .fw-trust-strip article,
  .home-trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 4px;
  }

  .fw-trust-strip article:last-child,
  .home-trust-strip article:last-child {
    border-bottom: 0;
  }
}

.focus-window .fw-hero .hero-shell {
  align-items: center;
  gap: clamp(28px, 4.5vw, 64px);
  flex: 1;
}

.focus-window .fw-hero h1 {
  display: grid;
  gap: 0.04em;
  margin: 14px 0 20px;
  max-width: 10em;
  font-size: clamp(3rem, 6.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.fw-hero-for {
  margin: 0;
  color: #b7b2c4;
  font-size: 0.95rem;
  font-weight: 500;
}

.fw-hero-contrast {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #c9c4d4;
}

.fw-hero-contrast strong {
  color: var(--paper);
  font-weight: 600;
}

.focus-window .fw-hero .button-quiet {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding-right: 22px;
}

.focus-window .fw-hero .button-quiet:hover {
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(109, 40, 217, 0.12);
}

.focus-window .nav-button .nav-cta-short {
  display: none;
}

.focus-window .fw-hero .hero-actions {
  margin-top: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.fw-hero-say {
  margin: 26px 0 0;
  padding: 14px 16px;
  max-width: 34rem;
  border-radius: 14px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(109, 40, 217, 0.12);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.fw-hero-say span {
  display: block;
  margin-bottom: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.fw-idea-say {
  margin-top: 22px;
}

.fw-kine-line {
  display: block;
}

.fw-kine-clear {
  display: block;
  letter-spacing: -0.04em;
  animation: fw-kine-clear 1.6s var(--ease-control, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

/* Beat .hero h1 span so the split reads clearly: white then violet */
.focus-window .fw-hero h1 .fw-kine-line {
  color: var(--paper);
}

.focus-window .fw-hero h1 .fw-kine-clear {
  color: var(--violet-bright);
}

@keyframes fw-kine-clear {
  0% {
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(0.35em);
  }
  60% {
    letter-spacing: -0.03em;
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    letter-spacing: -0.04em;
    opacity: 1;
    transform: none;
  }
}

.fw-hero-window {
  transform: perspective(1600px) rotateY(-3deg) rotateX(1deg);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(25, 19, 36, 0.92);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 80px rgba(109, 40, 217, 0.22);
  animation: fw-hero-float 9s ease-in-out infinite;
}

.focus-window .fw-hero .hero-shell {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.focus-window .hero-product {
  width: 108%;
  max-width: none;
  transform: none;
}

.fw-shot-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f4f2f8;
}

.fw-shot-frame picture {
  display: block;
  width: 100%;
}

.fw-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  background: #f4f2f8;
}

.fw-shot-live {
  position: relative;
}

.fw-shot-live::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.1) 46%,
    rgba(196, 181, 253, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 54%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: fw-shot-sheen 7.5s cubic-bezier(0.4, 0, 0.2, 1) 1.4s infinite;
}

.fw-shot-frame img,
.fw-shot-live > img,
.fw-shot-live picture img,
.fw-story-media.fw-shot-live img {
  transform-origin: 50% 50%;
  /* Translate only — scaling UI screenshots softens text on retina */
  animation: fw-shot-ken 28s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fw-story-media.fw-shot-live.is-active img {
  animation-name: fw-shot-ken, fw-shot-settle;
  animation-duration: 28s, 700ms;
  animation-timing-function: ease-in-out, cubic-bezier(0.22, 1, 0.36, 1);
  animation-iteration-count: infinite, 1;
  animation-direction: alternate, normal;
}

@keyframes fw-hero-float {
  0%,
  100% {
    transform: perspective(1600px) rotateY(-3deg) rotateX(1deg) translate3d(0, 0, 0);
  }
  50% {
    transform: perspective(1600px) rotateY(-2.5deg) rotateX(0.8deg) translate3d(0, -8px, 0);
  }
}

@keyframes fw-shot-ken {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-0.35%, -0.2%, 0);
  }
}

@keyframes fw-shot-settle {
  from {
    transform: translate3d(0, 4px, 0);
    filter: saturate(0.96);
  }
  to {
    filter: none;
  }
}

@keyframes fw-shot-sheen {
  0%,
  68% {
    transform: translateX(-120%);
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  88%,
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.float-card.fw-float-in,
.hero-product .float-card {
  animation: fw-float-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 500ms both,
    fw-card-bob 5.8s ease-in-out 1.4s infinite;
}

.hero-product .float-human,
.float-card.fw-float-in-delay {
  animation-delay: 900ms, 2.1s;
}

@keyframes fw-card-bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

.fw-float-in {
  animation: fw-float-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 500ms both;
}

.fw-float-in-delay {
  animation-delay: 900ms;
}

@keyframes fw-float-in {
  from {
    opacity: 0;
    transform: translate3d(18px, 22px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.focus-window .micro-flow li.is-active,
.focus-window .micro-flow li.flow-approved.is-active {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.fw-brand-stage {
  width: min(100%, 400px);
}

.fw-signal-copy {
  max-width: 22ch;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
}

.fw-signal-sub {
  margin: 18px 0 0;
  max-width: 34rem;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Before / after value stage */
.shift-band {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.18), transparent 42%),
    linear-gradient(180deg, #120d1c 0%, var(--ink) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.fw-signal .shift-stage {
  margin: clamp(32px, 5vw, 52px) auto 0;
}

.shift-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 28px;
  padding: clamp(22px, 3.2vw, 36px);
  background:
    radial-gradient(circle at 78% 12%, rgba(34, 211, 238, 0.08), transparent 34%),
    radial-gradient(circle at 18% 0%, rgba(124, 58, 237, 0.22), transparent 42%),
    rgba(12, 9, 20, 0.88);
  box-shadow: 0 40px 90px rgba(3, 2, 8, 0.45);
}

.shift-head {
  max-width: 40rem;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.shift-head .eyebrow {
  color: var(--violet-bright);
}

.shift-head h2 {
  margin: 10px 0 14px;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--paper);
}

.shift-head h2 span {
  color: var(--violet-bright);
}

.shift-head p {
  margin: 0;
  max-width: 48ch;
  color: var(--caption);
  font-size: 1.02rem;
  line-height: 1.55;
}

.shift-switch {
  display: none;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.03);
}

.shift-switch button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  color: var(--caption);
  font-family: var(--body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.shift-switch button.is-selected {
  background: rgba(139, 92, 246, 0.22);
  color: var(--paper);
}

.shift-panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.shift-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.shift-before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%),
    rgba(20, 16, 30, 0.9);
}

.shift-after {
  border-color: rgba(167, 139, 250, 0.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.24), transparent 55%),
    rgba(18, 13, 30, 0.95);
  box-shadow: 0 18px 40px rgba(76, 29, 149, 0.18);
}

.shift-stage:hover .shift-after,
.shift-stage:focus-within .shift-after,
.shift-stage.is-after .shift-after {
  transform: translateY(-3px);
  border-color: rgba(196, 181, 253, 0.55);
}

.shift-panel-top {
  margin-bottom: 14px;
}

.shift-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a93a8;
}

.shift-kicker-live {
  color: var(--teal);
}

.shift-panel-top h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.shift-panel-top p {
  margin: 0;
  color: var(--caption);
  font-size: 0.95rem;
  line-height: 1.45;
}

.shift-mock {
  flex: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 6, 14, 0.72);
  overflow: hidden;
  margin-bottom: 14px;
}

.shift-mock-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #8f889e;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shift-mock ul {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: grid;
  gap: 6px;
}

.shift-mock-inbox li,
.shift-mock-queue li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.shift-mock-inbox li i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.shift-mock-inbox li strong,
.shift-mock-queue li strong {
  font-size: 0.86rem;
  font-weight: 500;
  color: #d8d3e2;
  letter-spacing: -0.01em;
}

.shift-mock-inbox li small,
.shift-mock-queue li > span:not(.shift-badges) {
  color: #7f788f;
  font-size: 0.72rem;
}

.shift-mock-inbox li.is-buried {
  opacity: 0.55;
  border-color: rgba(251, 191, 36, 0.18);
}

.shift-mock-inbox li.is-buried i {
  background: rgba(251, 191, 36, 0.7);
}

.shift-mock-inbox li.is-buried strong {
  color: #c4b8a1;
  text-decoration: none;
}

.shift-mock-queue li {
  grid-template-columns: 1fr auto;
}

.shift-mock-queue li.is-hot {
  border-color: rgba(251, 191, 36, 0.35);
  background:
    linear-gradient(90deg, rgba(251, 191, 36, 0.12), rgba(124, 58, 237, 0.12));
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.08);
}

.shift-mock-queue li.is-hot strong {
  color: var(--paper);
}

.shift-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
}

.shift-badges em {
  font-style: normal;
  border-radius: 999px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shift-badge-amber {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.shift-badge-violet {
  color: #ddd6fe;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.shift-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #67e8f9;
}

.shift-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
}

.shift-approve {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 8px 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(6, 182, 212, 0.08);
  color: #d7f8ff;
  font-size: 0.84rem;
}

.shift-approve .approval-ring {
  flex: none;
}

.shift-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.shift-points li {
  position: relative;
  padding-left: 16px;
  color: var(--caption);
  font-size: 0.92rem;
  line-height: 1.4;
}

.shift-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.shift-after .shift-points li::before {
  background: var(--violet-bright);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
}

.shift-bridge {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-width: 58px;
  color: var(--caption);
}

.shift-bridge-orb {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(145deg, rgba(124, 58, 237, 0.55), rgba(6, 182, 212, 0.28));
  color: var(--paper);
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.35);
}

.shift-bridge small {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7b0c6;
}

@media (prefers-reduced-motion: no-preference) {
  .shift-bridge-orb {
    animation: shift-pulse 3.6s ease-in-out infinite;
  }

  .shift-mock-queue li.is-hot {
    animation: shift-hot 3.2s ease-in-out infinite;
  }
}

@keyframes shift-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(109, 40, 217, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 14px 36px rgba(109, 40, 217, 0.48); }
}

@keyframes shift-hot {
  0%, 100% { box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.08); }
  50% { box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.28), 0 0 24px rgba(251, 191, 36, 0.12); }
}

.shift-footnote {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8d3e2;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .shift-switch {
    display: inline-flex;
  }

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

  .shift-bridge {
    display: none;
  }

  .shift-panel {
    display: none;
  }

  .shift-panel.is-active {
    display: flex;
  }

  .fw-signal-copy {
    max-width: none;
  }
}

.fw-marquee {
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fw-marquee-band {
  margin-top: 0;
  margin-bottom: 0;
  padding: 4px 0;
  background:
    radial-gradient(ellipse 70% 140% at 18% 50%, rgba(124, 58, 237, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 120% at 88% 40%, rgba(6, 182, 212, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(18, 14, 30, 0.2), rgba(12, 9, 20, 0.45));
}

.fw-marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--caption);
  animation: fw-marquee 28s linear infinite;
}

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

@keyframes fw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fw-marquee-static {
  display: none;
  list-style: none;
  margin: 20px auto 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.fw-marquee-static li {
  padding: 8px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--caption);
  font-size: 0.82rem;
}

/* Giant section watermark — atmosphere, not copy */
.fw-has-ghost {
  position: relative;
  isolation: isolate;
}

.fw-ghost {
  position: absolute;
  inset: -18% -8% -10%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

.fw-ghost-word {
  position: absolute;
  top: 8%;
  right: -4%;
  margin: 0;
  color: rgba(196, 181, 253, 0.22);
  font-family: var(--display);
  font-size: clamp(5.5rem, 14vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.fw-ghost-word-left {
  right: auto;
  left: -6%;
  top: 0;
}

.fw-has-ghost > :not(.fw-ghost) {
  position: relative;
  z-index: 1;
}

.focus-window .fw-has-ghost > .fw-ghost {
  z-index: 0;
}

.fw-product-demo {
  margin: clamp(28px, 4vw, 40px) 0 0;
}

.fw-product-demo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: #0b0812;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 80px rgba(0, 0, 0, 0.35);
}

.fw-product-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #0b0812;
  vertical-align: middle;
}

.fw-product-demo-caption {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 0 4px;
}

.fw-product-demo-caption .mono-label {
  margin: 0;
}

.fw-product-demo-caption p:last-child {
  margin: 0;
  max-width: 40rem;
  color: var(--muted, #b7b0c6);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fw-product-story {
  margin-top: clamp(28px, 4vw, 40px);
}

.fw-product-scroll {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.fw-product-sticky {
  position: sticky;
  top: calc(var(--fw-scroll-pad) + 12px);
}

.fw-product-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: #f4f2f8;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.fw-story-media {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 420ms ease, transform 520ms ease;
  display: grid;
  place-items: center;
  background: #f4f2f8;
}

.fw-story-media-wide {
  background: #f4f2f8;
}

.fw-story-media.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.fw-story-media picture {
  display: contents;
}

.fw-story-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.fw-product-badge {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 11, 25, 0.78);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #a5f3fc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.fw-product-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee;
}

.fw-product-chapters {
  display: grid;
  gap: 0;
}

.fw-chapter {
  display: block !important;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--hairline);
  opacity: 0.42;
  transition: opacity 280ms ease;
}

.fw-chapter:last-child {
  border-bottom: 1px solid var(--hairline);
}

.fw-chapter.is-selected {
  opacity: 1;
}

.fw-chapter .story-copy {
  max-width: none;
}

.fw-chapter .story-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.fw-benefits {
  position: relative;
  overflow: hidden;
}

.fw-benefits-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 11, 25, 0.06), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(109, 40, 217, 0.06), transparent 45%);
}

.fw-benefit-runway {
  position: relative;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--ink-hairline);
}

.fw-benefit-runway::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.35), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fw-benefit-runway.is-visible::before,
html.js .focus-window .fw-benefit-runway::before {
  transform: scaleX(1);
}

.fw-benefit-runway .fw-benefit-index {
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.85;
  opacity: 0.1;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.fw-benefit-copy h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.fw-benefit-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--slate);
  max-width: 36ch;
}

.fw-benefit-flip {
  direction: rtl;
}

.fw-benefit-flip > * {
  direction: ltr;
}

.fw-diff-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0 18px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.fw-diff-ticker-rail {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.22);
  animation: fw-marquee 36s linear infinite;
}

.fw-diff-ticker-rail-alt {
  margin-top: 6px;
  color: rgba(167, 139, 250, 0.55);
  animation-direction: reverse;
  animation-duration: 42s;
}

.fw-diff-row {
  transition: background 220ms ease, padding 220ms ease;
  border-radius: 18px;
  padding-left: 12px;
  padding-right: 12px;
}

.fw-diff-row:hover,
.fw-diff-row:focus-visible {
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

.fw-diff-ours {
  position: relative;
}

.fw-diff-ours::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--violet-bright), transparent);
  transform: scaleY(0);
  transition: transform 320ms ease;
}

.fw-diff-row:hover .fw-diff-ours::before,
.fw-diff-row:focus-visible .fw-diff-ours::before {
  transform: scaleY(1);
}

.fw-trust-panel-ink .fw-trust-gate {
  margin-top: 28px;
  padding: 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(109, 40, 217, 0.22), transparent 60%);
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.fw-trust-head h2 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
}

.fw-docs-list .knowledge-row {
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
  border-radius: 16px;
}

.fw-docs-list .knowledge-row:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 11, 25, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

/* Paper surface inside dark page: override dark-theme caption/button colors */
.fw-docs-list .mono-label {
  color: var(--violet-core);
}

.fw-docs-list .button-quiet {
  color: var(--ink);
  border-color: rgba(15, 11, 25, 0.22);
  background: transparent;
}

.fw-docs-list .button-quiet:hover {
  color: var(--violet-deep);
  border-color: var(--violet-core);
  background: rgba(109, 40, 217, 0.06);
}

.fw-form-glass {
  backdrop-filter: blur(16px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(167, 139, 250, 0.16);
}

.fw-begin .fw-form-glass {
  border-color: rgba(196, 181, 253, 0.3);
  background: rgba(22, 17, 35, 0.96);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  backdrop-filter: blur(24px) saturate(110%);
}

.fw-begin .field label {
  color: #eeeaf4;
}

.fw-begin .field label em,
.fw-begin .field small,
.fw-begin .form-actions > small {
  color: #aaa3b3;
}

.fw-begin .demo-form input,
.fw-begin .demo-form select,
.fw-begin .demo-form textarea {
  border-color: rgba(196, 181, 253, 0.28);
  background-color: rgba(7, 5, 13, 0.72);
}

.fw-begin .demo-form input::placeholder,
.fw-begin .demo-form textarea::placeholder {
  color: #9e97a8;
}

.fw-journey {
  position: relative;
}

.fw-journey::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.45), transparent);
  pointer-events: none;
}

[data-magnetic] {
  will-change: transform;
}

@media (max-width: 980px) {
  .fw-product-scroll {
    grid-template-columns: 1fr;
  }

  .fw-product-sticky {
    position: relative;
    top: auto;
  }

  .fw-product-stage {
    aspect-ratio: 16 / 11;
  }

  .fw-chapter {
    padding: 22px 0;
  }

  .fw-chapter:not(.is-selected) {
    display: none !important;
  }

  .fw-marquee {
    display: none;
  }

  .fw-marquee-static {
    display: flex;
  }

  .fw-diff-ticker {
    display: none;
  }

  .fw-ghost-word {
    font-size: clamp(4rem, 20vw, 6.5rem);
    color: rgba(196, 181, 253, 0.16);
  }

  .fw-benefit-runway,
  .fw-benefit-flip {
    direction: ltr;
    grid-template-columns: auto 1fr;
  }

  .fw-benefit-runway .fw-benefit-visual,
  .fw-benefit-runway .fw-benefit-chip {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .fw-journey::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .fw-signal-copy {
    max-width: none;
  }

  .fw-hero-window {
    transform: none;
  }
}

/* Pointer spotlight: lighten the area under the cursor on card surfaces */
@media (pointer: fine) {
  .spotlight {
    position: relative;
    --spot-x: 50%;
    --spot-y: 50%;
  }

  .spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
    background: radial-gradient(
      420px circle at var(--spot-x) var(--spot-y),
      rgba(255, 255, 255, 0.14),
      rgba(139, 92, 246, 0.1),
      transparent 68%
    );
  }

  .spotlight:hover::after {
    opacity: 1;
  }

  /* Paper / light surfaces: soft violet lift instead of white wash */
  .problem-card.spotlight:not(.problem-card-violet)::after,
  .fw-trust-panel-paper.spotlight::after {
    background: radial-gradient(
      420px circle at var(--spot-x) var(--spot-y),
      rgba(124, 58, 237, 0.12),
      transparent 68%
    );
  }
}

/* Pause decorative CSS loops while the tab is in the background */
html.is-perf-paused .fw-hero-window,
html.is-perf-paused .fw-shot-live::after,
html.is-perf-paused .fw-shot-frame img,
html.is-perf-paused .fw-shot-live > img,
html.is-perf-paused .fw-shot-live picture img,
html.is-perf-paused .fw-marquee-track,
html.is-perf-paused .fw-diff-ticker-rail,
html.is-perf-paused .float-card,
html.is-perf-paused .hero-product .float-card,
html.is-perf-paused [class*="float-y"],
html.is-perf-paused .flow-step {
  animation-play-state: paused !important;
}

/* Low-power devices: drop perpetual hero/product motion */
html.is-low-power .fw-hero-window,
html.is-low-power .fw-shot-live::after,
html.is-low-power .fw-shot-frame img,
html.is-low-power .fw-shot-live > img,
html.is-low-power .fw-shot-live picture img,
html.is-low-power .fw-marquee-track,
html.is-low-power .fw-diff-ticker-rail,
html.is-low-power .float-card.fw-float-in,
html.is-low-power .hero-product .float-card {
  animation: none !important;
}

html.is-low-power .fw-shot-frame img,
html.is-low-power .fw-shot-live > img,
html.is-low-power .fw-shot-live picture img {
  transform: none !important;
  will-change: auto !important;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-product {
    transform: none !important;
  }

  .aperture-mark .aperture-arm,
  .aperture-mark .aperture-authorization {
    animation: none !important;
    transform: none !important;
  }

  .aperture-mark .aperture-authorization {
    opacity: 0 !important;
  }

  .fw-kine-clear,
  .fw-float-in,
  .fw-marquee-track,
  .fw-diff-ticker-rail,
  .fw-hero-window,
  .fw-shot-live::after,
  .fw-shot-frame img,
  .fw-shot-live > img,
  .fw-shot-live picture img,
  .fw-story-media.fw-shot-live img,
  .float-card.fw-float-in,
  .hero-product .float-card {
    animation: none !important;
    filter: none !important;
    letter-spacing: -0.04em !important;
    transform: none !important;
    translate: none !important;
  }

  .fw-hero-brand {
    opacity: 0.85;
  }

  .fw-marquee {
    display: none;
  }

  .fw-marquee-static {
    display: flex;
  }

  .fw-diff-ticker {
    display: none;
  }

  .fw-hero-window {
    transform: none !important;
  }

  [data-magnetic] {
    transform: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Homepage thin router — first-viewport composition (investor / visitor door) */
/* -------------------------------------------------------------------------- */

.home-router .fw-hero {
  min-height: calc(100dvh - 72px);
  justify-content: center;
  padding: 100px 0 28px;
  background:
    radial-gradient(ellipse 62% 52% at 82% 28%, rgba(109, 40, 217, 0.28), transparent 58%),
    radial-gradient(ellipse 48% 42% at 8% 78%, rgba(6, 182, 212, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(14, 10, 22, 0.25) 0%, rgba(15, 11, 25, 0.55) 58%, rgba(15, 11, 25, 0.92) 100%);
}

/* Brand watermark behind product column — never under the headline */
.home-router .fw-hero-markfield {
  left: auto;
  right: -2%;
  top: 8%;
  width: min(40vw, 380px);
  opacity: 0.34;
  z-index: 0;
  transform: translateX(8%);
  mask-image: radial-gradient(circle at 58% 42%, #000 40%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 58% 42%, #000 40%, transparent 74%);
}

.home-router .fw-hero-markfield-glow {
  opacity: 0.7;
  filter: blur(36px);
}

.home-router .fw-hero .hero-copy::before {
  inset: -12% -10% -8% -12%;
  background: radial-gradient(ellipse at 22% 32%, rgba(15, 11, 25, 0.78), rgba(15, 11, 25, 0.28) 52%, transparent 74%);
}

.home-router .fw-hero .hero-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.home-router .fw-hero h1 {
  margin: 12px 0 18px;
  max-width: 13.5em;
  font-size: clamp(2.95rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.home-router .fw-hero h1 .fw-kine-line {
  color: #fff;
  text-shadow: 0 2px 28px rgba(15, 11, 25, 0.55);
}

.home-router .fw-hero h1 .fw-kine-clear {
  color: var(--violet-bright);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 28px rgba(15, 11, 25, 0.65);
}

.home-router .fw-hero-for {
  color: #d4cedf;
  font-size: 0.98rem;
}

.home-router .fw-hero-contrast {
  max-width: 34rem;
  margin: 0 0 26px;
  color: #ebe7f4;
  font-size: clamp(1.08rem, 1.65vw, 1.22rem);
  line-height: 1.5;
  text-shadow: 0 1px 20px rgba(15, 11, 25, 0.65);
}

.home-router .fw-hero-contrast strong {
  color: #fff;
  font-weight: 650;
}

.home-router .fw-hero-pill {
  border-color: rgba(196, 181, 253, 0.35);
  background: rgba(28, 22, 44, 0.72);
  box-shadow: 0 0 28px rgba(109, 40, 217, 0.18);
}

.home-router .fw-hero-brand-stage {
  border-color: rgba(196, 181, 253, 0.4);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(109, 40, 217, 0.28);
}

.home-router .fw-hero .hero-actions {
  gap: 12px;
}

.home-router .fw-hero .button-primary.button-large {
  box-shadow:
    0 14px 40px rgba(109, 40, 217, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.home-router .home-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 48px, var(--shell, 1180px));
  max-width: none;
  margin: clamp(8px, 1.5vw, 18px) auto 0;
  padding: 0;
  border-top: 0;
  position: relative;
  z-index: 2;
}

.home-router .home-trust-strip article {
  padding: 14px 16px 15px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-right: 1px solid rgba(196, 181, 253, 0.22);
  border-bottom: 0;
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(36, 28, 56, 0.88), rgba(18, 14, 30, 0.82));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.home-router .home-trust-strip strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.home-router .home-trust-strip span {
  font-size: 0.86rem;
  color: #b9b3c6;
}

.home-router .hero-product {
  width: 114%;
}

.home-router .product-glow {
  opacity: 0.95;
  filter: blur(60px);
  background: linear-gradient(130deg, rgba(124, 58, 237, 0.72), rgba(6, 182, 212, 0.28));
}

.home-router .fw-hero-window {
  transform: perspective(1600px) rotateY(-2.5deg) rotateX(1deg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 0 90px rgba(109, 40, 217, 0.28);
}

.home-router .fw-hero .flow-strip {
  margin-top: clamp(22px, 3.2vw, 40px);
  padding: 18px 20px 14px;
  border: 1px solid rgba(196, 181, 253, 0.16);
  border-radius: 22px;
  border-top: 1px solid rgba(196, 181, 253, 0.16);
  background:
    linear-gradient(180deg, rgba(28, 22, 44, 0.72), rgba(15, 11, 25, 0.45));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.home-router .flow-intro p {
  color: #c9c3d4;
}

@media (max-width: 900px) {
  .home-router .fw-hero-markfield {
    right: -10%;
    top: 4%;
    width: min(56vw, 240px);
    opacity: 0.2;
  }

  .home-router .hero-product {
    width: 100%;
  }

  .home-router .fw-hero-window {
    transform: none;
  }

  .home-router .home-trust-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--shell, 1180px));
  }
}

/* Pools stay in the product half — never wash the headline */
.home-router .fw-hero-pool-violet {
  top: -22%;
  right: -8%;
  left: auto;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  opacity: 0.62;
  background: rgba(124, 58, 237, 0.18);
}

.home-router .fw-hero-pool-teal {
  bottom: 8%;
  left: auto;
  right: 18%;
  opacity: 0.4;
}

.home-router .fw-hero .float-card {
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(196, 181, 253, 0.18);
}

.home-router .fw-hero-haze {
  background:
    linear-gradient(90deg, rgba(15, 11, 25, 0.55) 0%, rgba(15, 11, 25, 0.18) 42%, transparent 68%),
    linear-gradient(180deg, transparent 0%, rgba(15, 11, 25, 0.35) 100%);
}

.home-continue {
  margin: clamp(28px, 4vw, 40px) 0 0;
  text-align: center;
}

.home-control .fw-trust-head p {
  margin: 0;
  max-width: 40rem;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

.pragraha-principle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 52px);
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 28px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(29, 22, 45, 0.96), rgba(14, 11, 23, 0.94));
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3);
}

.pragraha-figure {
  margin: 0;
}

.pragraha-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pragraha-figure figcaption {
  margin-top: 12px;
  color: #aaa4b3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.pragraha-copy .mono-label {
  margin-bottom: 10px;
  color: #a5f3fc;
}

.pragraha-copy h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pragraha-copy h3 span {
  display: block;
  margin-top: 8px;
  color: var(--violet-bright);
  font-size: 0.48em;
  letter-spacing: 0;
}

.pragraha-copy blockquote {
  margin: 0 0 18px;
  border-left: 2px solid var(--violet-bright);
  padding-left: 18px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.5;
}

.pragraha-copy > p:last-child {
  margin: 0;
  color: #d0cbda;
  font-size: 0.98rem;
  line-height: 1.65;
}

.control-viz {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.autonomy-dial-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(34, 28, 52, 0.96), rgba(18, 14, 28, 0.92));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.autonomy-dial-panel figcaption {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  text-align: left;
}

.autonomy-dial-panel figcaption strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.autonomy-dial-panel figcaption span {
  color: var(--caption);
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

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

.home-control-grid article {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(34, 28, 52, 0.94), rgba(18, 14, 28, 0.9)),
    rgba(15, 11, 25, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.control-viz-grid article {
  display: grid;
  gap: 6px;
  padding: 16px 16px 14px;
  min-height: 118px;
}

.cv-glyph {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 9px;
  background: rgba(124, 58, 237, 0.12);
  color: #c4b5fd;
  font-size: 0.78rem;
  line-height: 1;
}

.home-control-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.control-viz-grid strong {
  margin-bottom: 0;
  font-size: 1rem;
}

.home-control-grid p {
  margin: 0;
  color: var(--caption);
  font-size: 0.95rem;
  line-height: 1.5;
}

.control-viz-grid p {
  font-size: 0.82rem;
  line-height: 1.4;
}

.story-viz-chips,
.trust-viz-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-viz-chips li,
.trust-viz-chips li {
  display: grid;
  gap: 3px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(58, 43, 86, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(58, 43, 86, 0.06);
}

.story-viz-chips strong,
.trust-viz-chips strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.story-viz-chips span,
.trust-viz-chips span {
  color: var(--slate);
  font-size: 0.74rem;
  line-height: 1.35;
}

.fw-trust-panel .trust-viz-chips {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  flex-direction: unset;
}

.fw-trust-panel .trust-viz-chips li {
  position: relative;
  padding: 12px 12px 11px;
  padding-left: 12px;
  color: inherit;
  line-height: 1.35;
}

.fw-trust-panel .trust-viz-chips li::before {
  display: none;
}

.fw-trust-panel-ink .autonomy-dial-ink {
  margin: 18px 0 8px;
}

.fw-trust-panel-ink .trust-viz-chips {
  margin-top: 8px;
}

.fw-trust-panel-ink .trust-viz-chips li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.fw-trust-panel-ink .trust-viz-chips strong {
  color: var(--paper);
}

.fw-trust-panel-ink .trust-viz-chips span {
  color: #bbb5c4;
}

.fw-trust-optout {
  margin: 14px 0 0;
  color: #d0cbda;
  font-size: 0.88rem;
  line-height: 1.5;
}

.trust-viz-chips-paper li:last-child {
  grid-column: 1 / -1;
}

.fw-chapter .story-viz-chips {
  margin-top: 16px;
}

.fw-benefit-runway .priority-scorecard {
  justify-self: end;
}

.home-control .home-continue {
  margin-top: 28px;
  text-align: left;
}

.home-control .quiet-link {
  color: var(--paper);
}

.home-enter {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(109, 40, 217, 0.22), transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(34, 211, 238, 0.12), transparent 50%),
    var(--ink);
  color: var(--paper);
  text-align: center;
}

.home-enter-aura {
  position: absolute;
  inset: 10% 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.home-enter-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.home-enter h2 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.home-enter-inner > p {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

.home-enter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 980px) {
  .control-viz {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .pragraha-principle {
    grid-template-columns: 1fr;
  }

  .home-control-grid,
  .control-viz-grid,
  .story-viz-chips,
  .fw-trust-panel-ink .trust-viz-chips {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .control-viz-grid,
  .story-viz-chips,
  .fw-trust-panel-ink .trust-viz-chips {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   Aurora balance — “readable core, luminous gutters”
   Aurora peeks at section edges; a soft ink vault sits under copy.
   Paper sections stay solid. Cards use glass rafts above the field.
------------------------------------------------------------------- */
.focus-window {
  /* Readable core, visible field — mid balance between wash and void */
  --aurora-ink: rgba(12, 9, 20, 0.58);
  --aurora-ink-soft: rgba(12, 9, 20, 0.36);
  --aurora-edge: transparent;
}

.focus-window .site-aurora canvas {
  opacity: 0.86;
}

/* Shared vault: soft under copy, open gutters so aurora stays present */
.focus-window .fw-signal,
.focus-window .fw-attention,
.focus-window .product-section,
.focus-window .platform-section,
.focus-window .fw-diff,
.focus-window .fw-trust,
.focus-window .home-control.fw-trust,
.focus-window .fw-founder,
.focus-window .fw-begin,
.focus-window .fw-industries,
.focus-window .home-enter,
.focus-window .truth-band,
.focus-window .shift-band,
.focus-window .site-insights {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 64% at 50% 40%, var(--aurora-ink) 0%, var(--aurora-ink-soft) 50%, rgba(12, 9, 20, 0.12) 78%, rgba(12, 9, 20, 0.02) 100%),
    linear-gradient(90deg, rgba(12, 9, 20, 0.3) 0%, transparent 15%, transparent 85%, rgba(12, 9, 20, 0.3) 100%);
}

/* Modes keeps its own cinematic field (sticky expand must not inherit vault wash) */
.focus-window .fw-modes {
  position: relative;
  isolation: isolate;
}

.focus-window .fw-signal::before,
.focus-window .fw-attention::before,
.focus-window .product-section::before,
.focus-window .platform-section::before,
.focus-window .fw-diff::before,
.focus-window .fw-trust::before,
.focus-window .fw-founder::before,
.focus-window .fw-begin::before,
.focus-window .fw-industries::before,
.focus-window .home-enter::before,
.focus-window .truth-band::before,
.focus-window .shift-band::before,
.focus-window .site-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 8%, rgba(124, 58, 237, 0.12), transparent 38%),
    radial-gradient(ellipse at 94% 96%, rgba(34, 211, 238, 0.07), transparent 36%);
  opacity: 0.85;
}

.focus-window .fw-signal > *,
.focus-window .fw-attention > *,
.focus-window .product-section > *,
.focus-window .platform-section > *,
.focus-window .fw-diff > *,
.focus-window .fw-trust > *,
.focus-window .fw-founder > *,
.focus-window .fw-begin > *,
.focus-window .fw-industries > *,
.focus-window .site-insights > *,
.focus-window .home-enter > *,
.focus-window .truth-band > *,
.focus-window .shift-band > * {
  position: relative;
  z-index: 1;
}

.focus-window .fw-modes > .shell {
  position: relative;
  z-index: 2;
}

/* Hero: aurora present; copy keeps a local scrim only where words sit */
.focus-window .fw-hero {
  background:
    linear-gradient(180deg, rgba(12, 9, 20, 0.1) 0%, rgba(12, 9, 20, 0.24) 48%, rgba(12, 9, 20, 0.5) 100%);
}

.focus-window .fw-hero .hero-copy {
  position: relative;
}

.focus-window .fw-hero .hero-copy::before {
  content: "";
  position: absolute;
  inset: -18% -14% -10% -16%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 26% 34%, rgba(12, 9, 20, 0.68), rgba(12, 9, 20, 0.26) 54%, transparent 74%);
}

.focus-window .fw-hero .fw-hero-contrast,
.focus-window .fw-hero .fw-hero-for {
  text-shadow: 0 1px 18px rgba(12, 9, 20, 0.55);
}

.focus-window .fw-hero-pool-violet {
  opacity: 0.55;
  background: rgba(124, 58, 237, 0.14);
}

.focus-window .fw-hero-pool-teal {
  opacity: 0.48;
  background: rgba(6, 182, 212, 0.08);
}

/* Flow strip rides a thin glass rail so stages stay crisp */
.focus-window .fw-hero .flow-strip {
  padding: 18px 0 8px;
  border-top-color: rgba(196, 181, 253, 0.16);
  background: linear-gradient(180deg, rgba(15, 11, 25, 0.35), rgba(15, 11, 25, 0.05));
}

.focus-window .fw-signal {
  --aurora-ink: rgba(12, 9, 20, 0.64);
  --aurora-ink-soft: rgba(12, 9, 20, 0.4);
}

.focus-window .fw-diff {
  --aurora-ink: rgba(12, 9, 20, 0.78);
  --aurora-ink-soft: rgba(12, 9, 20, 0.58);
}

.focus-window .fw-begin {
  --aurora-ink: rgba(12, 9, 20, 0.82);
  --aurora-ink-soft: rgba(12, 9, 20, 0.64);
}

.focus-window .fw-signal-copy-block {
  padding: 8px 4px 8px 0;
}

.focus-window .fw-signal-copy-block,
.focus-window .fw-attention .shell,
.focus-window .fw-begin .shell,
.focus-window .fw-founder .shell {
  text-shadow: 0 1px 16px rgba(12, 9, 20, 0.35);
}

.focus-window .fw-attention-card > p,
.focus-window .home-control-grid p,
.focus-window .fw-trust-lead,
.focus-window .fw-begin-lead,
.focus-window .fw-signal-sub {
  color: #d0cbda;
}

.focus-window .fw-trust-glow {
  opacity: 0.55;
}

.focus-window .fw-diff-row,
.focus-window .fw-industries-aside,
.focus-window .truth-card,
.focus-window .maturity-rail,
.focus-window .decision-split,
.focus-window .autonomy-dial-panel {
  background:
    linear-gradient(160deg, rgba(34, 28, 52, 0.9), rgba(18, 14, 28, 0.86));
  border-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.focus-window .site-footer {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.06), transparent 34%),
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(15, 11, 25, 0.9), rgba(10, 7, 16, 0.78));
}

/* Soft seam light between sections — aurora “breathing room” */
.focus-window .fw-signal,
.focus-window .fw-attention,
.focus-window .fw-diff,
.focus-window .fw-trust,
.focus-window .fw-begin,
.focus-window .home-enter {
  box-shadow: inset 0 1px 0 rgba(196, 181, 253, 0.08);
}

/* -------------------------------------------------------------------------- */
/* Insights hub + articles                                                     */
/* -------------------------------------------------------------------------- */

/*
  Reading surfaces: keep a quiet aurora at the edges, but make long-form
  copy win. Home/spine can stay atmospheric; Insights must stay legible.
*/
.insights-surface .site-aurora {
  z-index: 0;
}

.insights-surface .site-aurora canvas {
  opacity: 0.28;
}

.insights-surface.article-surface .site-aurora canvas {
  opacity: 0.22;
}

/* Scrim sits above the canvas, still below page content (main z-index: 1). */
.insights-surface .site-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 36% at 90% -6%, rgba(124, 58, 237, 0.16), transparent 52%),
    linear-gradient(
      180deg,
      rgba(12, 9, 20, 0.78) 0%,
      rgba(12, 9, 20, 0.9) 32%,
      rgba(12, 9, 20, 0.96) 68%,
      rgba(12, 9, 20, 0.98) 100%
    );
}

.insights-surface.article-surface .site-aurora::after {
  background:
    radial-gradient(ellipse 55% 30% at 92% -8%, rgba(124, 58, 237, 0.12), transparent 50%),
    linear-gradient(
      180deg,
      rgba(12, 9, 20, 0.88) 0%,
      rgba(12, 9, 20, 0.94) 24%,
      rgba(12, 9, 20, 0.97) 60%,
      rgba(12, 9, 20, 0.99) 100%
    );
}

@media (prefers-reduced-motion: reduce) {
  .insights-surface .site-aurora canvas,
  .insights-surface.article-surface .site-aurora canvas {
    opacity: 0.1;
  }
}

.insights-surface .site-header {
  background: rgba(15, 11, 25, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-insights {
  padding: clamp(64px, 9vw, 104px) 0;
  position: relative;
}

.site-insights-head {
  max-width: 40rem;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.site-insights-head h2 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--paper);
}

.site-insights-head p {
  margin: 0;
  color: var(--caption);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.site-insights-grid .insights-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.site-insights-grid .insights-card h3 a {
  color: var(--paper);
  text-decoration: none;
}

.site-insights-grid .insights-card h3 a:hover {
  color: #ddd6fe;
}

.site-insights-more {
  margin: 22px 0 0;
}

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

@media (min-width: 901px) and (max-width: 1100px) {
  .site-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.insights-hero {
  padding: 120px 0 36px;
}

.insights-hero h1 {
  margin: 10px 0 16px;
  max-width: 16em;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--paper);
}

.insights-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--caption);
  font-size: 1.12rem;
  line-height: 1.55;
}

.insights-index {
  padding: 12px 0 64px;
}

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

.insights-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  background:
    linear-gradient(165deg, rgba(28, 22, 44, 0.96), rgba(14, 11, 24, 0.94));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.insights-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  color: #b9b3c6;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.insights-card h2 a {
  color: var(--paper);
  text-decoration: none;
}

.insights-card h2 a:hover {
  color: #ddd6fe;
}

.insights-card > p {
  margin: 0;
  color: var(--caption);
  font-size: 0.96rem;
  line-height: 1.5;
}

.insights-cta {
  padding: 0 0 80px;
}

.insights-cta-inner {
  padding: 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 58, 237, 0.18), transparent 45%),
    rgba(14, 11, 24, 0.96);
}

.insights-cta-inner h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.insights-cta-inner p {
  margin: 0 0 18px;
  max-width: 34rem;
  color: var(--caption);
}

.article-hero {
  padding: 112px 0 18px;
}

.article-hero-inner {
  position: relative;
  max-width: 52rem;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(12, 9, 20, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.article-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #9b93a8;
  font-size: 0.86rem;
}

.article-crumbs a {
  color: #c4b5fd;
  text-decoration: none;
}

.article-crumbs a:hover {
  color: #fff;
}

.article-hero h1 {
  margin: 10px 0 16px;
  max-width: 18em;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--paper);
}

.article-lede {
  margin: 0 0 18px;
  max-width: 42rem;
  color: #ebe7f4;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  color: #b9b3c6;
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 72px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(196, 181, 253, 0.16);
  background: #100c1a;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.article-body {
  max-width: 44rem;
  padding: 0;
}

.article-body h2 {
  margin: 2rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #f7f4fc;
}

.article-body h2:first-child {
  margin-top: 0.2rem;
}

.article-body p,
.article-body li {
  color: #ebe7f4;
  font-size: 1.05rem;
  line-height: 1.68;
}

.article-body p {
  margin: 0 0 1rem;
}

.article-body ul {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.article-body li + li {
  margin-top: 0.45rem;
}

.article-body a {
  color: #ddd6fe;
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.45);
  text-underline-offset: 0.15em;
}

.article-body a:hover {
  color: #fff;
  text-decoration-color: rgba(221, 214, 254, 0.85);
}

.article-sources {
  font-size: 0.92rem !important;
}

.article-sources li {
  color: #b7b0c6 !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.article-close {
  margin-top: 2.4rem;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: rgba(28, 22, 44, 0.92);
}

.article-close h2 {
  margin-top: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.article-aside {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  background: rgba(8, 6, 16, 0.72);
}

.article-aside .mono-label {
  margin-bottom: 12px;
}

.article-more {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.article-more a {
  color: #ddd6fe;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.article-more a:hover {
  color: #fff;
}

.article-aside-note {
  margin: 16px 0 0;
  color: #9b93a8;
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .insights-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

/* Skip layout/paint work for offscreen sections (modern browsers) */
.focus-window .fw-attention,
.focus-window .fw-benefits,
.focus-window .fw-diff,
.focus-window .fw-trust,
.focus-window .fw-docs,
.focus-window .fw-industries,
.focus-window .fw-founder,
.focus-window .fw-begin,
.focus-window .product-section,
.focus-window .platform-section,
.focus-window .truth-band,
.focus-window .home-enter {
  content-visibility: auto;
  contain-intrinsic-size: 1px 840px;
}

/* Sticky scroll-expand needs a live containing block — do not content-vis .fw-modes or .operational-art */

/* -------------------------------------------------------------------------- */
/* Homepage entry — final overrides (must beat shared focus-window aurora)     */
/* -------------------------------------------------------------------------- */

/* Homepage: keep field present under copy, stronger on the product side */
.focus-window.home-router .site-aurora {
  -webkit-mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 28%, #000 48%, #000 100%);
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 28%, #000 48%, #000 100%);
}

.focus-window.home-router .site-aurora canvas {
  opacity: 0.84;
}

.focus-window.home-router .fw-hero-haze {
  inset: -8% 35% auto -8%;
  height: 78%;
  filter: none;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(15, 11, 25, 0.82), rgba(15, 11, 25, 0.35) 46%, transparent 70%);
}

.focus-window.home-router .fw-hero {
  padding: 96px 0 24px;
  background:
    radial-gradient(ellipse 55% 48% at 88% 30%, rgba(109, 40, 217, 0.32), transparent 58%),
    radial-gradient(ellipse 36% 34% at 72% 78%, rgba(6, 182, 212, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(14, 10, 22, 0.2) 0%, rgba(15, 11, 25, 0.5) 55%, rgba(15, 11, 25, 0.94) 100%);
}

.focus-window.home-router .fw-hero .hero-copy::before {
  inset: -14% -12% -10% -14%;
  background: radial-gradient(ellipse at 18% 36%, rgba(15, 11, 25, 0.88), rgba(15, 11, 25, 0.42) 48%, transparent 72%);
}

.focus-window.home-router .fw-hero h1 .fw-kine-line {
  color: #fff;
  text-shadow: 0 2px 24px rgba(15, 11, 25, 0.7);
}

.focus-window.home-router .fw-hero h1 .fw-kine-clear {
  color: var(--violet-bright);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 28px rgba(15, 11, 25, 0.65);
}

.focus-window.home-router .fw-hero-pool-violet {
  top: -22%;
  right: -8%;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  opacity: 0.62;
  background: rgba(124, 58, 237, 0.18);
}

.focus-window.home-router .fw-hero-for {
  color: #ddd6fe;
  font-weight: 500;
}

.focus-window.home-router .fw-hero-contrast {
  color: #f2eef8;
}

.focus-window.home-router .fw-hero .flow-strip {
  margin-top: clamp(18px, 2.8vw, 32px);
  padding: 18px 20px 14px;
  border: 1px solid rgba(196, 181, 253, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(28, 22, 44, 0.72), rgba(15, 11, 25, 0.45));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.focus-window.home-router .home-trust-strip {
  margin-top: clamp(8px, 1.5vw, 18px);
}

/* -------------------------------------------------------------------------- */
/* 2026 winner layer: clarity, proof, progressive motion                       */
/* -------------------------------------------------------------------------- */

@view-transition {
  navigation: auto;
}

.site-header {
  view-transition-name: site-header;
}

.site-header .brand-lockup {
  view-transition-name: brand-lockup;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 260ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(site-header),
::view-transition-new(site-header),
::view-transition-old(brand-lockup),
::view-transition-new(brand-lockup) {
  animation-duration: 320ms;
}

html.js:not(.is-craft-ready) .hero-product .float-card {
  opacity: 0;
  transform: translateY(10px);
  animation: none;
}

.focus-window .fw-hero-brand {
  width: min(168px, 40vw);
  margin-bottom: 18px;
  padding-bottom: 0;
}

.focus-window .fw-hero-brand-stage {
  border-radius: 24px;
}

.focus-window .fw-hero h1 {
  font-size: clamp(3rem, 5.8vw, 4.65rem);
}

@media (min-width: 981px) {
  .focus-window .fw-hero .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.08fr);
    gap: clamp(36px, 4vw, 56px);
  }
}

.fw-product-demo-launch {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  width: 100%;
  border: 0;
  color: #fff;
  font: 600 0.84rem/1 var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(15, 11, 25, 0.08), rgba(15, 11, 25, 0.52)),
    transparent;
  cursor: pointer;
  transition: background 200ms ease;
}

.fw-product-demo-launch:hover,
.fw-product-demo-launch:focus-visible {
  background: rgba(15, 11, 25, 0.28);
  outline: 2px solid rgba(165, 243, 252, 0.9);
  outline-offset: -6px;
}

.fw-product-demo-launch[hidden] {
  display: none;
}

.fw-product-demo-play {
  display: grid;
  place-content: center;
  width: 72px;
  height: 72px;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 245, 240, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transition: transform 200ms var(--ease-control);
}

.fw-product-demo-launch:hover .fw-product-demo-play {
  transform: scale(1.06);
}

.fw-compare {
  margin-top: clamp(52px, 7vw, 84px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 26px;
  background: rgba(10, 7, 18, 0.9);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  backdrop-filter: blur(24px) saturate(110%);
}

.fw-compare-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(280px, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 28px;
}

.fw-compare-head .mono-label {
  grid-row: 1 / span 2;
  align-self: start;
  color: #a5f3fc;
}

.fw-compare-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.fw-compare-head > p:last-child {
  margin: 10px 0 0;
  max-width: 52ch;
  color: #d2ccda;
  line-height: 1.55;
}

.fw-compare-scroll {
  overflow-x: auto;
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 18px;
  background: rgba(13, 10, 22, 0.96);
  scrollbar-color: rgba(165, 243, 252, 0.45) transparent;
}

.fw-compare-scroll:focus-visible {
  outline: 2px solid #a5f3fc;
  outline-offset: 4px;
}

.fw-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: rgba(13, 10, 22, 0.98);
}

.fw-compare-table th,
.fw-compare-table td {
  padding: 18px 16px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}

.fw-compare-table tr:last-child > * {
  border-bottom: 0;
}

.fw-compare-table tr > *:last-child {
  border-right: 0;
}

.fw-compare-table thead th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c3d2;
  background: rgba(255, 255, 255, 0.035);
}

.fw-compare-table tbody th {
  width: 18%;
  font-family: var(--display);
  color: var(--paper);
}

.fw-compare-table td {
  color: #d2ccda;
  font-size: 0.94rem;
  line-height: 1.45;
}

.fw-compare-table .is-inboxos {
  color: #ecfeff;
  background: rgba(6, 182, 212, 0.12);
}

.fw-faq-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 20px;
  padding-top: 8px;
}

.fw-faq-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

details.fw-worry-card {
  min-height: 150px;
}

details.fw-worry-card summary {
  position: relative;
  padding-right: 32px;
  cursor: pointer;
  list-style: none;
}

details.fw-worry-card summary::-webkit-details-marker {
  display: none;
}

details.fw-worry-card summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 0;
  color: #a5f3fc;
  font: 400 1.45rem/1 var(--display);
  transition: transform 180ms ease;
}

details.fw-worry-card[open] summary::after {
  transform: rotate(45deg);
}

details.fw-worry-card .fw-worry-a {
  padding-top: 12px;
}

.founder-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.founder-rail article {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--hairline);
}

.founder-rail article:last-child {
  border-right: 0;
}

.founder-rail article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(165, 243, 252, 0.55);
  font: 500 0.68rem/1 var(--mono);
  letter-spacing: 0.12em;
}

.founder-rail .mono-label {
  color: #a5f3fc;
}

.founder-rail h3 {
  margin: 18px 0 10px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.founder-rail p:last-child {
  margin: 0;
  color: var(--caption);
  line-height: 1.55;
}

.winner-proof {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vw, 60px) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(6, 182, 212, 0.1), transparent 32%),
    var(--paper);
  border-bottom: 1px solid var(--ink-hairline);
}

.winner-proof-inner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(24px, 4vw, 56px);
}

.winner-proof-inner > .mono-label {
  color: var(--violet-core);
}

.winner-proof-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink-hairline);
}

.winner-proof-items p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 22px 20px 8px 0;
}

.winner-proof-items strong {
  font-family: var(--display);
  font-size: 1.04rem;
}

.winner-proof-items span {
  color: var(--slate);
  font-size: 0.87rem;
  line-height: 1.45;
}

.mobile-demo-cta {
  display: none;
}

/* Public security surface */
.security-surface {
  background: var(--ink);
  color: var(--paper);
}

.security-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: end;
  padding: clamp(140px, 18vw, 220px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 65% at 90% 12%, rgba(6, 182, 212, 0.16), transparent 62%),
    radial-gradient(ellipse 55% 60% at 14% 15%, rgba(109, 40, 217, 0.22), transparent 65%),
    linear-gradient(180deg, #15101f, var(--ink));
}

.security-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
}

.security-hero h1 {
  margin: 14px 0 20px;
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.security-hero h1 span {
  color: #a5f3fc;
}

.security-hero-lead {
  margin: 0;
  max-width: 46rem;
  color: #e7e3ec;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.security-boundary {
  padding: 26px;
  border: 1px solid rgba(165, 243, 252, 0.22);
  border-radius: 20px;
  background: rgba(15, 11, 25, 0.56);
  backdrop-filter: blur(16px);
}

.security-boundary strong {
  display: block;
  margin-bottom: 10px;
  font: 500 1.2rem/1.2 var(--display);
}

.security-boundary p {
  margin: 0;
  color: var(--caption);
  line-height: 1.55;
}

.security-section {
  padding: var(--section-space) 0;
  border-top: 1px solid var(--hairline);
}

.security-section.is-paper {
  color: var(--ink);
  background: var(--paper);
}

.security-section-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  margin-bottom: clamp(36px, 6vw, 64px);
}

.security-section-head h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.security-section-head p:last-child {
  margin: 0;
  max-width: 48rem;
  color: var(--caption);
  font-size: 1.08rem;
  line-height: 1.65;
}

.security-section.is-paper .security-section-head p:last-child {
  color: var(--slate);
}

.security-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid currentColor;
}

.security-principles article {
  padding: clamp(26px, 4vw, 44px) 0;
  border-bottom: 1px solid;
}

.security-principles article:nth-child(odd) {
  padding-right: clamp(24px, 5vw, 64px);
}

.security-principles article:nth-child(even) {
  padding-left: clamp(24px, 5vw, 64px);
  border-left: 1px solid;
}

.security-principles h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.security-principles p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.security-limit {
  max-width: 56rem;
  padding: clamp(32px, 5vw, 56px);
  border-left: 3px solid #a5f3fc;
  background: rgba(165, 243, 252, 0.055);
}

.security-limit h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.security-limit p {
  margin: 0;
  color: var(--caption);
  line-height: 1.65;
}

.security-cta {
  text-align: center;
}

.security-cta h2 {
  margin: 0 auto 18px;
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.security-cta p {
  max-width: 48rem;
  margin: 0 auto 30px;
  color: var(--caption);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .focus-window .nav-shell {
    flex-wrap: nowrap;
  }

  .focus-window .site-prefs {
    order: 0;
    width: auto;
    padding-top: 0;
  }

  .fw-compare-head,
  .security-hero-inner,
  .security-section-head {
    grid-template-columns: 1fr;
  }

  .fw-compare-head .mono-label {
    grid-row: auto;
  }

  .founder-rail {
    grid-template-columns: 1fr;
  }

  .founder-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .founder-rail article:last-child {
    border-bottom: 0;
  }

  .winner-proof-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .focus-window .fw-hero .hero-shell,
  .home-router .fw-hero .hero-shell {
    grid-template-columns: 1fr;
  }

  .focus-window .fw-hero .hero-product {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-language {
    display: none;
  }

  .fw-faq-head {
    display: block;
  }

  .fw-faq-head .mono-label {
    margin-bottom: 12px;
  }

  .winner-proof-items,
  .security-principles {
    grid-template-columns: 1fr;
  }

  .security-principles article:nth-child(odd),
  .security-principles article:nth-child(even) {
    padding: 26px 0;
    border-left: 0;
  }

  .mobile-demo-cta {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(165, 243, 252, 0.28);
    border-radius: 14px;
    color: #fff;
    background: rgba(15, 11, 25, 0.92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms var(--ease-control), opacity 180ms ease;
  }

  .mobile-demo-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 371px) and (max-width: 680px) {
  .focus-window .nav-button .nav-cta-short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation-duration: 0.001ms;
  }

  .fw-product-demo-launch,
  .fw-product-demo-play,
  .mobile-demo-cta {
    transition: none;
  }
}
