:root {
  --orange: #ff5b14;
  --orange-2: #ff7a32;
  --orange-soft: #ffece2;
  --green: #16a34a;
  --ink: #1c1d22;
  --dark: #09090b;
  --dark-2: #111116;
  --paper: #fffaf5;
  --white: #ffffff;
  --muted: #a9a9b2;
  --line: rgba(255,255,255,.1);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 14px; background: var(--orange); border-radius: 8px; color: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(9,9,11,.82); border-color: var(--line); backdrop-filter: blur(18px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: Manrope, sans-serif; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.brand img { border-radius: 12px; box-shadow: 0 8px 24px rgba(255,91,20,.22); }
.nav-links { display: flex; align-items: center; gap: 31px; margin-left: auto; margin-right: auto; }
.nav-links a, .nav-login { color: #b8b8c0; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav-links a:hover, .nav-login:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.language-toggle { display: inline-flex; align-items: center; gap: 7px; border: 0; background: none; color: #c5c5cc; cursor: pointer; font-size: 12px; font-weight: 800; }
.language-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,91,20,.13); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: white; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: white; font-weight: 800; box-shadow: 0 14px 32px rgba(255,91,20,.24); transition: transform .2s, box-shadow .2s, filter .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(255,91,20,.34); filter: brightness(1.05); }
.button--small { padding: 10px 17px; font-size: 13px; border-radius: 10px; }
.button--hero { padding: 15px 22px; }
.button--ghost { padding: 14px 20px; border: 1px solid var(--line); background: rgba(255,255,255,.045); box-shadow: none; color: #eeeef1; }
.button--ghost:hover { background: rgba(255,255,255,.08); box-shadow: none; }
.play { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(255,91,20,.15); color: var(--orange-2); font-size: 9px; padding-left: 2px; }

.hero { position: relative; overflow: hidden; padding: 152px 0 0; background: radial-gradient(ellipse at 77% 8%, rgba(255,91,20,.11), transparent 34%), #09090b; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .24; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(110px); }
.hero-glow--one { width: 450px; height: 450px; top: 0; right: 3%; background: rgba(255,91,20,.12); }
.hero-glow--two { width: 240px; height: 240px; top: 48%; left: -130px; background: rgba(255,122,50,.08); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; align-items: center; min-height: 590px; }
.hero-copy { position: relative; z-index: 4; max-width: 650px; min-width: 0; padding-bottom: 42px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.04); color: #d5d5da; font-size: 12px; font-weight: 600; }
.eyebrow > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: pulse 1.8s infinite; }
.hero h1 { max-width: 690px; margin: 25px 0 20px; font: 800 clamp(3.2rem, 6vw, 5.85rem)/.98 Manrope, sans-serif; letter-spacing: -.065em; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: transparent; background: linear-gradient(90deg, #ff5b14, #ff975f 62%, #ffd0b8); background-clip: text; -webkit-background-clip: text; padding-bottom: .09em; }
.hero-lead { max-width: 590px; margin: 0 0 28px; color: #aaaab3; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; color: #81818a; font-size: 12px; }
.hero-note > span { white-space: nowrap; }
.hero-note > span::first-letter { color: var(--green); }
.hero-visual { position: absolute; z-index: 0; inset: 0 calc(50% - 50vw); min-width: 0; overflow: hidden; pointer-events: none; }
.hero-image-wrap { position: absolute; inset: 0; background: url("bookwy-commerce-hero.png") 66% center / cover no-repeat; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(9,9,11,.98) 0%,rgba(9,9,11,.88) 34%,rgba(9,9,11,.38) 66%,rgba(9,9,11,.55) 100%),linear-gradient(0deg,rgba(9,9,11,.72),transparent 46%); pointer-events: none; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; min-width: 182px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(20,20,24,.84); backdrop-filter: blur(16px); box-shadow: 0 18px 38px rgba(0,0,0,.4); animation: float 5s ease-in-out infinite; }
.float-card b, .float-card small { display: block; }
.float-card b { font-size: 12px; }
.float-card small { margin-top: 1px; color: #8d8d96; font-size: 9px; }
.float-card--top { top: 22%; right: 9%; }
.float-card--bottom { right: 17%; bottom: 16%; animation-delay: -2.5s; }
.float-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,91,20,.17); color: var(--orange); font-weight: 800; }
.pulse-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(22,163,74,.13); }

.product-tour { position: relative; background: var(--paper); color: var(--ink); overflow: hidden; }
.product-tour::before { content: ""; position: absolute; width: 430px; height: 430px; left: -170px; top: 20%; border-radius: 50%; background: var(--orange-soft); filter: blur(70px); opacity: .55; }
.section-heading { max-width: 670px; margin-bottom: 50px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-kicker, .mini-label { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .17em; }
.section-heading h2, .workflow-copy h2, .signal-copy h2, .final-cta h2 { margin: 13px 0 15px; font: 800 clamp(2.15rem, 4.4vw, 4rem)/1.08 Manrope, sans-serif; letter-spacing: -.05em; }
.section-heading p, .workflow-copy > p { margin: 0; color: #696970; font-size: 17px; }
.app-frame { position: relative; border: 1px solid #d9d5d0; border-radius: 21px; background: white; box-shadow: 0 32px 90px rgba(39,28,20,.16); overflow: hidden; }
.app-frame__bar { display: flex; align-items: center; height: 45px; padding: 0 16px; border-bottom: 1px solid #ece9e5; background: #f7f5f2; }
.traffic { display: flex; gap: 5px; }.traffic i { width: 8px; height: 8px; border-radius: 50%; background: #ddd8d2; }.traffic i:first-child { background: #ff8d5c; }.traffic i:nth-child(2) { background: #f7c75c; }.traffic i:nth-child(3) { background: #58be78; }
.address { width: min(330px, 45%); margin: auto; padding: 5px 10px; border: 1px solid #e4e0db; border-radius: 7px; background: white; color: #99949a; text-align: center; font-size: 9px; }
.secure { color: var(--green); font-size: 9px; }
.app-demo { display: grid; grid-template-columns: 190px 1fr; min-height: 510px; background: #f4f3f1; }
.demo-sidebar { padding: 22px 14px; border-right: 1px solid #e2dfdb; background: #1b1b20; color: white; }
.demo-brand { display: flex; align-items: center; gap: 9px; padding: 0 7px 22px; font-family: Manrope, sans-serif; }.demo-brand img { border-radius: 8px; }.demo-brand b { font-size: 14px; }
.demo-nav { display: grid; gap: 5px; }.demo-nav span { display: flex; gap: 10px; padding: 9px 10px; border-radius: 8px; color: #8f8f99; font-size: 11px; }.demo-nav em { font-style: normal; }.demo-nav .active { background: rgba(255,91,20,.14); color: #ff8a56; }
.demo-main { padding: 28px; min-width: 0; }
.demo-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }.demo-head small { color: #99949b; font-size: 9px; }.demo-head h3 { margin: 1px 0 0; font: 800 21px Manrope, sans-serif; }.demo-head button { padding: 9px 13px; border: 0; border-radius: 8px; background: var(--orange); color: white; font-size: 10px; font-weight: 700; }
.kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 24px 0 18px; }.kpi-grid article { position: relative; padding: 17px; border: 1px solid #e1ddd8; border-radius: 12px; background: white; }.kpi-grid small, .kpi-grid strong { display: block; }.kpi-grid small { margin: 10px 0 2px; color: #86828a; font-size: 9px; }.kpi-grid strong { font: 800 24px Manrope, sans-serif; }.kpi-grid em { position: absolute; right: 14px; bottom: 17px; color: var(--green); font-size: 8px; font-style: normal; }
.kpi-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; font-size: 12px; }.kpi-icon.orange { color: var(--orange); background: var(--orange-soft); }.kpi-icon.green { color: var(--green); background: #e9f8ef; }.kpi-icon.blue { color: #3772d7; background: #eaf1ff; }
.orders-card { padding: 18px; border: 1px solid #e1ddd8; border-radius: 12px; background: white; }.orders-title { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 11px; }.orders-title a { color: var(--orange); font-size: 9px; }.order-line { display: grid; grid-template-columns: 38px minmax(120px,1fr) auto 62px; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid #efede9; font-size: 9px; }.order-line b, .order-line small { display: block; }.order-line small { color: #9a969d; }.order-line > strong { text-align: right; font-size: 10px; }.product-thumb { width: 34px; height: 34px; border-radius: 8px; }.thumb-one { background: linear-gradient(145deg,#ffb48f,#ff5b14); }.thumb-two { background: linear-gradient(145deg,#98c6bc,#2e665b); }.status { padding: 4px 7px; border-radius: 999px; white-space: nowrap; }.status--orange { color: #b74714; background: var(--orange-soft); }.status--green { color: #15803d; background: #e9f8ef; }

.features { background: #0b0b0e; }
.features .section-heading p { color: #92929b; }
.feature-showcase-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr); gap: 26px; align-items: start; }
.feature-showcase-card {
  --spot-x: 50%; --spot-y: 0%;
  position: relative; min-height: 650px; padding: 32px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.095); border-radius: 22px;
  background: radial-gradient(320px circle at var(--spot-x) var(--spot-y),rgba(255,91,20,.12),transparent 68%),#101014;
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
  transition: transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.feature-showcase-card:hover { transform: translateY(-5px); border-color: rgba(255,112,48,.38); box-shadow: 0 28px 70px rgba(0,0,0,.32),0 0 45px rgba(255,91,20,.06); }
.feature-showcase-card:first-child { min-height: 690px; border-radius: 34px 12px 34px 12px; }
.feature-showcase-card:nth-child(2) { min-height: 610px; margin-top: 82px; border-radius: 12px 34px 12px 34px; }
.showcase-halo { position: absolute; top: -120px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,91,20,.1); filter: blur(70px); pointer-events: none; }
.showcase-icon { position: relative; display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 23px; border: 1px solid rgba(255,91,20,.28); border-radius: 13px; background: rgba(255,91,20,.11); color: #ff7c42; font: 800 20px "Segoe UI",Arial,sans-serif; box-shadow: inset 0 0 22px rgba(255,91,20,.05); }
.showcase-icon--spark { color: #ffae68; background: rgba(255,139,65,.1); animation: icon-breathe 2.8s ease-in-out infinite; }
.feature-showcase-card h3 { position: relative; max-width: 490px; margin: 0 0 10px; font: 750 24px/1.24 "Segoe UI",Arial,sans-serif; letter-spacing: -.035em; }
.feature-showcase-card > p { position: relative; margin: 0; color: #92929c; font-size: 15px; }
.feature-pills { position: relative; z-index: 8; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 27px; }
.feature-pill-wrap { position: relative; }
.feature-pill { padding: 7px 11px; border: 1px solid rgba(255,112,48,.25); border-radius: 999px; background: rgba(255,255,255,.035); color: #ff986b; font-size: 11px; font-weight: 700; cursor: help; transition: background .2s,border-color .2s,transform .2s,color .2s; }
.feature-pill:hover,.feature-pill:focus-visible { outline: none; transform: translateY(-2px); border-color: rgba(255,112,48,.75); background: rgba(255,91,20,.13); color: #ffc0a2; }
.feature-tooltip { position: absolute; left: 0; top: calc(100% + 9px); z-index: 15; width: 205px; padding: 9px 11px; border: 1px solid rgba(255,112,48,.28); border-radius: 9px; background: #1a191e; color: #cac9d0; box-shadow: 0 15px 32px rgba(0,0,0,.42); font-size: 10px; line-height: 1.45; opacity: 0; transform: translateY(-4px); visibility: hidden; pointer-events: none; transition: opacity .18s,transform .18s,visibility .18s; }
.feature-pill-wrap:hover .feature-tooltip,.feature-pill-wrap:focus-within .feature-tooltip { opacity: 1; transform: none; visibility: visible; }

.data-pipeline { position: absolute; inset: auto 28px 28px; height: 184px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015)); overflow: hidden; }
.data-pipeline::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg,black,transparent 48%,black); pointer-events: none; }
.pipeline-sources { position: absolute; z-index: 3; left: 14px; top: 17px; bottom: 17px; display: flex; flex-direction: column; justify-content: space-between; width: 84px; }
.pipeline-sources span,.pipeline-output { display: flex; align-items: center; gap: 7px; padding: 7px 8px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: #19191e; color: #b6b5bd; font-size: 9px; }
.pipeline-sources i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 5px; background: rgba(255,91,20,.13); color: #ff8350; font-style: normal; font-size: 8px; }
.pipeline-beams { position: absolute; z-index: 1; inset: 27px 30px 27px 45px; width: calc(100% - 75px); height: 130px; overflow: visible; }
.beam-line { fill: none; stroke: rgba(255,112,48,.22); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.beam-dot { fill: var(--orange); filter: drop-shadow(0 0 5px rgba(255,91,20,.95)); }
.beam-dot--green { fill: #40c86c; filter: drop-shadow(0 0 5px rgba(64,200,108,.9)); }
.pipeline-hub { position: absolute; z-index: 4; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%,-50%); }
.pipeline-hub span { position: absolute; inset: -8px; border: 1px solid rgba(255,91,20,.35); border-radius: 50%; animation: hub-ring 2.3s ease-out infinite; }
.pipeline-hub img { position: relative; width: 58px; height: 58px; border: 2px solid rgba(255,151,102,.55); border-radius: 17px; box-shadow: 0 0 28px rgba(255,91,20,.27); animation: hub-pulse 2.3s ease-in-out infinite; }
.pipeline-output { position: absolute; z-index: 3; right: 14px; top: 50%; min-width: 91px; transform: translateY(-50%); border-color: rgba(22,163,74,.25); background: rgba(22,163,74,.08); color: #aeecc1; }
.pipeline-output i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: #1b8d42; color: white; font-style: normal; }

.readiness-panel { position: absolute; inset: auto 28px 28px; height: 184px; padding: 15px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015)); overflow: hidden; }
.readiness-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; color: #686872; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.readiness-score { position: relative; display: flex; align-items: baseline; justify-content: center; width: 45px; height: 45px; padding-top: 10px; border-radius: 50%; background: conic-gradient(var(--orange) 0 92%,#29292f 92%); color: white; }
.readiness-score::before { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #17171c; }
.readiness-score b,.readiness-score small { position: relative; z-index: 1; }.readiness-score b { font-size: 12px; }.readiness-score small { font-size: 7px; }.readiness-score i { position: absolute; inset: -5px; border: 1px solid rgba(255,91,20,.2); border-radius: 50%; animation: score-orbit 3s linear infinite; }
.activity-window { position: absolute; left: 15px; right: 15px; bottom: 12px; height: 104px; overflow: hidden; mask-image: linear-gradient(transparent,black 14%,black 84%,transparent); }
.activity-track { animation: activity-scroll 9s linear infinite; }
.activity-track > div { display: grid; grid-template-columns: 19px 1fr auto; align-items: center; gap: 8px; height: 34px; border-bottom: 1px solid rgba(255,255,255,.055); }
.activity-track b { color: #c9c8cf; font-size: 10px; font-weight: 600; }.activity-track small { color: #ff8752; font-size: 8px; }.activity-check { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: rgba(22,163,74,.13); color: #52d47a; font-size: 9px; }

@keyframes hub-ring { 0% { opacity: .8; transform: scale(.72); } 75%,100% { opacity: 0; transform: scale(1.35); } }
@keyframes hub-pulse { 50% { transform: scale(1.055); box-shadow: 0 0 40px rgba(255,91,20,.38); } }
@keyframes icon-breathe { 50% { transform: rotate(5deg) scale(1.07); box-shadow: 0 0 28px rgba(255,91,20,.11); } }
@keyframes score-orbit { to { transform: rotate(360deg); } }
@keyframes activity-scroll { 0%,12% { transform: translateY(0); } 88%,100% { transform: translateY(-136px); } }

.infrastructure { position: relative; overflow: hidden; background: linear-gradient(180deg,#0b0b0e,#0d0c10 48%,#0b0b0e); }
.infrastructure::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.045) .7px,transparent .7px); background-size: 22px 22px; opacity: .2; mask-image: linear-gradient(transparent,black 20%,black 78%,transparent); pointer-events: none; }
.infrastructure-glow { position: absolute; top: 54%; left: 50%; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle,rgba(255,91,20,.09),rgba(22,163,74,.025) 38%,transparent 70%); filter: blur(36px); transform: translate(-50%,-50%); pointer-events: none; }
.infrastructure-shell { position: relative; z-index: 1; }
.gradient-text { display: block; color: transparent; background: linear-gradient(90deg,#ff6a2a,#ffad75 52%,#50ce79); background-clip: text; -webkit-background-clip: text; }
.infrastructure-network { position: relative; display: flex; align-items: center; justify-content: center; width: min(620px,90vw); aspect-ratio: 1; margin: 58px auto 0; }
.network-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.network-orbit--outer { width: 75%; height: 75%; }
.network-orbit--inner { width: 55%; height: 55%; border-color: rgba(255,91,20,.1); box-shadow: inset 0 0 70px rgba(255,91,20,.015); }
.network-map { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-line { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 190; stroke-dashoffset: 190; }
.network-line--spoke { stroke: url(#bookwy-network-spoke); stroke-width: 1.35; }
.network-line--ring { stroke: url(#bookwy-network-ring); stroke-width: 1.6; stroke-dasharray: 900; stroke-dashoffset: 900; opacity: .56; }
.infrastructure-network.visible .network-line--spoke { animation: network-line-draw .8s ease-out var(--line-delay) forwards; }
.infrastructure-network.visible .network-line--ring { animation: network-ring-draw 1.6s ease-out .18s forwards; }
.network-particle { filter: url(#bookwy-network-glow); }
.network-particle--orange,.network-particle--ring { fill: #ff6b2b; }
.network-particle--green { fill: #45ca70; }
.network-heartbeat { fill: none; stroke: rgba(255,91,20,.3); stroke-width: 1; transform-origin: 200px 200px; animation: network-heartbeat 2.5s ease-out infinite; }
.network-hub { position: absolute; z-index: 5; left: 50%; top: 50%; width: 84px; height: 84px; transform: translate(-50%,-50%); }
.network-hub::before { content: ""; position: absolute; inset: -20px; border-radius: 50%; background: rgba(255,91,20,.16); filter: blur(18px); animation: network-hub-glow 2.6s ease-in-out infinite; }
.network-hub span { position: absolute; inset: -8px; border: 1px solid rgba(255,119,58,.34); border-radius: 50%; animation: hub-ring 2.4s ease-out infinite; }
.network-hub img { position: relative; width: 84px; height: 84px; border: 1px solid rgba(255,133,76,.55); border-radius: 50%; background: #15151a; box-shadow: 0 18px 45px rgba(0,0,0,.38),0 0 34px rgba(255,91,20,.19); }
.network-node { position: absolute; z-index: 7; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(14,14,18,.92); color: #9898a1; box-shadow: 0 9px 28px rgba(0,0,0,.25); backdrop-filter: blur(12px); white-space: nowrap; font-size: 11px; font-weight: 700; cursor: pointer; transform: translate(-50%,-50%); transition: color .28s,border-color .28s,box-shadow .28s,background .28s; }
.network-node i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,91,20,.38); transition: transform .28s,box-shadow .28s; }
.network-node:nth-of-type(even) i { background: #42c96e; }
.network-node:hover,.network-node:focus-visible,.network-node.active { outline: none; color: white; border-color: rgba(255,112,48,.5); background: rgba(26,20,19,.96); box-shadow: 0 12px 35px rgba(0,0,0,.35),0 0 25px rgba(255,91,20,.1); }
.network-node:hover i,.network-node:focus-visible i,.network-node.active i { transform: scale(1.35); box-shadow: 0 0 0 5px rgba(255,91,20,.11),0 0 15px rgba(255,91,20,.68); }
.network-node--capture { top: 12.5%; left: 50%; }
.network-node--listing { top: 31.25%; left: 82.5%; }
.network-node--pricing { top: 68.75%; left: 82.5%; }
.network-node--orders { top: 87.5%; left: 50%; }
.network-node--tracking { top: 68.75%; left: 17.5%; }
.network-node--messages { top: 31.25%; left: 17.5%; }
.infrastructure-caption { max-width: 580px; margin: 18px auto 0; color: #74747d; text-align: center; font-size: 13px; }

@keyframes network-line-draw { to { stroke-dashoffset: 0; } }
@keyframes network-ring-draw { to { stroke-dashoffset: 0; } }
@keyframes network-heartbeat { 0% { opacity: .75; transform: scale(.7); } 80%,100% { opacity: 0; transform: scale(1.8); } }
@keyframes network-hub-glow { 50% { opacity: .55; transform: scale(1.16); } }

.workflow { background: #f4f1ed; color: var(--ink); }
.workflow-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.workflow-copy { position: sticky; top: 125px; align-self: start; }.workflow-copy > p { margin-bottom: 25px; }.text-link { color: var(--orange); font-size: 14px; font-weight: 800; }
.steps { position: relative; display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }.steps::before { content: ""; position: absolute; left: 27px; top: 55px; bottom: 55px; width: 1px; background: linear-gradient(var(--orange),rgba(255,91,20,.14)); }.steps li { position: relative; z-index: 1; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px; border: 1px solid #ded9d3; border-radius: 17px; background: rgba(255,255,255,.72); box-shadow: 0 12px 35px rgba(46,33,23,.055); }.steps li > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: var(--ink); color: white; font: 800 13px Manrope, sans-serif; }.steps li:first-child > span { background: var(--orange); }.steps h3 { margin: 1px 0 5px; font: 700 19px Manrope, sans-serif; }.steps p { margin: 0; color: #737078; font-size: 14px; }

.seller-gains { position: relative; overflow: hidden; background: #0b0b0e; }
.seller-gains::before { content: ""; position: absolute; inset: 8% auto auto 50%; width: 640px; height: 420px; transform: translateX(-50%); border-radius: 50%; background: rgba(255,91,20,.07); filter: blur(110px); pointer-events: none; }
.seller-gains__shell { position: relative; z-index: 1; }
.seller-gains .section-heading { max-width: 760px; }
.seller-gains .section-heading p { color: #92929b; }
.seller-gains__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: min(980px,100%); margin: 0 auto; }
.seller-gain { position: relative; min-width: 0; padding: 24px 58px 58px; text-align: center; }
.seller-gain:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
.seller-gain:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
.seller-gain__visual { display: grid; place-items: center; height: 92px; margin-bottom: 20px; }
.seller-gain__visual svg { width: min(230px,84%); height: 76px; overflow: visible; }
.seller-gain h3 { margin: 0 0 13px; color: #f6f6f8; font: 750 clamp(1.45rem,2.5vw,2.15rem)/1.15 Manrope,sans-serif; letter-spacing: -.04em; }
.seller-gain h3 em { color: #ff7a3f; font-style: normal; }
.seller-gain p { max-width: 360px; margin: 0 auto; color: #777780; font-size: 14px; line-height: 1.7; }
.seller-gains__action { display: flex; justify-content: center; margin-top: 54px; }
.gain-muted,.gain-accent,.gain-check,.gain-icon,.gain-rows path,.gain-checks path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.gain-muted { stroke: rgba(255,255,255,.18); stroke-width: 2; }
.gain-accent { stroke: var(--orange-2); stroke-width: 2.4; }
.gain-dash { stroke-dasharray: 8 7; animation: gain-dash 3.4s linear infinite; }
.gain-dot { fill: var(--orange-2); filter: drop-shadow(0 0 7px rgba(255,91,20,.85)); }
.gain-dot--travel { animation: gain-travel 3.1s ease-in-out infinite; }
.gain-delay-1 { animation-delay: -.16s; }
.gain-costs rect { fill: rgba(255,255,255,.07); stroke: rgba(255,255,255,.2); }
.gain-costs rect:nth-child(2) { fill: rgba(255,91,20,.14); stroke: rgba(255,122,50,.62); }
.gain-pulse { fill: rgba(255,91,20,.8); transform-box: fill-box; transform-origin: center; animation: gain-pulse 2.2s ease-in-out infinite; filter: drop-shadow(0 0 8px rgba(255,91,20,.55)); }
.gain-price { fill: rgba(22,163,74,.11); stroke: rgba(52,211,105,.65); stroke-width: 1.5; }
.gain-check { stroke: #4ade80; stroke-width: 2.5; }
.gain-box { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.2); stroke-width: 1.5; }
.gain-box--accent { fill: rgba(255,91,20,.09); stroke: rgba(255,122,50,.6); }
.gain-icon { stroke: rgba(255,255,255,.48); stroke-width: 2; }
.gain-rows path { stroke: rgba(255,255,255,.3); stroke-width: 4; }
.gain-rows path:nth-child(2) { stroke: rgba(255,122,50,.75); }
.gain-checks circle { fill: rgba(22,163,74,.12); stroke: rgba(74,222,128,.62); }
.gain-checks path { stroke: #4ade80; stroke-width: 1.8; }
@keyframes gain-travel { 0% { transform: translateX(0); opacity: 0; } 12%,88% { opacity: 1; } 100% { transform: translateX(158px); opacity: 0; } }
@keyframes gain-pulse { 50% { transform: scale(1.45); opacity: .45; } }
@keyframes gain-dash { to { stroke-dashoffset: -30; } }

.signal-section { padding-top: 0; background: #f4f1ed; color: white; }
.signal-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 64px; overflow: hidden; border-radius: 28px; background: linear-gradient(120deg,#17171c,#0c0c0f 60%); box-shadow: var(--shadow); }.signal-card::after { content: ""; position: absolute; right: -160px; top: -170px; width: 430px; height: 430px; border-radius: 50%; background: rgba(255,91,20,.2); filter: blur(70px); }.signal-copy { position: relative; z-index: 1; }.signal-copy h2 { font-size: clamp(2rem,3.6vw,3.4rem); }.signal-copy p { color: #9999a2; }.signal-stats { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.signal-stats div { padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.04); }.signal-stats strong, .signal-stats span { display: block; }.signal-stats strong { color: #ff7a3f; font: 800 clamp(16px,2vw,24px)/1.12 Manrope,sans-serif; letter-spacing: -.03em; }.signal-stats span { margin-top: 6px; color: #8f8f98; font-size: 11px; }

.pricing { position: relative; overflow: hidden; background: #0b0b0e; }.pricing::before { content: ""; position: absolute; width: 520px; height: 520px; top: 130px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: rgba(255,91,20,.12); filter: blur(100px); }.pricing-shell { position: relative; }.pricing .section-heading p { color: #92929b; }.price-card { width: min(520px,100%); margin: 0 auto; padding: 32px; border: 1px solid rgba(255,112,48,.4); border-radius: 24px; background: rgba(18,18,22,.92); box-shadow: 0 28px 90px rgba(0,0,0,.5),0 0 60px rgba(255,91,20,.08); }.price-card__top { padding-bottom: 24px; border-bottom: 1px solid var(--line); }.popular { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: rgba(255,91,20,.13); color: #ff8b58; font-size: 9px; font-weight: 800; letter-spacing: .14em; }.price { display: flex; align-items: baseline; gap: 7px; margin: 18px 0 4px; }.price sup { color: #7e7e87; font-size: 10px; font-weight: 800; }.price strong { font: 800 62px/.9 Manrope,sans-serif; letter-spacing: -.07em; }.price small { color: #9a9aa3; }.price-card__top p { margin: 12px 0 0; color: #85858e; font-size: 13px; }.price-card ul { display: grid; gap: 11px; margin: 25px 0; padding: 0; list-style: none; color: #d1d1d7; font-size: 14px; }.price-card li { color: var(--green); }.price-card li span { margin-left: 7px; color: #d1d1d7; }.button--price { width: 100%; padding: 14px 20px; }.price-foot { display: block; margin-top: 17px; color: #75757e; text-align: center; line-height: 1.5; }

.faq { background: var(--paper); color: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }.faq-list { display: grid; gap: 10px; }.faq details { border: 1px solid #dfdad4; border-radius: 14px; background: white; }.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; font-weight: 700; }.faq summary::-webkit-details-marker { display:none; }.faq summary i { color: var(--orange); font: 400 22px Manrope,sans-serif; transition: transform .2s; }.faq details[open] summary i { transform: rotate(45deg); }.faq details p { margin: 0; padding: 0 22px 20px; color: #706d74; font-size: 14px; }

.final-cta { position: relative; overflow: hidden; background: #0b0b0e; }.final-cta::before,.final-cta::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(255,91,20,.1); filter: blur(80px); }.final-cta::before { left: 8%; top: 10%; }.final-cta::after { right: 8%; bottom: -20%; }.final-cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 125px minmax(0,1fr) auto; align-items: center; gap: 34px; text-align: left; }.final-cta__identity { display: grid; justify-items: start; gap: 12px; color: #73737c; font: 800 9px/1.4 Manrope,sans-serif; letter-spacing: .15em; }.final-cta__identity img { margin: 0; border-radius: 18px; box-shadow: 0 14px 40px rgba(255,91,20,.25); }.final-cta__copy { max-width: 700px; }.final-cta h2 { margin: 0 0 12px; }.final-cta p { margin: 0; color: #91919a; font-size: 16px; }.final-cta .button { white-space: nowrap; }
.final-cta__flow { --flow-delay: 0s; position: absolute; z-index: 1; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom,transparent,rgba(255,91,20,.18) 18%,rgba(255,122,50,.3) 50%,rgba(255,91,20,.18) 82%,transparent);
  box-shadow: 0 0 18px rgba(255,91,20,.08); pointer-events: none;
  mask-image: linear-gradient(to bottom,transparent 1%,black 15%,black 85%,transparent 99%);
  -webkit-mask-image: linear-gradient(to bottom,transparent 1%,black 15%,black 85%,transparent 99%); }
.final-cta__flow::before { content: ""; position: absolute; left: 50%; top: -24%; width: 2px; height: 22%;
  transform: translateX(-50%); border-radius: 999px;
  background: linear-gradient(to bottom,transparent,#ff7a32 42%,#ffd2bd 72%,transparent);
  box-shadow: 0 0 9px #ff5b14,0 0 26px rgba(255,91,20,.72);
  animation: final-cta-flow 4.6s cubic-bezier(.45,.02,.55,.98) var(--flow-delay) infinite; }
.final-cta__flow::after { content: ""; position: absolute; left: 50%; top: -3%; width: 6px; height: 6px;
  transform: translate(-50%,-50%); border-radius: 50%; background: #fff2ea;
  box-shadow: 0 0 7px #fff,0 0 16px #ff6b2b,0 0 30px rgba(255,91,20,.9);
  animation: final-cta-particle 4.6s cubic-bezier(.45,.02,.55,.98) var(--flow-delay) infinite; }
.final-cta__flow--left { left: 10%; }
.final-cta__flow--right { right: 10%; --flow-delay: -2.3s; }
@keyframes final-cta-flow { 0% { top:-24%; opacity:0; } 9%,88% { opacity:1; } 100% { top:104%; opacity:0; } }
@keyframes final-cta-particle { 0% { top:-3%; opacity:0; } 9%,88% { opacity:1; } 100% { top:125%; opacity:0; } }

.footer { padding: 60px 0 25px; border-top: 1px solid var(--line); background: #08080a; color: #8c8c95; }.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }.footer .brand { color: white; }.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }.footer-grid > div:first-child p { max-width: 310px; }.footer-grid b { margin-bottom: 7px; color: white; font-size: 13px; }.footer-grid a:not(.brand) { font-size: 13px; }.footer-grid a:not(.brand):hover { color: white; }.footer-grid p { font-size: 13px; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay,0s), transform .7s ease var(--delay,0s); }.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 4px var(--orange); } }
@keyframes float { 50% { transform: translateY(-8px); } }

@media (max-width: 1060px) {
  .nav-links { gap: 19px; }.nav-actions { gap: 12px; }.hero-copy { max-width: 650px; }.hero-visual { margin: 0; }.float-card--top { right: 6%; }.float-card--bottom { right: 12%; }.signal-card { gap: 35px; padding: 48px; }.final-cta__inner { grid-template-columns: 100px minmax(0,1fr); }.final-cta .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }.menu-toggle { display: block; order: 3; }.nav-actions .nav-login { display: none; }.nav-actions { margin-left: auto; }.nav-links { position: fixed; inset: 80px 0 auto; display: grid; gap: 0; margin: 0; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: rgba(9,9,11,.97); backdrop-filter: blur(20px); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }.nav-links.open { transform: none; opacity: 1; pointer-events: auto; }.nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 16px; }.app-demo { grid-template-columns: 70px 1fr; }.demo-brand b,.demo-nav em { display: none; }.demo-brand { justify-content: center; padding-inline: 0; }.demo-nav span { justify-content: center; }.feature-showcase-grid { grid-template-columns: 1fr; }.feature-showcase-card:nth-child(2) { margin-top: 0; }.workflow-grid,.faq-grid { grid-template-columns: 1fr; gap: 45px; }.workflow-copy { position: static; }.seller-gain { padding-inline: 30px; }.signal-card { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }.final-cta__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }.final-cta__identity { justify-items: center; }.final-cta__copy { max-width: 650px; }.final-cta .button { grid-column: auto; justify-self: center; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px),1180px); }.nav { height: 70px; }.nav-links { top: 70px; }.brand { font-size: 18px; }.brand img { width: 36px; height: 36px; }.nav-actions .button { display: none; }.hero { padding-top: 118px; }.hero-grid { grid-template-columns: minmax(0,1fr); min-height: 540px; }.hero-copy { max-width: 100%; }.hero h1 { font-size: clamp(2.5rem,12.4vw,3.15rem); overflow-wrap: normal; }.hero-lead { font-size: 16px; }.hero-actions .button { width: 100%; }.hero-note { gap: 8px 15px; }.hero-visual { width: auto; margin: 0; }.hero-image-wrap { background-position: 60% center; }.float-card { display: none; }.section-heading h2,.workflow-copy h2,.signal-copy h2,.final-cta h2 { font-size: 2.25rem; }.app-frame { margin-inline: -5px; }.app-demo { grid-template-columns: 1fr; min-height: 450px; }.demo-sidebar { display: none; }.demo-main { padding: 16px; }.demo-head h3 { font-size: 16px; }.demo-head button span { display: none; }.kpi-grid { gap: 6px; }.kpi-grid article { padding: 10px; }.kpi-grid strong { font-size: 18px; }.kpi-grid em { display: none; }.orders-card { padding: 12px; }.order-line { grid-template-columns: 34px 1fr auto; }.order-line .status { display: none; }.feature-showcase-card { min-height: 650px; padding: 23px; }.feature-showcase-card h3 { font-size: 21px; }.feature-tooltip { width: 180px; }.data-pipeline,.readiness-panel { left: 14px; right: 14px; bottom: 14px; }.pipeline-sources { left: 9px; width: 73px; }.pipeline-sources b { font-size: 8px; }.pipeline-output { right: 9px; min-width: 78px; padding-inline: 6px; }.pipeline-beams { left: 20px; right: 20px; width: calc(100% - 40px); }.workflow-grid { gap: 35px; }.steps li { grid-template-columns: 45px 1fr; gap: 13px; padding: 18px; }.steps li > span { width: 45px; height: 45px; }.steps::before { left: 40px; }.signal-card { padding: 30px 22px; border-radius: 20px; }.signal-stats { grid-template-columns: 1fr 1fr; }.signal-stats div { padding: 15px; }.signal-stats strong { font-size: 20px; }.price-card { padding: 23px; }.faq-grid { gap: 30px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: span 2; }.footer-bottom { flex-direction: column; }
  .infrastructure-network { width: min(108%,430px); margin-top: 38px; }.network-hub { width: 64px; height: 64px; }.network-hub img { width: 64px; height: 64px; }.network-node { gap: 5px; padding: 6px 8px; font-size: 9px; }.network-node i { width: 5px; height: 5px; }.infrastructure-caption { margin-top: 8px; }
  .seller-gains__grid { grid-template-columns: 1fr; }.seller-gain { padding: 24px 14px 45px; }.seller-gain:nth-child(odd) { border-right: 0; }.seller-gain:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.08); }.seller-gain__visual { margin-bottom: 10px; }.seller-gains__action { margin-top: 40px; }
  .final-cta__flow--left { left: 5%; }.final-cta__flow--right { right: 5%; }.final-cta__flow { opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .beam-dot,.network-particle { display: none; }
  .activity-track { transform: none !important; }
  .network-line { stroke-dashoffset: 0; }
  .network-heartbeat { opacity: .3; transform: none; }
}
