:root {
  --ink: #17152d;
  --muted: #716d83;
  --paper: #f8f7fc;
  --panel: #fff;
  --magenta: #e23ad8;
  --magenta-dark: #b91bc4;
  --blue: #5275ff;
  --navy: #111331;
  --line: #dfdcea;
  --rail: 260px;
  --shadow: 0 24px 70px rgba(30, 18, 69, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.hidden {
  display: none !important;
}
#fluid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #f8f7fc;
}
.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail);
  padding: 28px 26px 22px;
  background: rgba(249, 248, 253, 0.88);
  border-right: 1px solid rgba(95, 72, 145, 0.15);
  backdrop-filter: blur(18px);
  z-index: 20;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font: 700 18px "Space Grotesk";
  letter-spacing: -0.04em;
}
.brand img {
  width: 48px;
  height: 44px;
  object-fit: cover;
  border-radius: 11px;
}
.brand > span > span {
  color: var(--magenta);
}
.side-rail nav {
  display: grid;
  gap: 5px;
  margin: auto 0;
}
.side-rail nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 13px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #747086;
  font-size: 13px;
  transition: 0.2s;
}
.side-rail nav a i {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #aaa4b7;
}
.side-rail nav a.active,
.side-rail nav a:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 30px rgba(50, 28, 88, 0.07);
}
.side-rail nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: linear-gradient(var(--magenta), var(--blue));
}
.rail-actions {
  display: grid;
  gap: 8px;
}
.rail-link {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 7px 12px;
  color: #5f5a70;
  font-size: 12px;
}
.cart-button {
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  padding: 13px 14px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.cart-button b,
.mobile-nav b {
  background: var(--magenta);
  border-radius: 20px;
  min-width: 20px;
  padding: 2px 6px;
  text-align: center;
}
.side-rail > small {
  margin-top: 18px;
  padding-left: 12px;
  color: #aaa4b7;
  font-size: 10px;
}
main {
  margin-left: var(--rail);
}
.page-section {
  position: relative;
  padding: clamp(80px, 9vw, 140px) clamp(28px, 7vw, 110px);
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 6vw;
  align-items: center;
  overflow: hidden;
}
.eyebrow,
.section-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  font-weight: 700;
  color: #716a85;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  box-shadow: 0 0 0 5px rgba(226, 58, 216, 0.1);
}
.hero h1,
.section-head h2,
.vendor-intro h2 {
  font: 600 clamp(54px, 7vw, 108px)/0.9 "Space Grotesk";
  letter-spacing: -0.075em;
  margin: 24px 0 26px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--magenta), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 700px;
  color: #5d586e;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  border-radius: 12px;
  padding: 15px 19px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.button.primary {
  background: linear-gradient(110deg, var(--magenta-dark), var(--blue));
  color: #fff;
  box-shadow: 0 12px 35px rgba(141, 47, 220, 0.25);
}
.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(87, 66, 133, 0.15);
}
.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-proof span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7e788c;
}
.hero-proof b {
  display: block;
  font: 700 23px "Space Grotesk";
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 3px;
}
.platform-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 610px;
  margin: auto;
}
.stack-visual {
  width: min(680px, 100%);
  margin: auto;
  position: relative;
}
.stack-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(240, 238, 251, 0.48);
  box-shadow:
    0 40px 100px rgba(50, 31, 112, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.8);
}
.stack-image:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.24);
  pointer-events: none;
}
.stack-image img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.stack-visual figcaption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 5% 0;
}
.stack-visual figcaption span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
  color: #716b81;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stack-visual figcaption i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(99, 78, 151, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--magenta-dark);
  font-style: normal;
  font-size: 8px;
}
.stack-visual figcaption b {
  align-self: end;
  color: var(--ink);
  font: 600 11px "Space Grotesk";
  text-transform: none;
  letter-spacing: 0;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(117, 84, 178, 0.18);
  border-radius: 50%;
  inset: 10%;
}
.ring-two {
  inset: 25%;
  border-style: dashed;
  animation: spin 30s linear infinite;
}
.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 46px;
  background: linear-gradient(145deg, #19163f, #29235f);
  color: #fff;
  box-shadow: 0 35px 90px rgba(53, 31, 105, 0.35);
  display: grid;
  place-items: center;
  align-content: center;
}
.orbit-core img {
  width: 83px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
}
.orbit-core strong {
  font: 600 17px "Space Grotesk";
  margin-top: 4px;
}
.orbit-core small {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #c7b6ee;
}
.orbit-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(105, 79, 158, 0.14);
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: var(--shadow);
  min-width: 148px;
}
.orbit-node small {
  display: block;
  color: var(--magenta-dark);
  font-size: 8px;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}
.orbit-node strong {
  font-size: 12px;
}
.node-vendor {
  left: 1%;
  top: 18%;
}
.node-agent {
  right: 0;
  top: 26%;
}
.node-customer {
  left: 23%;
  bottom: 5%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.market-section {
  background: linear-gradient(145deg, #10122e, #1c1850 55%, #32195b);
  color: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6vw;
  align-items: end;
}
.section-head h2,
.vendor-intro h2 {
  font-size: clamp(45px, 5vw, 78px);
  margin: 17px 0 0;
}
.section-head > p {
  color: #bdb8d0;
  line-height: 1.75;
  max-width: 570px;
}
.market-section .section-number {
  color: #b68dd4;
}
.market-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 54px 0 34px;
}
.market-tools label {
  display: grid;
  gap: 8px;
  color: #a9a3bc;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  min-width: min(420px, 100%);
}
.market-tools input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 11px;
  border: 1px solid #ffffff28;
  background: #ffffff0d;
  color: #fff;
  outline: none;
}
.market-tools input:focus {
  border-color: var(--magenta);
}
.filter-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter-pills button {
  border: 1px solid #ffffff24;
  border-radius: 99px;
  padding: 8px 12px;
  background: transparent;
  color: #bcb7cf;
  font-size: 10px;
}
.filter-pills button.active {
  background: #fff;
  color: var(--navy);
}
.vendor-market {
  display: grid;
  gap: 24px;
}
.vendor-store {
  border: 1px solid #ffffff1f;
  border-radius: 20px;
  background: #ffffff08;
  overflow: hidden;
}
.vendor-store-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 27px 30px;
  border-bottom: 1px solid #ffffff16;
}
.vendor-identity {
  display: flex;
  gap: 16px;
  align-items: center;
}
.vendor-avatar {
  width: 49px;
  height: 49px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font: 700 19px "Space Grotesk";
  background: linear-gradient(135deg, var(--vendor-a), var(--vendor-b));
  color: #fff;
}
.vendor-identity h3 {
  margin: 0 0 4px;
  font: 600 22px "Space Grotesk";
}
.vendor-identity p {
  margin: 0;
  color: #aaa4bc;
  font-size: 12px;
}
.vendor-meta {
  text-align: right;
}
.vendor-meta small {
  display: block;
  color: #8e87a1;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.vendor-meta strong {
  font-size: 11px;
  color: #dcd7e7;
}
.bundle-row {
  padding: 20px 30px;
  background: linear-gradient(90deg, #e23ad813, #5275ff10);
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.bundle-card {
  min-width: 310px;
  border: 1px solid #cf7ee74d;
  border-radius: 13px;
  padding: 17px;
  background: #1b1743;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}
.bundle-card h4 {
  margin: 4px 0 7px;
  font-size: 15px;
}
.bundle-card p {
  margin: 0;
  color: #9f99b1;
  font-size: 10px;
  line-height: 1.5;
}
.bundle-card small {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #e98fe2;
}
.bundle-card button {
  align-self: center;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(120deg, var(--magenta), var(--blue));
  color: #fff;
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 700;
}
.agent-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ffffff14;
}
.agent-card {
  background: #151337;
  padding: 23px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.agent-card:hover {
  background: #201a51;
}
.agent-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #928ca5;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.agent-card h4 {
  font: 600 19px/1.1 "Space Grotesk";
  margin: 25px 0 9px;
}
.agent-card > p {
  color: #aaa4bc;
  font-size: 11px;
  line-height: 1.6;
  flex: 1;
}
.agent-pricing {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 19px;
}
.agent-pricing small {
  display: block;
  color: #858096;
  font-size: 8px;
}
.agent-pricing strong {
  font-size: 14px;
}
.card-buttons {
  display: flex;
  gap: 6px;
}
.card-buttons button {
  border: 1px solid #ffffff25;
  background: transparent;
  color: #d7d2e1;
  border-radius: 7px;
  padding: 8px;
  font-size: 9px;
}
.card-buttons button.add {
  border: 0;
  background: #fff;
  color: #17152d;
}
.card-buttons button.in-cart {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}
.journey-section {
  background: rgba(250, 249, 253, 0.8);
}
.journey-section .section-head > p {
  color: #6d687a;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 54px;
}
.journey-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.journey-grid article > span {
  font-size: 9px;
  color: #aaa4b5;
}
.journey-icon {
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: linear-gradient(140deg, #f6d6f4, #dce4ff);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 28px 0;
}
.journey-grid h3 {
  font: 600 21px "Space Grotesk";
  margin: 0 0 8px;
}
.journey-grid p {
  font-size: 12px;
  line-height: 1.65;
  color: #777183;
}
.customer-cta {
  margin-top: 18px;
  border-radius: 17px;
  padding: 23px 26px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.customer-cta strong,
.customer-cta span {
  display: block;
}
.customer-cta strong {
  font: 600 19px "Space Grotesk";
}
.customer-cta span {
  font-size: 11px;
  color: #aaa6c0;
  margin-top: 4px;
}
.vendor-section {
  background: linear-gradient(120deg, #f8d9f4, #e4e8ff);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}
.vendor-intro p {
  color: #676174;
  line-height: 1.75;
  max-width: 600px;
}
.vendor-capabilities {
  display: grid;
  gap: 10px;
}
.vendor-capabilities article {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #fff;
  border-radius: 17px;
  padding: 18px;
}
.vendor-capabilities article > b {
  height: 60px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font: 700 16px "Space Grotesk";
}
.vendor-capabilities h3 {
  margin: 0 0 5px;
  font: 600 17px "Space Grotesk";
}
.vendor-capabilities p {
  margin: 0;
  color: #736d7c;
  font-size: 11px;
  line-height: 1.5;
}
.trust-section {
  background: #0e102b;
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ffffff1d;
  margin-top: 50px;
}
.trust-grid article {
  background: #141633;
  padding: 32px;
  min-height: 210px;
}
.trust-grid strong {
  font: 600 21px "Space Grotesk";
}
.trust-grid p {
  color: #a8a4ba;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 20px;
}
.platform-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #ffffff1b;
  margin-top: 70px;
  padding-top: 30px;
}
.platform-footer .brand {
  color: #fff;
}
.platform-footer p,
.platform-footer a {
  color: #8f8ba1;
  font-size: 11px;
}
.cart-drawer {
  position: fixed;
  z-index: 50;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 100vh;
  background: #fbfaff;
  box-shadow: -30px 0 90px #17112f33;
  padding: 28px;
  transform: translateX(105%);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: none;
}
.cart-drawer header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.cart-drawer h2 {
  font: 600 36px "Space Grotesk";
  margin: 5px 0;
}
.cart-drawer header button,
.dialog-close {
  border: 0;
  background: transparent;
  font-size: 30px;
}
.cart-items {
  flex: 1;
  overflow: auto;
  margin: 20px 0;
}
.cart-empty {
  color: #817b8b;
  text-align: center;
  padding: 70px 20px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item strong,
.cart-item small {
  display: block;
}
.cart-item small {
  color: #817b8b;
  font-size: 9px;
  margin-top: 4px;
}
.cart-item button {
  border: 0;
  background: none;
  color: #a14a8e;
}
.cart-drawer footer > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.cart-drawer footer span {
  font-size: 11px;
  color: #756f82;
}
.cart-drawer footer p {
  font-size: 10px;
  color: #898391;
  line-height: 1.5;
}
.cart-drawer footer .button {
  width: 100%;
  margin-top: 10px;
}
.actual-total strong {
  color: var(--magenta-dark);
}
.drawer-shade {
  position: fixed;
  inset: 0;
  background: #11102780;
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.drawer-shade.open {
  opacity: 1;
  pointer-events: auto;
}
.auth-dialog {
  width: min(500px, calc(100% - 28px));
  border: 0;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 35px 120px #100c2f66;
  color: var(--ink);
}
.auth-dialog::backdrop {
  background: #0d0c2580;
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 13px;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-brand img {
  width: 50px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
}
.auth-brand span {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--magenta-dark);
}
.auth-dialog h2 {
  font: 600 35px "Space Grotesk";
  letter-spacing: -0.045em;
  margin: 24px 0 8px;
}
.auth-dialog > p {
  color: #756f81;
  font-size: 12px;
  line-height: 1.6;
}
.auth-dialog form {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}
.auth-dialog label {
  display: grid;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #5d5768;
}
.auth-dialog input,
.auth-dialog textarea,
.auth-dialog select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dcd8e5;
  border-radius: 10px;
  outline: none;
  background: #fbfaff;
}
.auth-dialog input:focus,
.auth-dialog textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #5275ff15;
}
.auth-dialog textarea {
  min-height: 120px;
  resize: vertical;
}
.auth-dialog form .button {
  width: 100%;
  margin-top: 3px;
}
.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 17px;
}
.auth-links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #695f80;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  min-height: 18px;
  color: #b32167 !important;
  font-size: 11px !important;
}
.demo-output {
  white-space: pre-wrap;
  background: #11132e;
  color: #e9e7f1;
  border-radius: 12px;
  padding: 18px;
  max-height: 300px;
  overflow: auto;
  font: 11px/1.6 Inter;
}
.loading {
  color: #aaa4bc;
}
.mobile-nav {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ring-two {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1150px) {
  :root {
    --rail: 210px;
  }
  .agent-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .platform-orbit {
    width: min(600px, 100%);
  }
  .vendor-section {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head > p {
    margin-top: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --rail: 0;
  }
  .side-rail {
    display: none;
  }
  main {
    margin: 0;
  }
  .page-section {
    padding: 75px 20px;
  }
  .hero {
    padding-top: 55px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(49px, 16vw, 76px);
  }
  .platform-orbit {
    margin-top: 20px;
  }
  .stack-visual {
    margin-top: 28px;
  }
  .stack-image {
    border-radius: 22px;
  }
  .stack-visual figcaption {
    margin-inline: 0;
  }
  .stack-visual figcaption span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .orbit-core {
    width: 125px;
    height: 125px;
    border-radius: 32px;
  }
  .orbit-core img {
    width: 61px;
    height: 56px;
  }
  .orbit-node {
    min-width: 118px;
    padding: 11px;
  }
  .node-customer {
    left: 12%;
  }
  .market-tools {
    display: grid;
  }
  .filter-pills {
    justify-content: flex-start;
  }
  .vendor-store-head {
    padding: 20px;
    grid-template-columns: 1fr;
  }
  .vendor-meta {
    text-align: left;
  }
  .bundle-row {
    padding: 15px 20px;
  }
  .agent-row {
    grid-template-columns: 1fr;
  }
  .journey-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .customer-cta,
  .platform-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #11132eed;
    color: #fff;
    border: 1px solid #ffffff24;
    border-radius: 14px;
    backdrop-filter: blur(14px);
    padding: 7px;
    justify-content: space-around;
  }
  .mobile-nav a,
  .mobile-nav button {
    border: 0;
    background: transparent;
    color: #d8d5e3;
    text-decoration: none;
    font-size: 10px;
    padding: 8px;
  }
  .trust-section {
    padding-bottom: 110px;
  }
  .auth-dialog {
    padding: 28px 22px;
  }
  .hero-proof {
    gap: 18px;
  }
}
.reveal {
  opacity: 1;
  transform: none;
}
body {
  isolation: isolate;
}
#fluid-canvas {
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.18) contrast(1.03);
}
main {
  position: relative;
  z-index: 1;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 252, 0.64) 0%,
    rgba(248, 247, 252, 0.32) 42%,
    rgba(248, 247, 252, 0.08) 78%
  );
  pointer-events: none;
}
.hero-copy {
  position: relative;
}
.hero-copy:before {
  content: "";
  position: absolute;
  inset: -70px -50px;
  z-index: -1;
  background: radial-gradient(
    ellipse at 35% 45%,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  #fluid-canvas {
    filter: saturate(1.08);
  }
}
