:root {
  --bg: #050713;
  --bg-2: #080d1f;
  --bg-3: #0b1026;
  --card: rgba(13, 20, 45, 0.72);
  --card-deep: rgba(7, 12, 28, 0.85);
  --blue: #2f7bff;
  --purple: #7a3cff;
  --soft-purple: #9b6bff;
  --cyan: #32d6ff;
  --green: #35e0c1;
  --orange: #ff8a4c;
  --white: #f7f8ff;
  --soft-white: #dde2f2;
  --muted: #aab3c7;
  --low: #68708a;
  --border: rgba(130, 150, 255, 0.22);
  --border-strong: rgba(128, 95, 255, 0.65);
  --glow: 0 0 40px rgba(122, 60, 255, 0.22);
  --cta-glow: 0 0 36px rgba(47, 123, 255, 0.35);
  --max: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(47, 123, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 16% 26%, rgba(122, 60, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 19, 0.34);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header:focus-within {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 19, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  width: min(100%, var(--max));
  height: 76px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: var(--white);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  color: var(--soft-white);
}

.desktop-nav a,
.mobile-menu a {
  color: var(--muted);
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section.compact {
  padding: clamp(48px, 7vw, 76px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

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

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

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

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 84px);
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 56px);
}

h3 {
  font-size: 22px;
}

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

.lede {
  max-width: 700px;
  margin-top: 18px;
  color: var(--soft-white);
  font-size: clamp(16px, 2vw, 18px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  box-shadow: var(--cta-glow);
}

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

.button:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button .arrow,
.card-link .arrow {
  margin-left: 10px;
  transition: transform 180ms ease;
}

.button:hover .arrow,
.card:hover .arrow {
  transform: translateX(4px);
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft-white);
  font-size: 13px;
}

.pill.active,
.filter-button.active {
  border-color: var(--cyan);
  background: rgba(50, 214, 255, 0.12);
  color: var(--white);
}

.filter-button {
  cursor: pointer;
}

.card {
  position: relative;
  min-height: 100%;
  --card-pad: clamp(20px, 3vw, 30px);
  padding: var(--card-pad);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--card), var(--card-deep));
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--glow);
}

.card-thumb {
  margin: calc(0px - var(--card-pad)) calc(0px - var(--card-pad)) 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--card-deep);
}

.card-thumb img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-thumb {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  color: var(--white);
}

.service-thumb strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.service-thumb .line-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: var(--cyan);
  filter: drop-shadow(0 0 18px rgba(50, 214, 255, 0.42));
}

.readiness-thumb,
.playbook-thumb,
.agent-thumb {
  position: relative;
  background:
    radial-gradient(circle at 50% 44%, rgba(50, 214, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(13, 20, 45, 0.92), rgba(7, 12, 28, 0.96));
}

.readiness-thumb::before,
.playbook-thumb::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(50, 214, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(50, 214, 255, 0.12);
}

.playbook-thumb {
  background:
    radial-gradient(circle at 58% 38%, rgba(122, 60, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(13, 20, 45, 0.92), rgba(7, 12, 28, 0.96));
}

.agent-mini {
  position: relative;
  width: min(86%, 260px);
  min-height: 128px;
}

.agent-mini strong,
.agent-mini span {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(50, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(7, 12, 28, 0.78);
  color: var(--soft-white);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(47, 123, 255, 0.12);
}

.agent-mini strong {
  left: 50%;
  top: 50%;
  min-width: 96px;
  min-height: 46px;
  color: var(--white);
  border-color: rgba(50, 214, 255, 0.58);
  transform: translate(-50%, -50%);
}

.agent-mini span:nth-child(1) { left: 0; top: 0; }
.agent-mini span:nth-child(2) { right: 0; top: 10px; }
.agent-mini span:nth-child(4) { left: 0; bottom: 8px; }
.agent-mini span:nth-child(5) { right: 0; bottom: 0; }

.card.muted {
  opacity: 0.82;
}

.card.featured {
  border-color: rgba(155, 107, 255, 0.68);
  box-shadow: 0 0 42px rgba(122, 60, 255, 0.2);
}

.implement-hero-panel {
  align-self: center;
  padding-bottom: clamp(18px, 3vw, 26px);
}

.implement-hero-panel .card-thumb {
  border-radius: 8px 8px 0 0;
}

.adoption-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.path-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(50, 214, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 123, 255, 0.08);
  color: var(--soft-white);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(47, 123, 255, 0.08);
}

.path-pill:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(47, 123, 255, 0.12);
  color: var(--cyan);
  font-weight: 800;
}

.line-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon .line-icon,
.mini-pill .line-icon {
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(50, 214, 255, 0.3));
}

.mini-pill {
  justify-items: center;
}

.mini-pill .line-icon {
  width: 24px;
  height: 24px;
}

.card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(52px, 8vw, 96px);
}

.gradient-text {
  background: linear-gradient(90deg, var(--white), var(--cyan), var(--soft-purple));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4.5s ease-in-out infinite;
}

.orb-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.orb-stage::before,
.orb-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-stage::before {
  width: min(84vw, 560px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(47, 123, 255, 0.2), transparent 54%),
    radial-gradient(circle at 64% 38%, rgba(122, 60, 255, 0.22), transparent 32%);
  filter: blur(4px);
}

.orb-stage::after {
  width: min(78vw, 520px);
  height: 140px;
  bottom: 58px;
  border: 1px solid rgba(50, 214, 255, 0.16);
  background: radial-gradient(ellipse at center, rgba(47, 123, 255, 0.16), transparent 70%);
  transform: perspective(460px) rotateX(66deg);
}

.orb {
  position: relative;
  width: min(68vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(35deg, transparent 38%, rgba(50, 214, 255, 0.18) 39%, transparent 41%),
    linear-gradient(145deg, transparent 36%, rgba(155, 107, 255, 0.18) 37%, transparent 39%),
    radial-gradient(circle at 50% 50%, rgba(247, 248, 255, 0.94) 0 2%, transparent 3%),
    radial-gradient(circle at 46% 48%, rgba(50, 214, 255, 0.5), transparent 16%),
    radial-gradient(circle at 58% 42%, rgba(155, 107, 255, 0.55), transparent 20%),
    radial-gradient(circle, rgba(47, 123, 255, 0.14), rgba(122, 60, 255, 0.06) 56%, transparent 70%);
  border: 1px solid rgba(130, 150, 255, 0.42);
  box-shadow: 0 0 70px rgba(47, 123, 255, 0.36), inset 0 0 80px rgba(155, 107, 255, 0.24);
  animation: float 7s ease-in-out infinite;
}

.orb::before,
.orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px solid rgba(50, 214, 255, 0.48);
  transform: rotate(22deg) skew(14deg);
  box-shadow: 0 0 28px rgba(50, 214, 255, 0.2);
  animation: orbit 18s linear infinite;
}

.orb-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 214, 255, 0.62), transparent);
  transform-origin: center;
  pointer-events: none;
}

.orb-line.l1 { left: 23%; top: 36%; width: 48%; rotate: 18deg; }
.orb-line.l2 { left: 35%; top: 58%; width: 38%; rotate: -28deg; }
.orb-line.l3 { left: 24%; top: 64%; width: 42%; rotate: 42deg; }

.orb::after {
  inset: 20%;
  border-color: rgba(155, 107, 255, 0.58);
  transform: rotate(-38deg) skew(-18deg);
  animation-duration: 22s;
  animation-direction: reverse;
}

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 14px var(--cyan);
}

.node.n1 { left: 24%; top: 34%; }
.node.n2 { right: 22%; top: 28%; }
.node.n3 { left: 42%; bottom: 20%; }
.node.n4 { right: 30%; bottom: 34%; }

.float-card {
  position: absolute;
  width: 190px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7, 12, 28, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 32px rgba(47, 123, 255, 0.18);
  animation: float 8s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 13px;
  color: var(--white);
}

.float-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.float-card.one { left: 0; top: 54px; }
.float-card.two { left: 10%; bottom: 110px; animation-delay: -2s; }
.float-card.three { right: 0; top: 150px; animation-delay: -4s; }
.float-card.four { right: 8%; bottom: 70px; animation-delay: -1s; }

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

.mini-pill {
  min-height: 82px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--soft-white);
  text-align: center;
  font-size: 13px;
}

.mini-pill > span {
  color: var(--cyan);
  font-weight: 700;
}

.reality-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(50, 214, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(50, 214, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(13, 20, 45, 0.82), rgba(7, 12, 28, 0.92));
  box-shadow: 0 0 42px rgba(47, 123, 255, 0.12);
}

.reality-panel h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

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

.reality-action {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft-white);
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.reality-action:hover {
  transform: translateY(-2px);
  border-color: rgba(50, 214, 255, 0.46);
  box-shadow: 0 0 24px rgba(50, 214, 255, 0.12);
}

.reality-action .line-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(50, 214, 255, 0.32));
}

.reality-panel p {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(50, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(50, 214, 255, 0.08);
  color: var(--white);
  font-weight: 850;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.vs {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card-deep);
  color: var(--soft-white);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft-white);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(53, 224, 193, 0.35);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  position: relative;
}

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

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

.process.vertical {
  grid-template-columns: 1fr;
}

.process.vertical .process-step::after {
  display: none;
}

.process-step {
  position: relative;
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 20, 45, 0.58);
  text-align: center;
  color: var(--soft-white);
  font-size: 13px;
  overflow: hidden;
}

.process-step .line-icon {
  margin: 0 auto 8px;
  color: var(--cyan);
}

.process-step::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms ease;
}

.process.is-active .process-step::after {
  transform: scaleX(1);
}

.process-step:last-child::after {
  display: none;
}

.work-card {
  overflow: hidden;
  padding: 0;
}

.thumb {
  min-height: 170px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 32%, rgba(50, 214, 255, 0.26), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(122, 60, 255, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(47, 123, 255, 0.18), rgba(7, 12, 28, 0.92));
  border-bottom: 1px solid var(--border);
  transition: transform 220ms ease;
}

.portrait-placeholder {
  min-height: 420px;
}

.about-portrait {
  margin: calc(0px - var(--card-pad));
  overflow: hidden;
  border-radius: 8px;
  background: var(--card-deep);
}

.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.work-card:hover .thumb {
  transform: scale(1.03);
}

.work-body {
  padding: 22px;
}

.label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 20px;
  align-items: stretch;
}

.scenario-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.agents-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(130, 150, 255, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 22%, rgba(122, 60, 255, 0.22), transparent 22rem),
    radial-gradient(circle at 12% 78%, rgba(50, 214, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(13, 20, 45, 0.78), rgba(7, 12, 28, 0.92));
  box-shadow: 0 0 50px rgba(47, 123, 255, 0.16);
  overflow: hidden;
}

.agent-hub {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.thumb .agent-hub {
  min-height: 100%;
  aspect-ratio: 16 / 9;
}

.thumb .agent-node {
  transform: scale(0.72);
}

.thumb .agent-node.center {
  transform: scale(0.78);
}

.thumb .node-operations {
  display: none;
}

.thumb .node-follow {
  top: 18px;
  left: 6%;
}

.thumb .node-research {
  top: 20px;
  right: 4%;
}

.thumb .node-reporting {
  right: 8%;
  bottom: 20px;
}

.agent-orbit {
  position: absolute;
  width: min(76vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(50, 214, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 56px rgba(47, 123, 255, 0.1), 0 0 46px rgba(122, 60, 255, 0.14);
}

.agent-orbit::before,
.agent-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(155, 107, 255, 0.24);
  border-radius: 50%;
  transform: rotate(28deg) skew(12deg);
}

.agent-orbit::after {
  inset: 30%;
  border-color: rgba(50, 214, 255, 0.2);
  transform: rotate(-34deg) skew(-12deg);
}

.agent-node {
  position: absolute;
  min-width: 118px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(130, 150, 255, 0.42);
  border-radius: 8px;
  background: rgba(7, 12, 28, 0.78);
  color: var(--soft-white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(47, 123, 255, 0.14);
}

.agent-node.center {
  min-width: 138px;
  min-height: 74px;
  border-color: rgba(50, 214, 255, 0.72);
  background: radial-gradient(circle at 50% 30%, rgba(50, 214, 255, 0.22), rgba(7, 12, 28, 0.88));
  color: var(--white);
  box-shadow: 0 0 42px rgba(50, 214, 255, 0.28);
}

.node-follow { top: 54px; left: 10%; }
.node-research { top: 70px; right: 8%; }
.node-reporting { right: 2%; bottom: 134px; }
.node-support { left: 4%; bottom: 120px; }
.node-operations { bottom: 40px; left: 50%; transform: translateX(-50%); }

.old-new-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 20, 45, 0.76), rgba(7, 12, 28, 0.9));
  box-shadow: 0 0 46px rgba(47, 123, 255, 0.12);
}

.old-new-heading {
  grid-column: 1 / -1;
}

.old-new-side {
  min-height: 100%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.old-way {
  border-color: rgba(255, 138, 76, 0.34);
}

.new-way {
  border-color: rgba(50, 214, 255, 0.46);
  box-shadow: 0 0 28px rgba(50, 214, 255, 0.12);
}

.shift-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50, 214, 255, 0.36);
  border-radius: 50%;
  background: rgba(50, 214, 255, 0.08);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(50, 214, 255, 0.18);
}

.proof-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 138, 76, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 76, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(13, 20, 45, 0.82), rgba(7, 12, 28, 0.92));
  box-shadow: 0 0 42px rgba(255, 138, 76, 0.08), 0 0 36px rgba(47, 123, 255, 0.08);
}

.proof-icon {
  position: relative;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 138, 76, 0.42);
  border-radius: 8px;
  background: rgba(255, 138, 76, 0.08);
  box-shadow: 0 0 28px rgba(255, 138, 76, 0.12);
}

.proof-icon::before,
.proof-icon::after,
.proof-icon span {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.proof-icon::before {
  width: 14px;
  height: 14px;
  left: 16px;
  top: 18px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 138, 76, 0.5);
}

.proof-icon::after {
  width: 14px;
  height: 14px;
  right: 16px;
  bottom: 18px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(50, 214, 255, 0.5);
}

.proof-icon span:first-child {
  left: 28px;
  top: 28px;
  width: 28px;
  height: 1px;
  background: rgba(255, 138, 76, 0.7);
  transform: rotate(20deg);
}

.proof-icon span:last-child {
  left: 42px;
  top: 48px;
  width: 20px;
  height: 1px;
  background: rgba(50, 214, 255, 0.75);
  transform: rotate(-20deg);
}

.proof-copy p {
  color: var(--soft-white);
}

.proof-statement {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white) !important;
  font-weight: 750;
}

.source-note {
  margin-top: 14px;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.source-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.option {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft-white);
  cursor: pointer;
}

.option:hover,
.option.selected {
  border-color: var(--green);
  background: rgba(53, 224, 193, 0.1);
}

.field-error {
  min-height: 18px;
  color: #ffb097;
  font-size: 13px;
  font-weight: 600;
}

.honeypot,
.hidden {
  display: none;
}

.form-status {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  border-color: rgba(53, 224, 193, 0.55);
  background: rgba(53, 224, 193, 0.1);
}

.form-status.error {
  border-color: rgba(255, 138, 76, 0.6);
  background: rgba(255, 138, 76, 0.08);
}

.form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 13px 14px;
}

select {
  background: #141a2f;
  color: #f7f8ff;
}

select option {
  background: #0b1026;
  color: #f7f8ff;
}

select option:checked {
  background: #2f7bff;
  color: #ffffff;
}

select option:hover {
  background: #2f7bff;
  color: #ffffff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 -180px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(47, 123, 255, 0.28), transparent 62%);
  pointer-events: none;
}

.final-cta h2,
.final-cta p,
.final-cta .cta-row {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 13, 0.72);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  margin-top: 32px;
  color: var(--low);
  font-size: 13px;
}

.reveal {
  animation: fadeUp 600ms ease both;
}

.hero h1 .line {
  display: block;
  animation: fadeUp 700ms ease both;
}

.hero h1 .line:nth-child(2) {
  animation-delay: 130ms;
}

.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease var(--stagger, 0ms), transform 560ms ease var(--stagger, 0ms);
}

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

[hidden] {
  display: none !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes orbit {
  to { rotate: 360deg; }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .nav-shell > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 20px var(--pad) 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 7, 19, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.open {
    display: grid;
    gap: 18px;
  }

  .split,
  .scenario,
  .agents-banner,
  .proof-card {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .process-step::after {
    display: none;
  }

  .orb-stage {
    min-height: 450px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 58px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .mini-grid,
  .reality-actions,
  .form-grid,
  .comparison,
  .process,
  .process.four,
  .process.five,
  .footer-grid,
  .scenario-options {
    grid-template-columns: 1fr;
  }

  .vs {
    margin: 0 auto;
  }

  .orb-stage {
    min-height: 390px;
  }

  .float-card {
    display: none;
  }

  .agent-hub {
    min-height: 360px;
  }

  .agent-node {
    min-width: 104px;
    font-size: 12px;
  }

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

  .adoption-path {
    gap: 8px;
  }

  .path-pill {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .path-pill::after {
    display: none;
  }

  .proof-icon {
    width: 72px;
    height: 72px;
  }

  .shift-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .nav-shell {
    height: 68px;
  }

  .mobile-menu {
    inset: 68px 0 auto;
  }
}

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

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