:root {
  --ink: #07171c;
  --ink-2: #0b242b;
  --ink-3: #12343b;
  --cyan: #20c8c6;
  --cyan-bright: #5be3dc;
  --cyan-soft: #dff8f5;
  --paper: #f4f7f6;
  --white: #ffffff;
  --text: #172b31;
  --muted: #64777c;
  --line: rgba(7, 23, 28, .12);
  --shadow: 0 22px 60px rgba(5, 29, 35, .14);
  --radius: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: var(--ink); background: var(--cyan-bright); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan-bright); outline-offset: 3px; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.company-logo { width: auto; height: 58px; }
.brand-divider { width: 1px; height: 25px; background: rgba(255,255,255,.25); margin: 0 3px; }
.app-icon { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 7px 20px rgba(0,0,0,.25); }
.app-name { color: var(--white); font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 650; }
.nav a { transition: color .2s ease, background .2s ease; }
.nav a:hover { color: var(--white); }
.nav-cta { padding: 11px 17px; color: var(--ink) !important; background: var(--cyan-bright); border-radius: 9px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 830px;
  padding: 150px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(32,200,198,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,200,198,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 35%, rgba(26,183,180,.18), transparent 34%),
    linear-gradient(132deg, #071318 0%, #0a2027 63%, #09242b 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 76px; background: var(--paper); clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 460px; height: 460px; right: -280px; top: -170px; background: rgba(52,219,212,.08); }
.hero-orb-two { width: 300px; height: 300px; left: -210px; bottom: 80px; background: rgba(52,219,212,.06); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; min-height: 555px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--cyan-bright); font-size: 12px; line-height: 1.2; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #138f91; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; line-height: 1.08; }
h1 { max-width: 670px; margin-bottom: 24px; font-size: clamp(45px, 5.2vw, 73px); font-weight: 760; }
h2 { margin-bottom: 22px; font-size: clamp(36px, 4vw, 56px); color: var(--ink); }
h1 em, h2 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 600px; margin-bottom: 30px; color: rgba(255,255,255,.69); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.btn { display: inline-flex; min-height: 50px; padding: 13px 20px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--cyan-bright); box-shadow: 0 12px 30px rgba(39,209,203,.19); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(39,209,203,.28); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.045); }
.btn-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; padding: 0; color: rgba(255,255,255,.67); list-style: none; font-size: 12px; font-weight: 650; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--cyan-bright); font-weight: 900; }

.hero-visual { position: relative; min-height: 590px; }
.hero-glow { position: absolute; inset: 10% 0 0 12%; background: radial-gradient(circle, rgba(46,209,205,.2), transparent 64%); filter: blur(15px); }
.hero-device { position: absolute; }
.device-chip { position: absolute; z-index: 8; top: -13px; left: 18px; padding: 7px 11px; color: #082126; background: var(--cyan-bright); border: 2px solid #fff; border-radius: 999px; box-shadow: 0 8px 18px rgba(0,0,0,.24); font-size: 9px; font-weight: 900; letter-spacing: .1em; white-space: nowrap; }
.hero-pc { z-index: 1; top: 74px; right: 0; width: min(630px, 94%); filter: drop-shadow(0 34px 35px rgba(0,0,0,.34)); }
.hero-pc-screen { padding: 9px; overflow: hidden; background: #fff; border: 3px solid #fff; border-radius: 17px; box-shadow: inset 0 0 0 2px #dce5e7; }
.hero-pc-screen img { display: block; width: 100%; height: auto; border-radius: 7px; }
.hero-pc-neck { width: 92px; height: 49px; margin: -1px auto 0; background: linear-gradient(90deg, #eef3f4, #fff 50%, #dbe4e6); clip-path: polygon(30% 0, 70% 0, 86% 100%, 14% 100%); }
.hero-pc-base { width: 194px; height: 11px; margin: -1px auto 0; background: #fff; border-radius: 50% 50% 7px 7px; box-shadow: 0 5px 11px rgba(0,0,0,.22); }
.hero-tablet { z-index: 4; right: 10px; bottom: -4px; width: 205px; filter: drop-shadow(0 27px 30px rgba(0,0,0,.4)); }
.hero-tablet-shell, .hero-mobile-shell { position: relative; padding: 9px; overflow: hidden; background: #fff; border: 3px solid #fff; box-shadow: inset 0 0 0 2px #dce5e7; }
.hero-tablet-shell { border-radius: 25px; }
.hero-tablet-shell img, .hero-mobile-shell img { display: block; width: 100%; height: auto; }
.hero-tablet-shell img { border-radius: 15px; }
.hero-tablet-shell i, .hero-mobile-shell i { position: absolute; z-index: 2; top: 4px; left: 50%; width: 5px; height: 5px; margin-left: -2px; background: #30444a; border-radius: 50%; }
.hero-mobile { z-index: 5; left: 7px; bottom: -2px; width: 137px; filter: drop-shadow(0 27px 30px rgba(0,0,0,.45)); transform: rotate(-2deg); }
.hero-mobile .device-chip { left: -4px; }
.hero-mobile-shell { padding: 7px; border-radius: 25px; }
.hero-mobile-shell img { border-radius: 17px; }
.monitor { position: absolute; top: 58px; right: -52px; width: min(650px, 96%); filter: drop-shadow(0 34px 35px rgba(0,0,0,.32)); }
.monitor-screen { position: relative; aspect-ratio: 16 / 9.2; padding: 11px; overflow: hidden; background: #020506; border: 3px solid #26343a; border-radius: 14px; }
.monitor-screen img { width: 100%; height: 100%; object-fit: cover; object-position: left top; border-radius: 6px; }
.monitor-camera { position: absolute; z-index: 2; top: 6px; left: 50%; width: 4px; height: 4px; background: #607077; border-radius: 50%; }
.monitor-neck { width: 90px; height: 46px; margin: 0 auto; background: linear-gradient(90deg, #172329, #46575e 50%, #172329); clip-path: polygon(30% 0, 70% 0, 86% 100%, 14% 100%); }
.monitor-base { width: 190px; height: 9px; margin: -1px auto 0; background: linear-gradient(#485860, #1a282e); border-radius: 50% 50% 7px 7px; }
.phone { position: absolute; z-index: 5; width: 218px; padding: 8px; overflow: hidden; background: #111d22; border: 1px solid rgba(255,255,255,.22); border-radius: 30px; box-shadow: 0 28px 60px rgba(0,0,0,.45), inset 0 0 0 2px #314149; }
.phone-products { left: 4px; bottom: 10px; transform: rotate(-2deg); }
.phone-top { position: absolute; z-index: 5; top: 10px; left: 50%; width: 70px; height: 15px; margin-left: -35px; background: #0b1316; border-radius: 0 0 12px 12px; }
.phone-top span { display: block; width: 26px; height: 3px; margin: 3px auto; background: #26353a; border-radius: 3px; }
.phone-ui { min-height: 408px; padding: 24px 8px 8px; color: var(--text); background: #f3f7f7; border-radius: 23px; }
.phone-ui-head { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 7px; padding: 4px 2px 8px; }
.phone-ui-head img { width: 24px; height: 24px; border-radius: 6px; }
.phone-ui-head strong, .phone-ui-head small { display: block; line-height: 1.2; }
.phone-ui-head strong { font-size: 10px; }
.phone-ui-head small { margin-top: 2px; color: var(--muted); font-size: 7px; }
.phone-categories { display: flex; gap: 5px; margin: 1px 0 8px; overflow: hidden; }
.phone-categories span { padding: 4px 7px; color: #718086; background: #e2e9e9; border-radius: 8px; font-size: 7px; font-weight: 800; }
.phone-categories .active { color: var(--white); background: #13a8a9; }
.mobile-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mobile-product-grid article { min-width: 0; padding: 4px 4px 6px; background: var(--white); border: 1px solid #dfe8e8; border-radius: 9px; box-shadow: 0 3px 8px rgba(8,32,38,.06); }
.mobile-product-grid img { width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; border-radius: 6px; }
.mobile-product-grid span, .mobile-product-grid b { display: block; padding-inline: 2px; line-height: 1.2; }
.mobile-product-grid span { margin-top: 4px; color: #182a30; font-size: 7px; font-weight: 800; }
.mobile-product-grid b { margin-top: 2px; color: #0a9b9d; font-size: 7px; }
.phone-cart { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; padding: 7px 8px; color: var(--white); background: #12343b; border-radius: 9px; font-size: 8px; }
.float-card { position: absolute; z-index: 8; display: flex; align-items: center; gap: 10px; padding: 11px 14px; color: var(--ink); background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.7); border-radius: 12px; box-shadow: 0 18px 36px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.float-card small, .float-card strong { display: block; line-height: 1.35; white-space: nowrap; }
.float-card small { color: var(--muted); font-size: 9px; }
.float-card strong { font-size: 11px; }
.float-order { right: 0; top: 22px; }
.float-sync { right: 45px; bottom: 55px; }
.float-sync > span { display: grid; width: 27px; height: 27px; place-items: center; color: #087f82; background: var(--cyan-soft); border-radius: 50%; font-weight: 900; }
.status-dot, .live-dot { width: 10px; height: 10px; background: #2ecf95; border-radius: 50%; box-shadow: 0 0 0 5px rgba(46,207,149,.14); }
.segment-strip { position: relative; z-index: 3; display: flex; height: 95px; margin-top: 38px; align-items: center; justify-content: center; gap: 34px; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.segment-strip i { width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; opacity: .6; }

.section-heading { margin-bottom: 58px; }
.section-heading.center { max-width: 790px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 660px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.section-heading.center > p:last-child { margin-right: auto; margin-left: auto; }
.section-heading.split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.section-heading.split h2 { margin-bottom: 0; }
.section-heading.split > p { padding-bottom: 4px; }

.benefits { padding-top: 82px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 305px; padding: 36px 32px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(5,32,39,.055); }
.benefit-card.featured { color: var(--white); background: linear-gradient(145deg, #0b282f, #0c3c43); border-color: transparent; box-shadow: 0 22px 55px rgba(5,39,47,.18); }
.benefit-card.featured::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 190px; height: 190px; background: rgba(47,212,207,.12); border-radius: 50%; }
.card-number { position: absolute; top: 26px; right: 28px; color: #b5c2c3; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.featured .card-number { color: rgba(255,255,255,.38); }
.icon-box { display: grid; width: 50px; height: 50px; margin-bottom: 28px; place-items: center; color: #087f82; background: var(--cyan-soft); border-radius: 14px; font-size: 23px; font-weight: 800; }
.featured .icon-box { color: var(--ink); background: var(--cyan-bright); }
.benefit-card h3 { margin-bottom: 12px; font-size: 21px; letter-spacing: -.02em; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.featured p { color: rgba(255,255,255,.65); }

.devices { background: #eef3f2; border-top: 1px solid rgba(7,23,28,.06); border-bottom: 1px solid rgba(7,23,28,.06); }
.device-showcase { display: grid; gap: 24px; }
.device-card { display: grid; min-height: 460px; padding: 52px 56px; align-items: center; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 18px 48px rgba(5,31,37,.07); }
.mobile-device { grid-template-columns: .8fr 1.2fr; background: linear-gradient(135deg, #fff 0 56%, #e5f7f5 56%); }
.tablet-device { grid-template-columns: .72fr 1.28fr; color: var(--white); background: linear-gradient(135deg, #0a1e24, #0d343c); border: 0; }
.desktop-device { grid-template-columns: .8fr 1.2fr; background: linear-gradient(135deg, #fff 0 54%, #edf2f1 54%); }
.device-copy { position: relative; z-index: 3; max-width: 420px; }
.device-label { display: inline-block; margin-bottom: 13px; padding: 7px 11px; color: #087f82; background: var(--cyan-soft); border-radius: 7px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tablet-device .device-label { color: var(--cyan-bright); background: rgba(40,208,203,.11); }
.device-copy h3 { margin-bottom: 12px; color: var(--ink); font-size: 38px; line-height: 1; letter-spacing: -.04em; }
.tablet-device .device-copy h3 { color: var(--white); }
.device-copy > p { color: var(--muted); font-size: 15px; }
.tablet-device .device-copy > p { color: rgba(255,255,255,.64); }
.device-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.device-copy li { margin-top: 9px; color: #40575d; font-size: 13px; font-weight: 650; }
.tablet-device .device-copy li { color: rgba(255,255,255,.73); }
.device-copy li::before { content: "✓"; margin-right: 9px; color: #0ea3a4; font-weight: 900; }
.device-phone { position: relative; width: 270px; margin: 0 auto; padding: 9px; overflow: hidden; background: #fff; border: 3px solid #fff; border-radius: 38px; box-shadow: 0 30px 55px rgba(4,33,38,.28), inset 0 0 0 2px #dce5e7; transform: rotate(2deg); }
.device-phone > img { display: block; width: 100%; height: auto; border-radius: 27px; }
.device-phone-notch { position: absolute; z-index: 3; top: 6px; left: 50%; width: 56px; height: 8px; margin-left: -28px; background: #20343a; border: 2px solid #fff; border-radius: 0 0 8px 8px; }
.device-phone-content { min-height: 520px; padding: 34px 12px 12px; color: var(--text); background: #f2f6f6; border-radius: 29px; }
.mini-header, .mini-cart { display: flex; align-items: center; justify-content: space-between; }
.mini-header { padding: 3px 2px 10px; font-size: 11px; }
.mini-header span { color: #0b9294; font-size: 9px; font-weight: 850; }
.mini-tabs { display: flex; gap: 5px; margin-bottom: 10px; }
.mini-tabs > * { padding: 5px 8px; color: #6f8085; background: #e1e8e8; border-radius: 7px; font-size: 8px; }
.mini-tabs b { color: var(--white); background: #119fa0; }
.mini-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.mini-products article { min-width: 0; padding: 5px; background: var(--white); border: 1px solid #dfe7e7; border-radius: 10px; box-shadow: 0 3px 8px rgba(7,27,33,.05); }
.mini-products img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; border-radius: 6px; }
.mini-products b, .mini-products small { display: block; padding-inline: 2px; line-height: 1.2; }
.mini-products b { margin-top: 5px; font-size: 8px; }
.mini-products small { margin-top: 2px; color: #07999a; font-size: 8px; font-weight: 800; }
.mini-cart { margin-top: 9px; padding: 9px 10px; color: var(--white); background: #0d343b; border-radius: 9px; font-size: 9px; }
.tablet-frame { position: relative; width: 320px; max-width: 100%; margin: 0 auto; padding: 10px; overflow: hidden; background: #fff; border: 3px solid #fff; border-radius: 26px; box-shadow: 0 32px 70px rgba(0,0,0,.45), inset 0 0 0 2px #dce5e7; transform: perspective(1200px) rotateY(-3deg); }
.tablet-frame img { display: block; width: 100%; height: auto; border-radius: 16px; }
.tablet-camera { position: absolute; z-index: 3; top: 5px; left: 50%; width: 5px; height: 5px; background: #30444a; border-radius: 50%; }
.desktop-frame { position: relative; width: 100%; margin-left: 0; filter: drop-shadow(0 28px 32px rgba(4,35,40,.2)); }
.desktop-screen { padding: 10px; background: #fff; border: 3px solid #fff; border-radius: 15px; box-shadow: inset 0 0 0 2px #dce5e7; }
.desktop-screen img { display: block; width: 100%; height: auto; border-radius: 6px; }
.desktop-stand { width: 150px; height: 45px; margin: 0 auto; background: linear-gradient(90deg, #e4ecee, #fff 50%, #d7e1e3); clip-path: polygon(35% 0,65% 0,80% 82%,100% 86%,100% 100%,0 100%,0 86%,20% 82%); }

.tables-section { background: var(--white); }
.two-column { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; }
.copy-block > p:not(.eyebrow) { max-width: 510px; color: var(--muted); font-size: 16px; }
.check-list { margin-top: 32px; }
.check-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); }
.check-list > div > b { color: #159d9f; font-size: 11px; letter-spacing: .1em; }
.check-list strong, .check-list small { display: block; }
.check-list strong { font-size: 14px; }
.check-list small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.screenshot-card { margin: 0; overflow: hidden; background: #e9eeed; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.window-bar { display: flex; height: 38px; padding: 0 14px; align-items: center; gap: 6px; background: #e1e8e7; }
.window-bar span { width: 8px; height: 8px; background: #a8b6b8; border-radius: 50%; }
.window-bar span:first-child { background: #ee7e72; }
.window-bar span:nth-child(2) { background: #e9c35f; }
.window-bar span:nth-child(3) { background: #67c892; }
.window-bar b { margin-left: 8px; color: #64777c; font-size: 9px; letter-spacing: .05em; }
.screenshot-card > img { width: 100%; aspect-ratio: 16 / 9.2; object-fit: cover; object-position: top left; }
.screenshot-card figcaption { display: flex; padding: 14px 18px; align-items: center; gap: 10px; color: #53676c; background: #f6f8f8; font-size: 11px; font-weight: 750; }
.tables-monitor { margin: 0; }
.tables-monitor-shell { position: relative; padding-top: 8px; filter: drop-shadow(0 28px 32px rgba(4,35,40,.22)); }
.tables-monitor-camera { position: absolute; z-index: 3; top: 15px; left: 50%; width: 5px; height: 5px; margin-left: -2px; background: #607077; border-radius: 50%; }
.tables-monitor-screen { padding: 11px; overflow: hidden; background: #fff; border: 3px solid #fff; border-radius: 18px; box-shadow: inset 0 0 0 2px #dce5e7; }
.tables-app-exact { overflow: hidden; background: #071016; border-radius: 8px; }
.tables-app-exact img { display: block; width: 100%; height: auto; }
.tables-monitor-neck { width: 86px; height: 44px; margin: -1px auto 0; background: linear-gradient(90deg, #e6edef, #fff 50%, #d4dfe1); clip-path: polygon(30% 0,70% 0,86% 100%,14% 100%); }
.tables-monitor-base { width: 180px; height: 10px; margin: -1px auto 0; background: #fff; border-radius: 50% 50% 7px 7px; box-shadow: 0 5px 12px rgba(4,35,40,.18); }
.tables-monitor figcaption { display: flex; margin-top: 12px; align-items: center; justify-content: center; gap: 10px; color: #53676c; font-size: 11px; font-weight: 750; }
.live-dot { width: 7px; height: 7px; flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(46,207,149,.12); }

.workflow { color: var(--white); background: var(--ink); overflow: hidden; }
.workflow::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(32,200,198,.12), transparent 40%); pointer-events: none; }
.workflow h2 { color: var(--white); }
.flow-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow-line { position: absolute; z-index: 1; left: 12%; right: 12%; top: 52%; height: 1px; background: linear-gradient(90deg, transparent, rgba(70,220,214,.32), transparent); }
.flow-card { position: relative; min-height: 265px; padding: 28px 24px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; backdrop-filter: blur(10px); }
.flow-card > span { position: absolute; top: 19px; right: 20px; color: rgba(255,255,255,.28); font-size: 11px; font-weight: 900; }
.flow-icon { display: grid; width: 44px; height: 44px; margin-bottom: 35px; place-items: center; color: var(--ink); background: var(--cyan-bright); border-radius: 50%; font-weight: 900; box-shadow: 0 0 0 8px rgba(39,211,204,.08); }
.flow-card h3 { margin-bottom: 10px; font-size: 17px; }
.flow-card p { margin-bottom: 0; color: rgba(255,255,255,.57); font-size: 13px; }

.owner { padding: 135px 0; color: var(--white); background: linear-gradient(132deg, #0b282e, #0b3a42); overflow: hidden; }
.owner::before { content: ""; position: absolute; right: -120px; bottom: -180px; width: 560px; height: 560px; background: rgba(40,211,204,.07); border: 1px solid rgba(61,222,216,.08); border-radius: 50%; }
.owner-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.owner h2 { color: var(--white); }
.owner-copy > p:not(.eyebrow) { color: rgba(255,255,255,.64); font-size: 16px; }
.owner-points { margin-top: 35px; }
.owner-points article { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.1); }
.owner-points article > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--cyan-bright); background: rgba(40,211,204,.1); border-radius: 10px; font-weight: 900; }
.owner-points h3 { margin: 0 0 3px; font-size: 14px; }
.owner-points p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.owner-visual { position: relative; min-height: 560px; }
.owner-dashboard { position: absolute; top: 30px; right: -85px; width: 590px; padding: 10px; overflow: hidden; background: #14282e; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; box-shadow: 0 32px 70px rgba(0,0,0,.36); transform: perspective(1100px) rotateY(-5deg); }
.owner-dashboard img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center center; border-radius: 7px; opacity: .96; transform: scale(1.75); transform-origin: 68% 50%; }
.owner-phone { left: 4px; bottom: 0; width: 245px; transform: rotate(-2deg); }
.owner-phone-ui { min-height: 475px; padding: 33px 13px 14px; color: var(--text); background: #f4f7f7; border-radius: 23px; }
.owner-head { display: flex; align-items: center; justify-content: space-between; padding: 3px; }
.owner-head small, .owner-head b { display: block; line-height: 1.4; }
.owner-head small { color: var(--muted); font-size: 8px; }
.owner-head b { font-size: 11px; }
.owner-total { position: relative; margin-top: 12px; padding: 15px; color: var(--white); background: linear-gradient(135deg, #0d3239, #0b555a); border-radius: 13px; overflow: hidden; }
.owner-total::after { content: ""; position: absolute; right: -25px; bottom: -38px; width: 90px; height: 90px; background: rgba(60,226,217,.18); border-radius: 50%; }
.owner-total small, .owner-total strong, .owner-total em { position: relative; z-index: 2; display: block; }
.owner-total small { color: rgba(255,255,255,.6); font-size: 8px; }
.owner-total strong { margin: 3px 0 1px; font-size: 23px; letter-spacing: -.03em; }
.owner-total strong i { font-size: 9px; font-style: normal; }
.owner-total em { color: rgba(255,255,255,.47); font-size: 7px; font-style: normal; }
.chart-head { display: flex; margin: 17px 2px 4px; align-items: center; justify-content: space-between; }
.chart-head b { font-size: 9px; }
.chart-head span { padding: 3px 6px; color: #0c8f91; background: #dff2f1; border-radius: 5px; font-size: 7px; font-weight: 850; }
.bar-chart { display: flex; height: 145px; padding: 12px 9px 6px; align-items: flex-end; justify-content: space-around; background: var(--white); border: 1px solid #e2e9e9; border-radius: 11px; }
.bar-chart > div { display: flex; width: 42px; height: 100%; flex-direction: column; align-items: center; justify-content: flex-end; }
.bar-chart i { width: 23px; height: var(--bar); background: linear-gradient(#27d1ca, #0e8f94); border-radius: 5px 5px 2px 2px; box-shadow: 0 4px 10px rgba(17,169,170,.18); }
.bar-chart span { margin-top: -15px; color: var(--white); font-size: 7px; font-weight: 900; }
.bar-chart small { margin-top: 6px; color: #728287; font-size: 7px; }
.owner-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-top: 9px; }
.owner-stats > div { padding: 10px; background: var(--white); border: 1px solid #e2e9e9; border-radius: 9px; }
.owner-stats small, .owner-stats b { display: block; }
.owner-stats small { color: var(--muted); font-size: 7px; }
.owner-stats b { margin-top: 2px; font-size: 10px; }
.anywhere-badge { position: absolute; z-index: 8; right: 4px; bottom: 50px; display: flex; padding: 12px 16px; align-items: center; gap: 11px; color: var(--ink); background: var(--white); border-radius: 12px; box-shadow: 0 18px 38px rgba(0,0,0,.25); }
.anywhere-badge > span { color: #23bd89; font-size: 12px; }
.anywhere-badge small, .anywhere-badge b { display: block; white-space: nowrap; }
.anywhere-badge small { color: var(--muted); font-size: 8px; }
.anywhere-badge b { font-size: 11px; }

.modules { background: var(--paper); }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.module-card { position: relative; min-height: 190px; padding: 27px 25px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.module-card:hover { transform: translateY(-4px); border-color: rgba(14,166,168,.35); box-shadow: 0 16px 35px rgba(7,38,44,.08); }
.module-card span { display: block; margin-bottom: 35px; color: #149c9e; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.module-card h3 { margin-bottom: 7px; font-size: 16px; }
.module-card p { margin-bottom: 0; color: var(--muted); font-size: 12px; }

.real-system { padding-top: 20px; }
.real-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.real-card { margin: 0; padding: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 45px rgba(7,29,35,.08); }
.real-label { display: flex; padding: 10px 8px 17px; align-items: center; justify-content: space-between; }
.real-label span { font-size: 13px; font-weight: 850; }
.real-label b { color: #0d9395; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.real-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left; border: 1px solid #e0e7e7; border-radius: 12px; }

.cta-section { padding-top: 60px; }
.cta-box { position: relative; display: grid; grid-template-columns: 84px 1fr auto; padding: 60px 62px; align-items: center; gap: 35px; overflow: hidden; color: var(--white); background: linear-gradient(130deg, #07191f, #0b343c); border-radius: 28px; box-shadow: 0 25px 65px rgba(5,32,38,.2); }
.cta-box::after { content: ""; position: absolute; right: 14%; bottom: -160px; width: 370px; height: 370px; background: rgba(40,211,204,.08); border-radius: 50%; }
.cta-mark { position: relative; z-index: 2; display: grid; width: 76px; height: 76px; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 19px; }
.cta-mark img { width: 52px; height: 52px; border-radius: 13px; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy .eyebrow { margin-bottom: 13px; }
.cta-copy h2 { margin-bottom: 13px; color: var(--white); font-size: clamp(32px, 3.3vw, 47px); }
.cta-copy > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.6); }
.cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; min-width: 190px; }

.footer { padding: 34px 0; color: rgba(255,255,255,.55); background: #061216; font-size: 11px; }
.footer-inner { display: flex; align-items: center; gap: 26px; }
.footer-brand { margin-right: auto; }
.footer-brand img:first-child { width: auto; height: 46px; }
.footer-brand img:nth-of-type(2) { width: 26px; height: 26px; border-radius: 7px; }
.footer-brand > span { width: 1px; height: 20px; background: rgba(255,255,255,.2); }
.footer-brand b { color: var(--white); font-size: 14px; }
.footer p { margin: 0; }
.footer a { color: var(--cyan-bright); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .hero .reveal { transition-delay: .08s; }

@media (max-width: 1100px) {
  .nav { gap: 17px; }
  .nav a:not(.nav-cta):nth-child(4), .nav a:not(.nav-cta):nth-child(5) { display: none; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 20px; }
  .hero-pc { right: 0; }
  .hero-tablet { right: -3px; }
  .monitor { right: -100px; }
  .float-order { right: -8px; }
  .section-heading.split { gap: 40px; }
  .device-card { padding: 45px 42px; }
  .two-column { gap: 42px; }
  .owner-grid { gap: 42px; }
  .owner-dashboard { right: -135px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 72px 1fr; }
  .cta-actions { grid-column: 2; flex-direction: row; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, var(--container)); }
  .section { padding: 84px 0; }
  .site-header { position: absolute; }
  .header-inner { height: 72px; }
  .company-logo { width: auto; height: 50px; }
  .menu-toggle { display: block; position: relative; z-index: 55; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav { position: fixed; z-index: 50; inset: 0; display: flex; padding: 110px 30px 40px; flex-direction: column; align-items: stretch; gap: 5px; color: var(--white); background: rgba(6,20,25,.98); transform: translateX(100%); transition: transform .25s ease; }
  .nav.open { transform: translateX(0); }
  .nav a, .nav a:not(.nav-cta):nth-child(4), .nav a:not(.nav-cta):nth-child(5) { display: block; padding: 13px 10px; font-size: 17px; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .hero { min-height: 1120px; padding-top: 126px; }
  .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 555px; }
  .hero-pc { top: 62px; right: 0; width: min(620px, 94%); }
  .hero-tablet { right: 1%; width: 185px; }
  .hero-mobile { left: 5%; width: 130px; }
  .monitor { top: 55px; right: -55px; width: min(620px, 92%); }
  .phone-products { left: 8%; }
  .segment-strip { gap: 18px; margin-top: 5px; }
  .section-heading.split { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .device-card, .mobile-device, .tablet-device, .desktop-device { grid-template-columns: 1fr; gap: 45px; }
  .device-copy { max-width: 590px; }
  .device-phone { width: 290px; }
  .tablet-frame { width: 320px; margin-inline: auto; transform: none; }
  .desktop-frame { width: 100%; margin-left: 0; transform: none; }
  .two-column { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-line { display: none; }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-visual { min-height: 590px; }
  .owner-dashboard { right: -90px; width: 90%; }
  .owner-phone { left: 7%; }
  .real-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 45px 38px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-brand { width: 100%; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 70px 0; }
  .company-logo { width: auto; height: 45px; }
  .brand-divider { height: 21px; }
  .app-icon { width: 30px; height: 30px; }
  .app-name { font-size: 15px; }
  .hero { min-height: 1020px; padding-top: 112px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 7px; }
  .hero-visual { min-height: 440px; }
  .hero-pc { top: 54px; right: 0; width: 100%; }
  .hero-pc-screen { padding: 6px; border-width: 2px; border-radius: 11px; }
  .hero-pc-neck { width: 62px; height: 34px; }
  .hero-pc-base { width: 125px; height: 8px; }
  .hero-tablet { right: 1px; bottom: -2px; width: 130px; }
  .hero-tablet-shell { padding: 6px; border-width: 2px; border-radius: 18px; }
  .hero-tablet-shell img { border-radius: 11px; }
  .hero-mobile { left: 0; bottom: -3px; width: 94px; }
  .hero-mobile-shell { padding: 5px; border-width: 2px; border-radius: 18px; }
  .hero-mobile-shell img { border-radius: 12px; }
  .device-chip { top: -10px; left: 7px; padding: 5px 7px; border-width: 1px; font-size: 6px; }
  .monitor { top: 55px; right: -65px; width: 112%; }
  .phone { width: 176px; border-radius: 25px; }
  .phone-products { left: 0; bottom: -5px; }
  .phone-ui { min-height: 338px; padding-top: 21px; border-radius: 19px; }
  .phone-top { top: 8px; width: 58px; height: 13px; margin-left: -29px; }
  .float-card { padding: 8px 10px; }
  .float-order { top: 19px; right: -6px; }
  .float-sync { right: 0; bottom: 18px; }
  .segment-strip { height: 80px; justify-content: flex-start; gap: 12px; overflow-x: auto; font-size: 10px; scrollbar-width: none; }
  .segment-strip span { white-space: nowrap; }
  .section-heading { margin-bottom: 38px; }
  .section-heading > p:last-child { font-size: 15px; }
  .benefit-card { padding: 30px 26px; }
  .device-card { min-height: 0; padding: 34px 24px; border-radius: 23px; }
  .mobile-device, .desktop-device { background: var(--white); }
  .device-copy h3 { font-size: 32px; }
  .device-phone { width: 258px; max-width: 100%; transform: none; }
  .device-phone-content { min-height: 495px; }
  .tablet-frame { width: 250px; padding: 7px; border-radius: 18px; }
  .tablet-frame img { border-radius: 9px; }
  .two-column { gap: 36px; }
  .screenshot-card figcaption { align-items: flex-start; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-card { min-height: 220px; }
  .owner { padding: 85px 0; }
  .owner-visual { min-height: 520px; }
  .owner-dashboard { top: 12px; right: -65px; width: 113%; }
  .owner-phone { left: 0; bottom: 0; width: 205px; }
  .owner-phone-ui { min-height: 405px; padding: 29px 10px 10px; }
  .bar-chart { height: 116px; }
  .anywhere-badge { right: -5px; bottom: 32px; padding: 9px 11px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 160px; }
  .module-card span { margin-bottom: 25px; }
  .real-system { padding-top: 5px; }
  .real-label { align-items: flex-start; gap: 8px; flex-direction: column; }
  .cta-section { padding-top: 40px; }
  .cta-box { grid-template-columns: 1fr; padding: 38px 26px; gap: 24px; }
  .cta-mark { width: 62px; height: 62px; }
  .cta-mark img { width: 43px; height: 43px; }
  .cta-actions { grid-column: 1; flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 13px; }
}

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