:root {
  --ink: #050508;
  --ink-soft: #090a10;
  --ink-raised: #0e0f16;
  --cloud: #f5f7ff;
  --muted: #999ca9;
  --muted-light: #c6c8d1;
  --violet: #8b5cff;
  --violet-bright: #a77dff;
  --violet-deep: #38206f;
  --blue: #4aa8ff;
  --success: #68e0a0;
  --warning: #ffc66d;
  --glass: rgba(17, 18, 27, 0.68);
  --glass-strong: rgba(21, 22, 32, 0.86);
  --glass-light: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1240px;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out-quint: cubic-bezier(.16, 1, .3, 1);
  --ease-out-cubic: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.2, .86, .25, 1.18);
  --motion-fast: 180ms;
  --motion-base: 360ms;
  --motion-slow: 720ms;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cloud);
  background: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: white;
  background: rgba(139, 92, 255, 0.68);
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: white;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.page-ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.13;
}

.ambient-orb-one {
  top: 18vh;
  left: -16vw;
  width: 55vw;
  height: 55vw;
  background: var(--violet);
}

.ambient-orb-two {
  right: -18vw;
  bottom: -10vh;
  width: 50vw;
  height: 50vw;
  background: var(--blue);
  opacity: 0.07;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), 1180px);
  min-height: 64px;
  padding: 8px 10px 8px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(10, 10, 15, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px) saturate(145%);
  transform: translateX(-50%);
  transition: top 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 12, 0.82);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.brand-mark,
.mini-brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(176, 144, 255, 0.98), rgba(101, 55, 224, 0.92));
  box-shadow: 0 8px 20px rgba(94, 48, 205, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.brand-mark svg {
  width: 20px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: rgba(245, 247, 255, 0.68);
  font-size: 13px;
}

.main-nav a,
.header-login,
.text-link {
  transition: color 180ms ease;
}

.main-nav a:hover,
.header-login:hover,
.text-link:hover {
  color: white;
}

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

.header-login {
  color: rgba(245, 247, 255, 0.74);
  font-size: 13px;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 610;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-light {
  color: #0b0b10;
  background: #f6f7fb;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.button-light:hover {
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button-primary {
  border-color: rgba(175, 141, 255, 0.52);
  background: linear-gradient(135deg, #9d72ff, #7542ed);
  box-shadow: 0 16px 38px rgba(112, 61, 231, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-primary:hover {
  box-shadow: 0 20px 45px rgba(112, 61, 231, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: white;
  transition: transform 180ms ease;
}

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

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 164px max(5vw, 30px) 90px;
  display: grid;
  grid-template-columns: minmax(360px, 0.73fr) minmax(600px, 1.27fr);
  align-items: center;
  gap: clamp(20px, 2vw, 42px);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(92, 55, 163, 0.19), transparent 31%),
    radial-gradient(circle at 17% 31%, rgba(77, 91, 166, 0.12), transparent 32%),
    linear-gradient(180deg, #06060a 0%, #07070b 74%, #050508 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.15), transparent 35%, transparent 72%, rgba(5, 5, 8, 0.32));
}

.hero-stars {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  opacity: var(--opacity);
  background: white;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.35);
  animation: starPulse var(--duration) ease-in-out var(--delay) infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: calc(var(--opacity) * 0.45); }
  50% { opacity: var(--opacity); }
}

.hero-liquid {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -12%;
  width: 82%;
  height: 73%;
  opacity: 0.72;
  pointer-events: none;
  transform-origin: 64% 72%;
  animation: liquidFloat 9s ease-in-out infinite;
}

@keyframes liquidFloat {
  0%, 100% { transform: translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0) scale(1); }
  50% { transform: translate3d(var(--pointer-x, 0), calc(var(--pointer-y, 0px) - 12px), 0) scale(1.02, 1.015); }
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 610px;
  padding-left: max(2vw, 12px);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(222, 215, 240, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(104, 224, 160, 0.1), 0 0 18px rgba(104, 224, 160, 0.75);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  50% { box-shadow: 0 0 0 8px rgba(104, 224, 160, 0), 0 0 20px rgba(104, 224, 160, 0.85); }
}

.hero h1 {
  margin: 29px 0 26px;
  font-size: clamp(64px, 6.1vw, 104px);
  font-weight: 640;
  line-height: 0.88;
  letter-spacing: -0.076em;
}

.hero h1 span,
.section-heading h2 span,
.roles-heading h2 span,
.clarity h2 span,
.final-card h2 span {
  color: transparent;
  background: linear-gradient(92deg, #b99bff 0%, #8a63f3 40%, #64b6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 530px;
  margin: 0;
  color: rgba(213, 214, 224, 0.64);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.58;
  letter-spacing: -0.016em;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 247, 255, 0.68);
  font-size: 13px;
  font-weight: 560;
}

.hero-proof {
  margin-top: 39px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(218, 219, 228, 0.56);
  font-size: 11px;
}

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

.hero-proof svg {
  width: 15px;
  fill: none;
  stroke: var(--violet-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 680px;
  perspective: 1600px;
}

.stage-halo {
  position: absolute;
  top: 3%;
  right: -3%;
  width: 84%;
  height: 78%;
  border-radius: 50%;
  opacity: 0.38;
  background: radial-gradient(circle, rgba(137, 91, 255, 0.22), transparent 67%);
  filter: blur(20px);
}

.glass-panel,
.glass-card,
.feature-card,
.roles-shell,
.final-card {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(28px) saturate(135%);
}

.dashboard-shell {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: -5.5%;
  width: 88%;
  height: 526px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(10, 11, 17, 0.88);
  transform: rotateY(-5deg) rotateZ(0.6deg);
  transform-origin: 100% 50%;
}

.browser-chrome {
  height: 38px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr 2.1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.025);
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fa6f67;
}

.traffic-lights i:nth-child(2) { background: #f2c35b; }
.traffic-lights i:nth-child(3) { background: #62c873; }

.address-bar {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.026);
  font-family: var(--mono);
  font-size: 6px;
}

.lock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

.browser-user {
  justify-self: end;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #d9ccff;
  background: rgba(139, 92, 255, 0.2);
  font-size: 7px;
  font-weight: 700;
}

.dashboard-body {
  height: calc(100% - 38px);
  display: grid;
  grid-template-columns: 120px 1fr;
}

.dashboard-sidebar {
  padding: 17px 11px 12px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(3, 4, 8, 0.46);
}

.dashboard-brand {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}

.mini-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  color: white;
  font-size: 8px;
  font-weight: 800;
}

.dashboard-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dashboard-sidebar nav a {
  min-height: 31px;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 15px 1fr auto;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.39);
  font-size: 7px;
}

.dashboard-sidebar nav a.active {
  color: #ece8ff;
  background: rgba(139, 92, 255, 0.13);
}

.dashboard-sidebar nav svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-sidebar nav a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.dashboard-sidebar nav a span {
  padding: 2px 4px;
  border-radius: 5px;
  color: #d8c9ff;
  background: rgba(139, 92, 255, 0.17);
  font-size: 5px;
}

.sidebar-profile {
  margin-top: auto;
  padding: 9px 6px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.sidebar-profile > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #d8cbff;
  background: rgba(139, 92, 255, 0.16);
  font-size: 6px;
  font-weight: 700;
}

.sidebar-profile div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-profile b { font-size: 6px; font-weight: 600; }
.sidebar-profile small { color: rgba(255,255,255,.3); font-size: 5px; }

.dashboard-content {
  padding: 23px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 89% 5%, rgba(119, 77, 222, 0.08), transparent 25%),
    #0b0c12;
}

.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dashboard-heading small,
.dashboard-content small {
  color: rgba(255, 255, 255, 0.34);
}

.dashboard-heading small { font-size: 6px; }

.dashboard-heading h2 {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 570;
  letter-spacing: -0.045em;
}

.dashboard-heading button,
.catalog-toolbar button,
.screen-toolbar button {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #9869ff, #7040df);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 6px;
}

.dashboard-metrics {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard-metrics > div {
  min-height: 76px;
  padding: 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
}

.dashboard-metrics span { color: rgba(255,255,255,.39); font-size: 6px; }
.dashboard-metrics strong { grid-row: 2; font-size: 22px; font-weight: 500; letter-spacing: -.05em; }
.dashboard-metrics small { grid-column: 2; grid-row: 2; align-self: end; font-size: 5px; }

.order-table {
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.table-title {
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.table-title > div { display: flex; flex-direction: column; gap: 2px; }
.table-title strong { font-size: 8px; font-weight: 600; }
.table-title small { font-size: 5px; }
.table-title button { color: #a989ff; background: transparent; font-size: 5px; }

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr .8fr .6fr;
  align-items: center;
  column-gap: 8px;
}

.table-head {
  padding: 9px 6px 6px;
  color: rgba(255,255,255,.25);
  font-size: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.table-row {
  min-height: 48px;
  padding: 5px 6px;
  border-top: 1px solid rgba(255,255,255,.045);
  color: rgba(255,255,255,.53);
  font-size: 6px;
}

.table-row > span:first-child {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  column-gap: 7px;
}

.table-row > span:first-child i { grid-row: 1 / 3; }
.table-row b { color: rgba(255,255,255,.82); font-size: 7px; font-weight: 550; }
.table-row small { font-size: 5px; }
.table-row em,
.screen-card em {
  width: max-content;
  padding: 4px 6px;
  border-radius: 999px;
  color: #ddceff;
  background: rgba(139,92,255,.15);
  font-size: 5px;
  font-style: normal;
}

.table-row em.ordered,
.screen-card em.ordered { color: #a5d3ff; background: rgba(74,168,255,.13); }
.table-row em.shipping,
.screen-card em.shipping { color: #ffdfab; background: rgba(255,198,109,.13); }
.screen-card em.delivered { color: #a8f0ca; background: rgba(104,224,160,.12); }

.product-thumb,
.product-visual {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(151,113,255,.22), rgba(255,255,255,.035));
}

.product-thumb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.product-thumb::before,
.product-visual::before {
  position: absolute;
  inset: 23%;
  content: "";
  border-radius: 3px;
  background: currentColor;
  opacity: .72;
  transform: rotate(-17deg);
}

.product-thumb.drill,
.product-visual.drill-large { color: #a78aff; }
.product-thumb.helmet { color: #75b8f4; background: linear-gradient(145deg, rgba(74,168,255,.18), rgba(255,255,255,.035)); }
.product-thumb.helmet::before { inset: 30% 18% 25%; border-radius: 50% 50% 4px 4px; transform: none; }
.product-thumb.tape { color: #69d8a0; background: linear-gradient(145deg, rgba(104,224,160,.16), rgba(255,255,255,.035)); }
.product-thumb.tape::before { inset: 26%; border-radius: 50%; transform: none; }

.phone-shell {
  position: absolute;
  z-index: 7;
  left: -1%;
  bottom: 18px;
  width: 224px;
  height: 455px;
  padding: 8px;
  overflow: hidden;
  border: 4px solid #171821;
  border-radius: 39px;
  background: #090a0f;
  box-shadow: 0 35px 80px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.16);
  transform: rotateY(9deg) rotateZ(-3deg);
  transform-origin: 0 50%;
}

.phone-island {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 72px;
  height: 19px;
  border-radius: 99px;
  background: #020204;
  transform: translateX(-50%);
}

.phone-topbar {
  height: 27px;
  padding: 5px 12px 0;
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  font-weight: 700;
}

.phone-topbar > div { display: flex; align-items: center; gap: 3px; }
.phone-topbar i { width: 7px; height: 4px; border-radius: 1px; background: rgba(255,255,255,.72); }
.phone-topbar i:nth-child(2) { width: 5px; }
.phone-topbar i:nth-child(3) { width: 8px; border-radius: 3px; }

.phone-appbar {
  height: 46px;
  padding: 5px 7px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.phone-appbar > div { display: flex; flex-direction: column; gap: 1px; }
.phone-appbar small { color: rgba(255,255,255,.35); font-size: 5px; }
.phone-appbar strong { font-size: 8px; font-weight: 600; }
.phone-appbar button { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.05); }
.phone-appbar svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.phone-content { padding: 14px 10px; }
.phone-heading { display: flex; justify-content: space-between; align-items: center; }
.phone-heading span { font-size: 12px; font-weight: 580; letter-spacing: -.035em; }
.phone-heading small { color: rgba(255,255,255,.3); font-size: 5px; }

.app-field {
  margin-top: 13px;
  min-height: 61px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
}

.app-field span,
.quantity-row span { color: rgba(255,255,255,.34); font-size: 5px; }
.app-field strong { font-size: 8px; font-weight: 550; }
.app-field small { color: #a88dff; font-family: var(--mono); font-size: 5px; }

.quantity-row { margin-top: 8px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; }
.quantity-row div { height: 49px; padding: 9px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(255,255,255,.035); }
.quantity-row strong { font-size: 8px; font-weight: 550; }
.app-field-note { min-height: 52px; }
.app-field-note small { color: rgba(255,255,255,.52); font-family: var(--display); line-height: 1.4; }

.app-submit {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 8px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg,#9568ff,#6b3bdc);
  box-shadow: 0 10px 24px rgba(104,55,213,.26), inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 7px;
  font-weight: 600;
}

.app-submit b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.13); }
.phone-home { position: absolute; bottom: 8px; left: 50%; width: 68px; height: 3px; border-radius: 99px; background: rgba(255,255,255,.68); transform: translateX(-50%); }

.order-connection {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.order-connection path { fill: none; stroke: rgba(150,110,255,.27); stroke-width: 1.5; stroke-dasharray: 5 8; }
.order-connection circle { fill: #b99aff; filter: drop-shadow(0 0 8px #9e72ff); }

.floating-status {
  position: absolute;
  z-index: 9;
  right: -2%;
  bottom: 44px;
  min-width: 248px;
  min-height: 68px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 17px;
  animation: statusFloat 5.5s ease-in-out infinite;
}

@keyframes statusFloat { 50% { transform: translateY(-8px); } }

.status-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #d9c9ff;
  background: rgba(139,92,255,.14);
}

.status-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.floating-status div { display: flex; flex-direction: column; gap: 4px; }
.floating-status small { color: rgba(255,255,255,.38); font-size: 7px; }
.floating-status strong { font-size: 10px; font-weight: 590; }
.status-check { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #05110b; background: var(--success); font-size: 10px; font-weight: 800; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.33);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span { width: 34px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.4)); }

.role-strip {
  position: relative;
  z-index: 2;
  min-height: 132px;
  padding: 26px max(5vw,30px);
  display: grid;
  grid-template-columns: auto 70px auto 70px auto 1fr;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.018);
}

.role-strip div { display: flex; align-items: baseline; gap: 8px; }
.role-strip strong { font-size: 27px; font-weight: 530; letter-spacing: -.05em; }
.role-strip span { color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.role-strip i { height: 1px; background: linear-gradient(90deg, rgba(139,92,255,.15), rgba(139,92,255,.55), rgba(139,92,255,.15)); }
.role-strip p { justify-self: end; max-width: 390px; margin: 0; color: rgba(255,255,255,.43); font-size: 12px; line-height: 1.55; text-align: right; }

.section {
  position: relative;
  padding: 150px max(5vw, 30px);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: 210px 1fr 330px;
  align-items: end;
  gap: 35px;
}

.section-kicker {
  align-self: start;
  padding-top: 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.section-kicker span { color: #c9b9f1; font-size: 9px; letter-spacing: .12em; }
.section-kicker small { color: rgba(255,255,255,.3); font-size: 7px; letter-spacing: .08em; }

.section-heading h2,
.roles-heading h2,
.clarity h2,
.final-card h2 {
  margin: 0;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.064em;
}

.section-heading > p {
  margin: 0 0 7px;
  color: rgba(219,220,229,.47);
  font-size: 14px;
  line-height: 1.65;
}

.workflow {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(84,62,145,.13), transparent 24%),
    linear-gradient(180deg,#07070b,#090a10 48%,#07070b);
}

.workflow-line {
  position: absolute;
  z-index: 0;
  top: 412px;
  bottom: 250px;
  left: 50%;
  width: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.workflow-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--workflow-progress, 0%);
  background: linear-gradient(to bottom, #9a73f4, #4aa8ff, #68e0a0);
  box-shadow: 0 0 12px rgba(139,92,255,.75);
}

.workflow-steps {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(320px,.8fr) minmax(520px,1.2fr);
  align-items: center;
  gap: 9%;
}

.workflow-step-reverse {
  grid-template-columns: minmax(520px,1.2fr) minmax(320px,.8fr);
}

.workflow-step-reverse .step-copy { grid-column: 2; grid-row: 1; }
.workflow-step-reverse .step-visual { grid-column: 1; grid-row: 1; }

.step-copy {
  position: relative;
  max-width: 460px;
}

.step-number {
  position: absolute;
  top: -48px;
  right: 0;
  color: rgba(255,255,255,.045);
  font-family: var(--mono);
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -.1em;
}

.step-icon,
.feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(173,141,255,.24);
  border-radius: 14px;
  color: #b89cff;
  background: rgba(139,92,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.step-icon svg,
.feature-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.step-copy > small { display: block; margin-top: 25px; color: #a88af0; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.step-copy h3 { margin: 15px 0 18px; font-size: clamp(34px,3.1vw,48px); font-weight: 590; line-height: 1.02; letter-spacing: -.055em; }
.step-copy > p { margin: 0; color: rgba(221,222,231,.49); font-size: 14px; line-height: 1.68; }
.step-copy ul { margin: 25px 0 0; padding: 22px 0 0; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid rgba(255,255,255,.07); color: rgba(235,235,241,.68); font-size: 12px; list-style: none; }
.step-copy li { display: flex; align-items: center; gap: 10px; }
.step-copy li::before { width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; content: ""; background: var(--violet); box-shadow: 0 0 10px rgba(139,92,255,.8); }

.step-visual {
  position: relative;
  min-height: 510px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(139,92,255,.16), transparent 32%),
    rgba(15,16,24,.66);
}

.step-visual::before,
.feature-card::before,
.roles-shell::before,
.final-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.045), transparent 34%, transparent 70%, rgba(139,92,255,.035));
}

.demo-bar,
.tracking-head {
  position: relative;
  z-index: 1;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.demo-bar > span { font-size: 18px; font-weight: 580; letter-spacing: -.03em; }
.demo-bar em,
.new-badge { padding: 6px 9px; border-radius: 999px; color: #d8c9ff; background: rgba(139,92,255,.14); font-family: var(--mono); font-size: 7px; font-style: normal; text-transform: uppercase; }

.demo-product {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.product-visual { width: 70px; height: 70px; border-radius: 17px; }
.demo-product div,
.process-product div { display: flex; flex-direction: column; gap: 5px; }
.demo-product small,
.process-product small { color: rgba(255,255,255,.33); font-size: 9px; }
.demo-product strong,
.process-product strong { font-size: 15px; font-weight: 580; }
.demo-product span,
.process-product span { color: #9e7de9; font-family: var(--mono); font-size: 8px; }
.demo-product > b { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #05110b; background: var(--success); font-size: 12px; }

.demo-fields,
.date-price-row {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-fields > div,
.date-price-row > div {
  min-height: 78px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.demo-fields span,
.date-price-row span,
.select-mock > span { color: rgba(255,255,255,.34); font-size: 9px; }
.demo-fields strong,
.date-price-row strong { font-size: 14px; font-weight: 560; }

.demo-action {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-action > span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: 9px; }
.demo-action > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(104,224,160,.65); }
.demo-action button,
.process-button { min-height: 43px; padding: 0 17px; border-radius: 12px; color: white; background: linear-gradient(135deg,#9568ff,#6c3ddd); box-shadow: 0 12px 25px rgba(105,56,218,.24), inset 0 1px 0 rgba(255,255,255,.2); font-size: 10px; font-weight: 600; }

.demo-bar > div { display: flex; flex-direction: column; gap: 4px; }
.demo-bar > div small { color: rgba(255,255,255,.33); font-size: 8px; }
.demo-bar > div span { font-family: var(--mono); font-size: 13px; }

.process-product {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
}

.select-mock { position: relative; z-index: 1; margin-top: 21px; }
.select-mock > span { display: block; margin-bottom: 8px; }
.select-mock > div { min-height: 67px; padding: 11px 14px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.035); }
.select-mock i { grid-row: 1 / 3; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #d7c7ff; background: rgba(139,92,255,.15); font-size: 10px; font-style: normal; font-weight: 700; }
.select-mock strong { align-self: end; font-size: 12px; font-weight: 560; }
.select-mock small { align-self: start; color: rgba(255,255,255,.34); font-size: 8px; }
.select-mock b { grid-column: 3; grid-row: 1 / 3; color: rgba(255,255,255,.36); font-size: 11px; }
.process-button { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; align-items: center; justify-content: space-between; }

.tracking-head > div { display: flex; flex-direction: column; gap: 5px; }
.tracking-head small { color: rgba(255,255,255,.34); font-size: 8px; }
.tracking-head strong { font-size: 14px; font-weight: 570; }
.tracking-head > span { color: #aa8cf0; font-family: var(--mono); font-size: 9px; }

.tracking-route {
  position: relative;
  z-index: 1;
  margin: 35px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.route-progress { position: absolute; top: 15px; bottom: 15px; left: 14px; width: 1px; background: rgba(255,255,255,.08); }
.route-progress span { display: block; width: 100%; height: 67%; background: linear-gradient(to bottom,var(--violet),var(--blue)); box-shadow: 0 0 8px rgba(139,92,255,.7); }
.route-step { position: relative; z-index: 1; display: grid; grid-template-columns: 29px 1fr; align-items: center; gap: 14px; }
.route-step > i { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; color: #09120d; background: #171821; font-size: 10px; font-style: normal; }
.route-step.done > i { border-color: transparent; background: var(--success); }
.route-step.active > i { border-color: rgba(139,92,255,.42); background: rgba(139,92,255,.13); box-shadow: 0 0 0 6px rgba(139,92,255,.05); }
.route-step.active > i::after { width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--violet-bright); box-shadow: 0 0 10px rgba(139,92,255,.85); }
.route-step div { display: flex; flex-direction: column; gap: 4px; }
.route-step strong { color: rgba(255,255,255,.77); font-size: 11px; font-weight: 560; }
.route-step small { color: rgba(255,255,255,.32); font-size: 8px; }
.route-step:not(.done):not(.active) { opacity: .38; }

.arrival-card { position: absolute; right: 30px; bottom: 30px; left: 30px; min-height: 69px; padding: 12px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border: 1px solid rgba(104,224,160,.13); border-radius: 16px; background: rgba(104,224,160,.045); }
.arrival-card div { display: flex; flex-direction: column; gap: 4px; }
.arrival-card small { color: rgba(255,255,255,.35); font-size: 8px; }
.arrival-card strong { font-size: 11px; font-weight: 570; }
.arrival-card > b { padding: 6px 8px; border-radius: 999px; color: #9be8bd; background: rgba(104,224,160,.1); font-family: var(--mono); font-size: 6px; text-transform: uppercase; }

.features {
  background:
    radial-gradient(circle at 82% 31%, rgba(57,99,158,.1), transparent 23%),
    #050508;
}

.section-heading-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 880px;
  text-align: center;
}

.section-heading-centered .section-kicker { align-items: center; }
.section-heading-centered > p { max-width: 520px; text-align: center; }

.feature-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 310px;
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 12%, rgba(139,92,255,.11), transparent 34%),
    rgba(17,18,26,.66);
}

.feature-copy {
  position: relative;
  z-index: 3;
  max-width: 420px;
  padding: 30px;
}

.feature-icon { width: 40px; height: 40px; border-radius: 12px; }
.feature-icon svg { width: 18px; }
.feature-copy > small { display: block; margin-top: 20px; color: #a88cef; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.feature-copy h3 { margin: 10px 0 10px; font-size: 25px; font-weight: 590; line-height: 1.08; letter-spacing: -.045em; }
.feature-copy p { margin: 0; color: rgba(221,222,230,.43); font-size: 12px; line-height: 1.58; }

.feature-products { grid-column: span 8; grid-row: span 2; }
.feature-suppliers { grid-column: span 4; grid-row: span 2; }
.feature-mobile { grid-column: span 4; }
.feature-status { grid-column: span 4; }
.feature-control { grid-column: span 4; }

.catalog-demo {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(5,6,10,.5);
}

.catalog-toolbar { height: 58px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.06); }
.catalog-toolbar > div { width: 205px; height: 32px; padding: 0 10px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.065); border-radius: 9px; color: rgba(255,255,255,.25); background: rgba(255,255,255,.025); font-size: 7px; }
.catalog-toolbar svg { width: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.catalog-table-head,
.catalog-row { display: grid; grid-template-columns: 1.4fr .85fr 1fr .8fr; align-items: center; column-gap: 10px; }
.catalog-table-head { min-height: 31px; padding: 0 16px; color: rgba(255,255,255,.25); font-family: var(--mono); font-size: 6px; letter-spacing: .05em; text-transform: uppercase; }
.catalog-row { min-height: 59px; padding: 0 16px; border-top: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 7px; }
.catalog-row > span:first-child { display: flex; align-items: center; gap: 10px; font-family: var(--display); }
.catalog-row b { color: rgba(255,255,255,.77); font-size: 9px; font-weight: 540; }
.catalog-row > span:nth-child(3) { display: flex; align-items: center; gap: 6px; }
.supplier-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.supplier-dot.blue { background: var(--blue); }
.supplier-dot.green { background: var(--success); }
.catalog-row em { padding: 5px 7px; border-radius: 999px; font-style: normal; font-family: var(--display); font-size: 6px; }
.stock-ok { color: #9ce8bd; background: rgba(104,224,160,.1); }
.stock-low { color: #ffd99a; background: rgba(255,198,109,.1); }

.supplier-orbit {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 355px;
}

.orbit-line { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(139,92,255,.11); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 285px; height: 285px; }
.orbit-two { width: 185px; height: 185px; border-color: rgba(74,168,255,.09); }
.supplier-core { position: absolute; top: 50%; left: 50%; width: 86px; height: 86px; display: grid; place-items: center; align-content: center; gap: 4px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: radial-gradient(circle at 35% 25%,rgba(176,145,255,.33),rgba(50,29,91,.62)); box-shadow: 0 0 55px rgba(139,92,255,.18), inset 0 1px 0 rgba(255,255,255,.13); transform: translate(-50%,-50%); }
.supplier-core span { font-size: 25px; font-weight: 700; }
.supplier-core small { color: rgba(255,255,255,.45); font-size: 7px; }
.supplier-bubble { position: absolute; min-width: 140px; min-height: 53px; padding: 9px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.095); border-radius: 14px; background: rgba(16,17,25,.84); box-shadow: 0 14px 35px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05); }
.supplier-bubble i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #d8c9ff; background: rgba(139,92,255,.15); font-size: 8px; font-style: normal; font-weight: 700; }
.supplier-bubble div { display: flex; flex-direction: column; gap: 3px; }
.supplier-bubble strong { font-size: 9px; font-weight: 560; }
.supplier-bubble small { color: rgba(255,255,255,.32); font-size: 7px; }
.supplier-a { top: 18px; left: 18px; }
.supplier-b { top: 134px; right: 10px; }
.supplier-c { bottom: 18px; left: 32px; }

.mobile-stack { position: absolute; right: 18px; bottom: -55px; width: 195px; height: 265px; perspective: 800px; }
.mobile-sheet { position: absolute; width: 170px; height: 235px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 25px 25px 0 0; background: rgba(14,15,22,.91); box-shadow: 0 24px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07); }
.sheet-back { top: 21px; left: -9px; color: rgba(255,255,255,.48); transform: rotate(-9deg); }
.sheet-back span { font-size: 12px; font-weight: 590; }
.sheet-back i { height: 35px; margin-top: 10px; display: block; border-radius: 9px; background: rgba(255,255,255,.04); }
.sheet-front { right: 0; display: flex; flex-direction: column; gap: 9px; transform: rotate(5deg); }
.sheet-front small { color: #9f83e4; font-family: var(--mono); font-size: 7px; }
.sheet-front strong { margin-top: 20px; font-size: 24px; letter-spacing: -.05em; }
.sheet-front > span { color: rgba(255,255,255,.4); font-size: 9px; }
.sheet-front > div { position: relative; height: 80px; margin-top: 13px; display: flex; justify-content: space-between; }
.sheet-front > div::before { position: absolute; top: 8px; right: 8px; left: 8px; height: 1px; content: ""; background: linear-gradient(90deg,var(--violet),var(--blue),rgba(255,255,255,.08)); }
.sheet-front > div i,
.sheet-front > div b { position: relative; z-index: 1; width: 16px; height: 16px; border: 4px solid #171821; border-radius: 50%; background: var(--violet); }
.sheet-front > div b:nth-child(3) { background: var(--blue); }
.sheet-front > div b:last-child { background: #242631; }

.status-pills { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.status-pills span { min-height: 37px; padding: 0 12px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.075); border-radius: 999px; color: rgba(255,255,255,.32); background: rgba(255,255,255,.025); font-size: 8px; }
.status-pills span.done { color: #a6eac4; border-color: rgba(104,224,160,.13); background: rgba(104,224,160,.055); }
.status-pills span.active { color: #d8c9ff; border-color: rgba(139,92,255,.17); background: rgba(139,92,255,.07); }
.status-pills i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.control-inbox { position: absolute; right: 22px; bottom: 24px; left: 22px; }
.control-inbox > div { min-height: 47px; padding: 7px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border-top: 1px solid rgba(255,255,255,.055); }
.avatar { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 9px; font-size: 7px; font-weight: 700; }
.avatar-purple { color: #ddcfff; background: rgba(139,92,255,.16); }
.avatar-blue { color: #b9ddff; background: rgba(74,168,255,.14); }
.avatar-green { color: #b7f1d0; background: rgba(104,224,160,.13); }
.control-inbox p { margin: 0; display: flex; flex-direction: column; gap: 3px; }
.control-inbox strong { font-size: 8px; font-weight: 550; }
.control-inbox small { color: rgba(255,255,255,.3); font-size: 6px; }
.control-inbox em { padding: 5px 7px; border-radius: 999px; color: #d7c7ff; background: rgba(139,92,255,.12); font-size: 6px; font-style: normal; }
.control-inbox em.seen { color: rgba(255,255,255,.34); background: rgba(255,255,255,.05); }

.roles {
  background:
    radial-gradient(circle at 15% 65%, rgba(139,92,255,.11), transparent 25%),
    linear-gradient(180deg,#050508,#080910);
}

.roles-shell {
  position: relative;
  width: min(100%, var(--max));
  min-height: 770px;
  margin: auto;
  padding: 66px;
  overflow: hidden;
  border-radius: 42px;
  background: rgba(17,18,27,.62);
}

.roles-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 45px;
}

.roles-heading h2 { margin-top: 28px; font-size: clamp(45px,4.4vw,68px); }
.role-switch { padding: 5px; display: flex; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(0,0,0,.2); }
.role-switch button { min-height: 46px; padding: 0 14px; display: flex; align-items: center; gap: 8px; border-radius: 12px; color: rgba(255,255,255,.4); background: transparent; cursor: pointer; font-size: 10px; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.role-switch button[aria-selected="true"] { color: white; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.08),0 5px 12px rgba(0,0,0,.18); }

.role-panel {
  position: relative;
  z-index: 2;
  margin-top: 75px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: center;
  gap: 70px;
  animation: roleIn 380ms ease both;
}

@keyframes roleIn { from { opacity: 0; transform: translateY(8px); } }

.role-copy > small { color: #a98cf0; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.role-copy h3 { margin: 15px 0 17px; font-size: 39px; font-weight: 590; line-height: 1.03; letter-spacing: -.055em; }
.role-copy p { margin: 0; color: rgba(221,222,230,.46); font-size: 13px; line-height: 1.65; }
.role-copy ul { margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; list-style: none; color: rgba(255,255,255,.63); font-size: 11px; }
.role-copy li { display: flex; align-items: center; gap: 9px; }
.role-copy li span { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: #07100b; background: var(--success); font-size: 8px; font-weight: 800; }

.role-screen {
  min-height: 390px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 27px;
  background: rgba(6,7,11,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 25px 55px rgba(0,0,0,.22);
}

.screen-toolbar { padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.06); }
.screen-toolbar > span { font-size: 16px; font-weight: 580; letter-spacing: -.035em; }
.screen-card { min-height: 76px; padding: 12px 13px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.055); }
.screen-card.highlighted { margin-top: 13px; border: 1px solid rgba(139,92,255,.14); border-radius: 15px; background: rgba(139,92,255,.05); }
.screen-card > div { display: flex; flex-direction: column; gap: 5px; }
.screen-card strong { font-size: 11px; font-weight: 560; }
.screen-card small { color: rgba(255,255,255,.32); font-size: 8px; }
.screen-card > b { color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 8px; font-weight: 500; }
.screen-card em { font-size: 7px; }

.prep-row { min-height: 77px; padding: 10px 7px; display: grid; grid-template-columns: 1.6fr .8fr .7fr; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.055); color: rgba(255,255,255,.45); font-size: 9px; }
.prep-row.prep-head { min-height: 35px; color: rgba(255,255,255,.24); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.prep-row > span:first-child { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.prep-row > span:first-child i { grid-row: 1 / 3; }
.prep-row b { color: rgba(255,255,255,.78); font-size: 10px; font-weight: 550; }
.prep-row small { color: rgba(255,255,255,.3); font-size: 7px; }
.prep-row button { min-height: 31px; border-radius: 9px; color: #ddceff; background: rgba(139,92,255,.12); font-size: 8px; }

.clarity {
  min-height: 850px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background: #050508;
}

.clarity-copy { padding-left: max(4vw,20px); }
.clarity h2 { margin-top: 28px; font-size: clamp(46px,4.6vw,74px); }
.clarity h2 span { display: inline-block; margin-top: 12px; }
.clarity-orb { position: relative; min-height: 600px; }
.orb-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(139,92,255,.13); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-a { width: 560px; height: 560px; }
.ring-b { width: 410px; height: 410px; border-color: rgba(74,168,255,.12); }
.ring-c { width: 260px; height: 260px; border-color: rgba(255,255,255,.08); }
.orb-core { position: absolute; top: 50%; left: 50%; width: 235px; height: 235px; display: grid; place-items: center; align-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: radial-gradient(circle at 34% 28%,rgba(170,133,255,.32),rgba(26,17,44,.82) 55%,rgba(8,8,12,.88)); box-shadow: 0 0 100px rgba(139,92,255,.18),inset 0 1px 0 rgba(255,255,255,.16); transform: translate(-50%,-50%); }
.orb-core .brand-mark { width: 46px; height: 46px; border-radius: 15px; }
.orb-core strong { margin-top: 8px; font-size: 16px; font-weight: 600; }
.orb-core small { color: rgba(255,255,255,.4); font-size: 8px; }
.orb-chip { position: absolute; min-height: 52px; padding: 0 11px 0 16px; display: flex; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; color: rgba(255,255,255,.72); background: rgba(18,19,28,.72); box-shadow: 0 18px 40px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.05); backdrop-filter: blur(18px); font-size: 10px; }
.orb-chip b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #07100b; background: var(--success); font-size: 9px; }
.chip-order { top: 15%; left: 9%; }
.chip-supplier { top: 30%; right: 3%; }
.chip-arrival { bottom: 14%; left: 18%; }

.final-cta {
  min-height: 750px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg,#050508,#08070d);
}

.final-glow { position: absolute; top: 50%; left: 50%; width: 900px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(139,92,255,.22),rgba(74,168,255,.07) 40%,transparent 70%); filter: blur(30px); transform: translate(-50%,-50%); }
.final-card { position: relative; width: min(100%,1000px); min-height: 510px; padding: 70px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 42px; text-align: center; background: rgba(16,16,24,.66); }
.final-badge { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 650; }
.final-badge .brand-mark { width: 31px; height: 31px; border-radius: 10px; }
.final-card h2 { max-width: 800px; margin-top: 30px; }
.final-card p { max-width: 590px; margin: 25px 0 0; color: rgba(221,222,230,.48); font-size: 15px; line-height: 1.65; }
.final-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }

.site-footer {
  min-height: 180px;
  padding: 45px max(5vw,30px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 35px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.38);
  background: #050508;
}

.site-footer .brand { color: white; }
.site-footer p { margin: 10px 0 0; font-size: 11px; }
.site-footer nav { display: flex; gap: 24px; font-size: 10px; }
.site-footer nav a:hover { color: white; }
.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.055); font-family: var(--mono); font-size: 7px; letter-spacing: .05em; }

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px) scale(.992);
  transition: opacity var(--motion-slow) var(--ease-out-quint), transform var(--motion-slow) var(--ease-out-quint), filter 600ms var(--ease-out-quint);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav { justify-self: center; gap: 20px; }
  .hero { min-height: 1050px; grid-template-columns: minmax(330px,.72fr) minmax(530px,1.28fr); padding-right: 25px; padding-left: 25px; }
  .dashboard-shell { right: -11%; width: 95%; }
  .phone-shell { left: -4%; }
  .section-heading { grid-template-columns: 165px 1fr 270px; }
  .feature-grid { grid-auto-rows: 330px; }
  .feature-products { grid-column: span 12; }
  .feature-suppliers { grid-column: span 5; }
  .feature-mobile { grid-column: span 7; grid-row: span 2; }
  .feature-status { grid-column: span 5; }
  .feature-control { grid-column: span 12; }
  .roles-shell { padding: 48px; }
  .role-panel { gap: 40px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 58px; grid-template-columns: 1fr auto; }
  .main-nav { position: absolute; top: 67px; right: 0; left: 0; padding: 14px; display: none; flex-direction: column; align-items: stretch; gap: 3px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(9,9,14,.94); box-shadow: 0 25px 55px rgba(0,0,0,.42); backdrop-filter: blur(24px); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px; border-radius: 10px; }
  .main-nav a:hover { background: rgba(255,255,255,.05); }
  .header-login { display: none; }
  .menu-toggle { display: grid; }
  .hero { min-height: 1400px; padding: 145px 24px 100px; grid-template-columns: 1fr; align-content: start; }
  .hero-copy { max-width: 700px; padding: 0; text-align: center; justify-self: center; }
  .eyebrow { justify-content: center; }
  .hero-copy > p { margin-right: auto; margin-left: auto; }
  .hero-actions,.hero-proof { justify-content: center; }
  .product-stage { width: min(100%,760px); margin: 35px auto 0; }
  .dashboard-shell { right: -5%; width: 88%; }
  .phone-shell { left: 0; }
  .hero-liquid { right: -35%; bottom: 0; width: 150%; height: 55%; }
  .scroll-cue { display: none; }
  .role-strip { grid-template-columns: repeat(3,1fr); gap: 15px; }
  .role-strip i { display: none; }
  .role-strip p { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .section { padding: 110px 24px; }
  .section-heading { margin-bottom: 70px; grid-template-columns: 1fr; align-items: start; gap: 25px; }
  .section-heading > p { max-width: 560px; }
  .workflow-line { display: none; }
  .workflow-steps { gap: 95px; }
  .workflow-step,.workflow-step-reverse { grid-template-columns: 1fr; gap: 45px; }
  .workflow-step-reverse .step-copy,.workflow-step-reverse .step-visual { grid-column: auto; grid-row: auto; }
  .workflow-step-reverse .step-copy { order: 1; }
  .workflow-step-reverse .step-visual { order: 2; }
  .step-copy { max-width: 620px; }
  .feature-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
  .feature-products,.feature-suppliers,.feature-mobile,.feature-status,.feature-control { grid-column: span 1; grid-row: span 1; }
  .feature-products,.feature-control { grid-column: 1 / -1; }
  .feature-products { min-height: 590px; }
  .feature-suppliers { min-height: 500px; }
  .feature-mobile { min-height: 500px; }
  .catalog-table-head,.catalog-row { grid-template-columns: 1.35fr .9fr .8fr; }
  .catalog-table-head span:last-child,.catalog-row > span:last-child { display: none; }
  .roles-shell { padding: 40px 30px; }
  .roles-heading { grid-template-columns: 1fr; }
  .role-switch { justify-self: start; }
  .role-panel { grid-template-columns: 1fr; margin-top: 55px; }
  .role-copy { max-width: 600px; }
  .clarity { grid-template-columns: 1fr; padding-bottom: 50px; }
  .clarity-copy { padding-left: 0; }
  .clarity-orb { min-height: 590px; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; width: calc(100% - 20px); padding-left: 12px; border-radius: 18px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 31px; height: 31px; }
  .header-actions .button { display: none; }
  .hero { min-height: 1200px; padding: 125px 18px 70px; }
  .hero h1 { margin-top: 24px; font-size: clamp(48px,15vw,72px); }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .product-stage { height: 560px; margin-top: 55px; transform: scale(.86); transform-origin: top center; }
  .dashboard-shell { top: 12px; right: -40%; width: 130%; height: 490px; transform: rotateY(-4deg) rotateZ(.6deg); }
  .dashboard-body { grid-template-columns: 93px 1fr; }
  .dashboard-sidebar { padding-right: 7px; padding-left: 7px; }
  .dashboard-content { padding: 18px 17px; }
  .phone-shell { z-index: 9; left: -5%; bottom: -28px; }
  .floating-status { right: -5%; bottom: -10px; min-width: 225px; }
  .role-strip { padding: 28px 18px; grid-template-columns: 1fr 1fr; }
  .role-strip div:nth-of-type(3) { grid-column: 1 / -1; }
  .section { padding: 90px 18px; }
  .section-heading h2,.roles-heading h2,.clarity h2,.final-card h2 { font-size: clamp(40px,12vw,58px); }
  .workflow-steps { gap: 80px; }
  .step-copy h3 { font-size: 36px; }
  .step-visual { min-height: 500px; padding: 20px; border-radius: 25px; }
  .demo-action,.process-button,.arrival-card { right: 20px; bottom: 20px; left: 20px; }
  .demo-action { align-items: stretch; flex-direction: column; gap: 12px; }
  .demo-action button { width: 100%; }
  .product-visual { width: 56px; height: 56px; }
  .date-price-row { grid-template-columns: 1fr; }
  .date-price-row > div { min-height: 55px; }
  .processing-demo { min-height: 580px; }
  .feature-grid { grid-template-columns: 1fr; grid-auto-rows: 430px; }
  .feature-products,.feature-suppliers,.feature-mobile,.feature-status,.feature-control { grid-column: 1; min-height: 0; }
  .feature-products { min-height: 570px; }
  .feature-suppliers { min-height: 520px; }
  .feature-mobile { min-height: 470px; }
  .feature-copy { padding: 24px; }
  .catalog-demo { right: 14px; bottom: 14px; left: 14px; }
  .catalog-toolbar > div { width: 160px; }
  .catalog-table-head,.catalog-row { grid-template-columns: 1.5fr .85fr; }
  .catalog-table-head span:nth-child(3),.catalog-row > span:nth-child(3) { display: none; }
  .supplier-orbit { transform: scale(.88); transform-origin: 50% 60%; }
  .roles-shell { min-height: 900px; padding: 29px 18px; border-radius: 28px; }
  .role-switch { width: 100%; }
  .role-switch button { flex: 1; padding: 0 8px; }
  .role-panel { gap: 35px; }
  .role-screen { padding: 15px; }
  .screen-card { grid-template-columns: auto 1fr auto; }
  .screen-card > b { display: none; }
  .prep-row { grid-template-columns: 1.4fr .65fr; }
  .prep-row > span:nth-child(2) { display: none; }
  .clarity { min-height: 980px; }
  .clarity-orb { min-height: 550px; transform: scale(.72); transform-origin: 50% 50%; }
  .final-card { min-height: 560px; padding: 55px 20px; border-radius: 28px; }
  .final-actions { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer small { grid-column: 1; }
}

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

/* Shared Cangix theme setting */
.theme-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  color: rgba(245,247,255,.66);
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.theme-toggle:hover { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); transform: translateY(-1px); }
.theme-toggle svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

/* Daylight mode: cool blueprint paper with the same violet order-flow signal. */
html[data-theme="light"] {
  --ink: #f5f7fb;
  --ink-soft: #eef2f7;
  --ink-raised: #ffffff;
  --cloud: #162033;
  --muted: #5d6779;
  --muted-light: #46536a;
  --violet: #6942d4;
  --violet-bright: #6f46dc;
  --violet-deep: #e8e0fa;
  --blue: #176ca8;
  --success: #1b7f52;
  --warning: #a35c00;
  --glass: rgba(255,255,255,.88);
  --glass-strong: rgba(255,255,255,.96);
  --glass-light: rgba(29,44,70,.055);
  --line: rgba(29,44,70,.12);
  --line-strong: rgba(29,44,70,.2);
  --shadow: 0 28px 75px rgba(36,49,75,.13);
  color-scheme: light;
  background: var(--ink);
}

html[data-theme="light"] body { color: var(--cloud); background: var(--ink); }
html[data-theme="light"] body::selection { color: white; background: rgba(105,66,212,.82); }
html[data-theme="light"] .skip-link { color: white; background: #5732bd; }
html[data-theme="light"] .ambient-orb { opacity: .09; }
html[data-theme="light"] .ambient-orb-two { opacity: .06; }
html[data-theme="light"] .ambient-grid { opacity: .075; background-image: linear-gradient(rgba(63,83,118,.3) 1px,transparent 1px),linear-gradient(90deg,rgba(63,83,118,.3) 1px,transparent 1px); }

html[data-theme="light"] .site-header { border-color: rgba(29,44,70,.13); background: rgba(255,255,255,.76); box-shadow: 0 18px 55px rgba(36,49,75,.1),inset 0 1px 0 white; }
html[data-theme="light"] .site-header.is-scrolled { border-color: rgba(29,44,70,.16); background: rgba(255,255,255,.92); box-shadow: 0 14px 42px rgba(36,49,75,.13),inset 0 1px 0 white; }
html[data-theme="light"] .main-nav,
html[data-theme="light"] .header-login,
html[data-theme="light"] .text-link { color: #536075; }
html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .header-login:hover,
html[data-theme="light"] .text-link:hover { color: #18243a; }
html[data-theme="light"] .theme-toggle { color: #435069; border-color: rgba(29,44,70,.14); background: rgba(245,247,251,.86); }
html[data-theme="light"] .theme-toggle:hover { color: #18243a; border-color: rgba(105,66,212,.28); background: white; }
html[data-theme="light"] .button-light { color: white; border-color: rgba(105,66,212,.32); background: linear-gradient(135deg,#8257e9,#6336cf); box-shadow: 0 12px 28px rgba(105,66,212,.22),inset 0 1px 0 rgba(255,255,255,.28); }
html[data-theme="light"] .button-light:hover { background: linear-gradient(135deg,#8a61ed,#6942d4); box-shadow: 0 16px 34px rgba(105,66,212,.28),inset 0 1px 0 rgba(255,255,255,.28); }
html[data-theme="light"] .menu-toggle { border: 1px solid rgba(29,44,70,.12); background: #f1f4f8; }
html[data-theme="light"] .menu-toggle span { background: #26344b; }

html[data-theme="light"] .hero { background: radial-gradient(circle at 76% 42%,rgba(105,66,212,.13),transparent 32%),radial-gradient(circle at 17% 31%,rgba(23,108,168,.09),transparent 33%),linear-gradient(180deg,#f8faff 0%,#f3f6fb 74%,#f5f7fb 100%); }
html[data-theme="light"] .hero::before { background: linear-gradient(90deg,rgba(245,247,251,.05),transparent 35%,transparent 72%,rgba(222,228,239,.26)); }
html[data-theme="light"] .star { background: #5a6680; box-shadow: 0 0 6px rgba(67,80,105,.2); }
html[data-theme="light"] #hero-liquid-fill stop:nth-child(1) { stop-color: #8f6ee6; stop-opacity: .55; }
html[data-theme="light"] #hero-liquid-fill stop:nth-child(2) { stop-color: #b9a5ef; stop-opacity: .44; }
html[data-theme="light"] #hero-liquid-fill stop:nth-child(3) { stop-color: #d9d0ef; stop-opacity: .64; }
html[data-theme="light"] #hero-liquid-fill stop:nth-child(4) { stop-color: #f5f7fb; }
html[data-theme="light"] #hero-ridge stop:nth-child(1) { stop-color: #6942d4; stop-opacity: .28; }
html[data-theme="light"] #hero-ridge stop:nth-child(2) { stop-color: #6942d4; stop-opacity: .72; }
html[data-theme="light"] #hero-ridge stop:nth-child(3) { stop-color: #176ca8; stop-opacity: 0; }
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .section-label { color: #536075; }
html[data-theme="light"] .hero h1 span,
html[data-theme="light"] .section-heading h2 span,
html[data-theme="light"] .roles-heading h2 span,
html[data-theme="light"] .clarity h2 span,
html[data-theme="light"] .final-card h2 span { background: linear-gradient(92deg,#5732bd 0%,#6942d4 42%,#176ca8 100%); background-clip: text; -webkit-background-clip: text; }
html[data-theme="light"] .hero-copy > p { color: #536075; }
html[data-theme="light"] .hero-proof { border-color: rgba(29,44,70,.11); color: #5d687b; }
html[data-theme="light"] .scroll-cue { color: #667187; }
html[data-theme="light"] .scroll-cue span { background: linear-gradient(90deg,transparent,rgba(29,44,70,.38)); }

html[data-theme="light"] .glass-panel,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .roles-shell,
html[data-theme="light"] .final-card { box-shadow: var(--shadow),inset 0 1px 0 white; }
html[data-theme="light"] .dashboard-shell { background: rgba(255,255,255,.96); }
html[data-theme="light"] .browser-chrome { border-color: rgba(29,44,70,.1); background: #edf1f6; }
html[data-theme="light"] .address-bar { border-color: rgba(29,44,70,.11); color: #667187; background: rgba(255,255,255,.7); }
html[data-theme="light"] .browser-user { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .dashboard-sidebar { border-color: rgba(29,44,70,.1); background: rgba(255,255,255,.96); }
html[data-theme="light"] .dashboard-sidebar nav a { color: #5d687b; }
html[data-theme="light"] .dashboard-sidebar nav a.active { color: #5732bd; background: #eee8ff; }
html[data-theme="light"] .dashboard-sidebar nav a span { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .sidebar-profile { border-color: rgba(29,44,70,.1); }
html[data-theme="light"] .sidebar-profile > span { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .sidebar-profile small { color: #667187; }
html[data-theme="light"] .dashboard-content { background: radial-gradient(circle at 89% 5%,rgba(105,66,212,.07),transparent 25%),#f5f7fb; }
html[data-theme="light"] .dashboard-heading small,
html[data-theme="light"] .dashboard-content small { color: #667187; }
html[data-theme="light"] .dashboard-metrics > div,
html[data-theme="light"] .order-table { border-color: rgba(29,44,70,.11); background: rgba(255,255,255,.9); box-shadow: 0 6px 18px rgba(36,49,75,.04); }
html[data-theme="light"] .dashboard-metrics span { color: #5d687b; }
html[data-theme="light"] .table-title,
html[data-theme="light"] .table-row { border-color: rgba(29,44,70,.09); }
html[data-theme="light"] .table-head { color: #718096; }
html[data-theme="light"] .table-row { color: #46536a; }
html[data-theme="light"] .table-row b { color: #26344b; }
html[data-theme="light"] .table-title button { color: #633bc8; }
html[data-theme="light"] .table-row em,
html[data-theme="light"] .screen-card em { color: #5732bd; background: #eee8ff; }
html[data-theme="light"] .table-row em.ordered,
html[data-theme="light"] .screen-card em.ordered { color: #176ca8; background: #e4f1fb; }
html[data-theme="light"] .table-row em.shipping,
html[data-theme="light"] .screen-card em.shipping { color: #8a4d00; background: #fff0d7; }
html[data-theme="light"] .screen-card em.delivered { color: #176a46; background: #e3f4eb; }
html[data-theme="light"] .product-thumb,
html[data-theme="light"] .product-visual { border-color: rgba(105,66,212,.18); background: linear-gradient(145deg,rgba(105,66,212,.13),rgba(255,255,255,.85)); }

html[data-theme="light"] .phone-shell { color: #162033; border-color: #d9dee8; background: #ffffff; box-shadow: 0 30px 70px rgba(36,49,75,.2),inset 0 0 0 1px white; }
html[data-theme="light"] .phone-island { background: #1b2538; }
html[data-theme="light"] .phone-topbar i { background: #536075; }
html[data-theme="light"] .phone-appbar { border-color: rgba(29,44,70,.1); }
html[data-theme="light"] .phone-appbar small,
html[data-theme="light"] .phone-heading small { color: #667187; }
html[data-theme="light"] .phone-appbar button { color: #536075; background: #f0f3f7; }
html[data-theme="light"] .app-field,
html[data-theme="light"] .quantity-row div { border-color: rgba(29,44,70,.13); background: #f7f9fc; }
html[data-theme="light"] .app-field span,
html[data-theme="light"] .quantity-row span { color: #5d687b; }
html[data-theme="light"] .app-field small { color: #633bc8; }
html[data-theme="light"] .app-field-note small { color: #46536a; }
html[data-theme="light"] .phone-home { background: #8993a4; }
html[data-theme="light"] .floating-status { background: rgba(255,255,255,.94); }
html[data-theme="light"] .floating-status small { color: #667187; }
html[data-theme="light"] .status-icon { color: #5732bd; background: #eee8ff; }

html[data-theme="light"] .role-strip { border-color: rgba(29,44,70,.1); background: rgba(255,255,255,.42); }
html[data-theme="light"] .role-strip span,
html[data-theme="light"] .role-strip p { color: #5d687b; }
html[data-theme="light"] .section-kicker span { color: #633bc8; }
html[data-theme="light"] .section-kicker small { color: #718096; }
html[data-theme="light"] .section-heading > p { color: #536075; }

html[data-theme="light"] .workflow { background: radial-gradient(circle at 20% 25%,rgba(105,66,212,.09),transparent 25%),linear-gradient(180deg,#f5f7fb,#eef2f7 48%,#f5f7fb); }
html[data-theme="light"] .workflow-line { background: rgba(29,44,70,.12); }
html[data-theme="light"] .step-number { color: rgba(50,67,96,.08); }
html[data-theme="light"] .step-icon,
html[data-theme="light"] .feature-icon { border-color: rgba(105,66,212,.2); color: #633bc8; background: #eee8ff; box-shadow: inset 0 1px 0 white; }
html[data-theme="light"] .step-copy > small,
html[data-theme="light"] .feature-copy > small,
html[data-theme="light"] .role-copy > small { color: #633bc8; }
html[data-theme="light"] .step-copy > p,
html[data-theme="light"] .feature-copy p,
html[data-theme="light"] .role-copy p { color: #536075; }
html[data-theme="light"] .step-copy ul { border-color: rgba(29,44,70,.11); color: #46536a; }
html[data-theme="light"] .step-visual { background: radial-gradient(circle at 80% 10%,rgba(105,66,212,.1),transparent 32%),rgba(255,255,255,.9); }
html[data-theme="light"] .step-visual::before,
html[data-theme="light"] .feature-card::before,
html[data-theme="light"] .roles-shell::before,
html[data-theme="light"] .final-card::before { background: linear-gradient(135deg,rgba(255,255,255,.7),transparent 34%,transparent 70%,rgba(105,66,212,.025)); }
html[data-theme="light"] .demo-bar,
html[data-theme="light"] .tracking-head { border-color: rgba(29,44,70,.1); }
html[data-theme="light"] .demo-bar em,
html[data-theme="light"] .new-badge { color: #5732bd; background: #eee8ff; }
html[data-theme="light"] .demo-product,
html[data-theme="light"] .demo-fields > div,
html[data-theme="light"] .date-price-row > div,
html[data-theme="light"] .select-mock > div { border-color: rgba(29,44,70,.12); background: #f7f9fc; }
html[data-theme="light"] .demo-product small,
html[data-theme="light"] .process-product small,
html[data-theme="light"] .demo-fields span,
html[data-theme="light"] .date-price-row span,
html[data-theme="light"] .select-mock > span,
html[data-theme="light"] .select-mock small,
html[data-theme="light"] .tracking-head small { color: #667187; }
html[data-theme="light"] .demo-product span,
html[data-theme="light"] .process-product span,
html[data-theme="light"] .tracking-head > span { color: #633bc8; }
html[data-theme="light"] .demo-action > span { color: #536075; }
html[data-theme="light"] .select-mock i { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .select-mock b { color: #667187; }
html[data-theme="light"] .route-progress { background: rgba(29,44,70,.12); }
html[data-theme="light"] .route-step > i { border-color: rgba(29,44,70,.14); background: #edf1f6; }
html[data-theme="light"] .route-step strong { color: #344258; }
html[data-theme="light"] .route-step small { color: #667187; }
html[data-theme="light"] .route-step:not(.done):not(.active) { opacity: .62; }
html[data-theme="light"] .arrival-card { border-color: rgba(27,127,82,.18); background: rgba(27,127,82,.06); }
html[data-theme="light"] .arrival-card small { color: #5d687b; }
html[data-theme="light"] .arrival-card > b { color: #176a46; background: #e3f4eb; }

html[data-theme="light"] .features { background: radial-gradient(circle at 82% 31%,rgba(23,108,168,.07),transparent 24%),#f5f7fb; }
html[data-theme="light"] .feature-card { background: radial-gradient(circle at 80% 12%,rgba(105,66,212,.08),transparent 34%),rgba(255,255,255,.9); }
html[data-theme="light"] .catalog-demo { border-color: rgba(29,44,70,.12); background: rgba(248,250,253,.9); }
html[data-theme="light"] .catalog-toolbar,
html[data-theme="light"] .catalog-row { border-color: rgba(29,44,70,.09); }
html[data-theme="light"] .catalog-toolbar > div { border-color: rgba(29,44,70,.12); color: #718096; background: white; }
html[data-theme="light"] .catalog-table-head { color: #718096; }
html[data-theme="light"] .catalog-row { color: #536075; }
html[data-theme="light"] .catalog-row b { color: #26344b; }
html[data-theme="light"] .stock-ok { color: #176a46; background: #e3f4eb; }
html[data-theme="light"] .stock-low { color: #8a4d00; background: #fff0d7; }
html[data-theme="light"] .orbit-line { border-color: rgba(105,66,212,.15); }
html[data-theme="light"] .orbit-two { border-color: rgba(23,108,168,.12); }
html[data-theme="light"] .supplier-core { border-color: rgba(105,66,212,.18); background: radial-gradient(circle at 35% 25%,rgba(105,66,212,.18),rgba(238,232,255,.9)); box-shadow: 0 0 50px rgba(105,66,212,.12),inset 0 1px 0 white; }
html[data-theme="light"] .supplier-core small { color: #5d687b; }
html[data-theme="light"] .supplier-bubble { border-color: rgba(29,44,70,.13); background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(36,49,75,.11),inset 0 1px 0 white; }
html[data-theme="light"] .supplier-bubble i { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .supplier-bubble small { color: #667187; }
html[data-theme="light"] .mobile-sheet { border-color: rgba(29,44,70,.13); background: rgba(255,255,255,.96); box-shadow: 0 24px 50px rgba(36,49,75,.15),inset 0 1px 0 white; }
html[data-theme="light"] .sheet-back { color: #536075; }
html[data-theme="light"] .sheet-back i { background: #edf1f6; }
html[data-theme="light"] .sheet-front small { color: #633bc8; }
html[data-theme="light"] .sheet-front > span { color: #5d687b; }
html[data-theme="light"] .sheet-front > div::before { background: linear-gradient(90deg,var(--violet),var(--blue),rgba(29,44,70,.12)); }
html[data-theme="light"] .sheet-front > div i,
html[data-theme="light"] .sheet-front > div b { border-color: white; }
html[data-theme="light"] .sheet-front > div b:last-child { background: #c8cfdb; }
html[data-theme="light"] .status-pills span { border-color: rgba(29,44,70,.12); color: #667187; background: #f7f9fc; }
html[data-theme="light"] .status-pills span.done { color: #176a46; border-color: rgba(27,127,82,.18); background: #e3f4eb; }
html[data-theme="light"] .status-pills span.active { color: #5732bd; border-color: rgba(105,66,212,.18); background: #eee8ff; }
html[data-theme="light"] .control-inbox > div { border-color: rgba(29,44,70,.1); }
html[data-theme="light"] .avatar-purple { color: #5732bd; background: #eae3fb; }
html[data-theme="light"] .avatar-blue { color: #176ca8; background: #e4f1fb; }
html[data-theme="light"] .avatar-green { color: #176a46; background: #e3f4eb; }
html[data-theme="light"] .control-inbox small { color: #667187; }
html[data-theme="light"] .control-inbox em { color: #5732bd; background: #eee8ff; }
html[data-theme="light"] .control-inbox em.seen { color: #5d687b; background: #edf1f6; }

html[data-theme="light"] .roles { background: radial-gradient(circle at 15% 65%,rgba(105,66,212,.08),transparent 26%),linear-gradient(180deg,#f5f7fb,#eef2f7); }
html[data-theme="light"] .roles-shell { background: rgba(255,255,255,.9); }
html[data-theme="light"] .role-switch { border-color: rgba(29,44,70,.12); background: #edf1f6; }
html[data-theme="light"] .role-switch button { color: #5d687b; }
html[data-theme="light"] .role-switch button[aria-selected="true"] { color: #18243a; background: white; box-shadow: inset 0 1px 0 white,0 5px 13px rgba(36,49,75,.1); }
html[data-theme="light"] .role-copy ul { color: #46536a; }
html[data-theme="light"] .role-screen { border-color: rgba(29,44,70,.12); background: #f7f9fc; box-shadow: inset 0 1px 0 white,0 24px 50px rgba(36,49,75,.1); }
html[data-theme="light"] .screen-toolbar,
html[data-theme="light"] .screen-card,
html[data-theme="light"] .prep-row { border-color: rgba(29,44,70,.1); }
html[data-theme="light"] .screen-card.highlighted { border-color: rgba(105,66,212,.16); background: #f2edff; }
html[data-theme="light"] .screen-card small,
html[data-theme="light"] .prep-row small { color: #667187; }
html[data-theme="light"] .screen-card > b,
html[data-theme="light"] .prep-row { color: #536075; }
html[data-theme="light"] .prep-row.prep-head { color: #718096; }
html[data-theme="light"] .prep-row b { color: #26344b; }
html[data-theme="light"] .prep-row button { color: #5732bd; background: #eee8ff; }

html[data-theme="light"] .clarity { background: #f5f7fb; }
html[data-theme="light"] .ring-c { border-color: rgba(29,44,70,.12); }
html[data-theme="light"] .orb-core { border-color: rgba(105,66,212,.18); background: radial-gradient(circle at 34% 28%,rgba(105,66,212,.18),rgba(238,232,255,.92) 55%,rgba(255,255,255,.96)); box-shadow: 0 0 90px rgba(105,66,212,.12),inset 0 1px 0 white; }
html[data-theme="light"] .orb-core small { color: #5d687b; }
html[data-theme="light"] .orb-chip { border-color: rgba(29,44,70,.13); color: #344258; background: rgba(255,255,255,.9); box-shadow: 0 18px 38px rgba(36,49,75,.12),inset 0 1px 0 white; }

html[data-theme="light"] .final-cta { background: linear-gradient(180deg,#f5f7fb,#eef2f7); }
html[data-theme="light"] .final-card { background: rgba(255,255,255,.9); }
html[data-theme="light"] .final-card p { color: #536075; }
html[data-theme="light"] .site-footer { border-color: rgba(29,44,70,.1); color: #5d687b; background: #eef2f7; }
html[data-theme="light"] .site-footer .brand { color: #18243a; }
html[data-theme="light"] .site-footer nav a:hover { color: #18243a; }
html[data-theme="light"] .site-footer small { border-color: rgba(29,44,70,.1); }

@media (max-width: 900px) {
  html[data-theme="light"] .main-nav { border-color: rgba(29,44,70,.13); background: rgba(255,255,255,.97); box-shadow: 0 24px 50px rgba(36,49,75,.16); }
  html[data-theme="light"] .main-nav a:hover { background: #f1f4f8; }
}

@media (max-width: 640px) {
  .header-actions { gap: 8px; }
  .theme-toggle { width: 40px; height: 40px; flex-basis: 40px; }
}

/* Cangix motion language: every movement follows the order flow. */
::view-transition-old(root),
::view-transition-new(root) { animation: none; mix-blend-mode: normal; }

.site-header::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--success));
  box-shadow: 0 0 12px rgba(139,92,255,.65);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}

.motion-ready .site-header {
  opacity: 0;
  transform: translate(-50%, -18px) scale(.985);
}

.motion-loaded .site-header {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  transition: opacity 700ms var(--ease-out-quint), transform 800ms var(--ease-out-quint), top 280ms var(--ease-out-quint), background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.main-nav a { position: relative; }
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease-out-quint);
}
.main-nav a:hover::after,.main-nav a:focus-visible::after { transform: scaleX(1);transform-origin:left; }

.motion-ready .hero-copy.reveal > * { will-change:opacity,transform; }
.motion-loaded .hero-copy.reveal.is-visible > * { animation: heroCopyIn 760ms var(--ease-out-quint) both; }
.motion-loaded .hero-copy.reveal.is-visible > *:nth-child(1) { animation-delay: 80ms; }
.motion-loaded .hero-copy.reveal.is-visible > *:nth-child(2) { animation-delay: 150ms; }
.motion-loaded .hero-copy.reveal.is-visible > *:nth-child(3) { animation-delay: 230ms; }
.motion-loaded .hero-copy.reveal.is-visible > *:nth-child(4) { animation-delay: 310ms; }
.motion-loaded .hero-copy.reveal.is-visible > *:nth-child(5) { animation-delay: 390ms; }
@keyframes heroCopyIn { from { opacity:0;transform:translateY(16px); } }

.stage-halo { transform:translate3d(var(--halo-x,0),var(--halo-y,0),0);transition:transform 900ms var(--ease-out-quint); }
.product-stage.is-visible .dashboard-shell { animation: dashboardEnter 950ms var(--ease-out-quint) 140ms both; }
.product-stage.is-visible .phone-shell { animation: phoneEnter 900ms var(--ease-out-quint) 310ms both; }
.product-stage.is-visible .order-connection { animation: connectionEnter 900ms var(--ease-out-quint) 520ms both; }
.product-stage.is-visible .floating-status { animation: statusEnter 750ms var(--ease-spring) 640ms both, statusFloat 5.5s ease-in-out 1.4s infinite; }
@keyframes dashboardEnter { from { opacity:0;transform:translate3d(56px,20px,0) rotateY(-10deg) rotateZ(1.4deg) scale(.965); } }
@keyframes phoneEnter { from { opacity:0;transform:translate3d(-35px,36px,0) rotateY(15deg) rotateZ(-6deg) scale(.94); } }
@keyframes connectionEnter { from { opacity:0;clip-path:inset(0 100% 0 0); } }
@keyframes statusEnter { from { opacity:0;transform:translate3d(25px,18px,0) scale(.9); } }

.workflow-line span { transition: height 140ms linear; }
.workflow-line span::after {
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #a98aff;
  box-shadow: 0 0 0 7px rgba(139,92,255,.08),0 0 18px rgba(139,92,255,.9);
  animation: routePulse 1.8s ease-in-out infinite;
}
@keyframes routePulse { 50% { box-shadow:0 0 0 12px rgba(139,92,255,0),0 0 24px rgba(74,168,255,.9); } }

.button,.theme-toggle,.menu-toggle,.text-link,.header-login { -webkit-tap-highlight-color:transparent; }
.button,.theme-toggle,.feature-card,.step-visual,.roles-shell,.final-card { transition-duration: var(--motion-base);transition-timing-function:var(--ease-out-quint); }
.button > span,.text-link > span,.card-head button svg,.product-card > button svg { transition:transform var(--motion-base) var(--ease-out-quint); }
.button:hover > span,.text-link:hover > span,.card-head button:hover svg,.product-card > button:hover svg { transform:translateX(4px); }
.button:active,.theme-toggle:active { transform:translateY(0) scale(.975);transition-duration:90ms; }

.feature-card::after,.step-visual::after,.roles-shell::after,.final-card::after {
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  opacity:0;
  pointer-events:none;
  content:"";
  background:radial-gradient(420px circle at var(--glow-x,50%) var(--glow-y,20%),rgba(174,143,255,.12),transparent 44%);
  transition:opacity var(--motion-base) var(--ease-out-quint);
}

.role-panel.is-active { animation:rolePanelIn 560ms var(--ease-out-quint) both; }
@keyframes rolePanelIn { from { opacity:0;transform:translateY(14px) scale(.992);filter:blur(5px); } to { opacity:1;transform:none;filter:blur(0); } }

.scroll-cue span { position:relative;overflow:hidden; }
.scroll-cue span::after { position:absolute;inset:0;content:"";background:linear-gradient(90deg,transparent,#bda5ff,transparent);transform:translateX(-100%);animation:scrollCue 2.4s var(--ease-out-cubic) infinite; }
@keyframes scrollCue { 65%,100% { transform:translateX(100%); } }

@media (hover:hover) and (pointer:fine) {
  .feature-card:hover,.step-visual:hover,.roles-shell:hover,.final-card:hover { border-color:rgba(174,143,255,.19);box-shadow:0 34px 95px rgba(0,0,0,.46),inset 0 1px 0 rgba(255,255,255,.075);transform:translateY(-4px); }
  .feature-card:hover::after,.step-visual:hover::after,.roles-shell:hover::after,.final-card:hover::after { opacity:1; }
  .brand:hover .brand-mark { transform:rotate(-5deg) scale(1.04);box-shadow:0 12px 27px rgba(94,48,205,.4),inset 0 1px 1px rgba(255,255,255,.48); }
  .brand-mark { transition:transform var(--motion-base) var(--ease-spring),box-shadow var(--motion-base) ease; }
}

@media (max-width:900px) {
  .main-nav { display:flex;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px) scale(.98);transform-origin:top;transition:opacity 240ms ease,transform 360ms var(--ease-out-quint),visibility 0s linear 360ms; }
  .main-nav.is-open { opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0) scale(1);transition-delay:0s; }
  .main-nav a { opacity:0;transform:translateY(-6px);transition:opacity 240ms ease,transform 360ms var(--ease-out-quint),background 180ms ease; }
  .main-nav.is-open a { opacity:1;transform:none; }
  .main-nav.is-open a:nth-child(1) { transition-delay:40ms; }
  .main-nav.is-open a:nth-child(2) { transition-delay:75ms; }
  .main-nav.is-open a:nth-child(3) { transition-delay:110ms; }
  .main-nav.is-open a:nth-child(4) { transition-delay:145ms; }
  .main-nav a::after { display:none; }
}

@media (prefers-reduced-motion:reduce) {
  .motion-ready .site-header,.motion-loaded .site-header { opacity:1;transform:translateX(-50%); }
  .motion-ready .hero-copy.reveal > * { opacity:1;transform:none; }
  .workflow-line span::after,.scroll-cue span::after { display:none; }
  .feature-card:hover,.step-visual:hover,.roles-shell:hover,.final-card:hover { transform:none; }
}
