@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary-violet: #8e7dff;
  --primary-pink: #ff7da7;
  --bg-light: #faf9ff;
  --text-dark: #2d264d;
  --text-muted: #6b628a;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, #8e7dff 0%, #ff7da7 100%);

  --ink: var(--text-dark);
  --muted: var(--text-muted);
  --paper: var(--bg-light);
  --white: var(--card-bg);
  --line: #e7e3f2;
  --soft: #f0edfa;
  --dark: #2d264d;
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10,8,17,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-header .brand { color: white; }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.logo-slot {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient); color: white;
  font-family: "DM Mono", monospace; font-size: 17px;
  box-shadow: 0 7px 20px rgba(142,125,255,.22);
}
.nav { display: flex; gap: 32px; color: #b9b2cc; font-size: 13px; font-weight: 700; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: white; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display:block; width: 24px; height:2px; background:white; margin:5px; }

.hero {
  position: relative;
  padding: 88px 0 92px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0a0811;
  background-size: 54px 54px, 54px 54px, auto;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items:center;
}
.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
  opacity: .14;
}
.glow-one { background: #8e7dff; right: 18%; top: 5%; }
.glow-two { background: #ff7da7; right: -5%; bottom: -25%; }
.hero-motion {
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}
.hero-motion i {
  position:absolute;
  left:-260px;
  width:220px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), rgba(255,255,255,.82), transparent);
  opacity:.7;
  transform:rotate(-18deg);
  animation: signalDrift 13s linear infinite;
}
.hero-motion i::after {
  content:"";
  position:absolute;
  right:24%;
  top:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:white;
  box-shadow:0 0 10px rgba(255,255,255,.8);
  transform:translateY(-50%);
}
.hero-motion i:nth-child(1) { top:18%; animation-delay:-2s; }
.hero-motion i:nth-child(2) { top:39%; animation-delay:-7s; animation-duration:16s; opacity:.45; }
.hero-motion i:nth-child(3) { top:68%; animation-delay:-11s; animation-duration:11s; }
.hero-motion i:nth-child(4) { top:84%; animation-delay:-4s; animation-duration:18s; opacity:.38; }
@keyframes signalDrift {
  from { translate:0 0; }
  to { translate:calc(100vw + 520px) 0; }
}

.eyebrow, .kicker, .product-badge {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
.eyebrow { display:inline-flex; align-items:center; gap:9px; margin-bottom: 25px; color:#c1bad4; }
.dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--primary-pink);
  box-shadow: 0 0 0 5px rgba(255,125,167,.11);
}
h1 {
  font-size: clamp(47px, 5.9vw, 78px);
  line-height: .98;
  letter-spacing: -.068em;
  margin:0 0 28px;
  max-width: 710px;
}
.flip-line {
  display: block;
  position: relative;
  width: min(100%, 600px);
  height: 1.34em;
  margin-top: 9px;
  perspective: 900px;
}
.flip-page {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  align-items: center;
  width: 540px;
  max-width: 100%;
  height: 1.18em;
  justify-content: center;
  padding: .08em .30em .12em;
  color: white;
  background: #171126;
  border: 1px solid rgba(255,255,255,.2);
  border-left: 4px solid var(--primary-violet);
  border-radius: 10px;
  box-shadow:
    10px 10px 0 rgba(142,125,255,.8),
    16px 16px 0 rgba(255,125,167,.42),
    inset 0 1px 0 rgba(255,255,255,.14);
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.flip-page.flip-out {
  animation: pageFlipOut .48s cubic-bezier(.65,.05,.36,1) forwards;
}
.flip-page-next {
  opacity: 0;
  transform: rotateX(82deg) translateY(3px);
}
.flip-page-next.flip-in {
  animation: pageFlipIn .48s cubic-bezier(.22,1,.36,1) forwards;
}
.flip-word { white-space: nowrap; }
.flip-page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 7px;
  border-radius: 0 0 10px 10px;
  background: rgba(0,0,0,.45);
  transform: translateZ(-1px);
  filter: blur(2px);
}
@keyframes pageFlipOut {
  0% { opacity:1; transform: rotateX(0deg) translateY(0); }
  72% { opacity:.92; transform: rotateX(-66deg) translateY(-2px); }
  100% { opacity:0; transform: rotateX(-88deg) translateY(-4px); }
}
@keyframes pageFlipIn {
  0% { opacity:.22; transform: rotateX(82deg) translateY(3px); }
  58% { opacity:1; transform: rotateX(14deg) translateY(0); }
  100% { opacity:1; transform: rotateX(0deg) translateY(0); }
}
.hero-text { max-width: 620px; color:#bdb5cc; font-size:18px; }
.hero-actions { display:flex; gap:12px; margin-top:32px; align-items:center; flex-wrap:wrap; }
.button {
  display:inline-flex; align-items:center; gap:22px; padding:14px 18px;
  border-radius: 11px; font-size:13px; font-weight:800; transition:.2s ease;
}
.button span { font-size:17px; }
.button-primary {
  color:white;
  background: var(--gradient);
  box-shadow: 0 9px 24px rgba(142,125,255,.20);
}
.button-primary:hover { transform:translateY(-2px); box-shadow:0 13px 30px rgba(142,125,255,.27); }
.button-quiet { border:1px solid rgba(255,255,255,.2); background:transparent; color:white; }
.button-quiet:hover { background:rgba(255,255,255,.08); transform:translateY(-2px); }
.hero-proof { display:flex; gap:30px; margin-top:55px; padding-top:23px; border-top:1px solid rgba(255,255,255,.14); }
.hero-proof div { display:grid; gap:2px; }
.hero-proof strong { font:500 11px "DM Mono", monospace; color:#ff9cbd; }
.hero-proof span { font-size:11px; font-weight:700; }

.hero-visual {
  min-height: 520px;
  position:relative;
  display:grid;
  place-items:center;
}
.system-stack {
  position:relative;
  width:min(100%, 490px);
  height:420px;
  display:grid;
  place-items:center;
}
.system-card {
  position:absolute;
  width:86%;
  height:72%;
  border-radius:25px;
  border:1px solid rgba(255,255,255,.14);
  transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .65s ease;
}
.system-card.back {
  background: #120f1e;
  transform: rotate(8deg) translate(25px, 19px);
}
.system-card.middle {
  background: #1b1629;
  transform: rotate(-5deg) translate(-15px, 8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.system-card.front {
  position: relative;
  width:100%;
  height:100%;
  padding:25px;
  border-color:rgba(255,255,255,.16);
  background:#171326;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  overflow:hidden;
}
.system-card.front::before {
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-80px;
  top:-90px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(142,125,255,.26), rgba(255,125,167,.16));
  filter:none;
}
.swap-graph {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  pointer-events:none;
  object-fit:cover;
  border-radius:inherit;
  transition:opacity .14s ease;
}
.system-top { display:flex; justify-content:space-between; align-items:center; }
.system-number { font:500 11px "DM Mono", monospace; color:#c3b9dd; }
.live-chip {
  display:inline-flex; align-items:center; gap:5px;
  font:500 9px "DM Mono", monospace;
  color:#d4cde3; background:rgba(255,255,255,.08); padding:6px 8px; border-radius:999px;
}
.live-chip i { width:5px;height:5px;border-radius:50%;background:var(--primary-pink); }
.system-icon {
  width:66px; height:66px; margin-top:50px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:6px;
}
.system-icon span {
  display:block; border-radius:6px;
  background:var(--gradient);
  opacity:.88;
}
.system-icon.workflow-icon { display:flex; align-items:center; gap:7px; width:155px; height:66px; }
.system-icon.workflow-icon span { width:19px; height:19px; border-radius:50%; position:relative; }
.system-icon.workflow-icon span:nth-child(n+4) { display:none; }
.system-icon.workflow-icon span:not(:last-child)::after { content:""; position:absolute; left:23px; top:9px; width:10px; height:1px; background:#ff7da7; }
.system-icon.software-icon { grid-template-columns: 1.25fr .8fr; grid-template-rows: 15px 1fr 1fr; width:120px; height:66px; }
.system-icon.software-icon span:first-child { grid-column:1 / -1; }
.system-icon.software-icon span:nth-child(n+5) { display:none; }
.system-icon span:nth-child(2),
.system-icon span:nth-child(5) { opacity:.5; }
.system-icon span:nth-child(3),
.system-icon span:nth-child(6) { opacity:.25; }
.system-kicker {
  margin:18px 0 5px;
  color:#c7bee0;
  font:500 10px "DM Mono", monospace;
  letter-spacing:.12em;
}
.system-card h2 {
  font-size:31px;
  line-height:1;
  letter-spacing:-.055em;
  margin:0 0 11px;
  transition: opacity .2s ease;
}
.system-card p:not(.system-kicker) {
  max-width:390px;
  color:#bdb5cc;
  font-size:12px;
  line-height:1.55;
  margin:0;
}
.system-footer {
  position:absolute;
  left:25px; right:25px; bottom:22px;
  display:flex; justify-content:space-between; align-items:end;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:13px;
}
.system-footer > span { color:#c7bee0; font:500 9px "DM Mono", monospace; }
.mini-bars { display:flex; gap:4px; align-items:end; }
.mini-bars i {
  display:block; width:18px; border-radius:4px 4px 1px 1px;
  background:var(--gradient);
}
.mini-bars i:nth-child(1){height:9px}
.mini-bars i:nth-child(2){height:16px}
.mini-bars i:nth-child(3){height:12px}
.mini-bars i:nth-child(4){height:22px}
.system-card.front.card-leave {
  animation: cardTiltOut .22s cubic-bezier(.65,.05,.36,1) forwards;
}
.system-card.front.card-enter {
  animation: cardTiltIn .32s cubic-bezier(.22,1,.36,1) both;
}
.system-card.front.card-leave > :not(.swap-graph),
.system-card.front.card-leave::before {
  animation: panelContentOut .2s ease forwards;
}
.system-card.front.card-enter > :not(.swap-graph),
.system-card.front.card-enter::before {
  animation: panelContentIn .32s cubic-bezier(.22,1,.36,1) both;
}
.system-card.front.card-leave .swap-graph { opacity:1; }
.system-card.front.card-enter .swap-graph { opacity:0; }
@keyframes cardTiltOut {
  to { transform:translateY(-4px) rotate(-1.2deg); }
}
@keyframes cardTiltIn {
  from { transform:translateY(4px) rotate(1deg); }
  to { transform:translateY(0) rotate(0); }
}
@keyframes panelContentOut {
  to { opacity:0; transform:translateY(-7px); }
}
@keyframes panelContentIn {
  from { opacity:0; transform:translateY(9px); }
  to { opacity:1; transform:translateY(0); }
}
.hero-orbit {
  position:absolute;
  border:1px solid rgba(142,125,255,.38);
  border-radius:50%;
  pointer-events:none;
}
.orbit-one { width:510px;height:510px; transform:rotate(18deg); }
.orbit-two { width:360px;height:360px; border-color:rgba(255,125,167,.28); transform:rotate(-20deg); }
.floating-tag {
  position:absolute;
  background:#211a33;
  color:white;
  padding:11px 14px;
  border-radius:11px;
  font-size:10px;
  font-weight:700;
  box-shadow:0 13px 35px rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.14);
  animation: floatTag 4s ease-in-out infinite;
}
.floating-tag b { color:var(--primary-violet); margin-right:5px; font:500 9px "DM Mono"; }
.floating-tag span { color:var(--primary-pink); margin-right:5px; }
.tag-top { top:65px; right:-5px; }
.tag-bottom { bottom:48px; left:-12px; animation-delay:-1.6s; }
@keyframes floatTag {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-7px); }
}

.section { padding:105px 0; }
.solutions { background:#fff; color:#171326; }
.kicker { color:#756c8b; margin:0 0 16px; }
h2 { font-size:clamp(35px,4vw,52px); line-height:1.02; letter-spacing:-.055em; margin:0; }
.solutions-intro { display:grid; grid-template-columns:1fr .65fr; gap:70px; align-items:end; margin-bottom:55px; }
.solutions-intro > p { color:#565064; margin:0 0 3px; font-size:15px; line-height:1.75; max-width:430px; }
.section-rule { width:74px; height:3px; margin:-4px 0 20px; background:var(--gradient); }
.solution-system { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.solution-module {
  border:1px solid #d5cedf;
  background:#fff;
  box-shadow:0 2px 4px rgba(23,19,38,.035), 0 14px 28px rgba(23,19,38,.045);
  position:relative;
  overflow:hidden;
}
.module-number,.module-label { font:500 10px "DM Mono", monospace; letter-spacing:.12em; }
.module-number { color:#8e7dff; display:block; margin-bottom:28px; }
.module-label { color:#675e7a; margin:0 0 13px; }
.solution-module h3 { margin:0 0 13px; font-size:clamp(24px,2.6vw,35px); line-height:1.04; letter-spacing:-.055em; }
.solution-module p:not(.module-label) { color:#5c5669; font-size:13px; line-height:1.72; margin:0; }
.solution-module a { display:inline-flex; gap:10px; margin-top:26px; padding-bottom:3px; border-bottom:1px solid #8e7dff; color:#252030; font-size:11px; font-weight:800; }
.solution-data { grid-column:1 / -1; min-height:390px; display:grid; grid-template-columns:.88fr 1.12fr; }
.module-copy { padding:44px; display:flex; flex-direction:column; justify-content:center; }
.data-visual { border-left:1px solid #dcd6e8; background:#0a0811; overflow:hidden; }
.growth-chart { display:block; width:100%; height:100%; }
.growth-grid { stroke:rgba(206,194,255,.18); stroke-width:1; stroke-dasharray:5 7; }
.growth-axis { stroke:rgba(230,223,255,.45); stroke-width:1.2; }
.growth-area { fill:url(#growthFill); opacity:0; transition:opacity 3s ease 1.2s; }
.growth-line { fill:none; stroke:#ff8fd0; stroke-width:3.5; stroke-linecap:round; stroke-linejoin:round; filter:drop-shadow(0 0 6px rgba(255,125,167,.55)); }
.growth-dot { fill:#fff; stroke:#ff7da7; stroke-width:2; opacity:0; transition:opacity .18s ease; }
.data-visual.chart-visible .growth-area { opacity:.58; }
.data-visual.chart-visible .growth-line { animation: drawGrowth 7s cubic-bezier(.22,1,.36,1) forwards; }
.data-visual.chart-visible .growth-dot { opacity:1; }
@keyframes drawGrowth { to { stroke-dashoffset:0; } }
.solution-consult,.solution-automation { min-height:370px; padding:37px; display:flex; flex-direction:column; justify-content:space-between; }
.solution-consult h3,.solution-automation h3 { font-size:28px; max-width:340px; }
.decision-flow { align-self:end; width:100%; display:flex; align-items:center; gap:10px; color:#4c455d; font:500 9px "DM Mono", monospace; letter-spacing:.08em; }
.decision-flow > span:not(.analyze-node) { white-space:nowrap; }
.decision-flow > i { height:1px; flex:1; min-width:20px; background:#a59bb7; position:relative; }
.decision-flow > i::before { content:""; position:absolute; right:-1px; top:-3px; width:5px; height:5px; border-top:1px solid #8e7dff; border-right:1px solid #8e7dff; transform:rotate(45deg); }
.decision-flow > i::after { content:""; position:absolute; left:0; top:50%; width:4px; height:4px; border-radius:50%; background:#ff7da7; box-shadow:0 0 0 3px rgba(255,125,167,.15); transform:translateY(-50%); animation: decisionSignal 1.7s linear infinite; }
.decision-flow > i:nth-of-type(2)::after { animation-delay:-.85s; }
.analyze-node { position:relative; display:grid; place-items:center; }
.decision-flow b { padding:11px 14px; color:#fff; background:#171326; font:500 9px "DM Mono", monospace; letter-spacing:.1em; animation: analyzePulse 1.7s ease-in-out infinite; }
.neural-pattern { position:absolute; bottom:calc(100% + 6px); left:50%; width:120px; height:70px; transform:translateX(-50%); overflow:visible; }
.neural-pattern path { fill:none; stroke:#9d91b8; stroke-width:1.2; stroke-dasharray:5 3; animation: neuralPath 1.7s linear infinite; }
.neural-pattern path:nth-of-type(2) { animation-delay:-.22s; }.neural-pattern path:nth-of-type(3) { animation-delay:-.44s; }.neural-pattern path:nth-of-type(4) { animation-delay:-.66s; }.neural-pattern path:nth-of-type(5) { animation-delay:-.88s; }.neural-pattern path:nth-of-type(6) { animation-delay:-1.1s; }.neural-pattern path:nth-of-type(7) { animation-delay:-1.32s; }
.neural-pattern circle { fill:#ff7da7; opacity:.35; animation: neuralFire 1.7s ease-in-out infinite; }
.neural-pattern circle:nth-of-type(2) { animation-delay:-1.54s; }.neural-pattern circle:nth-of-type(3) { animation-delay:-1.37s; }.neural-pattern circle:nth-of-type(4) { animation-delay:-1.2s; }.neural-pattern circle:nth-of-type(5) { animation-delay:-1.03s; }.neural-pattern circle:nth-of-type(6) { animation-delay:-.86s; }.neural-pattern circle:nth-of-type(7) { animation-delay:-.69s; }.neural-pattern circle:nth-of-type(8) { animation-delay:-.52s; }.neural-pattern circle:nth-of-type(9) { animation-delay:-.35s; }.neural-pattern circle:nth-of-type(10) { animation-delay:-.18s; }
@keyframes decisionSignal { from { left:0; } to { left:calc(100% - 4px); } }
@keyframes analyzePulse { 0%,100% { box-shadow:0 0 0 0 rgba(142,125,255,0); transform:scale(1); } 50% { box-shadow:0 0 0 5px rgba(142,125,255,.14); transform:scale(1.035); } }
@keyframes neuralPath { to { stroke-dashoffset:-16; } }
@keyframes neuralFire { 0%,100% { opacity:.3; r:2; } 35% { opacity:1; r:3.2; } }
.automation-flow { width:230px; height:135px; align-self:center; position:relative; font:500 9px "DM Mono", monospace; letter-spacing:.1em; }
.automation-flow span,.automation-flow b { position:absolute; display:grid; place-items:center; }
.flow-input { top:0; left:87px; width:56px; height:24px; border:1px solid #bcb4ca; }
.automation-flow b { top:51px; left:89px; width:52px; height:34px; color:#fff; background:var(--gradient); }
.flow-output { bottom:0; width:55px; height:23px; border:1px solid #bcb4ca; color:#534b62; }
.output-one { left:21px; }.output-two { right:21px; }
.flow-line { position:absolute; width:1px; background:#a99fb9; transform-origin:top; }
.line-one { top:24px; left:115px; height:27px; }.line-two { top:82px; left:109px; height:29px; transform:rotate(39deg); }.line-three { top:82px; left:121px; height:29px; transform:rotate(-39deg); }
.flow-line::after { content:""; position:absolute; width:4px; height:4px; border-radius:50%; background:#ff7da7; box-shadow:0 0 0 3px rgba(255,125,167,.16); animation: flowDot 2.2s linear infinite; }
.line-two::after,.line-three::after { animation-delay:-1.1s; }
@keyframes flowDot { from { top:0; } to { top:calc(100% - 4px); } }
.solution-online { grid-column:1 / -1; min-height:295px; display:grid; grid-template-columns:1.05fr .95fr; }
.online-copy { padding:40px 44px; display:flex; flex-direction:column; justify-content:center; }
.business-map {
  border-left:1px solid #dcd6e8;
  min-height:390px;
  padding:18px 24px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #151025;
  background-size:28px 28px, 28px 28px, auto;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
.business-schema { display:block; width:100%; height:100%; font-family:"DM Mono", monospace; letter-spacing:.08em; }
.schema-lines path { fill:none; stroke:#9389a9; stroke-width:1.45; }
.schema-lines marker path { fill:#8e7dff; }
.schema-labels text { fill:#ff9fc5; font-size:8px; }
.schema-plain { fill:#ddd5ed; font-size:10px; }
.schema-node.dark { fill:#28203b; stroke:#766a91; stroke-width:1; }.schema-node.focus { fill:#f3efff; stroke:#ff7da7; stroke-width:1.5; }.schema-node.light { fill:#8e7dff; }
.schema-node-text { fill:#fff; font-size:10px; }.schema-focus-text { fill:#322b43; font-size:10px; }.schema-light-text { fill:#fff; font-size:10px; }
.schema-report { fill:#c9bdff; font-size:11px; font-weight:500; }

.pharmacy { background:#100d1b; color:white; }
.built-shell { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.built-copy h2 { max-width:680px; }
.built-copy > p:not(.kicker) { color:#bdb5cc; max-width:510px; font-size:15px; }
.built-products { margin-top:38px; max-width:575px; border-top:1px solid rgba(255,255,255,.16); }
.built-product {
  display:grid;
  grid-template-columns:38px 1fr auto;
  gap:18px;
  align-items:center;
  min-height:126px;
  padding:24px 20px;
  border:1px solid rgba(255,255,255,.13);
  border-top:0;
  background:#171326;
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}
.built-product:hover { transform:translateY(-3px); border-color:rgba(255,125,167,.7); background:#1d172c; }
.built-product.built-product-soon { cursor:default; opacity:.55; pointer-events:none; }
.built-product.built-product-soon .built-explore i { display:none; }
.built-number { align-self:start; color:#ff9fc5; font:500 11px "DM Mono", monospace; }
.built-product-info { display:grid; gap:5px; }
.built-product-info strong { font-size:19px; letter-spacing:-.035em; }
.built-product-info small { color:#a89fba; font:500 10px "DM Mono", monospace; letter-spacing:.06em; }
.built-explore { display:inline-flex; align-items:center; gap:9px; color:#ded7ec; font-size:11px; font-weight:800; white-space:nowrap; }
.built-explore i { color:#ff7da7; font-size:18px; font-style:normal; transition:transform .22s ease; }
.built-product:hover .built-explore i { transform:translateX(5px); }
.built-note {
  display:flex; gap:11px; align-items:baseline;
  max-width:575px; margin:18px 0 0;
  color:#9a92ae; font-size:11px; line-height:1.7;
}
.built-note span {
  flex:none; color:#ff9fc5;
  font:500 9px "DM Mono", monospace; letter-spacing:.12em;
}

.product-screen { min-height:600px; position:relative; display:grid; place-items:center; }
.phone { width:285px; height:570px; border:7px solid #433b5b; background:#f8f7fc; color:var(--ink); border-radius:37px; box-shadow:0 30px 80px rgba(0,0,0,.35); padding:20px 15px 12px; position:relative; overflow:hidden; }
.phone-notch { width:90px;height:19px;background:#433b5b;border-radius:0 0 13px 13px;position:absolute;top:0;left:calc(50% - 45px); }
.app-head { display:flex; justify-content:space-between; font-size:12px; font-weight:800; margin-top:8px; }
.app-greeting { margin-top:24px; font-size:20px; font-weight:800; letter-spacing:-.04em; }
.app-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:14px; }
.app-stat-row div { background:white; border:1px solid #e4e0ed; padding:11px; border-radius:12px; }
.app-stat-row small { display:block;color:#817a91;font-size:8px; }
.app-stat-row strong { font-size:15px; }
.app-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:10px; }
.app-action { background:white;border:1px solid #e4e0ed;border-radius:11px;padding:11px;display:flex;align-items:center;gap:8px;font-size:9px;font-weight:700; }
.app-action b { width:22px;height:22px;border-radius:7px;background:#f0edfa;display:grid;place-items:center;font-size:14px; }
.app-action.primary { background:var(--text-dark);color:white;border-color:var(--text-dark); }
.app-action.primary b { background:#494065;color:#d0c8ff; }
.app-section-title { display:flex;justify-content:space-between;margin:23px 2px 9px;font-size:10px;font-weight:800; }
.app-section-title span { font-weight:500;color:#817a91; }
.sale-row { display:grid;grid-template-columns:38px 1fr auto;gap:8px;align-items:center;padding:10px 2px;border-top:1px solid #e4e0ed; }
.sale-row > div { display:grid; }
.sale-row b { font-size:9px; }
.sale-row small { font-size:7px;color:#91899d; }
.sale-row > strong { font-size:9px; }
.pill { width:31px;height:20px;display:grid;place-items:center;border-radius:6px;background:#f0edfa;color:#746c88;font:7px "DM Mono"; }
.pill.due { background:#fbeaf1;color:#b25478; }
.app-nav { position:absolute;bottom:0;left:0;right:0;height:55px;background:white;border-top:1px solid #e4e0ed;display:flex;justify-content:space-around;align-items:center;text-align:center;color:#756e83; }
.app-nav span { font-size:13px; }
.app-nav small { display:block;font-size:6px;margin-top:1px; }
.app-nav .nav-main { width:38px;height:38px;border-radius:50%;background:var(--gradient);color:white;display:grid;place-items:center;font-size:18px;box-shadow:0 5px 15px rgba(142,125,255,.22); }
.screen-note { position:absolute; background:#40375a; border:1px solid #5b5274; padding:11px 14px; border-radius:10px; display:grid; gap:1px; box-shadow:0 15px 35px rgba(0,0,0,.2); }
.screen-note b { color:#d1c8ff; font:9px "DM Mono"; }
.screen-note span { color:#b4acc1; font-size:9px; }
.note-one { top:110px; right:-12px; }
.note-two { bottom:92px; left:-16px; }

/* Currently unused — the "details" section in index.html is commented out
   (that content now lives inside the shop app). Kept for easy restore. */
.details { background:#f2eff9; }
.detail-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:100px; }
.detail-intro p:last-child { color:var(--muted); font-size:14px; }
.detail-items { display:grid;grid-template-columns:1fr 1fr;gap:0 45px; }
.detail-items > div { padding:23px 0;border-top:1px solid #ded8ec; }
.detail-items span { font:10px "DM Mono";color:#968da9; }
.detail-items h3 { font-size:16px;margin:10px 0 4px; }
.detail-items p { font-size:11px;color:var(--muted);margin:0; }

.approach { background:white; color:#171326; }
.approach-head { display:grid; grid-template-columns:1fr .65fr; gap:70px; align-items:end; margin-bottom:55px; }
.approach-head h2 { max-width:680px; }
.approach-head > p { color:#565064; margin:0 0 3px; font-size:15px; line-height:1.75; max-width:430px; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.step {
  position:relative;
  padding:34px 28px 32px;
  border:1px solid #d5cedf;
  background:#fff;
  box-shadow:0 2px 4px rgba(23,19,38,.035), 0 14px 28px rgba(23,19,38,.045);
  overflow:hidden;
  transition:transform .22s ease, border-color .22s ease;
}
.step:hover { transform:translateY(-3px); border-color:rgba(142,125,255,.6); }
.step-number { display:block; font:500 10px "DM Mono", monospace; letter-spacing:.12em; color:#8e7dff; }
.step-track { position:relative; height:2px; margin-top:26px; background:#ece7f5; }
.step-track i { position:absolute; left:0; top:0; bottom:0; background:var(--gradient); }
.step:nth-child(1) .step-track i { width:25%; }
.step:nth-child(2) .step-track i { width:50%; }
.step:nth-child(3) .step-track i { width:75%; }
.step:nth-child(4) .step-track i { width:100%; }
.step h3 { margin:24px 0 9px; font-size:20px; letter-spacing:-.04em; }
.step p { margin:0; color:#5c5669; font-size:12px; line-height:1.72; }

.upgrade { padding:78px 0; background:var(--gradient); }
.upgrade .kicker { color:rgba(45,38,77,.65); }
.upgrade-inner { display:grid;grid-template-columns:1.15fr .85fr;gap:26px 60px;align-items:center; }
.upgrade h2 { font-size:37px;max-width:620px; }
.upgrade-side { display:grid;justify-items:start;gap:22px; }
.upgrade-side p { margin:0;font-size:13px;line-height:1.75;max-width:400px;color:#43395f; }
.upgrade-shifts {
  grid-column:1 / -1;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  margin-top:10px;padding-top:24px;
  border-top:1px solid rgba(45,38,77,.22);
}
.upgrade-shifts div { display:flex;align-items:center;gap:11px;font:500 10px "DM Mono", monospace;letter-spacing:.1em; }
.upgrade-shifts span { color:rgba(45,38,77,.6); }
.upgrade-shifts b { color:#2d264d;font-weight:500; }
.upgrade-shifts i { height:1px;flex:1;min-width:16px;background:rgba(45,38,77,.35);position:relative; }
.upgrade-shifts i::before {
  content:"";position:absolute;right:-1px;top:-3px;width:5px;height:5px;
  border-top:1px solid #2d264d;border-right:1px solid #2d264d;transform:rotate(45deg);
}

.contact { padding:90px 0; }
.contact-box { background:var(--text-dark);color:white;border-radius:25px;padding:58px 65px;display:flex;align-items:end;justify-content:space-between;gap:40px; }
.contact-box .kicker { color:#bdb4d0; }
.contact-box h2 { max-width:680px; }
.contact-box p:last-child { color:#aaa2bb;max-width:560px;font-size:13px; }
.button-light { background:white;color:var(--ink);white-space:nowrap; }
.button-light:hover { transform:translateY(-2px);background:var(--primary-pink); }

.footer { padding:30px 0;border-top:1px solid var(--line); }
.footer-inner { display:flex;align-items:center;gap:28px;font-size:10px;color:#7e7691; }
.footer-brand { color:var(--ink);margin-right:auto; }
.footer-inner p { margin:0; }

@media (max-width: 900px) {
  .hero-grid,.built-shell,.solutions-intro,.detail-grid,.approach-head { grid-template-columns:1fr; }
  .hero { padding-top:60px; }
  .hero-visual { margin-top:20px; }
  .solutions-intro { gap:25px; }
  .approach-head { gap:25px; }
  .product-screen { min-height:570px; }
  .upgrade-inner { grid-template-columns:1fr; gap:26px; }
  .upgrade-shifts { grid-template-columns:1fr; gap:12px; }
  .steps { grid-template-columns:1fr 1fr; }
}

@media (max-width: 650px) {
  .container { width:min(calc(100% - 30px),var(--max)); }
  .nav { display:none; position:absolute;top:78px;left:0;right:0;padding:18px 20px;background:#100d1b;border-bottom:1px solid rgba(255,255,255,.1);flex-direction:column;gap:18px; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  h1 { font-size:49px; }
  .flip-line { width:100%; }
  .flip-page { width:100%; font-size:.82em; border-radius:10px; }
  .hero-proof { gap:16px; }
  .hero-proof span { font-size:9px; }
  .hero-visual { min-height:410px; }
  .system-stack { height:370px; }
  .system-card.front { padding:20px; }
  .system-icon { margin-top:34px; }
  .system-card h2 { font-size:27px; }
  .system-footer { left:20px;right:20px;bottom:18px; }
  .floating-tag { display:none; }
  .orbit-one { width:390px;height:390px; }
  .orbit-two { width:300px;height:300px; }
  .solution-system,.feature-list,.detail-items,.steps { grid-template-columns:1fr; }
  .solution-data,.solution-online { grid-column:auto; grid-template-columns:1fr; }
  .module-copy,.online-copy,.solution-consult,.solution-automation { padding:30px 25px; }
  .solution-data { min-height:auto; }
  .data-visual { min-height:235px; border-left:0; border-top:1px solid #dcd6e8; }
  .solution-consult,.solution-automation { min-height:330px; }
  .business-map { min-height:390px; border-left:0; border-top:1px solid #dcd6e8; }
  .approach-head { gap:22px; }
  .upgrade-inner { gap:24px; }
  .upgrade h2 { font-size:31px; }
  .step { padding:28px 24px; }
  .contact-box { padding:38px 27px;display:block; }
  .contact-box .button { margin-top:20px; }
  .footer-inner { flex-wrap:wrap;gap:15px; }
  .footer-inner p { width:100%;order:3; }
  .phone { transform:scale(.9); }
  .screen-note { display:none; }
}

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