:root {
  color-scheme: dark;
  --bg: #050807;
  --bg-2: #08110f;
  --paper: #f5f7f0;
  --paper-2: #eaf0e8;
  --ink: #06100e;
  --text: #f7f8ef;
  --text-soft: rgba(247, 248, 239, 0.72);
  --muted: rgba(247, 248, 239, 0.54);
  --line: rgba(247, 248, 239, 0.13);
  --line-dark: rgba(6, 16, 14, 0.14);
  --mint: #62ffd0;
  --mint-2: #18c99a;
  --blue: #7e9cff;
  --brass: #f0be68;
  --coral: #ff7b66;
  --violet: #b69cff;
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --ring: 0 0 0 3px rgba(98, 255, 208, 0.28);
  --content: 1180px;
  font-family:
    "Inter", "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: rgba(98, 255, 208, 0.32);
  color: #fff;
}

.sr-only,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  outline: none;
  box-shadow: var(--ring);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--brass));
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  width: min(var(--content), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(247, 248, 239, 0.14);
  border-radius: 999px;
  background: rgba(5, 8, 7, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(160%);
  padding: 8px 10px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-orb {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(98, 255, 208, 0.26);
  border-radius: 13px;
  background:
    radial-gradient(circle at 75% 20%, rgba(98, 255, 208, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(247, 248, 239, 0.13), rgba(247, 248, 239, 0.03)),
    #071411;
  box-shadow: 0 0 28px rgba(98, 255, 208, 0.2), inset 0 1px 0 rgba(247, 248, 239, 0.15);
}

.brand-orb::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(247, 248, 239, 0.08);
  border-radius: 9px;
}

.brand-orb svg {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-orb .mark-axis {
  stroke: rgba(247, 248, 239, 0.66);
  stroke-width: 2.1;
}

.brand-orb .mark-signal {
  stroke: var(--mint);
  stroke-width: 2.6;
}

.brand-orb .mark-node {
  fill: var(--brass);
  stroke: rgba(240, 190, 104, 0.35);
  stroke-width: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--text-soft);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(98, 255, 208, 0.12);
  color: #fff;
}

.nav-cta,
.button,
.footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-size: 13.5px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(98, 255, 208, 0.16);
}

.button.secondary,
.footer-link {
  border-color: rgba(247, 248, 239, 0.16);
  background: rgba(247, 248, 239, 0.07);
  color: #fff;
}

.button:hover,
.nav-cta:hover,
.footer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(98, 255, 208, 0.18);
}

.brand:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.button:focus-visible,
.footer-link:focus-visible,
.menu-toggle:focus-visible,
.resource-stack a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(247, 248, 239, 0.16);
  border-radius: 50%;
  background: rgba(247, 248, 239, 0.06);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 88px;
  padding-bottom: 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 82% 28%, rgba(126, 156, 255, 0.25), transparent 28%),
    radial-gradient(circle at 66% 78%, rgba(98, 255, 208, 0.18), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(240, 190, 104, 0.13), transparent 24%),
    var(--bg);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(247, 248, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 239, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-aurora {
  position: absolute;
  inset: auto 0 -28% 0;
  z-index: -2;
  height: 54%;
  background: conic-gradient(from 120deg at 50% 50%, rgba(98, 255, 208, 0), rgba(98, 255, 208, 0.28), rgba(126, 156, 255, 0.2), rgba(240, 190, 104, 0.12), rgba(98, 255, 208, 0));
  filter: blur(70px);
  animation: aurora 14s linear infinite;
}

.hero-data-field {
  position: absolute;
  inset: 92px 0 0 50%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.48;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 18%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.data-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  border: 1px solid rgba(247, 248, 239, 0.17);
  border-radius: 999px;
  background: rgba(5, 8, 7, 0.46);
  color: rgba(247, 248, 239, 0.58);
  box-shadow: 0 0 28px rgba(98, 255, 208, 0.07);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  filter: blur(7px);
  animation: dataPop 8.8s ease-in-out infinite;
  animation-delay: var(--delay);
  will-change: opacity, transform, filter;
}

.chip-a { --x: 12%; --y: 12%; --delay: -0.4s; }
.chip-b { --x: 31%; --y: 18%; --delay: -4.8s; }
.chip-c { --x: 9%; --y: 62%; --delay: -2.2s; }
.chip-d { --x: 25%; --y: 58%; --delay: -6.4s; }
.chip-e { --x: 58%; --y: 10%; --delay: -3.5s; }
.chip-f { --x: 73%; --y: 22%; --delay: -7.1s; }
.chip-g { --x: 64%; --y: 68%; --delay: -1.2s; }
.chip-h { --x: 86%; --y: 48%; --delay: -5.6s; }
.chip-i { --x: 41%; --y: 78%; --delay: -0.9s; }
.chip-j { --x: 18%; --y: 82%; --delay: -3.9s; }
.chip-k { --x: 79%; --y: 82%; --delay: -2.8s; }
.chip-l { --x: 91%; --y: 16%; --delay: -6.9s; }

.chip-c,
.chip-f,
.chip-j,
.chip-k {
  color: rgba(98, 255, 208, 0.66);
  border-color: rgba(98, 255, 208, 0.22);
}

.chip-d,
.chip-l {
  color: rgba(240, 190, 104, 0.62);
  border-color: rgba(240, 190, 104, 0.2);
}

@keyframes aurora {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dataPop {
  0%,
  9% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    filter: blur(7px);
  }

  16%,
  48% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }

  62%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(5px);
  }
}

.hero-inner {
  width: min(var(--content), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(460px, 0.94fr);
  gap: clamp(36px, 4.6vw, 62px);
  align-items: center;
  padding: 34px 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(50px, 5.25vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-line {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.62;
}

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

.hero-journey {
  max-width: 650px;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.hero-journey li {
  position: relative;
  min-width: 0;
  border-top: 1px solid rgba(247, 248, 239, 0.19);
  padding: 13px 12px 0 0;
}

.hero-journey li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(98, 255, 208, 0.72);
  border-right: 1px solid rgba(98, 255, 208, 0.72);
  transform: rotate(45deg);
}

.hero-journey span,
.hero-journey strong,
.hero-journey small {
  display: block;
}

.hero-journey span {
  margin-bottom: 5px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-journey strong {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.hero-journey small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.hero-stage {
  position: relative;
  height: 500px;
  min-height: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 34% 58%, rgba(98, 255, 208, 0.16), transparent 34%),
    radial-gradient(circle at 78% 34%, rgba(126, 156, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(247, 248, 239, 0.085), rgba(247, 248, 239, 0.025)),
    rgba(247, 248, 239, 0.04);
  border: 1px solid rgba(247, 248, 239, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.desk-grid {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(247, 248, 239, 0.09);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(247, 248, 239, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 239, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.55;
}

.document-deck {
  position: absolute;
  left: 30px;
  bottom: 38px;
  width: min(350px, 58%);
  height: 392px;
  perspective: 1000px;
}

.filing-card {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 248, 239, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 248, 239, 0.12), rgba(247, 248, 239, 0.035)),
    rgba(5, 8, 7, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.filing-back {
  transform: translate(38px, -28px) rotate(5deg) scale(0.91);
  opacity: 0.32;
  animation: documentDrift 8s ease-in-out infinite;
}

.filing-mid {
  transform: translate(18px, -12px) rotate(-3deg) scale(0.96);
  opacity: 0.52;
  animation: documentDrift 8s ease-in-out -2.6s infinite;
}

.filing-front {
  padding: 22px;
  transform: rotateX(5deg) rotateZ(-1deg);
}

.filing-card span,
.filing-top strong {
  color: rgba(247, 248, 239, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filing-card > i {
  display: block;
  width: 68%;
  height: 8px;
  margin: 42px 22px 0;
  border-radius: 999px;
  background: rgba(247, 248, 239, 0.12);
}

.filing-card > i + i {
  width: 48%;
  margin-top: 15px;
}

.filing-card > i + i + i {
  width: 76%;
}

.filing-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.filing-lines {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.filing-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(247, 248, 239, 0.11);
}

.filing-lines i:nth-child(2) {
  width: 72%;
}

.filing-lines i:nth-child(3) {
  width: 86%;
}

.filing-lines i:nth-child(4) {
  width: 54%;
}

.metric-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(247, 248, 239, 0.12);
  padding-top: 22px;
}

.metric-table b,
.metric-table em {
  color: rgba(247, 248, 239, 0.72);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.metric-table em {
  color: var(--mint);
}

.scan-beam {
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background:
    linear-gradient(180deg, rgba(98, 255, 208, 0), rgba(98, 255, 208, 0.2), rgba(126, 156, 255, 0)),
    linear-gradient(90deg, transparent, rgba(247, 248, 239, 0.34), transparent);
  mix-blend-mode: screen;
  transform: translateY(-390px);
  animation: scanPage 4.8s cubic-bezier(0.58, 0, 0.2, 1) infinite;
}

.extraction-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.extract-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  border: 1px solid rgba(98, 255, 208, 0.22);
  border-radius: 999px;
  background: rgba(5, 8, 7, 0.76);
  color: rgba(98, 255, 208, 0.86);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 0 32px rgba(98, 255, 208, 0.12);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  filter: blur(7px);
  animation: extractPop 5.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.extract-a { --x: 31%; --y: 42%; --delay: -0.2s; }
.extract-b { --x: 38%; --y: 61%; --delay: -1.5s; }
.extract-c { --x: 63%; --y: 28%; --delay: -2.8s; }
.extract-d { --x: 71%; --y: 51%; --delay: -3.9s; }
.extract-e { --x: 56%; --y: 78%; --delay: -4.8s; }

.answer-artifact {
  position: absolute;
  right: 28px;
  top: 72px;
  width: min(270px, 45%);
  border: 1px solid rgba(247, 248, 239, 0.13);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.74);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  padding: 18px;
  animation: artifactSettle 5.8s ease-in-out infinite;
}

.answer-artifact::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 46%;
  width: 98px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 255, 208, 0.5));
}

.answer-artifact span {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-artifact strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.24;
}

.answer-line {
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(247, 248, 239, 0.14);
  transform-origin: left;
  animation: lineAssemble 5.8s ease-in-out infinite;
}

.line-b {
  width: 68%;
  margin-top: 11px;
  animation-delay: 0.18s;
}

.answer-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.answer-sources small {
  border: 1px solid rgba(247, 248, 239, 0.13);
  border-radius: 999px;
  color: var(--muted);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

@keyframes documentDrift {
  50% {
    translate: 0 -8px;
  }
}

@keyframes scanPage {
  0%,
  16% {
    transform: translateY(-390px);
    opacity: 0;
  }

  26%,
  68% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateY(90px);
    opacity: 0;
  }
}

@keyframes extractPop {
  0%,
  18% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    filter: blur(7px);
  }

  28%,
  52% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }

  68%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    filter: blur(6px);
  }
}

@keyframes artifactSettle {
  0%,
  18% {
    transform: translateY(10px);
  }

  34%,
  72% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(5px);
  }
}

@keyframes lineAssemble {
  0%,
  18% {
    transform: scaleX(0.18);
    opacity: 0.35;
  }

  38%,
  72% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.55);
    opacity: 0.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-chip,
  .filing-back,
  .filing-mid,
  .scan-beam,
  .extract-chip,
  .answer-artifact,
  .answer-line {
    animation: none;
  }

  .data-chip {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    filter: none;
  }

  .chip-a,
  .chip-e,
  .chip-h,
  .chip-j {
    opacity: 0.34;
  }
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid rgba(247, 248, 239, 0.1);
  background: var(--paper);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.marquee-track span {
  padding: 18px 32px;
  color: rgba(6, 16, 14, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 116px max(16px, calc((100vw - var(--content)) / 2));
}

section[id] {
  scroll-margin-top: 94px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.actions-copy h2,
.outputs-copy h2,
.resources-copy h2,
.request-panel h2,
.intelligence-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 930;
}

.section-heading p,
.actions-copy p,
.outputs-copy p,
.resources-copy p,
.request-panel p,
.intelligence-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.story {
  background:
    radial-gradient(circle at 18% 36%, rgba(98, 255, 208, 0.1), transparent 24%),
    var(--bg);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.story-stage {
  position: sticky;
  top: 112px;
  min-height: 620px;
  border: 1px solid rgba(247, 248, 239, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(98, 255, 208, 0.16), transparent 36%),
    rgba(247, 248, 239, 0.04);
  overflow: hidden;
}

.story-orbit {
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.story-ring {
  fill: none;
  stroke: rgba(247, 248, 239, 0.1);
  stroke-width: 1;
  stroke-dasharray: 5 9;
}

.story-path {
  fill: none;
  stroke: rgba(247, 248, 239, 0.12);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke 280ms ease, filter 280ms ease;
}

.story-path.active {
  stroke: url(#storyGradient);
  filter: drop-shadow(0 0 18px rgba(98, 255, 208, 0.3));
}

.story-center circle {
  fill: rgba(5, 8, 7, 0.78);
  stroke: rgba(98, 255, 208, 0.38);
}

.story-center text {
  fill: var(--text);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-center text + text {
  fill: var(--muted);
  font-size: 12px;
}

.story-steps {
  display: grid;
  gap: 16px;
}

.story-step {
  border: 1px solid rgba(247, 248, 239, 0.12);
  border-radius: var(--radius);
  background: rgba(247, 248, 239, 0.045);
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.story-step.active {
  transform: translateX(-10px);
  border-color: rgba(98, 255, 208, 0.38);
  background: rgba(98, 255, 208, 0.08);
}

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(98, 255, 208, 0.16);
  color: var(--mint);
  font-weight: 900;
}

.story-step h3,
.bento-card h3,
.trust-card h3 {
  margin: 20px 0 8px;
  font-size: 27px;
  line-height: 1.08;
}

.story-step p,
.bento-card p,
.trust-card p {
  margin: 0;
  color: var(--text-soft);
}

.platform {
  background: var(--paper);
  color: var(--ink);
}

.platform .eyebrow,
.platform .section-heading h2 {
  color: var(--ink);
}

.platform .section-heading p {
  color: rgba(6, 16, 14, 0.68);
}

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

.bento-card {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(234, 240, 232, 0.78)),
    var(--paper);
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(6, 16, 14, 0.08);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 596px;
}

.bento-card.wide {
  grid-column: span 2;
}

.card-shine {
  position: absolute;
  inset: -30% -40% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 255, 208, 0.42), transparent 65%);
  filter: blur(16px);
}

.card-label {
  color: var(--mint-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-card h3 {
  color: var(--ink);
  max-width: 500px;
}

.bento-card p {
  color: rgba(6, 16, 14, 0.65);
}

.workspace-card > h3,
.workspace-card > p {
  position: relative;
  z-index: 1;
}

.workspace-card > p {
  max-width: 520px;
}

.workspace-preview {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 26px;
  border: 1px solid rgba(6, 16, 14, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(98, 255, 208, 0.18), transparent 30%),
    linear-gradient(145deg, #0b1714, #07100e);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(6, 16, 14, 0.22);
  padding: 20px;
  overflow: hidden;
}

.workspace-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 248, 239, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 239, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

.workspace-preview-head,
.workspace-objective,
.workspace-scope,
.workspace-policy {
  position: relative;
  z-index: 1;
}

.workspace-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.workspace-preview-head small,
.workspace-objective small,
.workspace-policy small {
  display: block;
  color: rgba(247, 248, 239, 0.48);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-preview-head strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.15;
}

.workspace-preview-head > span {
  flex: 0 0 auto;
  border: 1px solid rgba(98, 255, 208, 0.24);
  border-radius: 999px;
  background: rgba(98, 255, 208, 0.08);
  color: var(--mint);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
}

.workspace-objective {
  margin-top: 16px;
  border-left: 2px solid var(--mint);
  background: rgba(247, 248, 239, 0.05);
  padding: 10px 12px;
}

.workspace-objective p {
  margin-top: 4px;
  color: rgba(247, 248, 239, 0.82);
  font-size: 12px;
  line-height: 1.42;
}

.workspace-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.workspace-scope span {
  border: 1px solid rgba(247, 248, 239, 0.12);
  border-radius: 999px;
  background: rgba(247, 248, 239, 0.055);
  color: rgba(247, 248, 239, 0.7);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
}

.workspace-policy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 15px;
}

.workspace-policy div {
  min-width: 0;
  border-top: 1px solid rgba(247, 248, 239, 0.1);
  padding-top: 9px;
}

.workspace-policy strong {
  display: block;
  margin-top: 4px;
  color: rgba(247, 248, 239, 0.82);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.mini-chat {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 10px;
}

.mini-chat p,
.mini-chat div {
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.mini-chat div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  font-variant-numeric: tabular-nums;
}

.mini-chat i {
  color: rgba(6, 16, 14, 0.48);
  font-style: normal;
}

.proof-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span,
.token-cloud span {
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: rgba(6, 16, 14, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.actions {
  background:
    radial-gradient(circle at 74% 34%, rgba(126, 156, 255, 0.14), transparent 25%),
    var(--bg-2);
}

.actions-layout,
.outputs-layout,
.resources-layout,
.request-panel {
  width: min(var(--content), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.actions-copy {
  max-width: 620px;
}

.gate-wheel {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.gate-wheel svg {
  width: min(100%, 560px);
  overflow: visible;
}

.wheel-base {
  fill: none;
  stroke: rgba(247, 248, 239, 0.12);
  stroke-width: 1.4;
  stroke-dasharray: 7 10;
  animation: dashSlow 24s linear infinite;
}

.wheel-pulse {
  fill: rgba(98, 255, 208, 0.055);
  stroke: rgba(98, 255, 208, 0.2);
  transform-origin: 260px 260px;
  animation: pulseWheel 3.8s ease-in-out infinite;
}

@keyframes pulseWheel {
  50% {
    transform: scale(1.07);
    opacity: 0.62;
  }
}

.wheel-center circle,
.gate circle {
  fill: rgba(247, 248, 239, 0.07);
  stroke: rgba(247, 248, 239, 0.16);
}

.gate {
  transform-origin: 260px 260px;
  animation: gateFloat 5.5s ease-in-out infinite;
  animation-delay: calc(var(--a) * -12ms);
}

@keyframes gateFloat {
  50% {
    transform: translateY(-7px);
  }
}

.wheel-center text,
.gate text {
  fill: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intelligence {
  background: var(--paper);
  color: var(--ink);
}

.intelligence .eyebrow,
.intelligence .section-heading h2 {
  color: var(--ink);
}

.intelligence .section-heading p {
  color: rgba(6, 16, 14, 0.68);
}

.intelligence-showcase {
  width: min(var(--content), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

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

.metric-mosaic div {
  min-height: 174px;
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 60px rgba(6, 16, 14, 0.08);
  display: grid;
  align-content: space-between;
}

.metric-mosaic span {
  color: rgba(6, 16, 14, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-mosaic strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-mosaic i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint-2), var(--blue));
}

.intelligence-copy {
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(6, 16, 14, 0.08);
}

.intelligence-copy h3 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
}

.intelligence-copy p {
  color: rgba(6, 16, 14, 0.68);
}

.token-cloud {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.outputs {
  background:
    radial-gradient(circle at 22% 30%, rgba(240, 190, 104, 0.14), transparent 26%),
    var(--bg);
}

.artifact-scene {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
  min-height: 0;
  padding: 12px 0;
}

.artifact-card {
  position: relative;
  width: 100%;
  min-height: 196px;
  border: 1px solid rgba(247, 248, 239, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 248, 239, 0.16), rgba(247, 248, 239, 0.04)),
    rgba(247, 248, 239, 0.05);
  backdrop-filter: blur(18px);
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: cardHover 7s ease-in-out infinite;
}

.artifact-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(98, 255, 208, 0.13);
  color: var(--mint);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
}

.artifact-card strong {
  display: block;
  margin-top: clamp(34px, 5vw, 48px);
  font-size: 30px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.artifact-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.artifact-card.ppt {
  transform: rotateZ(1.6deg);
}

.artifact-card.xlsx {
  transform: rotateZ(-1.8deg);
  animation-delay: -1.4s;
}

.artifact-card.pdf {
  transform: rotateZ(1.2deg);
  animation-delay: -2.5s;
}

.artifact-card.zip {
  transform: rotateZ(-1.4deg);
  animation-delay: -3.8s;
}

.artifact-card.docx {
  transform: rotateZ(1deg);
  animation-delay: -4.7s;
}

.artifact-card.csv {
  transform: rotateZ(-1deg);
  animation-delay: -5.6s;
}

@keyframes cardHover {
  50% {
    translate: 0 -12px;
  }
}

.trust {
  background: var(--paper);
  color: var(--ink);
}

.trust .eyebrow,
.trust .section-heading h2 {
  color: var(--ink);
}

.trust-grid {
  width: min(var(--content), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  min-height: 210px;
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 18px 60px rgba(6, 16, 14, 0.08);
}

.trust-card h3 {
  color: var(--ink);
}

.trust-card p {
  color: rgba(6, 16, 14, 0.66);
}

.resources {
  background: var(--bg-2);
}

.resources-layout {
  align-items: start;
}

.resource-stack {
  display: grid;
  gap: 12px;
}

.resource-stack a {
  border: 1px solid rgba(247, 248, 239, 0.12);
  border-radius: var(--radius);
  background: rgba(247, 248, 239, 0.055);
  padding: 20px;
  display: grid;
  gap: 6px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-stack a:hover {
  transform: translateX(6px);
  border-color: rgba(98, 255, 208, 0.34);
  background: rgba(98, 255, 208, 0.08);
}

.resource-stack span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-stack strong {
  font-size: 19px;
}

.resource-stack small {
  color: var(--muted);
  font-size: 13px;
}

.request {
  background:
    radial-gradient(circle at 70% 20%, rgba(98, 255, 208, 0.12), transparent 30%),
    var(--bg);
}

.request-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  border: 1px solid rgba(247, 248, 239, 0.13);
  border-radius: var(--radius);
  background: rgba(247, 248, 239, 0.055);
  padding: clamp(26px, 4vw, 52px);
  box-shadow: var(--shadow);
}

.access-card {
  border: 1px solid rgba(247, 248, 239, 0.13);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.58);
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.access-card span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.access-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.access-card p {
  margin: 0;
  color: var(--text-soft);
}

.access-card .button {
  justify-self: start;
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid rgba(247, 248, 239, 0.12);
  background: #030504;
  padding: 32px max(16px, calc((100vw - var(--content)) / 2));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-data-field {
    display: none;
  }

  .hero-inner,
  .story-layout,
  .actions-layout,
  .outputs-layout,
  .resources-layout,
  .request-panel,
  .intelligence-showcase {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: 500px;
    min-height: 0;
  }

  .document-deck {
    width: min(390px, 62%);
  }

  .answer-artifact {
    width: min(300px, 45%);
  }

  .story-stage {
    position: relative;
    top: auto;
    z-index: 0;
    min-height: clamp(260px, 42vw, 360px);
  }

  .story-orbit {
    min-height: clamp(260px, 42vw, 360px);
  }

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

@media (max-width: 860px) {
  .site-header {
    inset-top: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    border: 1px solid rgba(247, 248, 239, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 8, 7, 0.94);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .hero-inner {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 58px;
  }

  .hero-stage {
    height: 460px;
    min-height: 0;
    border-radius: var(--radius);
  }

  .document-deck {
    left: 24px;
    bottom: 34px;
    width: min(360px, 58%);
    height: 350px;
  }

  .answer-artifact {
    right: 24px;
    top: 58px;
    width: min(300px, 42%);
  }

  .section {
    padding-block: 84px;
  }

  .story-layout {
    gap: 22px;
  }

  .story-stage {
    top: 78px;
    min-height: 250px;
  }

  .story-orbit {
    min-height: 250px;
  }

  .story-step {
    padding: 22px;
  }

  .story-step.active {
    transform: none;
  }

  .story-step h3 {
    font-size: 24px;
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 330px;
  }

  .bento-card.workspace-card {
    grid-column: 1 / -1;
    min-height: 640px;
  }

  .mini-chat {
    position: static;
    margin-top: 22px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-inner,
  .hero-stage,
  .story-layout,
  .actions-layout,
  .outputs-layout,
  .resources-layout,
  .request-panel,
  .intelligence-showcase,
  .trust-grid {
    width: min(calc(100vw - 24px), var(--content));
  }

  .nav-shell {
    border-radius: var(--radius);
  }

  .brand strong {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-line {
    font-size: 16px;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
    margin-top: 24px;
  }

  .hero-journey li:nth-child(2)::after {
    display: none;
  }

  .hero-stage {
    height: 390px;
    min-height: 0;
  }

  .document-deck {
    left: 16px;
    bottom: 76px;
    width: 62%;
    height: 248px;
  }

  .filing-front {
    padding: 16px;
  }

  .filing-lines {
    gap: 9px;
    margin-top: 24px;
  }

  .metric-table {
    gap: 9px 12px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .metric-table b,
  .metric-table em {
    font-size: 11px;
  }

  .answer-artifact {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 12px;
    width: auto;
    padding: 13px;
  }

  .answer-artifact::before {
    display: none;
  }

  .answer-artifact strong {
    font-size: 14px;
  }

  .answer-line {
    margin-top: 12px;
  }

  .answer-sources {
    margin-top: 13px;
  }

  .extract-a { --x: 42%; --y: 42%; }
  .extract-b { --x: 52%; --y: 58%; }
  .extract-c { --x: 70%; --y: 28%; }
  .extract-d { --x: 75%; --y: 50%; }
  .extract-e { --x: 55%; --y: 72%; }

  .extract-chip {
    padding: 6px 8px;
    font-size: 10px;
  }

  .marquee-track span {
    padding-inline: 22px;
  }

  .section-heading h2,
  .actions-copy h2,
  .outputs-copy h2,
  .resources-copy h2,
  .request-panel h2,
  .intelligence-copy h3 {
    font-size: 36px;
  }

  .gate-wheel {
    min-height: 400px;
  }

  .story-stage,
  .story-orbit {
    min-height: 220px;
  }

  .story-stage {
    top: auto;
  }

  .story-center text {
    font-size: 16px;
  }

  .story-center text + text {
    font-size: 10px;
  }

  .story-step {
    padding: 18px;
  }

  .story-step h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .bento-grid,
  .metric-mosaic,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.workspace-card {
    grid-column: span 1;
    min-height: 670px;
  }

  .workspace-preview {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }

  .workspace-policy {
    grid-template-columns: 1fr;
  }

  .artifact-scene {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 0;
  }

  .artifact-card {
    min-height: 166px;
    transform: none;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 38px;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
