:root {
  --ink: #06030b;
  --ink-2: #0d0715;
  --ink-3: #160b25;
  --paper: #f7f5fa;
  --paper-2: #efebf5;
  --white: #ffffff;
  --text: #15101c;
  --muted: #716a79;
  --muted-dark: rgba(255, 255, 255, 0.62);
  --line: rgba(24, 14, 37, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --purple: #5a18cf;
  --purple-2: #7b42f3;
  --purple-3: #bda5ff;
  --purple-4: #e9e0ff;
  --green: #8df5c5;
  --amber: #f4cf82;
  --red: #ff8ea0;
  --max: 1240px;
  --wide: 1440px;
  --header: 76px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 90px rgba(28, 7, 58, 0.14);
  --shadow-dark: 0 32px 110px rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.2, 0.75, 0.15, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: rgba(123, 66, 243, 0.72);
}

:focus-visible {
  outline: 3px solid rgba(189, 165, 255, 0.86);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

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

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

.eyebrow,
.kicker,
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.66;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(110deg, #fff 5%, #d4c2ff 42%, #8c56ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

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

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(54px, 6.8vw, 104px);
  font-weight: 380;
  letter-spacing: -0.068em;
  line-height: 0.93;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 390;
  letter-spacing: -0.062em;
  line-height: 0.96;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.018em;
}

.dark .lead,
.dark .section-copy,
.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.69);
}

.section {
  position: relative;
  padding: 124px 0;
  overflow: clip;
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

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

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

.section-grid {
  background-image:
    linear-gradient(rgba(26, 12, 48, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 12, 48, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dark.section-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 980px;
}

.section-head p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.dark .section-head p {
  color: var(--muted-dark);
}

.section-head--stack {
  display: block;
  max-width: 920px;
}

.section-head--stack .kicker {
  margin-bottom: 24px;
}

.section-head--stack p {
  margin-top: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.3) 48%, transparent 82%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  color: #2b0b5f;
  background: var(--white);
  border-color: var(--white);
}

.button--purple {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 38px rgba(83, 22, 193, 0.28);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--light-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line);
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-3);
  box-shadow: 0 0 0 6px rgba(189, 165, 255, 0.08), 0 0 18px rgba(189, 165, 255, 0.68);
}

.pill {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.03em;
}

.pill--dark {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-dark);
}

.pill--live {
  color: #173829;
  background: rgba(141, 245, 197, 0.88);
  border-color: transparent;
}

.pill--dev {
  color: #4a3312;
  background: rgba(244, 207, 130, 0.9);
  border-color: transparent;
}

.pill--roadmap {
  color: #35205f;
  background: rgba(233, 224, 255, 0.96);
  border-color: transparent;
}

/* Boot, ambience and progress */
.boot {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: opacity 0.65s var(--ease), visibility 0.65s var(--ease);
}

.boot.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot__inner {
  width: min(420px, calc(100% - 52px));
}

.boot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.boot__mark {
  width: 78px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 38px rgba(123, 66, 243, 0.62));
  animation: bootMark 1.1s var(--ease) both;
}

.boot__track {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.boot__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--purple-3), #fff);
  transform-origin: left;
  animation: bootLoad 1.15s var(--ease) both;
}

@keyframes bootMark {
  from { opacity: 0; transform: scale(0.82) rotate(-4deg); }
  to { opacity: 1; transform: none; }
}

@keyframes bootLoad {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.signal-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.grain {
  position: fixed;
  z-index: 3;
  inset: 0;
  opacity: 0.048;
  pointer-events: none;
  background: url("../images/noise.png") repeat;
  mix-blend-mode: screen;
}

.cursor-aura {
  position: fixed;
  z-index: 2;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(103, 38, 228, 0.34), transparent 68%);
  filter: blur(22px);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff, var(--purple-3), var(--purple-2));
  box-shadow: 0 0 24px rgba(123, 66, 243, 0.8);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease), backdrop-filter 0.28s var(--ease);
}

.site-header.is-scrolled,
.site-header.inner-header {
  background: rgba(6, 3, 11, 0.74);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(var(--wide), calc(100% - 36px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.brand__badge {
  width: 34px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(123, 66, 243, 0.32));
}

.brand__word {
  font-size: 18px;
  font-weight: 590;
  letter-spacing: -0.035em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s var(--ease), top 0.22s var(--ease);
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: calc(var(--header) + 36px) 24px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(99, 30, 226, 0.35), transparent 30%),
    var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease), transform 0.28s var(--ease);
}

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

.mobile-menu__label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  margin-top: 18px;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.mobile-menu nav span {
  color: var(--purple-3);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mobile-menu nav svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-menu__actions {
  margin-top: 26px;
}

/* Home hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: calc(var(--header) + 64px) 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 18%, rgba(89, 24, 207, 0.38), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(81, 24, 160, 0.24), transparent 31%),
    linear-gradient(120deg, #050208 0%, #10061c 48%, #050208 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(to bottom, transparent 58%, var(--ink) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: 64px;
  align-items: center;
}

.hero__copy {
  max-width: 660px;
}

.hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 26px;
}

.hero__copy h1 {
  max-width: 700px;
}

.hero__copy h1 strong {
  display: block;
  font-weight: 720;
}

.hero__copy .lead {
  margin: 28px 0 0;
  max-width: 650px;
}

.hero__actions {
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-3);
  box-shadow: 0 0 14px rgba(189, 165, 255, 0.7);
}

.hero__visual {
  position: relative;
  min-height: 640px;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  inset: 2% 1% 3% 0;
  border: 1px solid rgba(189, 165, 255, 0.17);
  border-radius: 50%;
  transform: rotate(-8deg);
  animation: orbitPulse 7s ease-in-out infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(189, 165, 255, 0.12);
  border-radius: inherit;
}

.hero-orbit::after {
  inset: 29%;
  border-style: dashed;
  animation: orbitSpin 26s linear infinite;
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.65; transform: rotate(-8deg) scale(0.98); }
  50% { opacity: 1; transform: rotate(-5deg) scale(1.02); }
}

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

.product-demo {
  position: absolute;
  z-index: 4;
  top: 46px;
  right: 0;
  width: min(100%, 690px);
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  overflow: hidden;
  color: var(--white);
  background: rgba(11, 6, 18, 0.88);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(22px);
  transform: rotateY(-7deg) rotateX(4deg);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.product-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.09), transparent 26%, transparent 70%, rgba(123,66,243,.08));
}

.product-demo__chrome {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.chrome-dots {
  display: flex;
  gap: 7px;
}

.chrome-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.product-demo__chrome span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-demo__layout {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 454px;
}

.demo-sidebar {
  padding: 18px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(89, 24, 207, 0.25), rgba(89, 24, 207, 0.08));
}

.demo-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 5px 20px;
  font-size: 12px;
  font-weight: 720;
}

.demo-sidebar__brand img {
  width: 23px;
}

.demo-sidebar nav {
  display: grid;
  gap: 3px;
}

.demo-sidebar button {
  display: flex;
  width: 100%;
  min-height: 35px;
  padding: 0 10px;
  align-items: center;
  gap: 9px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 10px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.demo-sidebar button i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.demo-sidebar button.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.demo-main {
  position: relative;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
}

.demo-view {
  position: absolute;
  inset: 20px;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
}

.demo-view.active {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.demo-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.demo-head b {
  display: block;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.demo-head span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

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

.demo-kpi,
.demo-card,
.demo-row,
.demo-alert,
.demo-chart {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.demo-kpi {
  min-height: 76px;
  padding: 12px;
  border-radius: 12px;
}

.demo-kpi strong {
  display: block;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.05em;
}

.demo-kpi span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  margin-top: 10px;
}

.demo-card,
.demo-chart {
  min-height: 155px;
  padding: 13px;
  border-radius: 13px;
}

.demo-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.demo-card__title b {
  font-size: 10px;
}

.demo-card__title span {
  color: rgba(255, 255, 255, 0.39);
  font-size: 8px;
}

.demo-alerts {
  display: grid;
  gap: 7px;
}

.demo-alert {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 9px;
}

.demo-alert i {
  width: 6px;
  height: 30px;
  border-radius: 99px;
  background: var(--purple-2);
}

.demo-alert b,
.demo-row b {
  display: block;
  font-size: 8px;
  font-weight: 700;
}

.demo-alert small,
.demo-row small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.demo-alert em {
  color: rgba(255, 255, 255, 0.54);
  font-size: 7px;
  font-style: normal;
}

.demo-bars {
  display: flex;
  height: 105px;
  align-items: end;
  gap: 7px;
  padding-top: 10px;
}

.demo-bars i {
  flex: 1;
  min-width: 5px;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(to top, rgba(123, 66, 243, 0.32), var(--purple-2));
  animation: barGrow 1.1s var(--ease) both;
  transform-origin: bottom;
}

@keyframes barGrow {
  from { transform: scaleY(0.16); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}

.demo-table {
  display: grid;
  gap: 7px;
}

.demo-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}

.demo-row span {
  color: rgba(255,255,255,.55);
  font-size: 8px;
}

.demo-row em {
  min-width: 52px;
  padding: 5px 7px;
  border-radius: 999px;
  color: #d9cbff;
  background: rgba(123,66,243,.16);
  font-size: 7px;
  font-style: normal;
  text-align: center;
}

.demo-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 11px;
}

.demo-filterbar span {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.045);
  font-size: 7px;
}

.demo-filterbar span.active {
  color: #281052;
  background: #fff;
}

.demo-analysis {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 10px;
}

.analysis-score {
  min-height: 246px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 38%, rgba(123,66,243,.34), transparent 36%),
    rgba(255,255,255,.045);
}

.analysis-score strong {
  font-size: 54px;
  font-weight: 300;
  letter-spacing: -.08em;
}

.analysis-score span {
  margin-top: 5px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.analysis-findings {
  display: grid;
  gap: 7px;
}

.analysis-finding {
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
}

.analysis-finding b {
  display: block;
  font-size: 8px;
}

.analysis-finding span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.38);
  font-size: 7px;
}

.renewal-board {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
}

.renewal-column {
  min-height: 250px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.renewal-column > b {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.5);
  font-size: 8px;
}

.renewal-item {
  margin-top: 7px;
  padding: 9px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
}

.renewal-item strong {
  display: block;
  font-size: 8px;
}

.renewal-item span {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: rgba(255,255,255,.4);
  font-size: 7px;
}

.commission-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10px;
}

.split-list {
  display: grid;
  gap: 7px;
}

.split-row {
  padding: 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
}

.split-row__top {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.split-track {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}

.split-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--purple),var(--purple-3));
}

.commission-total {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(123,66,243,.22), rgba(255,255,255,.04));
}

.commission-total strong {
  display: block;
  font-size: 34px;
  font-weight: 360;
  letter-spacing: -.065em;
}

.commission-total span {
  color: rgba(255,255,255,.44);
  font-size: 8px;
  text-transform: uppercase;
}

.float-card {
  position: absolute;
  z-index: 6;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  color: var(--white);
  background: rgba(24, 11, 38, 0.8);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  animation: floatCard 5.5s ease-in-out infinite;
}

.float-card--ai {
  right: -12px;
  bottom: 14px;
}

.float-card--renewal {
  left: 8px;
  bottom: 66px;
  animation-delay: -2.3s;
}

.float-card b {
  display: block;
  font-size: 11px;
}

.float-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
}

.float-card__line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-card__line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(141,245,197,.68);
}

@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero__index {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.38);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__index span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__index span:first-child::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

/* Trust / line strip */
.signal-strip {
  position: relative;
  z-index: 6;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  min-height: 56px;
  animation: marquee 28s linear infinite;
}

.signal-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip__track span::after {
  content: "+";
  color: var(--purple);
  font-size: 16px;
}

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

/* Benefits and problem */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.outcome-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  box-shadow: 0 20px 50px rgba(28,7,58,.045);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.outcome-card:hover {
  transform: translateY(-7px);
  border-color: rgba(90,24,207,.28);
  box-shadow: var(--shadow);
}

.outcome-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,66,243,.18), transparent 70%);
}

.outcome-icon,
.module-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(90,24,207,.14);
  border-radius: 15px;
  color: var(--purple);
  background: var(--purple-4);
}

.outcome-icon svg,
.module-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-card h3 {
  margin-top: 74px;
  max-width: 300px;
}

.outcome-card p {
  max-width: 340px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.outcome-card small {
  position: absolute;
  right: 26px;
  top: 28px;
  color: rgba(90,24,207,.65);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}

.problem-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
}

.problem-statement {
  min-height: 630px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(123,66,243,.38), transparent 28%),
    linear-gradient(145deg, #130823, #050308 72%);
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.problem-statement__badge {
  width: 66px;
  filter: drop-shadow(0 0 30px rgba(123,66,243,.55));
}

.problem-statement h2 {
  max-width: 590px;
  font-size: clamp(44px, 5vw, 72px);
}

.problem-statement p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
}

.problem-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: background .24s var(--ease), transform .24s var(--ease);
}

.problem-card:hover {
  transform: translateY(-4px);
  background: var(--purple-4);
}

.problem-card span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.problem-card h3 {
  margin-top: 48px;
  font-size: 28px;
}

.problem-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Platform explorer */
.platform-explorer {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: start;
}

.platform-tabs {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 9px;
}

.platform-tab {
  width: 100%;
  padding: 19px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255,255,255,.045);
  text-align: left;
  cursor: pointer;
  transition: transform .22s var(--ease), color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.platform-tab small {
  display: block;
  color: var(--purple-3);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.platform-tab b {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.platform-tab p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 12px;
}

.platform-tab.active {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateX(7px);
}

.platform-tab.active small { color: var(--purple); }
.platform-tab.active p { color: var(--muted); }

.platform-stage {
  min-height: 730px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    #0a0510;
  box-shadow: 0 30px 100px rgba(0,0,0,.24);
}

.platform-panel {
  display: none;
  padding: 34px;
  animation: panelIn .4s var(--ease);
}

.platform-panel.active {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.platform-panel__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

.platform-panel__head h3 {
  font-size: clamp(36px,4.2vw,58px);
  font-weight: 380;
}

.platform-panel__head p {
  max-width: 690px;
  margin: 15px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 11px;
  margin-top: 30px;
}

.module-card {
  position: relative;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: background .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189,165,255,.28);
  background: rgba(123,66,243,.1);
}

.module-card .module-icon {
  width: 40px;
  height: 40px;
  border-color: rgba(255,255,255,.12);
  color: #d9ccff;
  background: rgba(123,66,243,.16);
}

.module-card .module-icon svg {
  width: 19px;
  height: 19px;
}

.module-card h4 {
  margin: 29px 0 0;
  font-size: 18px;
  letter-spacing: -.025em;
}

.module-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.47);
  font-size: 12px;
}

.module-card .pill {
  position: absolute;
  top: 19px;
  right: 18px;
}

.platform-preview {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.platform-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.preview-dashboard {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10px;
}

.preview-list,
.preview-metric {
  min-height: 150px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.preview-list span {
  display: block;
  height: 9px;
  margin: 9px 0;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
}

.preview-list span:nth-child(2) { width: 72%; }
.preview-list span:nth-child(3) { width: 88%; }
.preview-list span:nth-child(4) { width: 58%; }

.preview-metric {
  display: grid;
  place-items: center;
  align-content: center;
  background: linear-gradient(145deg, rgba(123,66,243,.22), rgba(255,255,255,.04));
}

.preview-metric strong {
  font-size: 46px;
  font-weight: 330;
  letter-spacing: -.07em;
}

.preview-metric span {
  color: rgba(255,255,255,.4);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Workflow */
.workflow-shell {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.workflow-line {
  position: absolute;
  top: 92px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}

.workflow-line::after {
  content: "";
  display: block;
  width: var(--flow-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-2), var(--purple-3));
  box-shadow: 0 0 18px rgba(123,66,243,.4);
  transition: width 1.6s var(--ease);
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}

.workflow-step {
  text-align: center;
}

.workflow-step__node {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 29px auto 30px;
  place-items: center;
  border: 1px solid rgba(90,24,207,.17);
  border-radius: 50%;
  color: var(--purple);
  background: var(--purple-4);
  box-shadow: 0 0 0 9px #fff;
  font-size: 10px;
  font-weight: 900;
}

.workflow-step h3 {
  font-size: 18px;
}

.workflow-step p {
  margin: 9px auto 0;
  color: var(--muted);
  font-size: 12px;
}

/* AI */
.ai-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 26px;
  align-items: stretch;
}

.ai-copy {
  min-height: 680px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 12%, rgba(123,66,243,.35), transparent 30%),
    rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-copy h2 {
  max-width: 660px;
}

.ai-copy p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 17px;
}

.ai-principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.ai-principle i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #1b3a2b;
  background: var(--green);
  font-style: normal;
  font-weight: 900;
}

.ai-principle b {
  font-size: 17px;
}

.ai-principle span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.ai-flow {
  position: relative;
  display: grid;
  gap: 10px;
}

.ai-flow::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 52px;
  bottom: 52px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purple-2), var(--purple-3), transparent);
}

.ai-flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.ai-flow-step:hover {
  transform: translateX(6px);
  border-color: rgba(189,165,255,.26);
  background: rgba(123,66,243,.09);
}

.ai-flow-step__num {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  color: var(--purple-3);
  background: #0b0611;
  font-size: 10px;
  font-weight: 900;
}

.ai-flow-step b {
  display: block;
  font-size: 18px;
  letter-spacing: -.025em;
}

.ai-flow-step p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 13px;
}

.ai-flow-step em {
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 13px;
}

.addon-card {
  position: relative;
  min-height: 440px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.addon-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.addon-card::after {
  content: "";
  position: absolute;
  inset: auto -100px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,66,243,.17), transparent 68%);
}

.addon-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.addon-card h3 {
  margin-top: 80px;
  font-size: 29px;
}

.addon-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.addon-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.addon-card li {
  display: flex;
  gap: 9px;
  color: #312a38;
  font-size: 12px;
}

.addon-card li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* Trust */
.trust-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}

.trust-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.trust-panel h3 {
  font-size: 39px;
  font-weight: 390;
}

.trust-list {
  display: grid;
  margin-top: 28px;
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.11);
}

.trust-item:first-child { border-top: 0; }

.trust-item i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #d9ccff;
  background: rgba(123,66,243,.15);
  font-style: normal;
  font-weight: 900;
}

.trust-item b {
  display: block;
  font-size: 16px;
}

.trust-item p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-metric {
  min-height: 210px;
  padding: 25px;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-metric strong {
  color: var(--purple);
  font-size: 54px;
  font-weight: 320;
  letter-spacing: -.075em;
  line-height: 1;
}

.trust-metric span {
  color: var(--muted);
  font-size: 13px;
}

.trust-metric--wide {
  grid-column: span 2;
  min-height: 180px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), #381079);
}

.trust-metric--wide strong {
  color: var(--white);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.trust-metric--wide span {
  color: rgba(255,255,255,.65);
}

/* Proof and implementation */
.proof-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.proof-cell {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.proof-cell:last-child { border-right: 0; }

.proof-cell strong {
  display: block;
  color: var(--purple);
  font-size: clamp(48px,5vw,72px);
  font-weight: 320;
  letter-spacing: -.075em;
  line-height: 1;
}

.proof-cell h3 {
  margin-top: 54px;
  font-size: 22px;
}

.proof-cell p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.implementation-step {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.implementation-step span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.implementation-step h3 {
  margin-top: 70px;
  font-size: 27px;
}

.implementation-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 20px;
  align-items: center;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: clamp(22px,3vw,34px);
  font-weight: 430;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.faq-question span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: var(--purple-4);
  font-size: 22px;
  transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s var(--ease), padding .36s var(--ease);
}

.faq-answer p {
  max-width: 840px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.faq-item.open .faq-answer {
  max-height: 360px;
}

.faq-item.open .faq-question span:last-child {
  color: var(--white);
  background: var(--purple);
  transform: rotate(45deg);
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  padding: 134px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(123,66,243,.42), transparent 34%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 58px 58px, 58px 58px, auto;
  text-align: center;
  overflow: hidden;
}

.final-cta__badge {
  width: 88px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 36px rgba(123,66,243,.62));
}

.final-cta h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(48px,7vw,92px);
}

.final-cta p {
  max-width: 660px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.63);
  font-size: 18px;
}

.final-cta .button-row {
  justify-content: center;
  margin-top: 36px;
}

.final-cta__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
}

.site-footer {
  color: rgba(255,255,255,.55);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 38px;
  padding: 62px 0 48px;
}

.footer-brand img {
  width: 138px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

.footer-column b {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 12px;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.46);
  font-size: 12px;
  transition: color .2s ease;
}

.footer-column a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.34);
  font-size: 11px;
}

/* Inner page heroes */
.page-hero {
  position: relative;
  min-height: 78svh;
  padding: calc(var(--header) + 92px) 0 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 16%, rgba(99,30,226,.36), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(82,22,166,.23), transparent 28%),
    linear-gradient(120deg,#050208,#120820 54%,#050208);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom,#000,transparent 94%);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.page-hero__copy .eyebrow {
  margin-bottom: 25px;
  color: rgba(255,255,255,.72);
}

.page-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(52px,6.3vw,92px);
}

.page-hero__copy .lead {
  margin: 26px 0 0;
}

.page-hero__copy .button-row {
  margin-top: 32px;
}

.page-hero__visual {
  position: relative;
  min-height: 500px;
}

.page-hero__card {
  position: absolute;
  inset: 20px 0 20px 5%;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 25px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
  transform: rotateY(-7deg) rotateX(4deg);
}

.page-hero__card::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(189,165,255,.14);
  border-radius: 50%;
  animation: orbitSpin 28s linear infinite;
}

.page-hero__card img {
  position: absolute;
  z-index: 2;
  width: 105px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 0 38px rgba(123,66,243,.66));
}

.page-hero__node {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(8,4,14,.82);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.page-hero__node b { display:block; font-size: 11px; }
.page-hero__node span { display:block; margin-top:4px; color:rgba(255,255,255,.43); font-size:8px; }
.page-hero__node:nth-of-type(1) { top: 12%; left: 4%; }
.page-hero__node:nth-of-type(2) { top: 18%; right: 2%; }
.page-hero__node:nth-of-type(3) { bottom: 16%; left: 7%; }
.page-hero__node:nth-of-type(4) { bottom: 10%; right: 4%; }

/* Platform page */
.architecture-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.architecture-nav {
  position: sticky;
  top: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.8);
  box-shadow: 0 18px 46px rgba(28,7,58,.05);
}

.architecture-nav b {
  display: block;
  padding: 10px 12px 13px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.architecture-nav a {
  display: flex;
  min-height: 43px;
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  color: #554c5d;
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}

.architecture-nav a:hover,
.architecture-nav a.active {
  color: var(--purple);
  background: var(--purple-4);
}

.architecture-content {
  display: grid;
  gap: 18px;
}

.architecture-group {
  scroll-margin-top: 105px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(28,7,58,.04);
}

.architecture-group__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.architecture-group__head h2 {
  font-size: clamp(34px,4vw,54px);
}

.architecture-group__head p {
  max-width: 700px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.architecture-modules {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 11px;
  margin-top: 24px;
}

.arch-module {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.arch-module:hover {
  transform: translateY(-4px);
  border-color: rgba(90,24,207,.24);
  background: var(--purple-4);
}

.arch-module h3 {
  margin-top: 36px;
  font-size: 23px;
}

.arch-module p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.arch-module .pill {
  position: absolute;
  right: 17px;
  top: 17px;
}

.filter-demo {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  color: var(--white);
  background: var(--ink);
}

.filter-demo__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.filter-demo__head b { font-size: 15px; }
.filter-demo__head span { color: rgba(255,255,255,.42); font-size: 10px; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.filter-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.05);
  font-size: 10px;
}

.filter-chips span.active {
  color: #2d0d62;
  background: #fff;
}

/* Add-ons page */
.addon-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(28,7,58,.05);
}

.addon-feature + .addon-feature { margin-top: 18px; }
.addon-feature:nth-child(even) { grid-template-columns: 1.18fr .82fr; }
.addon-feature:nth-child(even) .addon-feature__visual { order: -1; }

.addon-feature__copy {
  padding: 20px 10px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.addon-feature__copy h2 {
  margin-top: 22px;
  font-size: clamp(39px,4.4vw,62px);
}

.addon-feature__copy p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  align-items: start;
  color: #312a38;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: var(--purple-4);
  font-weight: 900;
}

.addon-feature__visual {
  min-height: 460px;
  padding: 26px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 12%, rgba(123,66,243,.38), transparent 27%),
    var(--ink);
  overflow: hidden;
}

.automation-map {
  position: relative;
  height: 100%;
  min-height: 408px;
}

.automation-map::before,
.automation-map::after {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border: 1px solid rgba(189,165,255,.15);
  border-radius: 50%;
}

.automation-map::after {
  inset: 28% 27%;
  border-style: dashed;
  animation: orbitSpin 24s linear infinite;
}

.automation-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: radial-gradient(circle, #7b42f3, #3d0e86 65%, #10051d);
  box-shadow: 0 0 70px rgba(123,66,243,.45);
  transform: translate(-50%,-50%);
}

.automation-core img { width: 62px; }

.automation-node {
  position: absolute;
  z-index: 3;
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}

.automation-node b { display:block; font-size: 10px; }
.automation-node span { display:block; margin-top:4px; color:rgba(255,255,255,.42); font-size: 8px; }
.automation-node--a { left: 0; top: 9%; }
.automation-node--b { right: 0; top: 18%; }
.automation-node--c { left: 2%; bottom: 14%; }
.automation-node--d { right: 2%; bottom: 8%; }

.chat-demo {
  display: grid;
  gap: 11px;
}

.chat-bubble {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: 11px;
}

.chat-bubble--user {
  justify-self: end;
  color: #2d0d62;
  background: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-bubble--ai {
  color: rgba(255,255,255,.78);
  background: rgba(123,66,243,.16);
  border: 1px solid rgba(189,165,255,.14);
  border-bottom-left-radius: 4px;
}

.chat-source {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  margin-top: 12px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.chat-source i {
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  border-radius:9px;
  color:#2d0d62;
  background:#fff;
  font-style:normal;
  font-size:9px;
  font-weight:900;
}

.chat-source b { display:block; font-size: 9px; }
.chat-source span { display:block; margin-top:3px; color:rgba(255,255,255,.4); font-size:7px; }

.sign-demo {
  min-height: 405px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.05);
}

.sign-doc {
  min-height: 300px;
  padding: 20px;
  border-radius: 12px;
  color: var(--text);
  background: var(--white);
}

.sign-doc__line {
  height: 7px;
  margin: 9px 0;
  border-radius: 99px;
  background: #e8e5eb;
}

.sign-doc__line:nth-child(2) { width: 62%; }
.sign-doc__line:nth-child(4) { width: 88%; }
.sign-doc__box {
  display:grid;
  height: 66px;
  margin-top: 28px;
  place-items:center;
  border:1px dashed rgba(90,24,207,.4);
  border-radius:10px;
  color:var(--purple);
  background:var(--purple-4);
  font-size:11px;
  font-weight:800;
}

.train-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.train-card {
  min-height:155px;
  padding:15px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:13px;
  background:rgba(255,255,255,.05);
}

.train-card small { color:var(--purple-3); font-size:8px; letter-spacing:.13em; text-transform:uppercase; }
.train-card b { display:block; margin-top:35px; font-size:14px; }
.train-card span { display:block; margin-top:6px; color:rgba(255,255,255,.42); font-size:9px; }

/* Security page */
.governance-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:13px;
}

.governance-card {
  min-height:310px;
  padding:27px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}

.governance-card span {
  color:var(--purple);
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
}

.governance-card h3 {
  margin-top:70px;
  font-size:27px;
}

.governance-card p {
  margin:13px 0 0;
  color:var(--muted);
  font-size:14px;
}

.control-matrix {
  overflow:auto;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}

.control-matrix table {
  width:100%;
  min-width:850px;
  border-collapse:collapse;
}

.control-matrix th,
.control-matrix td {
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:13px;
}

.control-matrix th {
  color:var(--purple);
  background:var(--paper);
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.control-matrix td { color:#433a4b; }
.control-matrix tr:last-child td { border-bottom:0; }
.control-matrix .yes { color:#176840; font-weight:800; }
.control-matrix .limited { color:#7b5712; font-weight:800; }

.disclosure {
  margin-top:22px;
  padding:18px 20px;
  border:1px solid rgba(90,24,207,.18);
  border-radius:14px;
  color:#443550;
  background:var(--purple-4);
  font-size:13px;
}

/* About page */
.brand-story {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:stretch;
}

.brand-story__mark {
  min-height:600px;
  display:grid;
  place-items:center;
  padding:46px;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#6922d5,#351078);
  overflow:hidden;
}

.brand-story__mark img {
  width:min(100%,490px);
  border-radius:18px;
  box-shadow:0 34px 100px rgba(0,0,0,.28);
}

.brand-story__copy {
  padding:48px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}

.brand-story__copy h2 {
  margin-top:26px;
}

.brand-story__copy p {
  margin:24px 0 0;
  color:var(--muted);
  font-size:17px;
}

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

.principle-card {
  min-height:300px;
  padding:27px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}

.principle-card small { color:var(--purple); font-weight:900; letter-spacing:.15em; }
.principle-card h3 { margin-top:62px; font-size:27px; }
.principle-card p { margin:13px 0 0; color:var(--muted); font-size:14px; }

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

.audience-card {
  min-height:430px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.audience-card--dark {
  color:var(--white);
  background:var(--ink);
  border-color:var(--ink);
}

.audience-card small { color:var(--purple); font-size:10px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }
.audience-card--dark small { color:var(--purple-3); }
.audience-card h3 { margin-top:30px; font-size:34px; }
.audience-card p { margin:14px 0 0; color:var(--muted); font-size:15px; }
.audience-card--dark p { color:rgba(255,255,255,.52); }
.audience-card footer { padding-top:18px; border-top:1px solid var(--line); color:#3d3445; font-size:12px; }
.audience-card--dark footer { border-color:rgba(255,255,255,.12); color:rgba(255,255,255,.48); }

/* Contact */
.contact-layout {
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:24px;
  align-items:start;
}

.contact-aside {
  position:sticky;
  top:104px;
  padding:34px;
  border-radius:var(--radius);
  color:var(--white);
  background:
    radial-gradient(circle at 85% 10%,rgba(123,66,243,.4),transparent 27%),
    var(--ink);
  box-shadow:var(--shadow-dark);
}

.contact-aside h2 {
  font-size:clamp(38px,4.4vw,60px);
}

.contact-aside p {
  margin:20px 0 0;
  color:rgba(255,255,255,.56);
  font-size:15px;
}

.contact-points {
  display:grid;
  gap:12px;
  margin-top:32px;
}

.contact-point {
  display:grid;
  grid-template-columns:32px 1fr;
  gap:12px;
  align-items:start;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.11);
}

.contact-point i {
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  border-radius:50%;
  color:#2d0d62;
  background:#fff;
  font-style:normal;
  font-size:10px;
  font-weight:900;
}

.contact-point b { display:block; font-size:13px; }
.contact-point span { display:block; margin-top:3px; color:rgba(255,255,255,.43); font-size:11px; }

.contact-card {
  padding:36px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:var(--shadow);
}

.contact-card h1,
.contact-card h2 { font-size:clamp(38px,4vw,58px); }
.contact-card > p { margin:18px 0 0; color:var(--muted); }

.lead-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:32px;
}

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

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

.field label {
  color:#3a3042;
  font-size:12px;
  font-weight:760;
}

.field input,
.field select,
.field textarea {
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:11px;
  color:var(--text);
  background:var(--paper);
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color:rgba(90,24,207,.45);
  background:#fff;
  box-shadow:0 0 0 4px rgba(90,24,207,.08);
}

.consent {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:20px 1fr;
  gap:10px;
  align-items:start;
  color:var(--muted);
  font-size:11px;
}

.consent input { margin-top:2px; accent-color:var(--purple); }

.form-actions {
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:4px;
}

.form-note {
  color:var(--muted);
  font-size:11px;
}

.form-status {
  display:none;
  grid-column:1/-1;
  padding:14px 16px;
  border-radius:11px;
  color:#214432;
  background:#e2faee;
  font-size:13px;
}

.form-status.show { display:block; }

/* Legal */
.legal-shell {
  max-width:900px;
  margin-inline:auto;
}

.legal-shell h1 {
  font-size:clamp(48px,6vw,82px);
}

.legal-shell .lead { margin-top:22px; }

.legal-content {
  margin-top:52px;
  padding:42px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
}

.legal-content h2 {
  margin-top:40px;
  font-size:28px;
  letter-spacing:-.04em;
}

.legal-content h2:first-child { margin-top:0; }
.legal-content p,
.legal-content li { color:var(--muted); font-size:15px; }
.legal-content ul { padding-left:20px; }

/* Reveal and helpers */
.reveal {
  opacity:0;
  transform:translateY(18px);
  transition:opacity .82s var(--ease),transform .82s var(--ease);
}

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

.tilt-card {
  transition:transform .18s var(--ease);
  transform-style:preserve-3d;
}

.hide-desktop { display:none; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --max: 1060px; }
  .nav-status { display:none; }
  .hero__inner { grid-template-columns: .88fr 1.12fr; gap:34px; }
  .hero__visual { min-height:590px; }
  .product-demo { width:620px; }
  .addon-grid { grid-template-columns:repeat(2,1fr); }
  .footer-main { grid-template-columns:1.2fr repeat(3,.8fr); }
}

@media (max-width: 1020px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:block; }
  .nav-shell { grid-template-columns:1fr auto; }
  .nav-actions { grid-column:2; }
  .hero { padding-top:calc(var(--header) + 54px); }
  .hero__inner,
  .page-hero__grid { grid-template-columns:1fr; }
  .hero__copy { max-width:820px; }
  .hero__copy h1 { max-width:900px; }
  .hero__visual { min-height:610px; }
  .product-demo { left:0; right:auto; width:min(100%,720px); }
  .float-card--ai { right:3%; }
  .platform-explorer { grid-template-columns:1fr; }
  .platform-tabs { position:static; grid-template-columns:repeat(5,1fr); }
  .platform-tab { min-height:132px; padding:16px; }
  .platform-tab.active { transform:none; }
  .problem-layout,
  .ai-layout,
  .trust-layout,
  .architecture-shell,
  .brand-story,
  .contact-layout { grid-template-columns:1fr; }
  .problem-statement { min-height:500px; }
  .architecture-nav { position:static; display:flex; gap:7px; overflow:auto; }
  .architecture-nav b { display:none; }
  .architecture-nav a { min-width:max-content; }
  .contact-aside { position:static; }
  .addon-feature,
  .addon-feature:nth-child(even) { grid-template-columns:1fr; }
  .addon-feature:nth-child(even) .addon-feature__visual { order:0; }
  .page-hero { min-height:auto; }
  .page-hero__visual { min-height:490px; }
  .footer-main { grid-template-columns:1.25fr repeat(2,.75fr); }
  .footer-column:last-child { grid-column:2; }
}

@media (max-width: 780px) {
  :root { --header:68px; }
  .container { width:min(100% - 30px,var(--max)); }
  .container-wide { width:calc(100% - 20px); }
  .section { padding:84px 0; }
  .section-head { grid-template-columns:1fr; gap:18px; margin-bottom:36px; }
  .section-head p { font-size:16px; }
  h1 { font-size:clamp(46px,13vw,69px); }
  h2 { font-size:clamp(38px,11vw,58px); }
  .brand__word { display:none; }
  .brand { min-width:auto; }
  .brand__badge { width:32px; }
  .nav-actions .button { display:none; }
  .hero { min-height:auto; padding-bottom:36px; }
  .hero__copy .eyebrow { margin-bottom:20px; }
  .hero__copy .lead { font-size:17px; margin-top:22px; }
  .hero__actions .button { width:100%; }
  .hero__trust { gap:10px 18px; }
  .hero__visual { min-height:520px; margin-top:18px; }
  .hero-orbit { inset:8% -15% 0 -15%; }
  .product-demo { position:relative; top:16px; width:100%; min-height:430px; transform:none; }
  .product-demo__layout { grid-template-columns:1fr; min-height:430px; }
  .demo-sidebar { display:none; }
  .demo-main { padding:14px; }
  .demo-view { inset:14px; }
  .demo-kpis { grid-template-columns:repeat(3,1fr); }
  .demo-kpi { padding:9px; }
  .demo-kpi strong { font-size:18px; }
  .demo-grid,
  .demo-analysis,
  .commission-grid { grid-template-columns:1fr; }
  .demo-chart,
  .commission-total { display:none; }
  .renewal-board { grid-template-columns:repeat(3, minmax(130px,1fr)); overflow:auto; }
  .float-card { min-width:170px; padding:11px 12px; }
  .float-card--renewal { left:-4px; bottom:34px; }
  .float-card--ai { right:-4px; bottom:-6px; }
  .hero__index { margin-top:54px; }
  .outcome-grid,
  .problem-board,
  .module-grid,
  .addon-grid,
  .trust-metrics,
  .proof-band,
  .implementation-grid,
  .architecture-modules,
  .governance-grid,
  .principles-grid,
  .audience-grid,
  .lead-form { grid-template-columns:1fr; }
  .outcome-card { min-height:310px; }
  .problem-statement { min-height:520px; padding:28px; }
  .problem-card { min-height:200px; }
  .platform-tabs { grid-template-columns:1fr; }
  .platform-tab { min-height:auto; }
  .platform-stage { min-height:auto; }
  .platform-panel { padding:22px; }
  .platform-panel__head { grid-template-columns:1fr; }
  .workflow-shell { padding:24px; overflow:auto; }
  .workflow-line { display:none; }
  .workflow-steps { grid-template-columns:repeat(6,minmax(180px,1fr)); }
  .workflow-step { text-align:left; }
  .workflow-step__node { margin:18px 0 24px; box-shadow:none; }
  .ai-copy { min-height:570px; padding:28px; }
  .ai-flow-step { grid-template-columns:44px 1fr; }
  .ai-flow-step em { display:none; }
  .trust-metric--wide { grid-column:auto; }
  .proof-cell { border-right:0; border-bottom:1px solid var(--line); }
  .proof-cell:last-child { border-bottom:0; }
  .implementation-grid { border-left:0; }
  .implementation-step { min-height:240px; border-left:1px solid var(--line); }
  .footer-main { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
  .page-hero { padding-top:calc(var(--header) + 64px); }
  .page-hero__copy h1 { font-size:clamp(46px,12vw,68px); }
  .page-hero__visual { min-height:420px; }
  .page-hero__card { inset:14px 0; padding:18px; transform:none; }
  .page-hero__card img { width:80px; }
  .page-hero__node { min-width:110px; padding:10px; }
  .architecture-group { padding:23px; }
  .architecture-group__head { grid-template-columns:1fr; }
  .addon-feature { padding:17px; }
  .addon-feature__copy { padding:20px 10px; }
  .addon-feature__visual { min-height:410px; padding:17px; }
  .automation-node { min-width:105px; padding:9px; }
  .brand-story__mark { min-height:430px; padding:24px; }
  .brand-story__copy { padding:28px; }
  .contact-card { padding:24px; }
  .field--wide,
  .consent,
  .form-actions,
  .form-status { grid-column:auto; }
  .legal-content { padding:25px; }
  .hide-mobile { display:none !important; }
  .hide-desktop { display:block; }
}

@media (max-width: 480px) {
  .button { min-height:50px; padding-inline:18px; }
  .hero__visual { min-height:485px; }
  .product-demo { border-radius:18px; }
  .demo-kpis { gap:6px; }
  .demo-kpi:nth-child(3) { display:none; }
  .demo-kpis { grid-template-columns:1fr 1fr; }
  .demo-alert:nth-child(3) { display:none; }
  .float-card--renewal { display:none; }
  .float-card--ai { bottom:-10px; }
  .signal-strip__track span { padding-inline:18px; }
  .outcome-card,
  .addon-card { padding:23px; }
  .platform-panel { padding:18px; }
  .module-card { min-height:175px; }
  .trust-panel { padding:24px; }
  .footer-main { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .footer-column:last-child { grid-column:auto; }
  .page-hero__visual { min-height:360px; }
  .page-hero__node { min-width:96px; max-width:125px; }
  .page-hero__node:nth-of-type(1) { left:0; }
  .page-hero__node:nth-of-type(2) { right:0; }
  .page-hero__node:nth-of-type(3) { left:0; }
  .page-hero__node:nth-of-type(4) { right:0; }
  .automation-core { width:105px; height:105px; }
  .automation-core img { width:50px; }
  .train-grid { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
  .signal-canvas,
  .cursor-aura { display:none; }
  .reveal { opacity:1; transform:none; }
}

/* Mobile conversion priority: keep the primary CTA and a product glimpse above the fold. */
@media (max-width: 780px) {
  .hero__actions .button--light-outline { display: none; }
  .hero__trust { margin-top: 18px; }
  .hero__trust span:nth-child(n+2) { display: none; }
  .hero__visual { margin-top: 4px; min-height: 500px; }
  .outcome-card small { max-width: 155px; text-align: right; line-height: 1.35; }
}

/* ==========================================================
   Refined Valentry world layer
   ========================================================== */

.boot-seen .boot { display: none !important; }

.boot {
  --boot-duration: 3.2s;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(103, 38, 228, .31), transparent 25%),
    radial-gradient(circle at 50% 120%, rgba(90, 24, 207, .32), transparent 42%),
    #050208;
  transition: opacity .72s var(--ease), visibility .72s var(--ease), filter .72s var(--ease);
}

.boot.is-hidden {
  filter: blur(5px);
}

.boot__field {
  position: absolute;
  inset: -18%;
  opacity: .27;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, #000, transparent 64%);
  animation: bootField 12s linear infinite;
}

.boot__inner {
  position: relative;
  z-index: 2;
  width: min(480px, calc(100% - 52px));
}

.boot__portal {
  position: relative;
  width: 164px;
  height: 164px;
  margin: 0 auto 36px;
  display: grid;
  place-items: center;
}

.boot__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(189,165,255,.24);
  box-shadow: inset 0 0 34px rgba(123,66,243,.05), 0 0 34px rgba(123,66,243,.08);
}

.boot__ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: -4px;
  top: 50%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px #bda5ff;
}

.boot__ring--outer {
  inset: 0;
  transform: rotateX(68deg) rotateZ(0deg);
  animation: bootOrbitOuter 5.8s linear infinite;
}

.boot__ring--middle {
  inset: 19px;
  border-style: dashed;
  transform: rotateX(58deg) rotateZ(40deg);
  animation: bootOrbitMiddle 4.7s linear infinite reverse;
}

.boot__ring--inner {
  inset: 39px;
  opacity: .7;
  transform: rotateX(73deg) rotateZ(14deg);
  animation: bootOrbitInner 3.6s linear infinite;
}

.boot__mark {
  position: relative;
  z-index: 3;
  width: 74px;
  margin: 0;
  filter: drop-shadow(0 0 38px rgba(123,66,243,.82));
  animation: bootMark 1.35s var(--ease) both, bootMarkPulse 2.6s 1.1s ease-in-out infinite;
}

.boot__top {
  margin-bottom: 14px;
  color: rgba(255,255,255,.74);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .21em;
}

.boot__top span:first-child {
  color: #fff;
  font-weight: 820;
}

.boot__track {
  position: relative;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 30px rgba(123,66,243,.18);
}

.boot__track::after {
  content: "";
  position: absolute;
  inset: -7px 0;
  background: linear-gradient(90deg, transparent, rgba(189,165,255,.16), transparent);
  filter: blur(8px);
}

.boot__track span {
  position: relative;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(90deg, #5a18cf, #bda5ff 68%, #fff);
  box-shadow: 0 0 18px rgba(189,165,255,.8);
  animation: bootLoad var(--boot-duration) cubic-bezier(.22,.72,.18,1) both;
}

.boot__sub {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: rgba(255,255,255,.3);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@keyframes bootField {
  to { transform: translate3d(68px,68px,0) rotate(.01deg); }
}

@keyframes bootOrbitOuter {
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes bootOrbitMiddle {
  to { transform: rotateX(58deg) rotateZ(400deg); }
}

@keyframes bootOrbitInner {
  to { transform: rotateX(73deg) rotateZ(374deg); }
}

@keyframes bootMarkPulse {
  50% { transform: scale(1.055); filter: drop-shadow(0 0 52px rgba(147,91,255,.98)); }
}

.ambient-world {
  position: fixed;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ambient-world__orb {
  position: absolute;
  display: block;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .16;
  filter: blur(88px);
  background: radial-gradient(circle, rgba(112,47,240,.9), rgba(76,17,177,.18) 48%, transparent 70%);
  will-change: transform;
}

.ambient-world__orb--one {
  top: -28vw;
  right: -14vw;
  animation: ambientDriftOne 18s ease-in-out infinite alternate;
}

.ambient-world__orb--two {
  width: 44vw;
  left: -24vw;
  top: 48vh;
  opacity: .11;
  animation: ambientDriftTwo 23s ease-in-out infinite alternate;
}

.ambient-world__orb--three {
  width: 30vw;
  right: 26vw;
  bottom: -22vw;
  opacity: .09;
  animation: ambientDriftThree 20s ease-in-out infinite alternate;
}

.ambient-world__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -8%;
  height: 16%;
  opacity: .07;
  background: linear-gradient(to bottom, transparent, rgba(189,165,255,.42), transparent);
  animation: ambientScan 12s linear infinite;
}

@keyframes ambientDriftOne {
  to { transform: translate3d(-8vw, 16vh, 0) scale(1.12); }
}

@keyframes ambientDriftTwo {
  to { transform: translate3d(20vw, -12vh, 0) scale(.9); }
}

@keyframes ambientDriftThree {
  to { transform: translate3d(8vw, -18vh, 0) scale(1.2); }
}

@keyframes ambientScan {
  to { transform: translateY(720%); }
}

.grain {
  inset: -55%;
  animation: grainDrift 9s steps(9) infinite;
}

@keyframes grainDrift {
  0%,100% { transform: translate3d(0,0,0); }
  15% { transform: translate3d(-3%,2%,0); }
  30% { transform: translate3d(2%,-4%,0); }
  45% { transform: translate3d(5%,4%,0); }
  60% { transform: translate3d(-5%,-2%,0); }
  75% { transform: translate3d(3%,5%,0); }
  90% { transform: translate3d(-2%,-5%,0); }
}

.hero > .container-wide,
.page-hero > .container,
.section > .container,
.final-cta > .container {
  position: relative;
  z-index: 5;
}

.nav-status {
  min-height: 38px;
  padding: 5px 7px 5px 11px;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 24px rgba(123,66,243,.035), 0 10px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(16px);
}

.nav-status__message {
  max-width: 255px;
  overflow: hidden;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .045em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-clock {
  min-width: 72px;
  padding: 5px 7px 5px 11px;
  border-left: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
  letter-spacing: .1em;
  text-align: center;
}

.status-dot {
  flex: 0 0 auto;
  animation: liveStatusPulse 2.2s ease-in-out infinite;
}

@keyframes liveStatusPulse {
  0%,100% { transform: scale(.88); opacity: .62; }
  50% { transform: scale(1.14); opacity: 1; box-shadow: 0 0 0 7px rgba(189,165,255,.06),0 0 22px rgba(189,165,255,.95); }
}

.world-rail {
  position: fixed;
  z-index: 970;
  right: 15px;
  top: 50%;
  display: grid;
  gap: 5px;
  transform: translateY(-50%);
}

.world-rail a {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  color: rgba(255,255,255,.42);
  background: rgba(6,3,11,.58);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
  transition: transform .22s var(--ease), color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.world-rail a::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color .22s var(--ease);
}

.world-rail a span {
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .08em;
}

.world-rail a b {
  position: absolute;
  right: 48px;
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(6,3,11,.72);
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  backdrop-filter: blur(12px);
}

.world-rail a:hover,
.world-rail a.active {
  color: #2b0b5f;
  background: #fff;
  border-color: #fff;
  transform: scale(1.06);
}

.world-rail a.active::after { border-color: rgba(90,24,207,.22); }
.world-rail a:hover b,
.world-rail a.active b { opacity: 1; transform: none; }

.hero-scanline {
  position: absolute;
  z-index: 3;
  inset: -22% 0 auto;
  height: 22%;
  opacity: .12;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(189,165,255,.7), transparent);
  mix-blend-mode: screen;
  animation: heroWorldScan 10.5s linear infinite;
}

@keyframes heroWorldScan {
  to { transform: translateY(560%); }
}

.world-coordinate {
  position: absolute;
  z-index: 6;
  top: 50%;
  color: rgba(255,255,255,.22);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.world-coordinate--left { left: 17px; transform: translateY(-50%) rotate(180deg); }
.world-coordinate--right { right: 64px; transform: translateY(-50%); }

.product-demo {
  animation: demoBreath 7.5s ease-in-out infinite;
}

.product-demo::before {
  content: "";
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: -6%;
  height: 12%;
  opacity: .16;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(189,165,255,.74), transparent);
  mix-blend-mode: screen;
  animation: demoScan 8s linear infinite;
}

@keyframes demoScan {
  to { transform: translateY(950%); }
}

@keyframes demoBreath {
  0%,100% { box-shadow: 0 32px 110px rgba(0,0,0,.48), 0 0 0 rgba(123,66,243,0); }
  50% { box-shadow: 0 38px 125px rgba(0,0,0,.56), 0 0 55px rgba(123,66,243,.14); }
}

.page-hero__card {
  animation: pageCardBreath 8s ease-in-out infinite;
}

.page-hero__node {
  animation: pageNodeFloat 6s ease-in-out infinite;
}

.page-hero__node:nth-of-type(2) { animation-delay: -1.4s; }
.page-hero__node:nth-of-type(3) { animation-delay: -2.8s; }
.page-hero__node:nth-of-type(4) { animation-delay: -4.2s; }

@keyframes pageNodeFloat {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-9px,0); }
}

@keyframes pageCardBreath {
  0%,100% { box-shadow: 0 32px 110px rgba(0,0,0,.48), 0 0 0 rgba(123,66,243,0); }
  50% { box-shadow: 0 38px 125px rgba(0,0,0,.56), 0 0 54px rgba(123,66,243,.12); }
}

/* Professional outcome-card label layout: icon and result are separate grid cells. */
.outcome-card {
  display: grid;
  grid-template-columns: 56px minmax(0,1fr);
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  align-content: start;
}

.outcome-card > .outcome-icon {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.outcome-card > small {
  position: static;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  width: fit-content;
  max-width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(90,24,207,.12);
  border-radius: 13px;
  color: rgba(64,21,133,.72);
  background: linear-gradient(135deg, rgba(233,224,255,.72), rgba(255,255,255,.9));
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .055em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.outcome-card > small.outcome-result {
  display: grid;
  align-content: center;
  gap: 3px;
}

.outcome-result span {
  color: var(--purple);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
}

.outcome-result b {
  color: #3c2367;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.35;
}

.outcome-card > h3 {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 68px 0 0;
}

.outcome-card > p {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
}

@media (max-width: 1420px) {
  .nav-status__message { display: none; }
}

@media (max-width: 1280px) {
  .world-rail,
  .world-coordinate { display: none; }
}

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

@media (max-width: 720px) {
  .nav-status { display: none; }
  .ambient-world__orb { width: 90vw; opacity: .1; }
  .outcome-card > h3 { margin-top: 48px; }
  .outcome-card > small { min-height: 50px; padding: 8px 10px; }
  .boot__portal { width: 142px; height: 142px; margin-bottom: 30px; }
  .boot__sub { display: grid; gap: 6px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-world,
  .hero-scanline,
  .product-demo::before { display: none !important; }
  .grain,
  .product-demo,
  .page-hero__card,
  .page-hero__node,
  .status-dot,
  .boot__field,
  .boot__ring,
  .boot__mark,
  .boot__track span { animation: none !important; }
}

/* Header legibility at common laptop widths. */
.nav-actions > .button {
  min-width: 154px;
  white-space: nowrap;
}

.nav-status__message { max-width: 330px; }

@media (max-width: 1580px) {
  .nav-status__message { display: none; }
}

/* Keep the world-status message visible on standard desktop displays without compressing the CTA. */
.nav-status__message {
  max-width: 218px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.18;
}

@media (max-width: 1320px) {
  .nav-status__message { display: none; }
}

@media (min-width: 1321px) {
  .nav-status__message { display: block; }
}

@media (min-width: 1600px) {
  .nav-status__message {
    max-width: 330px;
    white-space: nowrap;
    line-height: 1;
  }
}

/* Final client-requested polish ------------------------------------------------ */
/* Keep the tactile film texture, but make it quieter and more premium. */
.grain { opacity: .028; }

/* The hero's decorative vertical coordinate copy has been removed from markup. */
.world-coordinate { display: none !important; }

/* Add-ons architecture cards: dark glass keeps all copy readable in the dark section. */
.section.dark .outcome-card {
  color: #fff;
  border-color: rgba(207, 187, 255, .22);
  background:
    radial-gradient(circle at 84% 90%, rgba(128, 72, 246, .24), transparent 36%),
    linear-gradient(145deg, rgba(54, 21, 104, .96), rgba(12, 8, 21, .98));
  box-shadow: 0 28px 74px rgba(0, 0, 0, .30);
}

.section.dark .outcome-card:hover {
  border-color: rgba(215, 198, 255, .42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .40), 0 0 46px rgba(111, 52, 226, .13);
}

.section.dark .outcome-card::after {
  background: radial-gradient(circle, rgba(164, 112, 255, .26), transparent 70%);
}

.section.dark .outcome-card > .outcome-icon {
  color: #dccdff;
  border-color: rgba(218, 202, 255, .26);
  background: rgba(148, 94, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.section.dark .outcome-card > small {
  color: #eadfff;
  border-color: rgba(218, 202, 255, .22);
  background: linear-gradient(135deg, rgba(149, 96, 255, .18), rgba(255, 255, 255, .07));
}

.section.dark .outcome-card > h3 { color: #fff; }
.section.dark .outcome-card > p { color: rgba(255, 255, 255, .72); }

/* Why Valentry lockup: preserve breathing room and avoid the clipped rectangle effect. */
.brand-story__mark {
  padding: clamp(40px, 4.5vw, 68px);
}

.brand-story__mark img {
  width: min(100%, 590px);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 48px rgba(14, 4, 34, .34));
}

@media (max-width: 720px) {
  .brand-story__mark {
    min-height: 420px;
    padding: 28px 20px;
  }

  .brand-story__mark img {
    width: 100%;
    max-width: 540px;
  }
}

/* Final sidebar rail correction: stable targets with non-obstructive tooltips. */
.world-rail a b {
  top: 50%;
  transform: translate(8px, -50%);
}

.world-rail a.active b {
  opacity: 0;
  transform: translate(8px, -50%);
}

.world-rail a:hover b,
.world-rail a:focus-visible b,
.world-rail a.active:hover b,
.world-rail a.active:focus-visible b {
  opacity: 1;
  transform: translate(0, -50%);
}

.world-rail a:focus-visible {
  outline: 2px solid rgba(189,165,255,.95);
  outline-offset: 3px;
}

section[id] { scroll-margin-top: calc(var(--header) + 14px); }

