:root {
  --ink: #111426;
  --ink-soft: #5c6277;
  --surface: #f5f6fa;
  --white: #fff;
  --line: #e3e6ee;
  --primary: #6466e9;
  --primary-dark: #4f46d7;
  --purple: #764ba2;
  --blue: #25a8df;
  --green: #22b881;
  --orange: #ff9e24;
  --red: #ef1050;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 28px 80px rgba(22, 24, 50, .12);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-width: 320px; color: var(--ink); background: var(--white); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section { padding: 128px 0; }
.section-kicker, .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-kicker.light { color: #aeb2ff; }
.section-heading { max-width: 740px; margin-bottom: 64px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .reliability-copy h2, .audience-copy h2, .cta-card h2 { margin-top: 15px; font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -.055em; }
h1 em, h2 em { color: var(--primary); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-heading p { max-width: 610px; margin-top: 22px; color: var(--ink-soft); font-size: 18px; }
.section-heading.centered p { margin-inline: auto; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid transparent; border-radius: 100px; font-weight: 750; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(100, 102, 233, .35); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, #6a6df0, #5545cf); box-shadow: 0 14px 36px rgba(84, 72, 210, .32); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(84, 72, 210, .42); }
.button-outline { border-color: rgba(255, 255, 255, .25); color: #fff; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 14px; }
.button-small svg { width: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; color: #fff; font-weight: 700; }
.text-link span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: transform .25s ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link.dark { color: var(--ink); }
.text-link.dark span { border-color: var(--line); }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; color: #fff; transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(15, 18, 36, .88); box-shadow: 0 8px 30px rgba(0,0,0,.12); backdrop-filter: blur(16px); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 118px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 650; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: #fff; transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid rgba(255,255,255,.25); background: transparent; border-radius: 50%; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 850px; overflow: hidden; padding: 172px 0 38px; color: #fff; background: #101426; }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .42; 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: 66px 66px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.hero-glow-one { top: -350px; right: -260px; width: 760px; height: 760px; background: radial-gradient(circle, rgba(111,80,203,.52), rgba(111,80,203,0) 68%); }
.hero-glow-two { bottom: -490px; left: -190px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(37,168,223,.15), rgba(37,168,223,0) 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 48px; }
.eyebrow { color: #b8bbff; }
.eyebrow span { width: 7px; height: 7px; background: #7d80ff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(125,128,255,.13); }
.hero h1 { max-width: 650px; margin-top: 22px; font-size: clamp(58px, 6.2vw, 88px); line-height: .98; letter-spacing: -.065em; }
.hero h1 em { color: #aeb2ff; }
.hero-title-brand { display: inline-flex; align-items: center; gap: .18em; margin-top: .12em; color: #aeb2ff; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-title-brand > span { line-height: 1; }
.hero-title-brand img { width: clamp(190px, 24vw, 290px); height: auto; }
.hero-lead { max-width: 570px; margin-top: 28px; color: #b9bdcb; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 37px; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 42px; }
.hero-trust p { color: #9298ac; font-size: 13px; line-height: 1.4; }
.hero-trust strong { color: #fff; font-size: 14px; }
.trust-avatars { display: flex; padding-left: 8px; }
.trust-avatars span { display: grid; width: 38px; height: 38px; margin-left: -8px; place-items: center; border: 3px solid #101426; color: #fff; background: #664ed2; border-radius: 50%; font-size: 10px; font-weight: 800; }
.trust-avatars span:nth-child(2) { background: #27a7da; }
.trust-avatars span:nth-child(3) { background: #e69135; font-size: 15px; }

.hero-visual { position: relative; min-height: 560px; }
.dashboard-card { position: absolute; z-index: 2; top: 10px; left: 5%; width: 94%; padding: 26px; color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.24); border-radius: 28px; box-shadow: 0 45px 100px rgba(0,0,0,.33); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.dashboard-top, .dashboard-title-row, .chart-head { display: flex; align-items: center; justify-content: space-between; }
.mini-brand img { width: 78px; height: auto; }
.live-status { display: flex; align-items: center; gap: 7px; color: #596072; font-size: 11px; font-weight: 700; }
.live-status i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(34,184,129,.1); }
.dashboard-title-row { margin-top: 25px; }
.dashboard-title-row span, .chart-head span { color: #9096a8; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.dashboard-title-row h2 { margin-top: 3px; font-size: 20px; letter-spacing: -.03em; }
.dashboard-menu { display: grid; width: 32px; height: 32px; place-items: center; color: #9ba0ad; background: #f4f5f8; border-radius: 9px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 19px; }
.metric { display: grid; grid-template-columns: 38px 1fr; padding: 15px; background: #f7f8fb; border: 1px solid #eceef4; border-radius: 15px; }
.metric-primary { background: #f1f0ff; border-color: #e0ddff; }
.metric-icon { grid-row: 1 / 4; display: grid; width: 34px; height: 34px; place-items: center; color: #5f60dd; background: #dedcff; border-radius: 10px; }
.metric-icon.orange { color: #d87816; background: #ffead2; }
.metric-icon svg { width: 18px; }
.metric span { color: #878da0; font-size: 10px; }
.metric strong { font-size: 20px; line-height: 1.3; letter-spacing: -.03em; }
.metric small { color: #a0a5b4; font-size: 9px; }
.metric small b { color: var(--green); }
.chart-panel { margin-top: 13px; padding: 18px 18px 10px; border: 1px solid #eceef4; border-radius: 16px; }
.chart-head strong { display: block; font-size: 14px; }
.chart-head > b { color: var(--green); font-size: 14px; }
.chart { position: relative; height: 145px; margin-top: 10px; }
.chart-grid { position: absolute; inset: 0 0 20px; opacity: .65; background: repeating-linear-gradient(to bottom, transparent 0, transparent 30px, #e9ebf1 31px); }
.chart svg { position: absolute; inset: 0 0 20px; width: 100%; height: 115px; overflow: visible; }
.chart-area { fill: url(#chartFill); stroke: none; }
.chart-line { fill: none; stroke: #6667e8; stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-labels { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; color: #a2a6b3; font-size: 8px; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 17px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.8); border-radius: 14px; box-shadow: 0 18px 46px rgba(0,0,0,.2); backdrop-filter: blur(8px); }
.floating-card strong { display: block; font-size: 12px; }
.floating-card small { display: block; color: #9297a8; font-size: 9px; }
.floating-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; }
.floating-icon svg { width: 17px; }
.floating-icon.green { color: #158f62; background: #dff8ef; }
.floating-icon.purple { color: #5c57d4; background: #e5e4ff; }
.access-card { top: 68px; right: -25px; animation: float 5s ease-in-out infinite; }
.sync-card { bottom: 54px; left: -24px; animation: float 5s 1.3s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-one { inset: -20px -80px 20px 20px; }
.orbit-two { inset: 55px -10px -45px -40px; }
.hero-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 55px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.11); }
.hero-bottom p { color: #777f96; font-size: 12px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.hero-bottom strong { color: #c5c9d4; }
.hero-badges { display: flex; gap: 34px; color: #bec3d0; font-size: 12px; font-weight: 650; }
.hero-badges span { display: flex; align-items: center; gap: 9px; }
.hero-badges i { color: #71788e; font-style: normal; font-size: 9px; }

.intro { background: #f7f8fb; }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.feature-card { position: relative; min-height: 420px; overflow: hidden; padding: 38px; background: #fff; border: 1px solid #e9eaf0; border-radius: var(--radius-md); box-shadow: 0 14px 42px rgba(26, 30, 58, .045); }
.feature-card h3 { max-width: 510px; margin-top: 10px; font-size: 28px; line-height: 1.2; letter-spacing: -.035em; }
.feature-card p { max-width: 490px; margin-top: 13px; color: var(--ink-soft); }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 27px; place-items: center; border-radius: 14px; }
.feature-icon svg { width: 22px; }
.feature-icon.purple { color: #5d59df; background: #e9e8ff; }
.feature-icon.blue { color: #1689bc; background: #e0f6ff; }
.feature-icon.orange { color: #d57b15; background: #fff0db; }
.feature-icon.green { color: #11926a; background: #dff8ee; }
.card-label { color: #969bac; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.feature-large { min-height: 580px; }
.pos-preview { position: absolute; right: -70px; bottom: -90px; width: 88%; min-width: 560px; height: 330px; overflow: hidden; background: #f7f8fa; border: 9px solid #1d2030; border-radius: 22px 22px 0 0; box-shadow: 0 25px 50px rgba(20,24,45,.2); transform: rotate(-3deg); }
.pos-top { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 13px; color: #a4a8b3; background: #fff; border-bottom: 1px solid #e7e8ed; font-size: 8px; }
.pos-top i { width: 42px; height: 15px; background: url('assets/logo.png') center/contain no-repeat; }
.pos-top span { flex: 1; }
.pos-body { height: 100%; display: grid; grid-template-columns: 42px 1fr 150px; }
.pos-sidebar { display: grid; align-content: start; gap: 12px; padding: 16px 10px; background: #1a1e2d; }
.pos-sidebar span { width: 21px; height: 21px; background: #343849; border-radius: 6px; }
.pos-products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: start; padding: 17px; }
.pos-products div { height: 82px; background: linear-gradient(145deg, #fff, #eeeff6); border: 1px solid #e3e5ec; border-radius: 9px; }
.pos-products div::after { display: block; width: 55%; height: 6px; margin: 58px 10px 0; content: ""; background: #cdd1dc; border-radius: 10px; }
.pos-check { display: grid; align-content: start; gap: 10px; padding: 17px; background: #fff; border-left: 1px solid #e5e6ec; }
.pos-check b { font-size: 12px; }
.pos-check span { height: 26px; background: #f1f2f6; border-radius: 5px; }
.pos-check strong { margin-top: 9px; font-size: 18px; }
.pos-check button { height: 34px; border: 0; color: #fff; background: #6264df; border-radius: 7px; }
.feature-access { background: linear-gradient(145deg, #fff, #f2fbff); }
.bracelet-visual { position: absolute; right: 0; bottom: 22px; left: 0; height: 125px; }
.wristband { position: absolute; top: 27px; left: 50%; width: 330px; height: 62px; background: linear-gradient(90deg, #6753df, #926ee7); border-radius: 7px; box-shadow: 0 18px 25px rgba(86,68,196,.22); transform: translateX(-50%) rotate(-8deg); }
.wristband::before, .wristband::after { position: absolute; top: 0; width: 16px; height: 62px; content: ""; background: radial-gradient(circle at center, transparent 3px, #fff 3.5px) center/16px 16px; }
.wristband::before { left: 15px; }.wristband::after { right: 15px; }
.wristband span { position: absolute; top: 20px; left: 64px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .13em; }
.wristband i { position: absolute; top: 16px; right: 58px; width: 31px; height: 31px; background: repeating-linear-gradient(0deg,#fff 0 2px,transparent 2px 4px), repeating-linear-gradient(90deg,#fff 0 2px,transparent 2px 4px); opacity: .8; }
.scan-line { position: absolute; z-index: 2; top: 0; bottom: 0; left: 48%; width: 2px; background: linear-gradient(transparent, #2dbde8, transparent); box-shadow: 0 0 14px #2dbde8; animation: scan 3s ease-in-out infinite; }
.feature-report { background: linear-gradient(145deg, #fff, #fffaf3); }
.bar-chart { position: absolute; right: 40px; bottom: 35px; left: 40px; height: 120px; display: flex; align-items: end; gap: 12px; padding-top: 20px; border-bottom: 1px solid #e7e8ee; }
.bar-chart i { flex: 1; height: var(--h); background: linear-gradient(to top, #ff9e24, #ffc96b); border-radius: 6px 6px 0 0; box-shadow: 0 6px 14px rgba(255,158,36,.14); }
.feature-wide { grid-column: 1 / -1; min-height: 290px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; background: #15192a; color: #fff; }
.feature-wide h3 { font-size: 34px; }
.process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.process-list span { display: flex; align-items: center; gap: 11px; padding: 16px; color: #c7cad7; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; font-size: 13px; }
.process-list i { display: grid; width: 22px; height: 22px; place-items: center; color: #8de7bd; background: rgba(34,184,129,.14); border-radius: 50%; font-style: normal; }

.reliability { overflow: hidden; color: #fff; background: #111526; }
.reliability-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.reliability-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.device { position: relative; z-index: 2; width: 290px; height: 465px; padding: 17px; background: linear-gradient(145deg, #30364a, #171b2a); border: 1px solid rgba(255,255,255,.14); border-radius: 36px; box-shadow: 0 45px 80px rgba(0,0,0,.38); }
.device-camera { width: 58px; height: 9px; margin: 2px auto 14px; background: #0d101b; border-radius: 20px; }
.device-screen { height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 35%, rgba(34,184,129,.18), transparent 48%), #0f1320; border: 1px solid #343a4a; border-radius: 23px; }
.device-screen span { color: #8691a8; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.device-screen svg { width: 65px; height: 65px; margin: 27px 0 20px; padding: 16px; color: #4bd7a2; background: rgba(34,184,129,.11); border: 1px solid rgba(75,215,162,.2); border-radius: 50%; }
.device-screen strong { font-size: 19px; }.device-screen small { margin-top: 5px; color: #6f778a; font-size: 10px; }
.device-light { width: 8px; height: 8px; margin: 17px auto 0; background: #4bd7a2; border-radius: 50%; box-shadow: 0 0 13px #4bd7a2; }
.signal-ring { position: absolute; border: 1px solid rgba(110,115,235,.14); border-radius: 50%; }
.ring-1 { width: 380px; height: 380px; }.ring-2 { width: 520px; height: 520px; }.ring-3 { width: 680px; height: 680px; }
.offline-tag { position: absolute; z-index: 3; right: 0; bottom: 65px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(38,43,62,.94); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.offline-tag i { width: 9px; height: 9px; background: #ffb14b; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,177,75,.1); }
.offline-tag strong, .offline-tag small { display: block; }.offline-tag strong { font-size: 11px; }.offline-tag small { color: #858da1; font-size: 9px; }
.reliability-copy h2 { margin-bottom: 25px; }.reliability-copy h2 em { color: #aeb2ff; }
.section-lead { color: #a4aabb; font-size: 18px; }
.reliability-steps { display: grid; gap: 0; margin-top: 38px; list-style: none; }
.reliability-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.09); }
.reliability-steps li > span { display: grid; width: 36px; height: 36px; place-items: center; color: #9ca1e9; background: rgba(111,110,230,.12); border-radius: 10px; font-size: 10px; font-weight: 800; }
.reliability-steps strong { font-size: 16px; }.reliability-steps p { margin-top: 3px; color: #7f879a; font-size: 13px; }

.workflow { background: #fff; }
.workflow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
.workflow-track article { min-height: 260px; padding: 25px; background: #f8f9fb; border: 1px solid #ebedf2; border-radius: 20px; }
.step-number { color: #a4a8b5; font-size: 10px; font-weight: 800; }
.step-icon { display: grid; width: 51px; height: 51px; margin-top: 29px; place-items: center; color: #5e5fdc; background: #e9e8ff; border-radius: 15px; }
.step-icon svg { width: 24px; }
.workflow-track article:nth-of-type(2) .step-icon { color: #188dbd; background: #e0f7ff; }
.workflow-track article:nth-of-type(3) .step-icon { color: #169469; background: #dff8ee; }
.workflow-track article:nth-of-type(4) .step-icon { color: #d47c17; background: #fff0dc; }
.workflow-track h3 { margin-top: 23px; font-size: 20px; }.workflow-track p { margin-top: 8px; color: var(--ink-soft); font-size: 13px; }
.flow-arrow { width: 34px; color: #b8bbc5; text-align: center; }

.audience { background: #f4f5f8; }
.audience-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; }
.audience-copy { position: sticky; top: 130px; align-self: start; }
.audience-copy h2 { margin-top: 15px; }.audience-copy p { max-width: 440px; margin: 25px 0 34px; color: var(--ink-soft); font-size: 18px; }
.audience-list { display: grid; }
.audience-list > div { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; padding: 28px 4px; border-bottom: 1px solid #daddE7; transition: padding .25s ease, color .25s ease; }
.audience-list > div:hover { padding-left: 12px; color: var(--primary); }
.audience-list span { color: #a1a5b0; font-size: 10px; font-weight: 800; }.audience-list h3 { font-size: 27px; letter-spacing: -.03em; }.audience-list i { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #d7d9e1; border-radius: 50%; font-style: normal; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq .section-heading { position: sticky; top: 130px; align-self: start; }
.contact-inline { display: inline-block; margin-top: 27px; color: var(--primary); font-size: 19px; font-weight: 800; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 720; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; content: ""; background: var(--ink); transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.accordion details[open] summary { color: var(--primary); }
.accordion details p { max-width: 700px; padding: 0 55px 28px 0; color: var(--ink-soft); }

.cta-section { padding: 0 0 110px; }
.cta-card { position: relative; min-height: 390px; overflow: hidden; display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: 70px; color: #fff; background: #15192c; border-radius: 34px; }
.cta-card::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, black, transparent); }
.cta-card > * { position: relative; z-index: 2; }.cta-card h2 { max-width: 720px; font-size: clamp(42px, 5vw, 66px); }.cta-card h2 em { color: #aeb2ff; }
.cta-glow { position: absolute; right: -160px; bottom: -280px; width: 650px; height: 650px; background: radial-gradient(circle, rgba(103,86,218,.55), rgba(103,86,218,0) 67%); border-radius: 50%; }
.cta-actions { flex: 0 0 230px; display: grid; gap: 17px; }
.button-white { color: var(--ink); background: #fff; }.button-white:hover { box-shadow: 0 15px 38px rgba(0,0,0,.22); }
.whatsapp-link { color: #c7cada; font-size: 13px; font-weight: 700; text-align: center; }.whatsapp-link span { margin-left: 7px; }

.site-footer { padding: 65px 0 25px; color: #bdc1ce; background: #0c0f1c; }
.footer-main { display: grid; grid-template-columns: 1fr auto auto; gap: 110px; padding-bottom: 55px; }
.footer-brand img { width: 125px; }.footer-brand p { margin-top: 20px; color: #70778a; font-size: 13px; }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 12px; min-width: 145px; font-size: 13px; }
.footer-nav strong, .footer-contact strong { margin-bottom: 7px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; color: #5f6575; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.floating-phone { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: none; width: 54px; height: 54px; place-items: center; color: #fff; background: linear-gradient(135deg, #6b6ceb, #5546cc); border-radius: 50%; box-shadow: 0 12px 30px rgba(84,72,210,.36); }.floating-phone svg { width: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scan { 0%,100% { left: 20%; opacity: .1; } 50% { left: 80%; opacity: 1; } }

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

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }.header-phone { display: none; }.menu-toggle { display: block; }
  .mobile-nav { position: fixed; top: 84px; right: 0; left: 0; display: grid; max-height: 0; overflow: hidden; background: rgba(15,18,36,.98); transition: max-height .3s ease; }
  .mobile-nav.is-open { max-height: calc(100vh - 84px); border-top: 1px solid rgba(255,255,255,.08); }
  .mobile-nav a { padding: 17px 24px; border-bottom: 1px solid rgba(255,255,255,.07); color: #d6d8e1; font-weight: 650; }
  .mobile-nav .mobile-phone { color: #aeb2ff; }
  .hero { min-height: auto; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.hero-visual { width: min(720px, 100%); min-height: 580px; margin: 15px auto 0; }
  .hero-bottom { margin-top: 0; }
  .reliability-grid { gap: 35px; }.reliability-visual { transform: scale(.85); margin-inline: -50px; }.offline-tag { right: 10px; }
  .workflow-track { grid-template-columns: 1fr 1fr; gap: 16px; }.flow-arrow { display: none; }
  .audience-grid, .faq-grid { gap: 55px; }
  .cta-card { padding: 55px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-large { min-height: 0; }
  .pos-preview { position: relative; right: auto; bottom: auto; width: calc(100% + 76px); min-width: 0; height: 300px; margin: 34px -38px -38px; transform: none; }
  .feature-access .bracelet-visual { position: relative; right: auto; bottom: auto; left: auto; height: 125px; margin-top: 28px; }
  .feature-report .bar-chart { position: relative; right: auto; bottom: auto; left: auto; height: 120px; margin-top: 30px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 86px 0; }.section-heading { margin-bottom: 42px; }
  .section-heading h2, .reliability-copy h2, .audience-copy h2 { font-size: 43px; }.section-heading p, .section-lead, .audience-copy p { font-size: 16px; }
  .header-inner { height: 72px; }.brand img { width: 105px; }.desktop-nav { display: none; }.mobile-nav { top: 72px; }
  .hero { padding-top: 128px; }.hero h1 { font-size: 56px; }.hero-title-brand img { width: clamp(180px, 56vw, 250px); }.hero-lead { font-size: 17px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }.hero-visual { min-height: 0; display: grid; gap: 12px; margin-top: 35px; }.hero-visual .orbit { display: none; }.dashboard-card { position: relative; top: auto; left: auto; width: 100%; padding: 18px; transform: none; }.hero-visual .floating-card { position: relative; top: auto; right: auto; bottom: auto; left: auto; animation: none; }.access-card { justify-self: start; }.sync-card { justify-self: end; }.metric strong { font-size: 15px; }.chart { height: 115px; }.chart svg { height: 86px; }.hero-bottom { align-items: flex-start; flex-direction: column; gap: 24px; }.hero-badges { flex-wrap: wrap; gap: 16px 22px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 0; padding: 29px; }.feature-large { min-height: 0; }.pos-preview { position: relative; right: auto; bottom: auto; width: calc(100% + 58px); min-width: 0; height: 270px; margin: 34px -29px -29px; transform: none; }.pos-body { grid-template-columns: 38px minmax(0, 1fr) 126px; }.feature-access { min-height: 0; }.feature-access .bracelet-visual { position: relative; right: auto; bottom: auto; left: auto; height: 125px; margin-top: 28px; }.feature-report .bar-chart { position: relative; right: auto; bottom: auto; left: auto; height: 120px; margin-top: 30px; }.feature-wide { grid-column: auto; grid-template-columns: 1fr; min-height: auto; }.process-list { grid-template-columns: 1fr; }
  .reliability-grid { grid-template-columns: 1fr; }.reliability-visual { min-height: 530px; order: 2; transform: scale(.86); margin: -25px -30px -60px; }.offline-tag { right: auto; bottom: 35px; left: 50%; width: max-content; max-width: calc(100% - 48px); transform: translateX(-50%); }.reliability-copy { order: 1; }
  .workflow-track { grid-template-columns: 1fr; }.workflow-track article { min-height: auto; }
  .audience-grid, .faq-grid { grid-template-columns: 1fr; }.audience-copy, .faq .section-heading { position: static; }.audience-list h3 { font-size: 22px; }.audience-list > div { grid-template-columns: 42px 1fr auto; }
  .faq-grid { gap: 15px; }.accordion summary { font-size: 17px; }.accordion details p { padding-right: 0; }
  .cta-section { padding-bottom: 75px; }.cta-card { min-height: 470px; align-items: flex-start; flex-direction: column; justify-content: space-between; padding: 38px 28px; border-radius: 25px; }.cta-card h2 { font-size: 43px; }.cta-actions { width: 100%; flex-basis: auto; }.cta-glow { right: -280px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }.floating-phone { display: grid; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 48px; }.dashboard-title-row h2 { font-size: 17px; }.metric-grid { grid-template-columns: 1fr; }.metric:nth-child(2) { display: none; }.floating-card { padding: 11px; }.floating-card strong { font-size: 10px; }.hero-visual { min-height: 0; }.chart-panel { padding: 13px; }
  .feature-card h3 { font-size: 25px; }.pos-preview { height: 240px; }.pos-body { grid-template-columns: 34px minmax(0, 1fr) 108px; }.pos-products { gap: 7px; padding: 10px; }.pos-products div { height: 68px; }.pos-products div::after { margin-top: 47px; }.pos-check { gap: 7px; padding: 10px; }.pos-check b { font-size: 10px; }.pos-check span { height: 21px; }.pos-check strong { font-size: 15px; }.pos-check button { padding-inline: 4px; font-size: 9px; line-height: 1.1; }.wristband { width: min(290px, calc(100% + 58px)); }.feature-wide h3 { font-size: 29px; }
  .reliability-visual { transform: scale(.75); margin: -65px -60px -100px; }.offline-tag { right: auto; }
}
