:root {
  color-scheme: light;
  --blue: #2e6bff;
  --blue-strong: #174ed9;
  --blue-text: #174ed9;
  --blue-soft: #eaf0ff;
  --ink: #1c232e;
  --ink-soft: #2b3543;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --line: rgba(28, 35, 46, 0.12);
  --line-strong: rgba(28, 35, 46, 0.22);
  --muted: #637083;
  --muted-light: #5d6c81;
  --shadow: 0 30px 80px rgba(25, 43, 77, 0.14);
  --shadow-soft: 0 16px 45px rgba(25, 43, 77, 0.09);
  --header: rgba(244, 246, 248, 0.82);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1380px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7f9fc;
  --ink-soft: #e2e8f1;
  --blue-text: #86a7ff;
  --paper: #1c232e;
  --surface: #2b3543;
  --surface-raised: #343f4f;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --muted: #a4afbf;
  --muted-light: #94a0b2;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --header: rgba(28, 35, 46, 0.88);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
}
body { overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 1000; padding: 12px 18px; border-radius: 10px; background: var(--blue); color: #fff; transition: top .2s ease; }
.skip-link:focus { top: 20px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; background: var(--header); border-bottom: 1px solid transparent; backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(15, 26, 45, .06); }
.nav-shell { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; display: block; flex: 0 0 186px; width: 186px; height: 54px; overflow: hidden; }
.brand-image { position: absolute; width: 210px; max-width: none; height: 105px; left: -12px; top: 50%; object-fit: contain; transform: translateY(-50%); }
.brand-image--dark { display: none; }
html[data-theme="dark"] .brand-image--light { display: none; }
html[data-theme="dark"] .brand-image--dark { display: block; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.login-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 5px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.login-link span { color: var(--blue-text); }
.login-link:hover { color: var(--blue-text); }
.theme-toggle, .menu-toggle { appearance: none; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; }
.theme-toggle { position: relative; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; }
.theme-icon { position: absolute; width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: opacity .2s ease, transform .2s ease; }
.theme-icon--moon { opacity: 0; transform: rotate(-25deg) scale(.8); }
html[data-theme="dark"] .theme-icon--sun { opacity: 0; transform: rotate(25deg) scale(.8); }
html[data-theme="dark"] .theme-icon--moon { opacity: 1; transform: rotate(0) scale(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; padding: 0; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 23px; border: 1px solid transparent; border-radius: 15px; font-size: 14px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; border-radius: 13px; background: var(--ink); color: var(--paper); font-size: 12px; }
.button--primary { background: var(--blue); color: #fff; box-shadow: 0 14px 32px rgba(46, 107, 255, .25); }
.button--primary:hover { background: var(--blue-strong); box-shadow: 0 18px 40px rgba(46, 107, 255, .32); }
.button--ghost { border-color: var(--line-strong); background: rgba(255, 255, 255, .04); color: var(--ink); }
.button--ghost:hover { border-color: var(--blue); }

.hero { position: relative; min-height: 890px; padding: 168px 0 105px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb--one { right: -140px; top: 120px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(46,107,255,.2), rgba(46,107,255,0) 69%); }
.hero-orb--two { left: 20%; bottom: -300px; width: 580px; height: 580px; background: radial-gradient(circle, rgba(46,107,255,.09), transparent 68%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 42px; }
.hero-copy { padding-bottom: 20px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--blue-text); font-size: 12px; font-weight: 700; letter-spacing: .09em; }
.eyebrow span { width: 27px; height: 2px; background: var(--blue); }
h1, h2, h3 { margin: 0; font-family: "Bricolage Grotesque", "Manrope", sans-serif; line-height: 1; letter-spacing: -.03em; }
h1 { max-width: 760px; font-size: clamp(58px, 5.3vw, 84px); font-weight: 700; line-height: .96; letter-spacing: -.035em; }
.hero-line { white-space: nowrap; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 620px; margin: 34px 0 0; color: var(--muted); font-size: 18px; font-weight: 500; line-height: 1.58; letter-spacing: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.proof-line { display: flex; align-items: flex-start; gap: 13px; max-width: 600px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.proof-line p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.proof-line strong { color: var(--ink); }
.proof-dot { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(46,107,255,.1); }

.hero-visual { position: relative; height: 620px; min-width: 0; }
.avero-symbol { position: absolute; right: -75px; top: -85px; width: 500px; opacity: .11; filter: saturate(.9); }
.panel-preview { position: absolute; z-index: 2; left: 0; top: 58px; width: calc(100% - 8px); margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: #1c232e; box-shadow: 0 36px 90px rgba(8,16,30,.3); transform: rotate(1.2deg); }
.panel-preview__bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; min-height: 42px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.09); color: #f7f9fc; }
.panel-preview__bar > span { display: flex; gap: 5px; }
.panel-preview__bar i { width: 6px; height: 6px; border-radius: 50%; background: #536073; }
.panel-preview__bar i:first-child { background: #2e6bff; }
.panel-preview__bar strong { font-size: 11px; letter-spacing: 0; }
.panel-preview__bar small { color: #a4afbf; font-size: 11px; font-weight: 700; letter-spacing: .07em; }
.panel-preview > img { width: 100%; height: auto; aspect-ratio: 1.6; object-fit: cover; object-position: top; }
.panel-preview figcaption { position: absolute; right: 14px; bottom: 12px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(28,35,46,.82); color: #dce3ed; font-size: 11px; font-weight: 700; backdrop-filter: blur(10px); }
.current-phone { position: absolute; z-index: 4; right: -18px; bottom: 3px; width: 205px; height: 444px; margin: 0; overflow: hidden; border: 7px solid #131a24; border-radius: 32px; background: #131a24; box-shadow: 0 30px 70px rgba(6,12,23,.42); transform: rotate(3.8deg); }
.current-phone::after { content: ""; position: absolute; inset: 0; border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; }
.current-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.current-phone__label { position: absolute; z-index: 2; left: 50%; top: 12px; display: flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: rgba(28,35,46,.86); color: #f7f9fc; font-size: 11px; font-weight: 700; letter-spacing: .06em; white-space: nowrap; transform: translateX(-50%); backdrop-filter: blur(8px); }
.current-phone__label span { width: 5px; height: 5px; border-radius: 50%; background: #2e6bff; }
.demo-company-logo { position: absolute; z-index: 2; left: 10.7%; top: 5.55%; display: grid; place-items: center; width: 29.4%; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 17%; background: radial-gradient(circle at 72% 22%, rgba(100,143,255,.35), transparent 35%), linear-gradient(145deg,#151d2a,#080d15); color: #fff; box-shadow: 0 8px 25px rgba(0,0,0,.35); text-align: center; }
.demo-company-logo b { position: absolute; top: 12%; color: #2e6bff; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(18px,2.4vw,31px); font-weight: 800; line-height: 1; }
.demo-company-logo strong { align-self: end; margin-bottom: 27%; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(7px,.75vw,11px); font-weight: 800; letter-spacing: .09em; }
.demo-company-logo small { position: absolute; bottom: 13%; color: #9eacc0; font-size: clamp(5px,.55vw,8px); font-weight: 800; letter-spacing: .17em; }
.product-proof { position: absolute; z-index: 5; left: -12px; bottom: 22px; display: flex; align-items: center; gap: 12px; width: 230px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(28,35,46,.9); color: #fff; box-shadow: 0 18px 40px rgba(8,16,30,.22); backdrop-filter: blur(16px); }
.product-proof > span { flex: 0 0 auto; width: 26px; height: 26px; border: 7px solid rgba(46,107,255,.22); border-top-color: #2e6bff; border-radius: 50%; }
.product-proof div { display: flex; flex-direction: column; }
.product-proof strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 15px; letter-spacing: -.01em; }
.product-proof small { color: #c2cad5; font-size: 11px; line-height: 1.4; }
.demo-note { position: absolute; z-index: 6; right: 205px; bottom: -4px; margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .01em; }

.platform-section { padding: 138px 0 125px; background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: 62px; }
.section-heading--split { display: grid; grid-template-columns: 1.5fr .7fr; gap: 100px; align-items: end; max-width: none; }
.section-index { display: block; margin-bottom: 19px; color: var(--blue-text); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.section-heading h2 { font-size: clamp(44px, 5.2vw, 72px); font-weight: 600; }
.section-heading > p, .section-heading--split > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading:not(.section-heading--split) > p { margin-top: 22px; max-width: 600px; }
.data-flow { display: grid; grid-template-columns: 1fr 88px 1.8fr 88px 1fr; align-items: stretch; min-height: 280px; }
.flow-origin, .flow-result { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.flow-number { position: absolute; right: 22px; top: 19px; color: var(--muted-light); font-size: 11px; font-weight: 800; }
.flow-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 44px; border-radius: 15px; background: var(--blue); color: #fff; font-size: 22px; }
.flow-origin p, .flow-result p { margin: 0 0 6px; color: var(--blue-text); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.flow-origin strong, .flow-result strong { display: block; max-width: 220px; font-family: "Bricolage Grotesque", sans-serif; font-size: 22px; line-height: 1.2; letter-spacing: -.035em; }
.flow-rail { position: relative; display: flex; align-items: center; }
.flow-rail i { width: 100%; height: 1px; background: var(--line-strong); }
.flow-rail span { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.flow-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.flow-modules article { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); transition: transform .2s ease, border-color .2s ease; }
.flow-modules article:hover { transform: translateY(-4px); border-color: rgba(46,107,255,.45); }
.flow-modules span { position: absolute; right: 20px; top: 19px; color: var(--muted-light); font-size: 11px; font-weight: 800; }
.flow-modules strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; letter-spacing: -.03em; }
.flow-modules small { color: var(--muted); font-size: 12px; }
.flow-result { overflow: hidden; background: var(--ink); color: var(--paper); }
.flow-result p { color: #86a7ff; }
.result-spark { position: absolute; display: flex; align-items: end; gap: 6px; left: 27px; right: 27px; bottom: 25px; height: 54px; }
.result-spark i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, rgba(46,107,255,.3), #6290ff); }
.result-spark i:nth-child(1) { height: 25%; }.result-spark i:nth-child(2) { height: 42%; }.result-spark i:nth-child(3) { height: 34%; }.result-spark i:nth-child(4) { height: 63%; }.result-spark i:nth-child(5) { height: 83%; }.result-spark i:nth-child(6) { height: 72%; }
.login-strip { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin-top: 20px; padding: 23px 27px; border: 1px solid rgba(46,107,255,.22); border-radius: 20px; background: var(--blue-soft); color: #1c232e; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.login-strip:hover { transform: translateY(-2px); border-color: rgba(46,107,255,.5); box-shadow: var(--shadow-soft); }
html[data-theme="dark"] .login-strip { background: rgba(46,107,255,.1); color: var(--ink); }
.login-mark { display: grid; place-items: center; width: 48px; height: 48px; overflow: hidden; border-radius: 14px; background: #1c232e; }
.login-mark img { width: 59px; max-width: none; transform: translateY(5px) scale(1.08); }
.login-strip strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; letter-spacing: -.02em; }
.login-strip p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.login-arrow { color: var(--blue); font-size: 25px; }
.platform-scope { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; margin-top: 22px; padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); }
.platform-scope__heading { align-self: center; }
.platform-scope__heading > span { color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.platform-scope__heading h3 { margin-top: 17px; font-size: clamp(32px, 3.4vw, 48px); font-weight: 700; line-height: 1.03; letter-spacing: -.03em; }
.platform-scope__heading h3 em { color: var(--blue); font-style: normal; }
.platform-scope__heading p { max-width: 490px; margin: 23px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.platform-scope__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.platform-scope__grid article { min-height: 190px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.platform-scope__grid article > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.platform-scope__grid article > div > span { color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.platform-scope__grid article small { padding: 5px 7px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .04em; white-space: nowrap; }
html[data-theme="dark"] .platform-scope__grid article small { background: rgba(46,107,255,.14); }
.platform-scope__grid h4 { margin: 31px 0 0; font-family: "Bricolage Grotesque", sans-serif; font-size: 24px; line-height: 1.05; letter-spacing: -.025em; }
.platform-scope__grid p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.capability-map { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.capability-map article { min-height: 156px; padding: 24px; background: var(--surface); }
.capability-map span { color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .07em; }
.capability-map strong { display: block; margin-top: 24px; font-family: "Bricolage Grotesque",sans-serif; font-size: 22px; letter-spacing: -.025em; }
.capability-map p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.core-section { position: relative; padding: 138px 0; overflow: hidden; background: #1c232e; color: #f7f9fc; }
.core-section::before { content: ""; position: absolute; left: -190px; bottom: -260px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(46,107,255,.18), transparent 68%); pointer-events: none; }
.core-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 7vw, 110px); }
.core-copy h2 { max-width: 690px; font-size: clamp(54px, 6vw, 86px); font-weight: 600; line-height: .96; letter-spacing: -.045em; }
.core-copy h2 em { color: #86a7ff; }
.core-copy > p { max-width: 690px; margin: 30px 0 0; color: #b1bdcc; font-size: 17px; line-height: 1.75; }
.core-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; margin-top: 47px; border-bottom: 1px solid rgba(255,255,255,.12); }
.core-principles article { display: grid; grid-template-columns: 31px 1fr; gap: 12px; min-height: 142px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.12); }
.core-principles article > span { color: #86a7ff; font-size: 12px; font-weight: 800; }
.core-principles strong { display: block; color: #f7f9fc; font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; letter-spacing: -.025em; }
.core-principles p { margin: 6px 0 0; color: #aab5c5; font-size: 14px; line-height: 1.6; }
.core-orbit { position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 48px; background: radial-gradient(circle at 50% 48%, rgba(46,107,255,.24), transparent 31%), linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 42px 100px rgba(0,0,0,.22); isolation: isolate; }
.core-orbit__grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(circle at center, #000 18%, transparent 75%); }
.core-orbit__ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(134,167,255,.26); border-radius: 50%; transform: translate(-50%, -50%); }
.core-orbit__ring--one { width: 350px; height: 350px; box-shadow: 0 0 70px rgba(46,107,255,.1); }
.core-orbit__ring--two { width: 535px; height: 535px; border-color: rgba(255,255,255,.11); }
.core-orbit__ring::before, .core-orbit__ring::after { content: ""; position: absolute; width: 9px; height: 9px; border: 2px solid #1c232e; border-radius: 50%; background: #7299ff; box-shadow: 0 0 18px rgba(114,153,255,.8); }
.core-orbit__ring--one::before { left: 23px; top: 70px; }
.core-orbit__ring--one::after { right: 21px; bottom: 72px; }
.core-orbit__ring--two::before { right: 77px; top: 39px; }
.core-orbit__ring--two::after { left: 64px; bottom: 53px; }
.core-orbit__center { position: absolute; z-index: 3; left: 50%; top: 50%; display: grid; place-items: center; width: 176px; height: 176px; padding: 23px; border: 1px solid rgba(134,167,255,.35); border-radius: 38px; background: rgba(15,22,33,.88); box-shadow: 0 28px 70px rgba(0,0,0,.34), 0 0 60px rgba(46,107,255,.22); transform: translate(-50%, -50%) rotate(-2deg); backdrop-filter: blur(14px); }
.core-orbit__center img { position: absolute; width: 128px; opacity: .34; filter: saturate(1.2); }
.core-orbit__center strong { position: relative; align-self: end; color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-size: 22px; letter-spacing: -.035em; }
.core-orbit__center span { position: relative; align-self: start; color: #9db6ff; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.core-node { position: absolute; z-index: 4; display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(13,20,30,.78); color: #dce4ef; font-size: 12px; font-weight: 800; box-shadow: 0 13px 32px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.core-node::before { content: ""; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #2e6bff; box-shadow: 0 0 13px rgba(46,107,255,.9); }
.core-node--sale { left: 39%; top: 7%; }
.core-node--stock { right: 4%; top: 29%; }
.core-node--finance { right: 7%; bottom: 18%; }
.core-node--docs { left: 37%; bottom: 6%; }
.core-node--team { left: 4%; bottom: 20%; }
.core-node--field { left: 4%; top: 27%; }

.ready-section { padding: 138px 0; }
.ready-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.product-card { position: relative; min-height: 630px; display: flex; flex-direction: column; padding: 33px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-soft); }
.product-card::before { content: ""; position: absolute; width: 360px; height: 360px; right: -180px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(46,107,255,.18), transparent 70%); }
.product-card__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; color: var(--blue-text); background: var(--blue-soft); font-size: 12px; font-weight: 800; letter-spacing: .07em; }
html[data-theme="dark"] .status { background: rgba(46,107,255,.13); color: var(--blue-text); }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(46,107,255,.1); }
.product-code { color: var(--muted-light); font-size: 11px; font-weight: 800; }
.product-card__content { position: relative; z-index: 1; margin-top: 68px; }
.product-name { margin: 0 0 24px; color: var(--muted); font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; letter-spacing: -.035em; }
.product-name strong { color: var(--blue); }
.product-card h3 { max-width: 510px; font-size: clamp(38px, 4vw, 56px); font-weight: 600; line-height: 1.04; letter-spacing: -.025em; }
.product-card__content > p:not(.product-name) { max-width: 540px; margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 31px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 13px 14px 13px 35px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink-soft); font-size: 14px; font-weight: 700; }
.feature-list li::before { content: ""; position: absolute; left: 14px; top: 50%; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; transform: translateY(-50%); }
.text-link { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 26px; border-top: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 800; }
.text-link span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: var(--blue); color: #fff; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 31px; }
.mini-stats div { padding: 15px; border: 1px solid var(--line); border-radius: 14px; }
.mini-stats strong { display: block; color: var(--blue); font-family: "Bricolage Grotesque", sans-serif; font-size: 30px; line-height: 1; }
.mini-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.extensions-strip { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; margin-top: 20px; padding: 27px 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: #1c232e; color: #f4f6f8; }
.extensions-strip > div { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 14px; }
.extensions-strip > div:first-child { display: block; }
.extensions-label { display: block; margin-bottom: 8px; color: #9db6ff; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.extensions-strip strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; letter-spacing: -.025em; }
.extension-state { display: inline-block; margin-left: 8px; padding: 4px 7px; border-radius: 999px; background: rgba(46,107,255,.2); color: #b2c5ff; font-family: "Manrope", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .05em; vertical-align: middle; }
.extension-state--future { background: rgba(255,255,255,.08); color: #9ca8ba; }
.extensions-strip p { grid-column: 2; margin: 0; color: #c2cad5; font-size: 14px; line-height: 1.55; }
.extensions-strip > div:first-child p { margin-top: 2px; }
.extensions-divider { grid-row: 1 / 3; width: 1px; height: 48px; background: rgba(255,255,255,.14); }
.extensions-strip > a { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--blue); color: #fff; font-size: 22px; }
.gastro-detail { padding: 138px 0; overflow: hidden; background: #1c232e; color: #f7f9fc; }
.section-index--on-dark { color: #86a7ff; }
.gastro-intro { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 90px; }
.gastro-intro h2, .implementation-heading h2 { font-size: clamp(52px, 6vw, 84px); font-weight: 600; }
.gastro-intro__copy > p { margin: 0 0 29px; color: #aab5c5; font-size: 16px; line-height: 1.7; }
.button--light { background: #f7f9fc; color: #1c232e; }
.button--light:hover { background: #dfe7f3; }
.gastro-stage { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; min-height: 680px; margin-top: 88px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 40px; background: radial-gradient(circle at 88% 18%, rgba(46,107,255,.24), transparent 32%), #2b3543; }
.gastro-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, transparent, #000 42%); }
.gastro-stage__copy { position: relative; z-index: 5; align-self: center; padding: 56px; }
.stage-kicker, .integration-kicker { color: #86a7ff; font-size: 12px; font-weight: 700; letter-spacing: .09em; }
.gastro-stage__copy h3 { max-width: 440px; margin-top: 17px; font-size: 46px; font-weight: 600; line-height: 1.04; letter-spacing: -.025em; }
.gastro-stage__copy > p { margin: 24px 0 0; color: #b5becb; font-size: 14px; line-height: 1.7; }
.stage-points { display: grid; gap: 13px; margin-top: 34px; }
.stage-points > div { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.1); }
.stage-points > div > span { color: #86a7ff; font-size: 11px; font-weight: 700; }
.stage-points p { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 0; }
.stage-points strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 16px; letter-spacing: -.01em; }
.stage-points small { color: #b5becb; font-size: 13px; }
.data-disclaimer { display: block; margin-top: 28px; color: #aeb8c6; font-size: 13px; line-height: 1.55; letter-spacing: .01em; }
.panel-gallery { position: relative; z-index: 3; align-self: center; min-width: 0; padding: 42px 42px 42px 0; }
.panel-gallery__tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.panel-gallery__tabs button { min-height: 40px; padding: 0 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; background: rgba(28,35,46,.55); color: #b5becb; font-size: 12px; font-weight: 700; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.panel-gallery__tabs button:hover { color: #fff; border-color: rgba(134,167,255,.5); transform: translateY(-1px); }
.panel-gallery__tabs button[aria-selected="true"] { border-color: #2e6bff; background: #2e6bff; color: #fff; }
.panel-gallery__screen { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: #1c232e; box-shadow: 0 28px 70px rgba(7,13,24,.34); }
.panel-gallery__screen img { width: 100%; height: auto; aspect-ratio: 1.6; object-fit: cover; object-position: top; transition: opacity .16s ease, transform .28s ease; }
.panel-gallery__screen.is-changing img { opacity: .25; transform: scale(.992); }
.panel-gallery__screen figcaption { padding: 13px 16px; border-top: 1px solid rgba(255,255,255,.08); color: #c6cfda; font-size: 13px; font-weight: 700; }
.gastro-mobile-proof { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 610px; margin-top: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 36px; background: #f4f6f8; color: #1c232e; }
.gastro-mobile-proof::before { content: ""; position: absolute; right: -90px; bottom: -190px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(46,107,255,.2), transparent 67%); }
.gastro-mobile-proof__copy { position: relative; z-index: 2; align-self: center; padding: 58px; }
.gastro-mobile-proof__copy .stage-kicker { color: #174ed9; }
.gastro-mobile-proof__copy h3 { max-width: 500px; margin-top: 18px; font-size: clamp(40px, 4.2vw, 60px); font-weight: 700; line-height: 1.02; letter-spacing: -.035em; }
.gastro-mobile-proof__copy p { max-width: 530px; margin: 25px 0 0; color: #536073; font-size: 15px; line-height: 1.72; }
.gastro-mobile-proof__copy small { display: block; margin-top: 27px; color: #637083; font-size: 13px; line-height: 1.55; }
.gastro-mobile-proof__devices { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 58px); min-width: 0; padding: 38px 48px 34px 20px; }
.gastro-mobile-proof__devices figure { width: min(42%, 235px); margin: 0; }
.gastro-mobile-proof__devices figure:nth-child(2) { transform: translateY(28px); }
.product-phone { position: relative; width: 100%; aspect-ratio: 960 / 2079; overflow: hidden; border: 7px solid #1c232e; border-radius: 34px; background: #1c232e; box-shadow: 0 28px 60px rgba(18,31,54,.25); }
.product-phone::after { content: ""; position: absolute; inset: 0; border-radius: 26px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); pointer-events: none; }
.product-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gastro-mobile-proof figcaption { display: grid; gap: 2px; margin-top: 14px; }
.gastro-mobile-proof figcaption strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; letter-spacing: -.02em; }
.gastro-mobile-proof figcaption span { color: #637083; font-size: 13px; line-height: 1.45; }
.integration-panel { margin-top: 24px; padding: 42px; border: 1px solid rgba(255,255,255,.11); border-radius: 30px; background: #2b3543; }
.integration-heading { display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: end; gap: 42px; }
.integration-heading .integration-kicker { align-self: start; }
.integration-heading h3 { font-size: 30px; line-height: 1.05; font-weight: 600; }
.integration-heading p { margin: 0; color: #aab5c5; font-size: 13px; line-height: 1.7; }
.integration-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 42px; }
.integration-node { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: #1c232e; }
.integration-node > span { position: absolute; right: 15px; top: 13px; color: #a4afbf; font-size: 11px; }
.integration-node strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; }
.integration-node small { color: #a4afbf; font-size: 13px; }
.integration-node--result { border-color: rgba(46,107,255,.5); background: rgba(46,107,255,.12); }
.integration-flow > i { color: #94a0b2; font-style: normal; }
.business-model-note { display: grid; grid-template-columns: .48fr 1.52fr; gap: 28px; margin-top: 18px; padding: 19px 22px; border: 1px solid rgba(46,107,255,.34); border-radius: 16px; background: rgba(46,107,255,.08); }
.business-model-note > span { color: #9db6ff; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.business-model-note p { margin: 0; color: #b5becb; font-size: 14px; line-height: 1.65; }
.business-model-note strong { color: #f7f9fc; }

.live-case { position: relative; padding: 150px 0 126px; overflow: hidden; }
.live-case::before { content: ""; position: absolute; right: -230px; top: 130px; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(46,107,255,.15), transparent 68%); }
.live-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; }
.live-media { position: relative; height: 720px; }
.live-video-shell { position: absolute; left: 0; top: 0; width: 470px; height: 680px; overflow: hidden; border-radius: 38px; background: #1c232e; box-shadow: var(--shadow); }
.live-video-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,11,19,.72), transparent 44%); pointer-events: none; }
.live-video-shell video { width: 100%; height: 100%; object-fit: cover; }
.live-video-label { position: absolute; z-index: 2; left: 24px; bottom: 23px; display: flex; align-items: center; gap: 8px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.live-video-label span { width: 6px; height: 6px; border-radius: 50%; background: #2e6bff; box-shadow: 0 0 0 5px rgba(46,107,255,.2); }
.live-phone { position: absolute; z-index: 4; right: -22px; bottom: 0; width: 250px; height: 571px; overflow: hidden; border: 7px solid #101620; border-radius: 34px; background: #080d13; box-shadow: 0 32px 65px rgba(9,17,30,.34); transform: rotate(5deg); }
.live-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.live-copy { position: relative; z-index: 2; }
.live-copy .product-name { margin-bottom: 21px; }
.live-copy h2 { font-size: clamp(50px, 5.7vw, 78px); font-weight: 600; }
.live-lead { max-width: 600px; margin: 29px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.case-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.case-facts div { padding: 23px; background: var(--surface); }
.case-facts strong { display: block; color: var(--blue); font-family: "Bricolage Grotesque", sans-serif; font-size: 42px; line-height: 1; }
.case-facts span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.case-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.case-source-note { max-width: 610px; margin: 17px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.live-case-cta { margin-top: 24px; }
.live-process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 92px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.live-process article { position: relative; min-height: 210px; padding: 31px 30px; border-right: 1px solid var(--line); }
.live-process article:last-child { border-right: 0; }
.live-process article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.live-process strong { display: block; margin-top: 50px; font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; letter-spacing: -.03em; }
.live-process p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.roadmap-section { padding: 138px 0; background: var(--surface); }
.roadmap-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.roadmap-summary > div { display: flex; align-items: flex-start; gap: 13px; padding: 18px 21px; border: 1px solid var(--line); border-radius: 16px; }
.roadmap-summary > div > span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; }
.roadmap-summary__ready > span { background: var(--blue); box-shadow: 0 0 0 5px rgba(46,107,255,.11); }
.roadmap-summary__future > span { border: 2px solid var(--muted-light); }
.roadmap-summary p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.roadmap-summary strong { color: var(--ink); }
.building-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.building-card { min-height: 440px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.building-card > div { display: flex; justify-content: space-between; align-items: center; }
.status--building { color: var(--ink-soft); background: transparent; border: 1px solid var(--line-strong); }
.status--planned { color: var(--muted); background: transparent; border: 1px dashed var(--line-strong); }
.building-card > div > small { color: var(--muted-light); font-size: 11px; }
.building-card .product-name { margin-top: 50px; }
.building-art { position: relative; height: 68px; margin: 18px 0 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(145deg,rgba(46,107,255,.07),transparent); }
.building-art::before { content: ""; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(46,107,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(46,107,255,.09) 1px,transparent 1px); background-size: 17px 17px; }
.building-art i { position: absolute; display: block; transition: transform .35s ease; }
.building-card:hover .building-art i:nth-child(odd) { transform: translateX(4px); }
.building-card:hover .building-art i:nth-child(even) { transform: translateX(-4px); }
.building-art--team i { top: 15px; width: 15%; height: 38px; border: 1px solid rgba(46,107,255,.52); border-radius: 7px; background: var(--surface); }
.building-art--team i:nth-child(1) { left: 8%; }
.building-art--team i:nth-child(2) { left: 31%; height: 26px; top: 27px; }
.building-art--team i:nth-child(3) { left: 54%; }
.building-art--team i:nth-child(4) { right: 8%; height: 31px; top: 22px; }
.building-art--docs i { top: 13px; width: 24%; height: 42px; border: 1px solid rgba(46,107,255,.48); border-radius: 6px; background: var(--surface); }
.building-art--docs i::after { content: ""; position: absolute; left: 20%; right: 20%; top: 13px; height: 1px; background: rgba(46,107,255,.38); box-shadow: 0 8px 0 rgba(46,107,255,.25),0 16px 0 rgba(46,107,255,.18); }
.building-art--docs i:nth-child(1) { left: 8%; }
.building-art--docs i:nth-child(2) { left: 29%; }
.building-art--docs i:nth-child(3) { left: 50%; }
.building-art--docs i:nth-child(4) { right: 8%; background: rgba(46,107,255,.12); }
.building-art--ar i { width: 34px; height: 34px; border: 1px solid rgba(46,107,255,.5); transform: rotate(45deg); }
.building-art--ar i:nth-child(1) { left: 14%; top: 17px; }
.building-art--ar i:nth-child(2) { left: 37%; top: 7px; width: 52px; height: 52px; }
.building-art--ar i:nth-child(3) { right: 28%; top: 20px; width: 27px; height: 27px; }
.building-art--ar i:nth-child(4) { right: 9%; top: 12px; width: 44px; height: 44px; background: rgba(46,107,255,.1); }
.building-card h3 { font-size: 32px; line-height: 1.08; font-weight: 700; }
.building-card > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.planned-panel { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; margin-top: 14px; padding: 33px; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }
.planned-panel h3 { margin-top: 17px; font-size: 27px; font-weight: 700; }
.planned-panel p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.planned-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.planned-list span { padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }
.planned-list b { display: block; margin-bottom: 2px; color: var(--blue-text); font-size: 10px; letter-spacing: .07em; }
.future-catalog { margin-top: 16px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.future-catalog__head { display: grid; grid-template-columns: .75fr 1fr; column-gap: 42px; align-items: end; }
.future-catalog__head .status { grid-column: 1 / -1; justify-self: start; }
.future-catalog__head h3 { margin: 18px 0 0; font-size: clamp(30px,3vw,44px); font-weight: 700; }
.future-catalog__head p { margin: 18px 0 4px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.future-products-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 28px; }
.future-products-grid article { position: relative; min-height: 265px; overflow: hidden; padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease; }
.future-products-grid article:hover { transform: translateY(-5px); border-color: rgba(46,107,255,.42); box-shadow: 0 24px 60px rgba(28,35,46,.1); }
.future-products-grid .concept-card--featured { grid-column: span 2; min-height: 330px; background: linear-gradient(145deg,var(--surface),rgba(46,107,255,.055)); }
.future-products-grid article > span { color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .07em; }
.future-products-grid h4 { margin: 20px 0 0; font-family: "Bricolage Grotesque",sans-serif; font-size: 23px; letter-spacing: -.025em; }
.future-products-grid .concept-card--featured h4 { font-size: clamp(28px,3vw,42px); }
.future-products-grid p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.future-products-grid article > small { display: block; margin-top: 18px; color: var(--muted-light); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.concept-art { position: relative; height: 76px; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: linear-gradient(140deg,rgba(46,107,255,.08),rgba(46,107,255,.015)); }
.concept-card--featured .concept-art { height: 105px; }
.concept-art::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(46,107,255,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(46,107,255,.11) 1px,transparent 1px); background-size: 18px 18px; }
.concept-art i { position: absolute; display: block; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.concept-card:hover .concept-art i:nth-child(1) { transform: translateX(5px); }
.concept-card:hover .concept-art i:nth-child(2) { transform: translateY(-4px); }
.concept-card:hover .concept-art i:nth-child(3) { transform: translate(4px,3px); }
.concept-card--hair .concept-art i { left: 13%; width: 74%; height: 35px; border-top: 2px solid #2e6bff; border-radius: 50%; }
.concept-card--hair .concept-art i:nth-child(1) { top: 20%; transform: rotate(4deg); }
.concept-card--hair .concept-art i:nth-child(2) { top: 43%; left: 18%; width: 66%; border-color: rgba(46,107,255,.65); transform: rotate(-5deg); }
.concept-card--hair .concept-art i:nth-child(3) { top: 66%; left: 23%; width: 58%; border-color: rgba(46,107,255,.35); transform: rotate(6deg); }
.concept-card--beauty .concept-art i { top: 18%; width: 66px; height: 66px; border: 1px solid rgba(46,107,255,.75); border-radius: 50%; background: rgba(46,107,255,.06); }
.concept-card--beauty .concept-art i:nth-child(1) { left: 23%; }
.concept-card--beauty .concept-art i:nth-child(2) { left: calc(50% - 33px); border-color: rgba(46,107,255,.45); }
.concept-card--beauty .concept-art i:nth-child(3) { right: 23%; border-color: rgba(46,107,255,.25); }
.concept-card--parking .concept-art i { top: 20%; width: 22%; height: 60%; border: 1px solid rgba(46,107,255,.55); border-radius: 6px; }
.concept-card--parking .concept-art i:nth-child(1) { left: 10%; }
.concept-card--parking .concept-art i:nth-child(2) { left: 39%; background: rgba(46,107,255,.15); }
.concept-card--parking .concept-art i:nth-child(3) { right: 10%; }
.concept-card--go .concept-art::after,.concept-card--eats .concept-art::after,.concept-card--flota .concept-art::after { content: ""; position: absolute; left: 14%; top: 50%; width: 72%; border-top: 2px dashed rgba(46,107,255,.48); transform: rotate(-7deg); }
.concept-card--go .concept-art i,.concept-card--eats .concept-art i,.concept-card--flota .concept-art i { z-index: 2; width: 13px; height: 13px; border: 3px solid var(--surface); border-radius: 50%; background: #2e6bff; box-shadow: 0 0 0 1px rgba(46,107,255,.3); }
.concept-card--go .concept-art i:nth-child(1),.concept-card--eats .concept-art i:nth-child(1),.concept-card--flota .concept-art i:nth-child(1) { left: 13%; top: 52%; }
.concept-card--go .concept-art i:nth-child(2),.concept-card--eats .concept-art i:nth-child(2),.concept-card--flota .concept-art i:nth-child(2) { left: 48%; top: 34%; }
.concept-card--go .concept-art i:nth-child(3),.concept-card--eats .concept-art i:nth-child(3),.concept-card--flota .concept-art i:nth-child(3) { right: 12%; top: 43%; }
.concept-card--budowa .concept-art i { width: 32%; height: 48%; border: 1px solid rgba(46,107,255,.55); background: rgba(46,107,255,.04); }
.concept-card--budowa .concept-art i:nth-child(1) { left: 12%; top: 30%; }
.concept-card--budowa .concept-art i:nth-child(2) { left: 34%; top: 17%; }
.concept-card--budowa .concept-art i:nth-child(3) { right: 12%; top: 35%; }
.concept-card--planer .concept-art i { left: 12%; right: 12%; height: 9px; border-radius: 999px; background: rgba(46,107,255,.18); }
.concept-card--planer .concept-art i::after { content: ""; display: block; width: 42%; height: 100%; border-radius: inherit; background: #2e6bff; }
.concept-card--planer .concept-art i:nth-child(1) { top: 22%; }
.concept-card--planer .concept-art i:nth-child(2) { top: 46%; }
.concept-card--planer .concept-art i:nth-child(2)::after { width: 72%; }
.concept-card--planer .concept-art i:nth-child(3) { top: 70%; }
.concept-card--planer .concept-art i:nth-child(3)::after { width: 26%; }
.not-ready-note { display: grid; grid-template-columns: 145px 1fr; align-items: center; gap: 22px; margin-top: 12px; padding: 19px 21px; border: 1px dashed var(--line-strong); border-radius: 16px; }
.not-ready-note > span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.not-ready-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.not-ready-note strong { color: var(--ink); }

.implementation-section { padding: 138px 0; background: #1c232e; color: #f7f9fc; }
.implementation-heading { display: grid; grid-template-columns: 1fr .48fr; column-gap: 100px; align-items: end; }
.implementation-heading .section-index { grid-column: 1 / -1; }
.implementation-heading > p { margin: 0; color: #9aa7b9; font-size: 14px; line-height: 1.8; }
.implementation-steps { margin-top: 78px; border-top: 1px solid rgba(255,255,255,.12); }
.implementation-steps article { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.implementation-steps article > span { color: #769bff; font-size: 11px; font-weight: 800; }
.implementation-steps article > div { display: grid; grid-template-columns: .75fr 1fr; align-items: start; gap: 60px; }
.implementation-steps strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 27px; letter-spacing: -.035em; }
.implementation-steps p { margin: 0; color: #aab5c5; font-size: 14px; line-height: 1.75; }
.offer-note { display: grid; grid-template-columns: .55fr 1.1fr auto; align-items: center; gap: 44px; margin-top: 55px; padding: 26px 28px; border: 1px solid rgba(46,107,255,.45); border-radius: 23px; background: rgba(46,107,255,.1); }
.offer-note > span { color: #9db6ff; font-size: 11px; font-weight: 800; letter-spacing: .09em; }
.offer-note p { margin: 0; color: #b9c3d0; font-size: 14px; line-height: 1.65; }
.offer-note p strong { display: block; color: #f7f9fc; font-family: "Bricolage Grotesque", sans-serif; font-size: 16px; }

.faq-section { padding: 138px 0; }
.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; align-items: start; gap: 110px; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading h2 { font-size: clamp(52px, 5.5vw, 76px); font-weight: 700; }
.faq-heading > p { max-width: 340px; margin: 23px 0 0; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 29px 0; cursor: pointer; list-style: none; font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue); font-family: "Manrope", sans-serif; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -7px 60px 29px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact-section { padding: 138px 0; border-top: 1px solid var(--line); background: var(--surface); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 90px; }
.contact-copy h2 { font-size: clamp(50px, 5.4vw, 74px); font-weight: 700; }
.contact-copy > p { margin: 27px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-mail { display: grid; grid-template-columns: 1fr auto; align-items: center; margin-top: 38px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-mail > span { grid-column: 1; color: var(--blue-text); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.contact-mail strong { grid-column: 1; font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; letter-spacing: -.025em; }
.contact-mail i { grid-column: 2; grid-row: 1 / 3; color: var(--blue); font-style: normal; font-size: 23px; }
.contact-promise { display: flex; gap: 13px; margin-top: 29px; }
.contact-promise > span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(46,107,255,.1); }
.contact-promise p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.contact-promise strong { color: var(--ink); }
.form-card { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--paper); box-shadow: var(--shadow-soft); }
.form-card__top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.form-card__top > div { display: flex; flex-direction: column; }
.form-card__top span { color: var(--blue-text); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.form-card__top strong { margin-top: 5px; font-family: "Bricolage Grotesque", sans-serif; font-size: 23px; letter-spacing: -.03em; }
.form-card__top > small { color: var(--muted-light); font-size: 10px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 15px; margin-top: 29px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field > span { color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.field > span b { color: var(--blue); }
.field input, .field select { width: 100%; height: 52px; padding: 0 15px; border: 1px solid var(--line-strong); border-radius: 12px; outline: none; background: var(--surface); color: var(--ink); font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.field input::placeholder { color: var(--muted-light); }
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46,107,255,.1); }
.field > small { color: var(--muted-light); font-size: 10px; }
.form-error { min-height: 22px; margin-top: 12px; color: #d64646; font-size: 11px; font-weight: 700; }
.form-action { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; margin-top: 6px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-action p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.form-action p a { color: var(--blue-text); text-decoration: underline; text-underline-offset: 3px; }
.form-action .button { border: 0; cursor: pointer; }
.form-action .button:disabled { opacity: .55; cursor: wait; }
.preview-form-note { margin: 15px 0 0; color: var(--muted-light); font-size: 10px; text-align: right; }
.form-success { min-height: 330px; place-content: center; text-align: center; }
.form-success:not([hidden]) { display: grid; }
.form-success > span { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 18px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 20px; }
.form-success b { font-family: "Bricolage Grotesque", sans-serif; font-size: 27px; letter-spacing: -.035em; }
.form-success p { max-width: 480px; margin: 10px auto 0; color: var(--muted); font-size: 12px; }
.form-success small { margin-top: 12px; color: var(--blue-text); font-weight: 800; }

.site-footer { padding: 70px 0 28px; background: #1c232e; color: #f7f9fc; }
.footer-main { display: grid; grid-template-columns: 1fr 1.35fr; gap: 110px; padding-bottom: 65px; }
.brand--footer { width: 190px; margin-left: -4px; }
.brand--footer .brand-image--light { display: none; }
.brand--footer .brand-image--dark { display: block; }
.footer-brand p { margin: 17px 0 0; color: #b5becb; font-size: 14px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-nav > div { display: flex; flex-direction: column; gap: 10px; }
.footer-nav span { margin-bottom: 8px; color: #aab5c5; font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.footer-nav a { color: #d2d8e1; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-legal p { margin: 0; color: #aeb8c6; font-size: 12px; }

:focus-visible { outline: 3px solid rgba(46,107,255,.52); outline-offset: 3px; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; z-index: 99; inset: 84px 0 0; display: grid; align-content: start; width: 100%; height: calc(100vh - 84px); height: calc(100dvh - 84px); overflow-y: auto; padding: 0 32px; background: var(--paper); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: padding .3s ease, opacity .2s ease, transform .3s ease, visibility 0s linear .3s; }
  .mobile-nav.is-open { padding-top: 20px; padding-bottom: 30px; opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .mobile-nav a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: "Bricolage Grotesque", sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.03em; }
  .mobile-nav a span { align-self: center; color: var(--blue-text); font-family: "Manrope", sans-serif; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
  .hero { min-height: auto; padding-bottom: 80px; }
  .hero-layout { grid-template-columns: 1fr; gap: 22px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead, .proof-line { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(100%, 700px); margin: 6px auto 0; }
  h1 { font-size: clamp(58px, 8vw, 80px); }
  .section-heading--split { gap: 45px; }
  .data-flow { grid-template-columns: 1fr 55px 1.8fr 55px 1fr; }
  .platform-scope { grid-template-columns: 1fr; }
  .core-layout { grid-template-columns: 1fr; }
  .core-copy { max-width: 850px; }
  .core-orbit { width: min(100%, 760px); margin-inline: auto; }
  .future-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .future-products-grid .concept-card--featured { grid-column: span 1; }
  .current-phone { right: -8px; width: 182px; height: 394px; }
  .product-proof { left: 0; }
  .integration-heading { grid-template-columns: .7fr 1.1fr 1.2fr; }
  .live-layout { gap: 50px; }
  .live-video-shell { width: 410px; }
  .contact-layout { gap: 50px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .nav-shell { height: 74px; }
  .brand { flex-basis: 158px; width: 158px; }
  .brand-image { width: 180px; height: 90px; }
  .nav-actions .button--small { display: none; }
  .login-link { display: none; }
  .mobile-nav { top: 74px; height: calc(100vh - 74px); height: calc(100dvh - 74px); }
  .hero { min-height: auto; padding: 135px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead, .proof-line { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(100%, 650px); margin: 10px auto 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading--split > p { max-width: 600px; }
  .data-flow { grid-template-columns: 1fr; gap: 10px; }
  .flow-rail { display: none; }
  .flow-origin, .flow-result { min-height: 220px; }
  .flow-modules { min-height: 220px; }
  .platform-scope { gap: 32px; padding: 34px; }
  .capability-map { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .core-section { padding: 110px 0; }
  .core-orbit { min-height: 590px; border-radius: 38px; }
  .ready-grid { grid-template-columns: 1fr; }
  .gastro-intro { grid-template-columns: 1fr; gap: 28px; }
  .gastro-intro__copy { max-width: 650px; }
  .gastro-stage { grid-template-columns: 1fr; }
  .gastro-stage__copy { padding: 48px 48px 18px; }
  .panel-gallery { padding: 24px 48px 48px; }
  .gastro-mobile-proof { grid-template-columns: 1fr; }
  .gastro-mobile-proof__copy { padding-bottom: 18px; }
  .gastro-mobile-proof__devices { padding: 16px 48px 52px; }
  .integration-heading { grid-template-columns: 1fr; gap: 17px; }
  .integration-flow { grid-template-columns: 1fr 1fr; }
  .integration-flow > i { display: none; }
  .live-layout { grid-template-columns: 1fr; }
  .live-media { width: min(100%, 610px); margin-inline: auto; }
  .live-copy { max-width: 700px; }
  .live-process { grid-template-columns: repeat(2, 1fr); }
  .live-process article:nth-child(2) { border-right: 0; }
  .live-process article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .building-grid { grid-template-columns: 1fr; }
  .building-card { min-height: 350px; }
  .planned-panel { grid-template-columns: 1fr; gap: 26px; }
  .planned-list { justify-content: flex-start; }
  .future-catalog__head { grid-template-columns: 1fr; }
  .future-catalog__head p { margin-top: 12px; }
  .implementation-heading { grid-template-columns: 1fr; gap: 26px; }
  .implementation-steps article > div { grid-template-columns: 1fr; gap: 10px; }
  .offer-note { grid-template-columns: 1fr auto; }
  .offer-note > span { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-heading { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 650px; }
  .footer-main { gap: 50px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { height: 68px; }
  .brand { flex-basis: 145px; width: 145px; height: 48px; }
  .brand-image { width: 164px; height: 82px; left: -10px; }
  .theme-toggle, .menu-toggle { width: 40px; height: 40px; border-radius: 12px; }
  .mobile-nav { inset: 68px 0 0; height: calc(100vh - 68px); height: calc(100dvh - 68px); padding-inline: 20px; }
  .hero { padding: 118px 0 68px; }
  .hero-grid { background-size: 44px 44px; }
  .capability-map { grid-template-columns: 1fr; }
  .capability-map article { min-height: 138px; }
  .core-section { padding: 88px 0; }
  .core-copy h2 { font-size: 48px; }
  .core-copy > p { margin-top: 24px; font-size: 15px; }
  .core-principles { grid-template-columns: 1fr; margin-top: 36px; }
  .core-principles article { min-height: 0; padding: 20px 0; }
  .core-orbit { min-height: 440px; border-radius: 28px; }
  .core-orbit__ring--one { width: 250px; height: 250px; }
  .core-orbit__ring--two { width: 380px; height: 380px; }
  .core-orbit__center { width: 132px; height: 132px; padding: 15px; border-radius: 29px; }
  .core-orbit__center img { width: 100px; }
  .core-orbit__center strong { font-size: 18px; }
  .core-orbit__center span { font-size: 7px; }
  .core-node { min-height: 34px; padding: 0 10px; font-size: 10px; }
  .core-node::before { width: 5px; height: 5px; margin-right: 6px; }
  .core-node--sale { left: 34%; top: 5%; }
  .core-node--stock { right: 2%; top: 25%; }
  .core-node--finance { right: 3%; bottom: 15%; }
  .core-node--docs { left: 31%; bottom: 4%; }
  .core-node--team { left: 2%; bottom: 18%; }
  .core-node--field { left: 2%; top: 24%; }
  .future-catalog { padding: 22px 18px; }
  .future-products-grid { grid-template-columns: 1fr; }
  .future-products-grid .concept-card--featured { grid-column: span 1; }
  .future-products-grid article { min-height: 190px; }
  .not-ready-note { grid-template-columns: 1fr; gap: 7px; }
  .eyebrow { font-size: 10px; margin-bottom: 20px; }
  h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-line { white-space: normal; }
  .hero-lead { margin-top: 25px; font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .proof-line { text-align: left; }
  .hero-visual { height: 420px; margin-top: 24px; }
  .avero-symbol { right: -70px; top: -20px; width: 350px; }
  .panel-preview { top: 30px; width: 100%; border-radius: 18px; transform: rotate(.5deg); }
  .panel-preview__bar { min-height: 36px; padding-inline: 11px; }
  .panel-preview__bar small { display: none; }
  .panel-preview figcaption { display: none; }
  .current-phone { right: -2px; bottom: 2px; width: 136px; height: 294px; border-width: 5px; border-radius: 25px; }
  .current-phone::after { border-radius: 19px; }
  .current-phone__label { top: 8px; padding: 5px 7px; font-size: 9px; }
  .product-proof { left: 0; bottom: 12px; width: 194px; padding: 12px; }
  .product-proof strong { font-size: 14px; }
  .product-proof small { font-size: 10px; }
  .demo-note { display: none; }
  .platform-section, .ready-section { padding: 88px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: clamp(42px, 12vw, 56px); }
  .flow-modules { grid-template-columns: 1fr; min-height: auto; }
  .flow-modules article { min-height: 145px; }
  .login-strip { grid-template-columns: auto 1fr; padding: 19px; }
  .login-arrow { display: none; }
  .platform-scope { padding: 23px; border-radius: 24px; }
  .platform-scope__heading h3 { font-size: 38px; }
  .platform-scope__grid { grid-template-columns: 1fr; }
  .platform-scope__grid article { min-height: 0; }
  .product-card { min-height: 0; padding: 23px; border-radius: 27px; }
  .product-card__content { margin-top: 50px; }
  .product-card h3 { font-size: 42px; }
  .feature-list { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr 1fr 1fr; }
  .mini-stats div { padding: 12px 9px; }
  .mini-stats strong { font-size: 25px; }
  .text-link { margin-top: 48px; }
  .extensions-strip { grid-template-columns: 1fr auto; gap: 22px; padding: 23px; }
  .extensions-strip > div:nth-child(2) { grid-column: 1; }
  .extensions-strip > a { grid-column: 2; grid-row: 1 / 3; }
  .gastro-detail, .live-case, .roadmap-section, .implementation-section, .faq-section, .contact-section { padding: 88px 0; }
  .gastro-intro h2, .implementation-heading h2 { font-size: 48px; }
  .gastro-stage { min-height: 0; margin-top: 55px; border-radius: 28px; }
  .gastro-stage__copy { padding: 31px 25px 0; }
  .gastro-stage__copy h3 { font-size: 40px; }
  .stage-points p { flex-direction: column; gap: 0; }
  .panel-gallery { padding: 30px 20px 24px; }
  .panel-gallery__tabs { gap: 6px; }
  .panel-gallery__tabs button { flex: 1; min-width: 0; padding-inline: 8px; font-size: 12px; }
  .panel-gallery__screen { border-radius: 16px; }
  .gastro-mobile-proof { min-height: 0; border-radius: 28px; }
  .gastro-mobile-proof__copy { padding: 34px 25px 12px; }
  .gastro-mobile-proof__copy h3 { font-size: 40px; }
  .gastro-mobile-proof__devices { gap: 14px; padding: 14px 18px 38px; }
  .gastro-mobile-proof__devices figure { width: min(46%, 190px); }
  .gastro-mobile-proof__devices figure:nth-child(2) { transform: translateY(20px); }
  .product-phone { border-width: 5px; border-radius: 26px; }
  .product-phone::after { border-radius: 20px; }
  .gastro-mobile-proof figcaption span { font-size: 12px; }
  .integration-panel { padding: 26px 21px; }
  .integration-flow { grid-template-columns: 1fr; }
  .business-model-note { grid-template-columns: 1fr; gap: 8px; }
  .live-media { height: 590px; }
  .live-video-shell { width: calc(100% - 55px); height: 560px; border-radius: 29px; }
  .live-phone { right: 0; width: 185px; height: 423px; border-width: 5px; border-radius: 26px; }
  .live-copy h2 { font-size: 49px; }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .case-facts div { padding: 18px; }
  .case-facts strong { font-size: 35px; }
  .live-process { grid-template-columns: 1fr; margin-top: 62px; }
  .live-process { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border: 0; scrollbar-width: thin; }
  .live-process article { flex: 0 0 82%; min-height: 185px; border: 1px solid var(--line); border-right: 0; border-bottom: 1px solid var(--line); scroll-snap-align: start; }
  .live-process article:last-child { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .live-process strong { margin-top: 30px; }
  .roadmap-summary { grid-template-columns: 1fr; }
  .building-grid { display: flex; overflow-x: auto; padding: 0 14px 12px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .building-card { flex: 0 0 86%; min-height: 390px; scroll-snap-align: start; }
  .planned-panel { padding: 24px; }
  .implementation-steps article { grid-template-columns: 44px 1fr; gap: 10px; }
  .implementation-steps strong { font-size: 22px; }
  .offer-note { grid-template-columns: 1fr; gap: 22px; }
  .offer-note .button { width: 100%; }
  .faq-list summary { padding: 24px 0; font-size: 18px; }
  .faq-list details p { margin-right: 0; }
  .form-card { padding: 25px 20px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: 1; }
  .field input, .field select { font-size: 16px; }
  .form-action { grid-template-columns: 1fr; }
  .form-action .button { width: 100%; }
  .preview-form-note { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer-legal { flex-direction: column; gap: 12px; }
}

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

/* Professional type system — Bricolage is display, Manrope runs the product UI. */
h1, h2 {
  font-family: "Bricolage Grotesque", "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-wrap: balance;
}

h3, h4,
.product-name,
.platform-scope__grid h4,
.faq-list summary,
.mobile-nav a {
  font-family: "Manrope", system-ui, sans-serif;
  font-optical-sizing: auto;
  text-wrap: balance;
}

p { text-wrap: pretty; }
h1 { max-width: 15ch; font-size: clamp(56px,5vw,76px); line-height: .98; letter-spacing: -.025em; }
.section-heading h2,
.core-copy h2,
.gastro-intro h2,
.live-copy h2,
.implementation-heading h2,
.faq-heading h2,
.contact-copy h2 { font-size: clamp(40px,3.6vw,56px); line-height: 1.04; letter-spacing: -.02em; }
.platform-scope__heading h3,
.gastro-stage__copy h3 { font-family: "Manrope",system-ui,sans-serif; font-size: clamp(26px,2vw,32px); font-weight: 650; line-height: 1.15; letter-spacing: -.012em; }
.section-index,
.stage-kicker,
.integration-kicker { font-family: "Manrope",system-ui,sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .055em; }
.hero-lead,
.section-heading > p,
.section-heading--split > p { font-size: 17px; line-height: 1.62; }
.button { font-weight: 700; }

/* Compact module index */
.module-index { padding: 112px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.module-index__rail { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); gap: 1px; }
.module-index__rail a { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 148px; padding: 25px; background: var(--paper); transition: background .22s ease, color .22s ease; }
.module-index__rail a::after { content: "↘"; position: absolute; right: 22px; top: 20px; color: var(--blue-text); font-size: 20px; transition: transform .22s ease; }
.module-index__rail a:hover { background: var(--blue); color: #fff; }
.module-index__rail a:hover::after { color: #fff; transform: translate(2px,2px); }
.module-index__rail span { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.module-index__rail a:hover span { color: rgba(255,255,255,.75); }
.module-index__rail strong { margin-top: 9px; font-size: 18px; line-height: 1.25; }

/* AVERO Live prize flow on the Business OS page */
.live-prize { display: grid; grid-template-columns: 1.15fr .9fr .72fr; gap: 1px; margin-top: 24px; overflow: hidden; border: 1px solid rgba(46,107,255,.24); border-radius: 28px; background: var(--line); }
.live-prize > div { min-width: 0; min-height: 245px; padding: 31px; background: #1c232e; color: #f7f9fc; }
.live-prize__copy > span,
.live-prize__screen > span,
.live-prize__sms > span { color: #87a7ff; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.live-prize__copy h3 { max-width: 560px; margin-top: 27px; font-size: 28px; font-weight: 650; line-height: 1.16; letter-spacing: -.015em; }
.live-prize__copy p { max-width: 620px; margin: 15px 0 0; color: #aeb8c6; font-size: 15px; line-height: 1.62; }
.live-prize__copy a { display: inline-flex; gap: 10px; margin-top: 23px; color: #fff; font-size: 14px; font-weight: 700; }
.live-prize__copy a span { color: #87a7ff; }
.live-prize__screen,
.live-prize__sms { display: flex; flex-direction: column; justify-content: center; }
.live-prize__screen { background: radial-gradient(circle at 50% 15%,rgba(46,107,255,.26),transparent 58%),#0b111b !important; text-align: center; }
.live-prize__screen strong { margin-top: 23px; font-family: "Bricolage Grotesque",sans-serif; font-size: clamp(30px,3vw,43px); font-weight: 600; line-height: 1; letter-spacing: -.025em; }
.live-prize__screen small,
.live-prize__sms small { margin-top: 14px; color: #96a2b3; font-size: 12px; line-height: 1.5; }
.live-prize__sms strong { margin-top: 28px; font-size: 19px; line-height: 1.35; }
.live-prize__sms strong b { color: #87a7ff; letter-spacing: .12em; }

/* Full module presentation */
.modules-section { padding: 138px 0; background: var(--paper); }
.modules-heading { margin-bottom: 72px; }
.modules-heading h2 { max-width: 920px; }
.experience-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; padding: 43px 46px 38px; }
.experience-heading > div > span { display: block; margin-bottom: 12px; color: var(--blue-text); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.experience-heading h3 { max-width: 760px; margin-top: 15px; font-size: clamp(30px,3vw,44px); font-weight: 650; line-height: 1.08; letter-spacing: -.018em; }
.experience-heading > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.experience-heading--dark > div > span { color: #86a7ff; }
.experience-heading--dark > p { color: #aeb9c8; }
.module-title { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.3; }
.module-title strong { color: currentColor; font-weight: 800; }
.experience-heading--dark .module-title { color: #dce4ef; }
.role-heading { display: flex; justify-content: space-between; gap: 15px; padding: 0 2px 13px; }
.role-heading span { color: #88a8ff; font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.role-heading b { color: #aeb8c6; font-size: 11px; }
.mini-product-brand { display: flex; align-items: center; gap: 8px; }
.mini-product-brand img { width: 23px; height: 23px; object-fit: contain; }
.mini-product-brand strong { font-size: 12px; letter-spacing: -.01em; }

/* Parking: driver, staff and owner */
.parking-experience { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 36px; background: #1c232e; color: #f7f9fc; box-shadow: 0 38px 100px rgba(13,22,36,.22); }
.parking-product-grid { display: grid; grid-template-columns: .68fr .68fr 1.35fr; gap: 15px; padding: 0 22px 22px; }
.parking-role { min-width: 0; padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: rgba(255,255,255,.035); }
.parking-phone { display: flex; flex-direction: column; min-height: 540px; padding: 22px 18px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 30px; background: #f7f9fc; color: #1c232e; box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.parking-phone .mini-product-brand { padding-bottom: 18px; border-bottom: 1px solid rgba(28,35,46,.1); }
.parking-success { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 13px; border-radius: 14px; background: #eaf0ff; }
.parking-success i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #2e6bff; color: #fff; font-style: normal; }
.parking-success div { display: flex; flex-direction: column; }
.parking-success small,
.parking-place small,
.parking-plate span,
.staff-shift span,
.staff-entry small { color: #617087; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.parking-success strong { margin-top: 2px; font-size: 13px; }
.parking-place { display: flex; flex-direction: column; margin-top: 24px; }
.parking-place strong { margin-top: 3px; font-size: 19px; }
.parking-place span { color: #637083; font-size: 12px; }
.parking-plate { margin-top: 20px; padding: 16px; border: 1px solid rgba(28,35,46,.12); border-radius: 14px; background: #fff; }
.parking-plate strong { display: block; margin-top: 6px; font-size: 25px; letter-spacing: .06em; }
.parking-time { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.parking-time div { padding: 14px; border: 1px solid rgba(28,35,46,.1); border-radius: 13px; background: #fff; }
.parking-time span { display: block; color: #637083; font-size: 10px; }
.parking-time strong { display: block; margin-top: 6px; font-size: 16px; }
.parking-button { display: grid; place-items: center; min-height: 48px; margin-top: auto; border-radius: 13px; background: #2e6bff; color: #fff; font-size: 12px; font-weight: 800; text-align: center; }
.parking-phone--staff { background: #111a28; color: #f7f9fc; }
.parking-phone--staff .mini-product-brand { border-bottom-color: rgba(255,255,255,.1); }
.staff-shift { display: flex; flex-direction: column; margin-top: 18px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.045); }
.staff-shift span { color: #8faeff; }
.staff-shift strong { margin-top: 3px; font-size: 13px; }
.staff-scan { display: flex; flex-direction: column; align-items: center; margin-top: 13px; padding: 16px; border-radius: 16px; background: #fff; color: #1c232e; text-align: center; }
.staff-scan img { width: 105px; height: 105px; }
.staff-scan strong { margin-top: 9px; font-size: 13px; }
.staff-scan small { max-width: 190px; margin-top: 3px; color: #637083; font-size: 10px; line-height: 1.4; }
.staff-entry { display: flex; flex-direction: column; margin-top: 13px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; }
.staff-entry small { color: #8faeff; }
.staff-entry strong { margin-top: 4px; font-size: 19px; letter-spacing: .06em; }
.staff-entry span { color: #9ca9bb; font-size: 10px; }
.parking-dashboard { min-height: 540px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: #101824; }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.09); }
.dashboard-top > span { color: #8290a4; font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.parking-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px; }
.parking-kpis > div { min-height: 115px; padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.04); }
.parking-kpis span { color: #94a1b2; font-size: 10px; }
.parking-kpis strong { display: block; margin-top: 10px; font-family: "Bricolage Grotesque",sans-serif; font-size: 27px; font-weight: 600; line-height: 1; }
.parking-kpis small { display: block; margin-top: 9px; color: #7ea0ff; font-size: 9px; }
.parking-table { margin: 0 14px 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.parking-table__head { display: flex; justify-content: space-between; padding: 14px; background: rgba(255,255,255,.04); }
.parking-table__head strong { font-size: 12px; }
.parking-table__head span { color: #8492a5; font-size: 10px; }
.parking-row { display: grid; grid-template-columns: 1fr auto 78px; align-items: center; gap: 13px; min-height: 65px; padding: 10px 14px; border-top: 1px solid rgba(255,255,255,.07); }
.parking-row div { display: flex; flex-direction: column; }
.parking-row b { font-size: 12px; }
.parking-row small { color: #8492a5; font-size: 9px; }
.parking-row > span { font-size: 11px; font-weight: 700; }
.parking-row em { padding: 5px 7px; border-radius: 999px; background: rgba(46,107,255,.16); color: #89a9ff; font-size: 8px; font-style: normal; font-weight: 800; text-align: center; }
.parking-row em.is-paid { background: rgba(255,255,255,.08); color: #b8c2cf; }
.experience-flow { display: flex; justify-content: center; gap: 30px; padding: 20px 26px 25px; color: #aeb8c6; font-size: 13px; }
.experience-flow b { color: #86a7ff; font-size: 10px; letter-spacing: .06em; }
.experience-flow i { color: #556477; font-style: normal; }

/* Beauty and Hair */
.beauty-experience { margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 36px; background: var(--surface); box-shadow: var(--shadow-soft); }
.beauty-product-grid { display: grid; grid-template-columns: .66fr 1.34fr; gap: 15px; padding: 0 22px 22px; }
.beauty-client,
.beauty-salon { min-width: 0; padding: 17px; border: 1px solid var(--line); border-radius: 25px; background: var(--paper); }
.beauty-client .role-heading span,
.beauty-salon .role-heading span { color: var(--blue-text); }
.beauty-client .role-heading b,
.beauty-salon .role-heading b { color: var(--muted); }
.beauty-phone { display: flex; flex-direction: column; min-height: 610px; padding: 22px 18px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-soft); }
.beauty-phone .mini-product-brand { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.beauty-welcome { display: flex; flex-direction: column; margin-top: 25px; }
.beauty-welcome small { color: var(--blue-text); font-size: 10px; font-weight: 800; letter-spacing: .055em; }
.beauty-welcome strong { margin-top: 4px; font-size: 24px; }
.beauty-next { display: flex; flex-direction: column; margin-top: 21px; padding: 19px; border-radius: 18px; background: #1c232e; color: #fff; }
.beauty-next > span,
.beauty-care > span { color: #88a8ff; font-size: 10px; font-weight: 800; letter-spacing: .055em; }
.beauty-next strong { margin-top: 9px; font-size: 17px; }
.beauty-next small { color: #aeb8c6; font-size: 11px; }
.beauty-next i { margin-top: 28px; color: #9ab3f4; font-size: 11px; font-style: normal; font-weight: 700; }
.beauty-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.beauty-actions div { display: flex; flex-direction: column; padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.beauty-actions b { font-size: 12px; }
.beauty-actions span { color: var(--muted); font-size: 10px; }
.beauty-care { margin-top: 9px; padding: 17px; border: 1px solid rgba(46,107,255,.2); border-radius: 15px; background: var(--blue-soft); color: #1c232e; }
.beauty-care strong { display: block; margin-top: 7px; font-size: 14px; }
.beauty-care p { margin: 7px 0 0; color: #536073; font-size: 11px; line-height: 1.5; }
.beauty-dashboard { min-height: 610px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: #1c232e; color: #f7f9fc; }
.beauty-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px; }
.beauty-kpis > div { min-height: 105px; padding: 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.04); }
.beauty-kpis span { color: #96a3b4; font-size: 10px; }
.beauty-kpis strong { display: block; margin-top: 13px; font-family: "Bricolage Grotesque",sans-serif; font-size: 29px; font-weight: 600; }
.beauty-dashboard__body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9px; padding: 0 14px 14px; }
.beauty-schedule,
.beauty-record { overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.panel-title { display: flex; justify-content: space-between; gap: 14px; padding: 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.panel-title strong { font-size: 12px; }
.panel-title span { color: #8f9daf; font-size: 9px; }
.beauty-visit { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 10px; min-height: 72px; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
.beauty-visit:last-child { border-bottom: 0; }
.beauty-visit > b { color: #8faeff; font-size: 11px; }
.beauty-visit div { display: flex; flex-direction: column; }
.beauty-visit div strong { font-size: 11px; }
.beauty-visit small { color: #8e9bad; font-size: 9px; }
.beauty-visit > span { color: #8e9bad; font-size: 8px; font-weight: 800; }
.beauty-visit.is-now { background: rgba(46,107,255,.09); }
.beauty-visit.is-now > span { color: #83a5ff; }
.beauty-record > div:not(.panel-title) { display: flex; flex-direction: column; min-height: 67px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
.beauty-record > div:last-child { border-bottom: 0; }
.beauty-record > div > span { color: #86a7ff; font-size: 8px; font-weight: 800; letter-spacing: .055em; }
.beauty-record > div > strong { margin-top: 5px; font-size: 10px; line-height: 1.45; }
.hair-bridge { display: grid; grid-template-columns: 1.1fr .85fr 1fr; align-items: center; gap: 28px; margin: 0 22px 22px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.hair-bridge > div:first-child > span { color: var(--blue-text); font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.hair-bridge h4 { margin: 10px 0 0; font-size: 24px; line-height: 1.15; letter-spacing: -.012em; }
.hair-bridge > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.hair-formula { display: flex; flex-direction: column; padding: 20px; border-radius: 18px; background: #1c232e; color: #f7f9fc; }
.hair-formula span { color: #86a7ff; font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.hair-formula strong { margin-top: 8px; font-size: 21px; letter-spacing: .03em; }
.hair-formula small { margin-top: 8px; color: #9eabbc; font-size: 10px; line-height: 1.5; }

/* Team, Go and Budowa */
.operations-experience { margin-top: 28px; overflow: hidden; border-radius: 36px; background: #1c232e; color: #f7f9fc; box-shadow: 0 38px 100px rgba(13,22,36,.2); }
.operation-stories { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.1); }
.operation-story { display: flex; flex-direction: column; min-width: 0; min-height: 565px; padding: 30px; background: #1c232e; }
.operation-story > span { color: #86a7ff; font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.operation-story h4 { margin: 10px 0 0; color: #fff; font-size: 27px; line-height: 1.15; }
.operation-story > p { max-width: 420px; margin: 15px 0 0; color: #aeb8c6; font-size: 14px; line-height: 1.62; }
.operation-story > footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: auto; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); }
.operation-story > footer b { font-size: 9px; }
.operation-story > footer i { color: #6882c1; font-style: normal; }
.team-board { display: grid; gap: 8px; margin-top: 31px; }
.team-board > div { display: grid; grid-template-columns: 63px 1fr auto; align-items: center; min-height: 61px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.team-board b { color: #86a7ff; font-size: 10px; }
.team-board span { font-size: 12px; font-weight: 700; }
.team-board i { color: #9aa7b8; font-size: 10px; font-style: normal; }
.go-map { position: relative; min-height: 245px; margin-top: 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 19px; background: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),#111a28; background-size: 28px 28px; }
.go-map .route { position: absolute; left: 13%; right: 11%; top: 48%; height: 2px; border-top: 2px dashed #5e88f8; transform: rotate(-10deg); }
.map-point { position: absolute; z-index: 2; padding: 7px 9px; border: 2px solid #111a28; border-radius: 999px; background: #2e6bff; color: #fff; font-size: 8px; box-shadow: 0 0 0 1px rgba(114,153,255,.5); }
.map-point--one { left: 9%; top: 55%; }
.map-point--two { left: 46%; top: 33%; }
.map-point--three { right: 8%; top: 22%; }
.go-map > span { position: absolute; left: 15px; bottom: 14px; display: flex; flex-direction: column; padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(10,16,26,.84); }
.go-map > span small { color: #91a0b3; font-size: 9px; }
.go-map > span strong { margin-top: 2px; font-family: "Bricolage Grotesque",sans-serif; font-size: 23px; font-weight: 600; }
.build-board { margin-top: 31px; padding: 19px; border: 1px solid rgba(255,255,255,.09); border-radius: 19px; background: #111a28; }
.build-board > div { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px; }
.build-board > div span { grid-column: 1 / -1; color: #86a7ff; font-size: 9px; font-weight: 800; }
.build-board > div strong { font-size: 18px; }
.build-board > div small { color: #99a6b7; font-size: 9px; }
.build-board > i { display: block; height: 8px; margin-top: 16px; border-radius: 999px; background: rgba(255,255,255,.08); }
.build-board > i b { display: block; height: 100%; border-radius: inherit; background: #2e6bff; }
.build-board ul { display: grid; gap: 0; margin: 17px 0 0; padding: 0; list-style: none; }
.build-board li { display: flex; justify-content: space-between; gap: 15px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.08); }
.build-board li span { color: #91a0b3; font-size: 10px; }
.build-board li b { font-size: 10px; }

/* Connected ecosystem — a directory, not a wall of status cards. */
.ecosystem-experience { margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 36px; background: var(--surface); }
.module-directory { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); }
.module-directory article { position: relative; min-height: 240px; padding: 30px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.module-directory article:nth-child(even) { border-right: 0; }
.module-directory article > span { color: var(--blue-text); font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.module-directory h4 { margin: 36px 0 0; font-size: 25px; line-height: 1.15; }
.module-directory p { max-width: 520px; margin: 11px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.module-directory article > small { display: block; margin-top: 20px; color: var(--muted-light); font-size: 11px; font-weight: 700; }
.module-directory__widget { grid-column: 1 / -1; display: grid; grid-template-columns: .75fr 1fr .75fr; align-items: center; gap: 40px; border-right: 0 !important; }
.module-directory__widget h4 { margin-top: 8px; }
.module-directory__widget p { margin: 0; }
.widget-preview { display: flex; flex-direction: column; padding: 20px; border-radius: 19px; background: #1c232e; color: #fff; }
.widget-preview small { color: #8faeff; font-size: 9px; font-weight: 800; letter-spacing: .055em; }
.widget-preview strong { margin-top: 8px; font-family: "Bricolage Grotesque",sans-serif; font-size: 28px; font-weight: 600; }
.widget-preview span { margin-top: 4px; color: #aab5c5; font-size: 10px; }
.signature-note { display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: center; margin: 23px; padding: 18px 21px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.signature-note > span { color: var(--blue-text); font-size: 11px; font-weight: 800; letter-spacing: .055em; }
.signature-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.signature-note strong { color: var(--ink); }

@media (max-width: 1100px) {
  .parking-product-grid { grid-template-columns: 1fr 1fr; }
  .parking-role--owner { grid-column: 1 / -1; }
  .beauty-product-grid { grid-template-columns: .8fr 1.2fr; }
  .beauty-dashboard__body { grid-template-columns: 1fr; }
  .beauty-dashboard { min-height: 710px; }
  .hair-bridge { grid-template-columns: 1fr 1fr; }
  .hair-bridge > p { grid-column: 1 / -1; }
  .operation-story { padding: 25px; }
}

@media (max-width: 860px) {
  .module-index__rail { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .live-prize { grid-template-columns: 1fr 1fr; }
  .live-prize__copy { grid-column: 1 / -1; }
  .experience-heading { grid-template-columns: 1fr; gap: 22px; padding: 34px; }
  .experience-heading > p { max-width: 680px; }
  .parking-product-grid { grid-template-columns: 1fr; }
  .parking-role--owner { grid-column: auto; }
  .beauty-product-grid { grid-template-columns: 1fr; }
  .beauty-client { max-width: 520px; }
  .beauty-dashboard { min-height: 620px; }
  .operation-stories { grid-template-columns: 1fr; }
  .operation-story { min-height: 520px; }
  .module-directory__widget { grid-template-columns: 1fr 1fr; }
  .module-directory__widget .widget-preview { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(42px,11.5vw,52px); line-height: 1.02; letter-spacing: -.025em; }
  .section-heading h2,
  .core-copy h2,
  .gastro-intro h2,
  .live-copy h2,
  .implementation-heading h2,
  .faq-heading h2,
  .contact-copy h2 { font-size: clamp(34px,9.5vw,44px); line-height: 1.06; letter-spacing: -.02em; }
  .hero-lead,
  .section-heading > p,
  .section-heading--split > p { font-size: 16px; line-height: 1.6; }
  .section-index,
  .stage-kicker,
  .integration-kicker,
  .eyebrow { font-size: 12px; line-height: 1.35; letter-spacing: .05em; }
  .module-index { padding: 88px 0; }
  .module-index__rail { grid-template-columns: 1fr; }
  .module-index__rail a { min-height: 118px; padding: 21px; }
  .live-prize { grid-template-columns: 1fr; border-radius: 23px; }
  .live-prize__copy { grid-column: auto; }
  .live-prize > div { min-height: 210px; padding: 24px 21px; }
  .live-prize__copy h3 { font-size: 26px; }
  .modules-section { padding: 90px 0; }
  .modules-heading { margin-bottom: 45px; }
  .parking-experience,
  .beauty-experience,
  .operations-experience,
  .ecosystem-experience { border-radius: 27px; }
  .experience-heading { padding: 28px 22px; }
  .experience-heading h3 { font-size: 30px; }
  .experience-heading > p { font-size: 15px; }
  .parking-product-grid,
  .beauty-product-grid { padding: 0 11px 11px; }
  .parking-role,
  .beauty-client,
  .beauty-salon { padding: 11px; border-radius: 21px; }
  .parking-phone { min-height: 510px; padding: 19px 15px 15px; border-radius: 25px; }
  .parking-dashboard { min-height: 0; }
  .parking-kpis { grid-template-columns: 1fr 1fr; }
  .parking-kpis > div:first-child { grid-column: 1 / -1; }
  .parking-row { grid-template-columns: 1fr auto; }
  .parking-row em { display: none; }
  .experience-flow { display: grid; gap: 9px; justify-content: start; padding: 20px; }
  .experience-flow i { display: none; }
  .beauty-phone { min-height: 570px; border-radius: 25px; }
  .beauty-kpis { grid-template-columns: 1fr 1fr; }
  .beauty-kpis > div:first-child { grid-column: 1 / -1; }
  .beauty-dashboard { min-height: 0; }
  .beauty-dashboard__body { grid-template-columns: 1fr; }
  .beauty-visit { grid-template-columns: 43px 1fr; }
  .beauty-visit > span { display: none; }
  .hair-bridge { grid-template-columns: 1fr; margin: 0 11px 11px; padding: 22px; }
  .hair-bridge > p { grid-column: auto; }
  .operation-story { min-height: 520px; padding: 23px 20px; }
  .operation-story h4 { font-size: 25px; }
  .module-directory { grid-template-columns: 1fr; }
  .module-directory article { min-height: 220px; padding: 25px 22px; border-right: 0; }
  .module-directory__widget { grid-column: auto; grid-template-columns: 1fr; }
  .module-directory__widget .widget-preview { grid-column: auto; }
  .signature-note { grid-template-columns: 1fr; gap: 6px; margin: 13px; }
}

/* 2026 refinement — a stricter editorial type scale and clearer product UI. */
:root {
  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-ui: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.035em;
}

h3, h4,
.product-name,
.platform-scope__grid h4,
.faq-list summary,
.mobile-nav a,
.core-principles strong,
.form-card__top strong {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -.022em;
}

h1 { font-size: clamp(58px, 5.1vw, 78px); line-height: .98; }
.section-heading h2,
.core-copy h2,
.gastro-intro h2,
.live-copy h2,
.implementation-heading h2,
.faq-heading h2,
.contact-copy h2 { font-size: clamp(42px, 3.7vw, 58px); line-height: 1.025; }
.experience-heading h3 { max-width: 820px; font-size: clamp(34px, 3vw, 46px); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; }
.hero-lead,
.section-heading > p,
.section-heading--split > p { font-size: 17px; line-height: 1.58; }
.section-index,
.stage-kicker,
.integration-kicker,
.experience-heading > div > span,
.module-index__rail span { font-family: var(--font-ui); font-weight: 750; letter-spacing: .06em; }
.button,
.desktop-nav a,
.login-link { font-weight: 700; }
.module-title { font-size: 17px; font-weight: 500; }
.module-title strong { font-weight: 750; }

/* The module rail is a product directory, not a collection of oversized cards. */
.module-index__rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.module-index__rail a { min-height: 136px; padding: 23px; }
.module-index__rail strong { font-size: 17px; font-weight: 700; letter-spacing: -.018em; }

/* Shared data core — concrete product flow replaces the abstract orbit. */
.core-layout { grid-template-columns: .84fr 1.16fr; gap: clamp(48px, 6vw, 94px); }
.core-copy h2 { font-size: clamp(48px, 4.8vw, 70px); line-height: .98; }
.core-copy > p { font-size: 16px; line-height: 1.68; }
.core-principles strong { font-size: 17px; letter-spacing: -.012em; }
.core-principles p { font-size: 13px; line-height: 1.55; }
.core-system-board { position: relative; overflow: hidden; padding: 19px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: radial-gradient(circle at 88% 4%,rgba(46,107,255,.22),transparent 34%),linear-gradient(145deg,#101927,#0b121d); box-shadow: 0 40px 90px rgba(0,0,0,.3); }
.core-system-board::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 32px 32px; pointer-events: none; }
.core-system-board > * { position: relative; z-index: 1; }
.core-system-board__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; padding: 0 4px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.core-system-board__top > div { display: flex; align-items: center; gap: 9px; }
.core-system-board__top img { width: 78px; height: auto; }
.core-system-board__top > div span { color: #8eabff; font-size: 11px; font-weight: 750; }
.core-system-board__top small { color: #8290a3; font-size: 10px; font-weight: 750; letter-spacing: .055em; }
.core-event { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; margin-top: 16px; padding: 17px; border: 1px solid rgba(111,149,255,.28); border-radius: 17px; background: rgba(46,107,255,.1); }
.core-event__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: #2e6bff; color: #fff; font-size: 18px; font-weight: 800; box-shadow: 0 10px 26px rgba(46,107,255,.26); }
.core-event > div:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.core-event span { color: #8eabff; font-size: 10px; font-weight: 750; letter-spacing: .06em; }
.core-event strong { margin-top: 2px; color: #fff; font-size: 14px; }
.core-event small { margin-top: 2px; color: #91a0b4; font-size: 11px; }
.core-event > b { color: #fff; font-size: 18px; font-variant-numeric: tabular-nums; }
.core-sync-line { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 11px; margin: 15px 0; }
.core-sync-line span { height: 1px; background: linear-gradient(90deg,transparent,rgba(128,160,255,.48)); }
.core-sync-line span:last-child { background: linear-gradient(90deg,rgba(128,160,255,.48),transparent); }
.core-sync-line b { color: #8191a7; font-size: 9px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.core-system-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.core-system-grid article { min-width: 0; min-height: 112px; padding: 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.035); }
.core-system-grid span { color: #86a7ff; font-size: 9px; font-weight: 750; letter-spacing: .055em; }
.core-system-grid strong { display: block; margin-top: 13px; overflow: hidden; color: #f7f9fc; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.core-system-grid small { display: block; margin-top: 4px; color: #8f9daf; font-size: 10px; line-height: 1.35; }
.core-system-board__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 14px; padding: 13px 4px 1px; border-top: 1px solid rgba(255,255,255,.08); color: #95a2b4; font-size: 10px; }
.core-system-board__foot span { display: flex; align-items: center; gap: 7px; }
.core-system-board__foot span i { width: 7px; height: 7px; border-radius: 50%; background: #2e6bff; box-shadow: 0 0 0 5px rgba(46,107,255,.12); }
.core-system-board__foot b { color: #dfe6f0; font-size: 10px; }

/* AVERO Parking — QR-first, three distinct roles, real product hierarchy. */
.parking-experience { position: relative; background: radial-gradient(circle at 18% 5%,rgba(46,107,255,.18),transparent 28%),radial-gradient(circle at 94% 82%,rgba(46,107,255,.12),transparent 34%),linear-gradient(145deg,#1c232e,#101a2b); }
.parking-experience::before { content: ""; position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 34px 34px; pointer-events: none; }
.parking-experience > * { position: relative; z-index: 1; }
.parking-benefits { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin: 0 22px 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.1); }
.parking-benefits > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 11px; min-height: 92px; padding: 17px; background: rgba(12,20,32,.82); }
.parking-benefits span { grid-row: 1 / 3; color: #86a7ff; font-size: 11px; font-weight: 750; }
.parking-benefits strong { color: #f7f9fc; font-size: 13px; }
.parking-benefits small { color: #9ca9ba; font-size: 10px; line-height: 1.4; }
.parking-product-grid { grid-template-columns: .72fr .72fr 1.45fr; gap: 14px; }
.parking-role { padding: 15px; background: rgba(255,255,255,.045); backdrop-filter: blur(12px); }
.role-heading span { font-size: 11px; font-weight: 750; }
.role-heading b { font-size: 11px; font-weight: 650; }
.mini-product-brand { min-width: 0; gap: 8px; }
.mini-product-brand img { width: 72px; height: auto; object-fit: contain; }
.mini-product-brand span { padding: 4px 7px; border-radius: 999px; background: rgba(46,107,255,.11); color: #174ed9; font-size: 10px; font-weight: 750; }
.mini-product-brand--light span { background: rgba(46,107,255,.18); color: #9ab4ff; }
.parking-phone { position: relative; min-height: 565px; padding: 43px 19px 18px; border: 7px solid #111925; border-radius: 38px; box-shadow: 0 28px 62px rgba(0,0,0,.32); }
.parking-phone::before { content: ""; position: absolute; left: 50%; top: 10px; width: 76px; height: 20px; border-radius: 999px; background: #090e16; transform: translateX(-50%); }
.parking-phone .mini-product-brand { padding: 6px 0 17px; }
.parking-success { background: #e7f7ef; }
.parking-success i { background: #13875d; }
.parking-success small,
.parking-place small,
.parking-plate span,
.staff-shift span,
.staff-entry small { font-size: 10px; font-weight: 750; }
.parking-place strong { font-size: 20px; letter-spacing: -.02em; }
.parking-place span { font-size: 12px; }
.parking-plate { display: grid; grid-template-columns: 35px 1fr; align-items: stretch; gap: 14px; padding: 0; overflow: hidden; border-color: rgba(28,35,46,.2); border-radius: 12px; }
.parking-plate > i { display: grid; place-items: center; min-height: 84px; background: #174ed9; color: #fff; font-size: 10px; font-style: normal; font-weight: 750; letter-spacing: .04em; }
.parking-plate > div { align-self: center; padding: 12px 13px 12px 0; }
.parking-plate strong { font-size: 25px; font-variant-numeric: tabular-nums; }
.parking-time span { font-size: 11px; }
.parking-time strong { font-size: 16px; font-variant-numeric: tabular-nums; }
.parking-button { min-height: 50px; font-size: 12px; font-weight: 750; }
.parking-phone--staff { border-color: #070c12; background: #111a28; }
.staff-shift strong,
.staff-scan strong { font-size: 13px; }
.staff-scan small,
.staff-entry span { font-size: 10px; }
.parking-dashboard { min-height: 565px; }
.parking-kpis span { font-size: 11px; }
.parking-kpis strong { font-family: var(--font-ui); font-size: 28px; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.parking-kpis small { font-size: 10px; }
.parking-owner-body { display: grid; grid-template-columns: 1.12fr .88fr; gap: 9px; padding: 0 14px 14px; }
.parking-table { margin: 0; }
.parking-table__head strong { font-size: 12px; }
.parking-table__head span { font-size: 10px; }
.parking-row { min-height: 72px; padding: 11px 13px; }
.parking-row b { font-size: 12px; }
.parking-row small { font-size: 10px; }
.parking-row > span { font-size: 11px; font-variant-numeric: tabular-nums; }
.parking-occupancy { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.025); }
.parking-occupancy__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.parking-occupancy__head > div { display: flex; flex-direction: column; }
.parking-occupancy__head strong { font-size: 12px; }
.parking-occupancy__head span { color: #8694a7; font-size: 10px; }
.parking-occupancy__head > b { color: #86a7ff; font-size: 19px; font-variant-numeric: tabular-nums; }
.parking-space-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 5px; margin-top: 22px; }
.parking-space-grid > i { aspect-ratio: 1.55; border: 1px solid rgba(255,255,255,.11); border-radius: 5px; background: rgba(255,255,255,.16); }
.parking-space-grid > i.is-free { background: transparent; }
.parking-space-grid > i.is-current { border-color: #86a7ff; background: #2e6bff; box-shadow: 0 0 0 3px rgba(46,107,255,.13); }
.parking-occupancy__legend { display: flex; flex-wrap: wrap; gap: 9px 13px; margin-top: 20px; color: #8997aa; font-size: 9px; }
.parking-occupancy__legend span { display: flex; align-items: center; gap: 5px; }
.parking-occupancy__legend i { width: 7px; height: 7px; border-radius: 2px; background: rgba(255,255,255,.2); }
.parking-occupancy__legend i.is-free { border: 1px solid rgba(255,255,255,.2); background: transparent; }
.parking-occupancy__legend i.is-current { background: #2e6bff; }
.experience-flow { font-size: 13px; }

/* AVERO Beauty — service first, software second. */
.beauty-experience { background: linear-gradient(180deg,var(--surface),color-mix(in srgb,var(--paper) 66%,var(--surface))); }
.beauty-cinema { position: relative; min-height: 520px; margin: 0 22px 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #bcaea4; box-shadow: var(--shadow-soft); }
.beauty-cinema::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(18,23,31,.75),rgba(18,23,31,.24) 38%,transparent 67%); pointer-events: none; }
.beauty-cinema__visual { position: absolute; inset: 0; }
.beauty-cinema__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.beauty-cinema figcaption { position: absolute; z-index: 2; left: 36px; top: 50%; width: min(380px,calc(100% - 72px)); padding: 27px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(28,35,46,.78); color: #f7f9fc; box-shadow: 0 26px 58px rgba(0,0,0,.23); transform: translateY(-50%); backdrop-filter: blur(18px); }
.beauty-cinema__brand { display: flex; align-items: center; gap: 10px; }
.beauty-cinema__brand img { width: 92px; height: auto; }
.beauty-cinema__brand span { padding: 5px 8px; border-radius: 999px; background: rgba(46,107,255,.2); color: #a9beff; font-size: 11px; font-weight: 750; }
.beauty-cinema h4 { margin: 31px 0 0; color: #fff; font-size: 27px; line-height: 1.12; letter-spacing: -.025em; }
.beauty-cinema p { margin: 13px 0 0; color: #c4cddb; font-size: 14px; line-height: 1.6; }
.beauty-cinema figcaption > small { display: block; margin-top: 25px; color: #8faeff; font-size: 9px; font-weight: 750; letter-spacing: .065em; }
.beauty-product-grid { grid-template-columns: .72fr 1.28fr; }
.beauty-client { display: flex; flex-direction: column; }
.beauty-phone { position: relative; width: min(100%,310px); min-height: 590px; margin-inline: auto; padding: 42px 18px 19px; border: 7px solid #17202d; border-radius: 39px; }
.beauty-phone::before { content: ""; position: absolute; left: 50%; top: 10px; width: 76px; height: 20px; border-radius: 999px; background: #0b111a; transform: translateX(-50%); }
.beauty-phone .mini-product-brand { padding: 6px 0 17px; }
.beauty-welcome small { font-size: 10px; font-weight: 750; }
.beauty-welcome strong { font-size: 23px; letter-spacing: -.025em; }
.beauty-next > span,
.beauty-care > span { font-size: 10px; font-weight: 750; }
.beauty-next strong { font-size: 17px; }
.beauty-next small,
.beauty-next i { font-size: 11px; }
.beauty-actions b { font-size: 12px; }
.beauty-actions span { margin-top: 2px; font-size: 10px; line-height: 1.35; }
.beauty-care strong { font-size: 14px; }
.beauty-care p { font-size: 11px; }
.beauty-dashboard { min-height: 590px; }
.beauty-kpis span { font-size: 11px; }
.beauty-kpis strong { font-family: var(--font-ui); font-size: 29px; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.panel-title strong { font-size: 12px; }
.panel-title span { font-size: 10px; }
.beauty-visit > b { font-size: 11px; }
.beauty-visit div strong { font-size: 11px; }
.beauty-visit small { font-size: 10px; }
.beauty-visit > span { font-size: 9px; }
.beauty-record > div > span { font-size: 9px; }
.beauty-record > div > strong { font-size: 11px; }
.beauty-flow { display: flex; align-items: center; justify-content: center; gap: 17px; margin: 0 22px 18px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); color: var(--muted); }
.beauty-flow strong { color: var(--ink); font-size: 12px; }
.beauty-flow i { color: var(--blue-text); font-style: normal; }
.hair-bridge { grid-template-columns: 1.05fr 1.08fr .88fr 1.05fr; gap: 20px; }
.hair-consultation { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.hair-consultation span { display: flex; flex-direction: column; color: var(--ink); font-size: 10px; font-weight: 700; line-height: 1.3; }
.hair-consultation span b { margin-bottom: 4px; color: var(--blue-text); font-size: 9px; }
.hair-consultation i { color: var(--blue-text); font-style: normal; }
.hair-bridge > p { font-size: 13px; line-height: 1.55; }

/* AVERO Widget Lab — owned, configurable information at a glance. */
.widget-lab-experience { position: relative; margin-top: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 36px; background: radial-gradient(circle at 83% 18%,rgba(46,107,255,.25),transparent 30%),linear-gradient(145deg,#1c232e,#0d1522); color: #f7f9fc; box-shadow: 0 38px 100px rgba(13,22,36,.22); }
.widget-lab-experience::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 36px 36px; pointer-events: none; }
.widget-lab-experience > * { position: relative; z-index: 1; }
.widget-lab-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; padding: 0 22px 22px; }
.widget-lab-copy { align-self: center; padding: 27px 20px 27px 25px; }
.widget-lab-kicker { color: #86a7ff; font-size: 10px; font-weight: 750; letter-spacing: .065em; }
.widget-lab-copy h4 { max-width: 520px; margin: 19px 0 0; color: #fff; font-size: clamp(27px,2.5vw,38px); line-height: 1.08; letter-spacing: -.03em; }
.widget-lab-copy > p { max-width: 560px; margin: 17px 0 0; color: #aeb9c8; font-size: 15px; line-height: 1.62; }
.widget-benefits { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.widget-benefits li { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 8px; min-height: 58px; padding: 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.widget-benefits span { color: #86a7ff; font-size: 10px; font-weight: 750; }
.widget-benefits b { color: #dfe6f0; font-size: 11px; line-height: 1.35; }
.widget-product-stage { min-width: 0; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: rgba(255,255,255,.035); }
.widget-mode-switch { position: relative; z-index: 8; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 270px; margin: 0 auto 11px; padding: 4px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(10,17,27,.76); }
.widget-mode-switch button { min-height: 35px; padding: 0 12px; border: 0; border-radius: 9px; background: transparent; color: #8e9caf; font: 700 10px var(--font-ui); cursor: pointer; }
.widget-mode-switch button[aria-selected="true"] { background: #f7f9fc; color: #17202d; box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.widget-mode-switch button:focus-visible { outline: 2px solid #86a7ff; outline-offset: 2px; }
.widget-stage-canvas { position: relative; min-height: 635px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 23px; background: radial-gradient(circle at 75% 20%,rgba(54,114,255,.27),transparent 35%),linear-gradient(155deg,#111d31,#0a111d 68%); }
.widget-stage-canvas::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 27px 27px; }
.widget-device { position: absolute; z-index: 4; left: 47%; top: 50%; width: 270px; height: 560px; overflow: hidden; border: 8px solid #05080d; border-radius: 47px; background: radial-gradient(circle at 85% 11%,#587cff 0 13%,transparent 35%),radial-gradient(circle at 8% 74%,#7d9fff 0 22%,transparent 49%),linear-gradient(150deg,#dce7ff,#3b61ba 48%,#10265b); box-shadow: 0 42px 80px rgba(0,0,0,.46),0 0 0 1px rgba(255,255,255,.16); transform: translate(-50%,-50%); }
.widget-device::after { content: ""; position: absolute; z-index: 10; inset: 0; border-radius: 38px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); pointer-events: none; }
.widget-device__island { position: absolute; z-index: 9; left: 50%; top: 10px; width: 84px; height: 23px; border-radius: 999px; background: #030508; transform: translateX(-50%); }
.widget-device__status { position: absolute; z-index: 8; left: 19px; right: 19px; top: 17px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-size: 9px; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.widget-home-state,
.widget-lock-state { position: absolute; inset: 0; transition: opacity .3s ease,transform .3s ease; }
.widget-lock-state { opacity: 0; transform: translateX(20px); pointer-events: none; }
.widget-device.is-lock .widget-home-state { opacity: 0; transform: translateX(-20px); pointer-events: none; }
.widget-device.is-lock .widget-lock-state { opacity: 1; transform: none; pointer-events: auto; }
.widget-app-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px 11px; padding: 72px 22px 0; }
.widget-app-grid i { aspect-ratio: 1; border-radius: 13px; background: linear-gradient(145deg,rgba(255,255,255,.95),rgba(229,238,251,.82)); box-shadow: 0 9px 17px rgba(8,22,50,.18); }
.widget-app-grid i:nth-child(2),.widget-app-grid i:nth-child(7) { background: linear-gradient(145deg,#ff8585,#c93058); }
.widget-app-grid i:nth-child(3),.widget-app-grid i:nth-child(5) { background: linear-gradient(145deg,#8dd6ff,#2f73e5); }
.widget-app-grid i:nth-child(4),.widget-app-grid i:nth-child(8) { background: linear-gradient(145deg,#f6f7f9,#b5c3d8); }
.avero-widget-card { position: absolute; left: 15px; right: 15px; overflow: hidden; padding: 16px; border: 1px solid rgba(255,255,255,.78); border-radius: 21px; box-shadow: 0 22px 42px rgba(16,32,67,.2); backdrop-filter: blur(24px) saturate(135%); }
.avero-widget-card--home { top: 287px; background: rgba(250,252,255,.91); color: #17202d; }
.avero-widget-card::before { content: ""; position: absolute; width: 150px; height: 150px; right: -63px; top: -80px; border-radius: 50%; background: radial-gradient(circle,rgba(46,107,255,.21),transparent 67%); }
.avero-widget-card > * { position: relative; z-index: 1; }
.avero-widget-card__top,
.avero-widget-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.avero-widget-card__top > div { display: flex; align-items: center; gap: 7px; }
.avero-widget-card__top img { width: 62px; height: auto; }
.avero-widget-card__top > div span { padding: 3px 5px; border-radius: 999px; background: rgba(46,107,255,.1); color: #174ed9; font-size: 7px; font-weight: 750; }
.avero-widget-card__top small { color: #637083; font-size: 8px; font-weight: 700; line-height: 1.35; text-align: right; }
.avero-widget-card__metric { margin: 17px 0; }
.avero-widget-card__metric span { display: block; color: #68768a; font-size: 8px; font-weight: 750; letter-spacing: .05em; }
.avero-widget-card__metric strong { display: block; margin-top: 5px; font-family: var(--font-display); font-size: 29px; font-weight: 600; line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.avero-widget-card__foot b { color: #174ed9; font-size: 8px; }
.avero-widget-card__foot span { color: #68768a; font-size: 8px; }
.widget-device__dock { position: absolute; left: 18px; right: 18px; bottom: 15px; display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; padding: 9px; border: 1px solid rgba(255,255,255,.5); border-radius: 20px; background: rgba(228,242,252,.45); backdrop-filter: blur(20px); }
.widget-device__dock i { aspect-ratio: 1; border-radius: 12px; background: linear-gradient(145deg,#fff,#c7d6ec); }
.widget-lock-state { background: radial-gradient(circle at 85% 4%,rgba(59,111,255,.85),transparent 31%),radial-gradient(circle at 10% 70%,rgba(46,107,255,.62),transparent 50%),linear-gradient(150deg,#0f1830,#02050b); }
.widget-lock-time { display: flex; flex-direction: column; align-items: center; padding-top: 72px; color: rgba(255,255,255,.85); text-shadow: 0 2px 12px rgba(0,0,0,.28); }
.widget-lock-time small { font-size: 11px; font-weight: 650; }
.widget-lock-time strong { margin-top: 3px; font-family: var(--font-ui); font-size: 62px; font-weight: 400; line-height: 1; letter-spacing: -.055em; }
.avero-widget-card--lock { top: 254px; border-color: rgba(255,255,255,.18); background: rgba(13,23,40,.78); color: #fff; }
.avero-widget-card--lock .avero-widget-card__top > div span { background: rgba(46,107,255,.2); color: #a9beff; }
.avero-widget-card--lock .avero-widget-card__top small,
.avero-widget-card--lock .avero-widget-card__metric span,
.avero-widget-card--lock .avero-widget-card__foot span { color: #a7b5c8; }
.avero-widget-card--lock .avero-widget-card__foot b { color: #8faeff; }
.widget-device--rear { z-index: 2; left: auto; right: 4%; top: 50%; width: 216px; height: 452px; border-width: 7px; border-radius: 39px; background: radial-gradient(circle at 70% 12%,#355dcc,transparent 35%),linear-gradient(150deg,#10244a,#02060c); transform: translateY(-50%) rotate(6deg); opacity: .62; }
.widget-device--rear::after { border-radius: 31px; }
.widget-device--rear .widget-device__clock { padding-top: 55px; color: rgba(255,255,255,.72); font-size: 46px; font-weight: 450; text-align: center; }
.widget-lock-card { position: absolute; left: 12px; right: 12px; top: 185px; display: flex; flex-direction: column; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(13,23,40,.76); }
.widget-lock-card small { color: #a9b6c8; font-size: 8px; }
.widget-lock-card strong { margin-top: 14px; color: #fff; font-family: var(--font-display); font-size: 24px; }
.widget-lock-card span { margin-top: 4px; color: #a9b6c8; font-size: 8px; }
.widget-config-card { position: absolute; z-index: 6; left: 3%; bottom: 39px; width: 212px; padding: 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(247,249,252,.94); color: #17202d; box-shadow: 0 24px 50px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.widget-config-card__top { display: flex; align-items: center; justify-content: space-between; color: #174ed9; font-size: 8px; font-weight: 750; letter-spacing: .055em; }
.widget-config-card > strong { display: block; margin-top: 14px; font-size: 15px; }
.widget-size-options { display: grid; grid-template-columns: .7fr 1.25fr 1fr; align-items: end; gap: 6px; margin-top: 15px; }
.widget-size-options i { height: 35px; border: 1px solid #cfd7e3; border-radius: 8px; background: #f4f6f8; }
.widget-size-options i:nth-child(2) { height: 53px; }
.widget-size-options i:nth-child(3) { height: 44px; }
.widget-size-options i.is-selected { border-color: #2e6bff; background: #eaf0ff; box-shadow: 0 0 0 2px rgba(46,107,255,.11); }
.widget-config-card > small { display: block; margin-top: 9px; color: #637083; font-size: 9px; }
.widget-config-status { display: flex; align-items: center; gap: 7px; margin-top: 15px; padding-top: 13px; border-top: 1px solid #dfe4eb; color: #637083; font-size: 8px; }
.widget-config-status span { width: 6px; height: 6px; border-radius: 50%; background: #2e6bff; box-shadow: 0 0 0 4px rgba(46,107,255,.1); }
.widget-demo-note { margin: 10px 5px 0; color: #8492a5; font-size: 9px; text-align: right; }
.widget-lab-steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; margin: 0 22px 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.1); }
.widget-lab-steps > div { min-height: 122px; padding: 18px; background: rgba(11,18,29,.88); }
.widget-lab-steps > div.is-active { background: rgba(46,107,255,.15); }
.widget-lab-steps span { color: #86a7ff; font-size: 10px; font-weight: 750; }
.widget-lab-steps strong { display: block; margin-top: 18px; color: #f7f9fc; font-size: 12px; }
.widget-lab-steps small { display: block; margin-top: 5px; color: #8f9daf; font-size: 10px; line-height: 1.4; }

@media (max-width: 1180px) {
  .core-layout { grid-template-columns: 1fr; }
  .core-copy { max-width: 860px; }
  .core-system-board { width: min(100%,820px); margin-inline: auto; }
  .parking-product-grid { grid-template-columns: 1fr 1fr; }
  .parking-role--owner { grid-column: 1 / -1; }
  .beauty-product-grid { grid-template-columns: .76fr 1.24fr; }
  .hair-bridge { grid-template-columns: 1fr 1fr; }
  .hair-bridge > p { grid-column: 1 / -1; }
  .widget-lab-layout { grid-template-columns: 1fr; }
  .widget-lab-copy { padding: 10px 24px 5px; }
  .widget-benefits { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .widget-stage-canvas { min-height: 620px; }
}

@media (max-width: 940px) {
  .module-index__rail { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .parking-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .parking-product-grid { grid-template-columns: 1fr; }
  .parking-role--owner { grid-column: auto; }
  .parking-role--driver,
  .parking-role--staff { display: flex; flex-direction: column; }
  .parking-phone { width: min(100%,330px); margin-inline: auto; }
  .parking-owner-body { grid-template-columns: 1.1fr .9fr; }
  .beauty-product-grid { grid-template-columns: 1fr; }
  .beauty-client { max-width: none; }
  .beauty-dashboard { min-height: 560px; }
}

@media (max-width: 720px) {
  .core-system-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .core-system-board__top small { display: none; }
  .parking-owner-body { grid-template-columns: 1fr; }
  .beauty-cinema { min-height: 430px; }
  .beauty-cinema figcaption { width: min(340px,calc(100% - 44px)); left: 22px; }
  .beauty-flow { flex-wrap: wrap; justify-content: flex-start; }
  .hair-bridge { grid-template-columns: 1fr; }
  .hair-bridge > p { grid-column: auto; }
  .widget-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .widget-device--rear { right: 0; }
  .widget-config-card { left: 2%; }
  .widget-lab-steps { grid-template-columns: 1fr 1fr; }
  .widget-lab-steps > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(42px,11.5vw,50px); line-height: 1.01; letter-spacing: -.034em; }
  .section-heading h2,
  .core-copy h2,
  .gastro-intro h2,
  .live-copy h2,
  .implementation-heading h2,
  .faq-heading h2,
  .contact-copy h2 { font-size: clamp(34px,9.6vw,43px); line-height: 1.045; letter-spacing: -.032em; }
  .experience-heading h3 { font-size: 30px; line-height: 1.08; letter-spacing: -.027em; }
  .experience-heading > p { font-size: 15px; line-height: 1.58; }
  .module-index__rail { grid-template-columns: 1fr; }
  .module-index__rail a { min-height: 112px; padding: 20px; }
  .core-copy > p { font-size: 15px; }
  .core-system-board { padding: 12px; border-radius: 23px; }
  .core-system-board__top { min-height: 47px; }
  .core-system-board__top img { width: 67px; }
  .core-event { grid-template-columns: 40px 1fr; gap: 11px; padding: 14px; }
  .core-event > b { grid-column: 2; font-size: 16px; }
  .core-event strong { font-size: 13px; }
  .core-event small { font-size: 10px; }
  .core-sync-line b { font-size: 8px; text-align: center; }
  .core-system-grid { gap: 6px; }
  .core-system-grid article { min-height: 105px; padding: 12px; }
  .core-system-grid strong { font-size: 12px; }
  .core-system-grid small { font-size: 9px; }
  .core-system-board__foot { align-items: flex-start; flex-direction: column; gap: 8px; }
  .parking-experience,
  .beauty-experience,
  .widget-lab-experience { border-radius: 27px; }
  .parking-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0 11px 11px; border-radius: 16px; }
  .parking-benefits > div { min-height: 112px; padding: 13px 11px; }
  .parking-benefits strong { font-size: 11px; line-height: 1.3; }
  .parking-benefits small { font-size: 9px; }
  .parking-product-grid { padding: 0 11px 11px; }
  .parking-role { padding: 11px; }
  .parking-phone { min-height: 535px; padding: 41px 16px 15px; border-width: 6px; border-radius: 34px; }
  .parking-dashboard { min-height: 0; }
  .parking-owner-body { padding: 0 10px 10px; }
  .parking-kpis { padding: 10px; }
  .parking-kpis strong { font-size: 26px; }
  .parking-row { grid-template-columns: 1fr auto; }
  .parking-row em { display: none; }
  .parking-occupancy { min-height: 245px; }
  .experience-flow { margin: 0 11px; padding: 18px 8px 22px; }
  .beauty-cinema { display: grid; min-height: 0; margin: 0 11px 11px; border-radius: 21px; background: #1c232e; }
  .beauty-cinema::after { display: none; }
  .beauty-cinema__visual { position: relative; height: 275px; }
  .beauty-cinema__visual img { object-position: 69% center; }
  .beauty-cinema figcaption { position: relative; left: auto; top: auto; width: auto; padding: 23px 21px; border: 0; border-top: 1px solid rgba(255,255,255,.12); border-radius: 0; background: #1c232e; box-shadow: none; transform: none; }
  .beauty-cinema h4 { margin-top: 24px; font-size: 23px; }
  .beauty-cinema p { font-size: 13px; }
  .beauty-product-grid { padding: 0 11px 11px; }
  .beauty-client,
  .beauty-salon { padding: 11px; }
  .beauty-phone { width: min(100%,285px); min-height: 565px; padding: 41px 16px 17px; border-width: 6px; border-radius: 34px; }
  .beauty-dashboard { min-height: 0; }
  .beauty-flow { justify-content: center; gap: 10px; margin: 0 11px 11px; padding: 16px 13px; }
  .beauty-flow strong { font-size: 10px; }
  .hair-bridge { margin: 0 11px 11px; padding: 21px; }
  .hair-consultation { padding: 15px 12px; }
  .widget-lab-layout { gap: 15px; padding: 0 11px 11px; }
  .widget-lab-copy { padding: 0 11px 8px; }
  .widget-lab-copy h4 { font-size: 27px; }
  .widget-lab-copy > p { font-size: 14px; }
  .widget-benefits { grid-template-columns: 1fr; margin-top: 23px; }
  .widget-benefits li:nth-child(n+5) { display: none; }
  .widget-product-stage { padding: 10px; border-radius: 21px; }
  .widget-mode-switch { width: 100%; }
  .widget-stage-canvas { min-height: 565px; border-radius: 18px; }
  .widget-device { left: 50%; width: 252px; height: 525px; border-width: 7px; border-radius: 43px; }
  .widget-device::after { border-radius: 35px; }
  .widget-device--rear,
  .widget-config-card { display: none; }
  .widget-app-grid { gap: 13px 9px; padding: 68px 20px 0; }
  .avero-widget-card--home { top: 270px; }
  .avero-widget-card__metric strong { font-size: 27px; }
  .widget-lock-time strong { font-size: 57px; }
  .avero-widget-card--lock { top: 240px; }
  .widget-demo-note { font-size: 9px; text-align: left; }
  .widget-lab-steps { grid-template-columns: 1fr; margin: 0 11px 11px; border-radius: 17px; }
  .widget-lab-steps > div,
  .widget-lab-steps > div:last-child { grid-column: auto; min-height: 96px; padding: 15px; }
  .widget-lab-steps strong { margin-top: 12px; }
}

/* Visual clarity pass — fewer empty tiles, stronger AVERO product scenes. */
.platform-scope__grid article,
.module-index__rail a,
.module-directory article,
.operation-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.platform-scope__grid article::before,
.module-index__rail a::before,
.module-directory article::before,
.operation-story::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 132px;
  height: 138px;
  right: -28px;
  bottom: -34px;
  background: url("brand/avero-symbol.png") center / contain no-repeat;
  opacity: .055;
  transform: rotate(-8deg);
  pointer-events: none;
}

.platform-scope__grid article {
  background: linear-gradient(145deg,var(--paper),var(--surface));
  box-shadow: 0 16px 34px rgba(24,36,54,.045);
}

.module-index__rail {
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.module-index__rail a {
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg,var(--paper),var(--surface));
  box-shadow: 0 18px 40px rgba(24,36,54,.05);
}

.module-index__rail a:nth-child(2),
.module-index__rail a:nth-child(6) {
  background: linear-gradient(145deg,rgba(46,107,255,.11),var(--paper) 68%);
}

.module-index__rail a::before {
  width: 122px;
  height: 126px;
  opacity: .065;
}

.module-index__rail a::after { content: "↗"; }
.module-index__rail strong { max-width: 15ch; font-size: 19px; }
.module-index__rail small {
  display: block;
  max-width: 25ch;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.module-index__rail a:hover small { color: rgba(255,255,255,.78); }

.widget-lab-layout { grid-template-columns: .62fr 1.38fr; }
.widget-product-stage { box-shadow: inset 0 1px rgba(255,255,255,.06),0 26px 62px rgba(0,0,0,.18); }
.widget-platform-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0 0 11px;
}
.widget-platform-proof span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #aeb9c8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .025em;
}
.widget-stage-canvas {
  min-height: 600px;
  background: radial-gradient(circle at 76% 17%,rgba(46,107,255,.34),transparent 36%),linear-gradient(155deg,#111d31,#08101d 70%);
}
.widget-device {
  background: radial-gradient(circle at 84% 11%,#5e82ff 0 13%,transparent 35%),radial-gradient(circle at 8% 74%,#7d9fff 0 20%,transparent 48%),linear-gradient(150deg,#dce7ff,#3f64c4 48%,#0d2050);
}
.widget-lock-state {
  background: radial-gradient(circle at 85% 4%,rgba(59,111,255,.92),transparent 31%),radial-gradient(circle at 10% 70%,rgba(46,107,255,.62),transparent 50%),linear-gradient(150deg,#0f1830,#02050b);
}
.avero-widget-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 118px;
  height: 122px;
  right: -34px;
  bottom: -46px;
  background: url("brand/avero-symbol.png") center / contain no-repeat;
  opacity: .075;
  transform: rotate(-10deg);
  pointer-events: none;
}
.widget-device--android {
  right: 1%;
  width: 218px;
  height: 450px;
  border-radius: 29px;
  background: radial-gradient(circle at 24% 18%,rgba(92,129,255,.8),transparent 34%),linear-gradient(150deg,#112650,#070d18);
  transform: translateY(-50%) rotate(5deg);
}
.widget-device--android::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #02050a;
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
  transform: translateX(-50%);
}
.widget-device--android::after { border-radius: 21px; }
.widget-device--android .widget-lock-card { top: 150px; }
.widget-device--android .widget-lock-card strong { color: #fff; font-size: 25px; font-variant-numeric: tabular-nums; }
.widget-platform-label {
  position: absolute;
  left: 50%;
  bottom: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(7,13,24,.55);
  color: #a9beff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.operation-story { min-height: 500px; }
.operation-story::before { opacity: .035; filter: grayscale(1) brightness(2); }

.module-directory {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  border-top: 0;
}
.module-directory article,
.module-directory article:nth-child(even) {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(145deg,var(--paper),var(--surface));
}
.module-directory article::before { opacity: .045; }
.module-directory h4 { margin-top: 29px; }
.module-directory p { font-size: 14px; }

@media (max-width: 1100px) {
  .module-index__rail { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .module-directory { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .widget-lab-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .platform-scope { padding: 22px; }
  .platform-scope__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-right: -22px;
    padding: 3px 22px 8px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .platform-scope__grid::-webkit-scrollbar,
  .module-index__rail::-webkit-scrollbar,
  .parking-benefits::-webkit-scrollbar,
  .parking-product-grid::-webkit-scrollbar,
  .beauty-product-grid::-webkit-scrollbar,
  .operation-stories::-webkit-scrollbar,
  .module-directory::-webkit-scrollbar,
  .widget-lab-steps::-webkit-scrollbar { display: none; }
  .platform-scope__grid article {
    flex: 0 0 84%;
    min-height: 205px;
    padding: 21px;
    scroll-snap-align: start;
  }
  .platform-scope__grid h4 { margin-top: 38px; }

  .module-index { padding: 72px 0; }
  .module-index .section-heading { margin-bottom: 30px; }
  .module-index__rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 2px 14px 9px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .module-index__rail a {
    flex: 0 0 78%;
    min-height: 175px;
    padding: 21px;
    scroll-snap-align: start;
  }
  .module-index__rail strong { font-size: 20px; }
  .module-index__rail small { font-size: 11px; }

  .modules-section { padding: 82px 0; }
  .modules-heading { margin-bottom: 38px; }
  .experience-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 30px 22px 24px;
  }
  .experience-heading h3 { margin-top: 10px; }
  .experience-heading > p { max-width: none; font-size: 14px; }

  .parking-benefits {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .parking-benefits > div {
    flex: 0 0 72%;
    min-height: 98px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    scroll-snap-align: start;
  }
  .parking-product-grid,
  .beauty-product-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .parking-role,
  .beauty-client,
  .beauty-salon {
    flex: 0 0 91%;
    max-width: none;
    scroll-snap-align: start;
  }
  .parking-phone { min-height: 515px; }
  .parking-dashboard { min-height: 515px; }
  .experience-flow { display: none; }

  .beauty-cinema__visual { height: 235px; }
  .beauty-cinema figcaption { padding: 20px; }
  .beauty-cinema figcaption > p { display: none; }
  .beauty-cinema figcaption > small { margin-top: 15px; }
  .beauty-phone,
  .beauty-dashboard { min-height: 540px; }
  .beauty-flow {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
  .hair-bridge { padding: 20px; }

  .widget-lab-layout { display: flex; flex-direction: column; gap: 13px; }
  .widget-product-stage { order: 1; }
  .widget-lab-copy { order: 2; padding-top: 8px; }
  .widget-lab-copy h4 { margin-top: 10px; font-size: 25px; }
  .widget-lab-copy > p { margin-top: 11px; font-size: 13px; }
  .widget-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; margin-top: 17px; }
  .widget-benefits li { min-height: 62px; padding: 10px; }
  .widget-platform-proof { justify-content: flex-start; margin-bottom: 9px; }
  .widget-stage-canvas { min-height: 455px; }
  .widget-stage-canvas::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 246px;
    right: -75px;
    bottom: -80px;
    background: url("brand/avero-symbol.png") center / contain no-repeat;
    opacity: .055;
    pointer-events: none;
  }
  .widget-device {
    width: 266px;
    height: 418px;
    border-radius: 39px;
  }
  .widget-device::after { border-radius: 31px; }
  .widget-app-grid { display: none; }
  .avero-widget-card--home { top: 96px; }
  .widget-device__dock { bottom: 15px; }
  .widget-lock-time { padding-top: 60px; }
  .widget-lock-time strong { font-size: 54px; }
  .avero-widget-card--lock { top: 174px; }
  .avero-widget-card__metric strong { font-size: 28px; }
  .widget-lab-steps {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .widget-lab-steps > div,
  .widget-lab-steps > div:last-child {
    flex: 0 0 70%;
    min-height: 104px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    scroll-snap-align: start;
  }

  .operations-experience { margin-top: 18px; }
  .operation-stories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 11px 12px;
    border-top: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .operation-story {
    flex: 0 0 88%;
    min-height: 485px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .ecosystem-experience { margin-top: 18px; }
  .module-directory {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 11px 11px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .module-directory article,
  .module-directory article:nth-child(even) {
    flex: 0 0 84%;
    min-height: 215px;
    padding: 23px 21px;
    scroll-snap-align: start;
  }
  .module-directory h4 { margin-top: 28px; }
  .module-directory p { font-size: 13px; }
  .signature-note { margin: 0 11px 11px; }
}

/* Real product previews inside the four platform roles. */
.platform-scope__grid article { min-height: 226px; }
.platform-scope__grid article h4,
.platform-scope__grid article > p { position: relative; z-index: 2; max-width: 59%; }
.platform-card-preview {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 13px;
  width: 39%;
  height: 105px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0b1422;
  box-shadow: 0 13px 27px rgba(14,25,42,.16);
}
.platform-card-preview img { width: 100%; height: 100%; object-fit: cover; }
.platform-card-preview--terminal img { object-position: center; }
.platform-card-preview--panel { width: 43%; }
.platform-card-preview--panel img { object-position: left top; }
.platform-card-preview--phone { width: 74px; height: 118px; border: 4px solid #152033; border-radius: 17px; }
.platform-card-preview--phone img { object-position: center top; }

/* Widget Lab: concrete settings, iPhone state and Android preview. */
.widget-truth-list {
  display: grid;
  gap: 1px;
  margin: 27px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  background: rgba(255,255,255,.1);
}
.widget-truth-list > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 14px 15px;
  background: rgba(11,18,29,.9);
}
.widget-truth-list dt { color: #86a7ff; font-size: 9px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.widget-truth-list dd { margin: 0; color: #dfe6f0; font-size: 11px; line-height: 1.45; }
.widget-platform-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.widget-platform-badges span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: #aeb9c8; font-size: 9px; font-weight: 700; }

.widget-stage-canvas {
  display: grid;
  grid-template-columns: minmax(185px,225px) 270px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 25px 20px;
}
.widget-stage-side { position: relative; z-index: 3; display: grid; gap: 12px; align-content: center; }
.widget-android-preview,
.widget-config-card {
  position: static;
  width: auto;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  box-shadow: 0 20px 42px rgba(0,0,0,.2);
}
.widget-android-preview { background: rgba(8,14,24,.86); }
.widget-android-preview__top { display: flex; align-items: center; justify-content: space-between; color: #86a7ff; font-size: 8px; font-weight: 800; letter-spacing: .045em; }
.widget-android-preview__top b { color: #dce5f3; font-size: 9px; }
.widget-android-card { position: relative; margin-top: 11px; overflow: hidden; padding: 14px; border: 1px solid rgba(255,255,255,.68); border-radius: 15px; background: #f7f9fc; color: #17202d; }
.widget-android-card::after { content: ""; position: absolute; width: 82px; height: 85px; right: -25px; bottom: -30px; background: url("brand/avero-symbol.png") center / contain no-repeat; opacity: .08; transform: rotate(-8deg); }
.widget-android-card > * { position: relative; z-index: 1; }
.widget-android-card > div { display: flex; align-items: center; gap: 6px; }
.widget-android-card img { width: 55px; height: auto; }
.widget-android-card > div span { padding: 3px 5px; border-radius: 999px; background: rgba(46,107,255,.1); color: #174ed9; font-size: 6px; font-weight: 800; }
.widget-android-card > small { display: block; margin-top: 11px; color: #68768a; font-size: 7px; }
.widget-android-card > strong { display: block; margin-top: 7px; font-family: var(--font-display); font-size: 23px; font-weight: 600; line-height: 1; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.widget-android-card > p { margin: 5px 0 0; color: #174ed9; font-size: 7px; font-weight: 700; }
.widget-android-preview > small { display: block; margin-top: 10px; color: #8d9caf; font-size: 8px; line-height: 1.4; }

.widget-config-card { background: rgba(247,249,252,.96); }
.widget-config-card > strong { margin-top: 12px; }
.widget-config-card dl { display: grid; gap: 0; margin: 13px 0 0; }
.widget-config-card dl > div { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-top: 1px solid #dfe4eb; font-size: 8px; }
.widget-config-card dt { color: #68768a; }
.widget-config-card dd { margin: 0; color: #17202d; font-weight: 750; text-align: right; }

.widget-device {
  position: relative;
  left: auto;
  top: auto;
  justify-self: center;
  transform: none;
}
.widget-home-state[hidden],
.widget-lock-state[hidden] { display: none; }
.widget-home-state,
.widget-lock-state { opacity: 1; transform: none; pointer-events: auto; }
.widget-home-state { background: radial-gradient(circle at 82% 12%,rgba(255,255,255,.28),transparent 30%); }
.avero-widget-card--home { top: 105px; }
.widget-phone-label { position: absolute; left: 50%; bottom: 32px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(7,13,24,.36); color: rgba(255,255,255,.82); font-size: 7px; font-weight: 800; letter-spacing: .06em; white-space: nowrap; transform: translateX(-50%); }
.avero-widget-card--lock { top: 250px; }

/* Compact, visual extension cards instead of empty text tiles. */
.module-directory article,
.module-directory article:nth-child(even) { min-height: 248px; }
.module-mini { position: relative; z-index: 2; height: 62px; margin-top: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.module-directory h4 { margin-top: 16px; }
.module-directory article > p { position: relative; z-index: 2; }
.module-mini--flow { display: flex; align-items: center; justify-content: space-between; gap: 7px; padding: 10px; }
.module-mini--flow b { padding: 8px 9px; border-radius: 9px; background: var(--blue-soft); color: var(--blue-text); font-size: 9px; }
.module-mini--flow i { color: var(--blue-text); font-size: 11px; font-style: normal; }
.module-mini--route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 5px; padding: 12px; }
.module-mini--route b { color: var(--ink-soft); font-size: 8px; }
.module-mini--route i { position: relative; height: 2px; background: rgba(46,107,255,.35); }
.module-mini--route i::after { content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); transform: translateY(-50%); }
.module-mini--map { background: radial-gradient(circle at 24% 23%,rgba(46,107,255,.12),transparent 34%),linear-gradient(135deg,var(--paper),var(--surface)); }
.module-mini--map::before { content: ""; position: absolute; left: 18px; right: 18px; top: 28px; height: 2px; background: linear-gradient(90deg,transparent,var(--blue),transparent); transform: rotate(-7deg); }
.module-mini--map i { position: absolute; width: 10px; height: 10px; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px rgba(46,107,255,.2); }
.module-mini--map i:nth-child(1) { left: 18%; top: 31px; }
.module-mini--map i:nth-child(2) { left: 48%; top: 20px; }
.module-mini--map i:nth-child(3) { right: 18%; top: 27px; }
.module-mini--map span { position: absolute; right: 10px; bottom: 7px; color: var(--blue-text); font-size: 7px; font-weight: 800; }
.module-mini--calendar { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 9px; }
.module-mini--calendar b { color: var(--muted); font-size: 7px; text-align: center; }
.module-mini--calendar i { border-radius: 7px; background: var(--blue-soft); }
.module-mini--calendar i:nth-of-type(2) { background: var(--blue); }
.module-mini--ar { background: linear-gradient(145deg,#111b2a,#1c2b42); }
.module-mini--ar::before,.module-mini--ar::after { content: ""; position: absolute; width: 19px; height: 19px; border-color: #86a7ff; border-style: solid; }
.module-mini--ar::before { left: 12px; top: 11px; border-width: 2px 0 0 2px; }
.module-mini--ar::after { right: 12px; bottom: 11px; border-width: 0 2px 2px 0; }
.module-mini--ar i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #86a7ff; box-shadow: 0 0 0 5px rgba(46,107,255,.16); }
.module-mini--ar i:nth-child(1) { left: 28%; top: 24px; }.module-mini--ar i:nth-child(2) { left: 52%; top: 36px; }.module-mini--ar i:nth-child(3) { right: 20%; top: 18px; }
.module-mini--ar b { position: absolute; left: 12px; bottom: 7px; color: #a9beff; font-size: 7px; }
.module-mini--answer { display: grid; align-content: center; gap: 5px; padding: 10px 12px; }
.module-mini--answer span { color: var(--muted); font-size: 8px; }
.module-mini--answer b { color: var(--ink); font-size: 10px; }

.live-process article { min-height: 165px; }
.live-process strong { margin-top: 31px; }

@media (max-width: 980px) {
  .widget-stage-canvas { grid-template-columns: minmax(175px,225px) 270px; }
}

@media (max-width: 560px) {
  .platform-scope__grid article { min-height: 220px; }
  .platform-card-preview { width: 41%; height: 102px; }
  .platform-card-preview--phone { width: 72px; height: 116px; }

  .widget-truth-list { margin-top: 18px; }
  .widget-truth-list > div { grid-template-columns: 74px 1fr; padding: 12px; }
  .widget-platform-badges { margin-top: 13px; }
  .widget-stage-canvas { grid-template-columns: 1fr; min-height: 0; padding: 17px 13px; }
  .widget-device { grid-row: 1; width: 270px; height: 430px; }
  .widget-stage-side { grid-row: 2; grid-template-columns: 1fr; width: 100%; }
  .widget-android-preview { display: block; }
  .widget-config-card { display: block; }
  .avero-widget-card--home { top: 96px; }
  .widget-lock-time { padding-top: 54px; }
  .avero-widget-card--lock { top: 170px; }
  .widget-phone-label { bottom: 26px; }

  .module-directory article,
  .module-directory article:nth-child(even) { min-height: 245px; }
  .module-mini { margin-top: 17px; }
}

@media (max-width: 560px) {
  /* Long vertical explanations become short, touch-friendly product rails. */
  .data-flow {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .data-flow::-webkit-scrollbar,
  .core-principles::-webkit-scrollbar,
  .live-prize::-webkit-scrollbar,
  .widget-stage-side::-webkit-scrollbar { display: none; }
  .flow-origin,
  .flow-modules,
  .flow-result {
    flex: 0 0 84%;
    min-height: 230px;
    scroll-snap-align: start;
  }
  .flow-modules { grid-template-columns: 1fr; grid-template-rows: repeat(3,1fr); }
  .flow-modules article { min-height: 0; }

  .core-principles {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .core-principles article {
    flex: 0 0 82%;
    min-height: 215px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .live-prize {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .live-prize > div {
    flex: 0 0 86%;
    min-height: 335px;
    border: 1px solid rgba(46,107,255,.22);
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .parking-table,
  .beauty-record { display: none; }
  .parking-dashboard { min-height: 500px; }
  .beauty-dashboard { min-height: 560px; }
  .hair-bridge > p { display: none; }
  .hair-bridge { min-height: 0; }

  .widget-platform-badges { display: none; }
  .widget-stage-side {
    grid-row: 2;
    display: flex;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .widget-android-preview,
  .widget-config-card { flex: 0 0 92%; scroll-snap-align: start; }
}

@media (min-width: 561px) and (max-width: 860px) {
  .data-flow,
  .module-index__rail,
  .parking-product-grid,
  .beauty-product-grid,
  .live-prize,
  .operation-stories,
  .module-directory {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .data-flow::-webkit-scrollbar,
  .module-index__rail::-webkit-scrollbar,
  .parking-product-grid::-webkit-scrollbar,
  .beauty-product-grid::-webkit-scrollbar,
  .live-prize::-webkit-scrollbar,
  .operation-stories::-webkit-scrollbar,
  .module-directory::-webkit-scrollbar { display: none; }

  .flow-origin,
  .flow-modules,
  .flow-result { flex: 0 0 56%; min-height: 260px; scroll-snap-align: start; }
  .flow-modules { grid-template-columns: 1fr; grid-template-rows: repeat(3,1fr); }
  .flow-modules article { min-height: 0; }

  .module-index__rail { border: 0; background: transparent; }
  .module-index__rail a { flex: 0 0 46%; min-height: 190px; scroll-snap-align: start; }

  .parking-product-grid,
  .beauty-product-grid { padding: 0 22px 22px; }
  .parking-role,
  .beauty-client,
  .beauty-salon { max-width: none; scroll-snap-align: start; }
  .parking-role--driver,
  .parking-role--staff { flex: 0 0 48%; }
  .parking-role--owner { flex: 0 0 94%; }
  .beauty-client { flex: 0 0 44%; }
  .beauty-salon { flex: 0 0 94%; }
  .parking-dashboard,
  .beauty-dashboard { min-height: 600px; }
  .beauty-record { display: none; }
  .hair-bridge > p { display: none; }

  .live-prize { border: 0; background: transparent; }
  .live-prize > div { flex: 0 0 58%; min-height: 330px; border: 1px solid rgba(46,107,255,.22); border-radius: 22px; scroll-snap-align: start; }

  .operation-stories { padding: 0 22px 22px; border-top: 0; background: transparent; }
  .operation-story { flex: 0 0 58%; min-height: 530px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; scroll-snap-align: start; }

  .module-directory { padding: 0 22px 22px; }
  .module-directory article,
  .module-directory article:nth-child(even) { flex: 0 0 48%; min-height: 260px; scroll-snap-align: start; }
}
