:root {
  --blue: #1760ff;
  --blue-dark: #1048c8;
  --orange: #ff6b35;
  --ink: #101828;
  --muted: #667085;
  --line: #dfe3ea;
  --paper: #f6f7f2;
  --white: #fff;
  --mint: #c9f7e5;
  --radius: 28px;
  --shadow: 0 32px 80px rgba(24, 39, 75, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  padding: 12px 18px; border-radius: 10px; background: var(--ink); color: white;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(246, 247, 242, .88);
  border-color: rgba(16, 24, 40, .08);
  box-shadow: 0 10px 30px rgba(16, 24, 40, .04);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1320px, calc(100% - 48px)); height: 82px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; color: var(--blue); flex: 0 0 auto; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong { font-size: 20px; line-height: 1.15; letter-spacing: .12em; }
.brand-copy small { color: #758095; font-size: 10px; letter-spacing: .08em; white-space: nowrap; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; color: #344054; font-size: 14px; font-weight: 600; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 2px;
  background: var(--blue); transition: width .2s;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.desktop-nav a.active { color: var(--blue); }
.header-cta, .primary-button, .cta-button {
  border: 0; background: var(--blue); color: white; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 700; box-shadow: 0 12px 24px rgba(23, 96, 255, .22);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.header-cta { height: 46px; padding: 0 19px; border-radius: 14px; font-size: 14px; }
.header-cta svg, .primary-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.header-cta:hover, .primary-button:hover, .cta-button:hover {
  background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(23, 96, 255, .28);
}
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 13px;
  background: rgba(255,255,255,.7); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
}
.menu-toggle span { width: 19px; height: 2px; background: var(--ink); transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative; min-height: 920px; padding: 160px 0 0; overflow: hidden;
  background: linear-gradient(180deg, #f8f9f6 0%, #eef2f9 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .34; pointer-events: none;
  background-image: linear-gradient(rgba(50,70,105,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(50,70,105,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 87%);
}
.hero-aura { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.aura-one { width: 620px; height: 620px; right: -130px; top: -160px; background: radial-gradient(circle, rgba(23,96,255,.18), transparent 68%); }
.aura-two { width: 480px; height: 480px; left: -240px; top: 300px; background: radial-gradient(circle, rgba(255,107,53,.15), transparent 70%); }
.hero-layout { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 40px; min-height: 650px; }
.hero-layout > * { min-width: 0; }
.eyebrow {
  margin: 0 0 24px; color: var(--blue); font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; font-size: clamp(54px, 5.4vw, 80px); line-height: 1.08;
  letter-spacing: -.055em; font-weight: 800;
}
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 590px; margin: 30px 0 0; color: #475467; font-size: 19px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button { height: 56px; padding: 0 26px; border-radius: 17px; }
.text-button { display: inline-flex; align-items: center; gap: 9px; color: #344054; font-size: 14px; font-weight: 700; }
.text-button span { color: var(--blue); transition: transform .2s; }
.text-button:hover span { transform: translateY(3px); }
.hero-facts {
  display: flex; align-items: center; gap: 0; padding: 0; margin: 50px 0 0; list-style: none;
}
.hero-facts li { padding: 0 24px; border-right: 1px solid #d4d9e1; display: flex; flex-direction: column; gap: 5px; }
.hero-facts li:first-child { padding-left: 0; }
.hero-facts li:last-child { border: 0; }
.hero-facts strong { font-size: 14px; }
.hero-facts span { color: #8490a3; font-size: 11px; }

.hero-product { position: relative; transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); transform-origin: center; }
.product-glow { position: absolute; inset: 4% -4% -9% 7%; background: rgba(23,96,255,.2); filter: blur(55px); border-radius: 50%; }
.dashboard-window {
  position: relative; overflow: hidden; min-height: 550px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px;
  background: #fff; box-shadow: 0 36px 80px rgba(25,45,90,.18), 0 3px 10px rgba(20,30,55,.08);
}
.window-bar { height: 58px; padding: 0 20px; border-bottom: 1px solid #edf0f5; display: flex; align-items: center; justify-content: space-between; }
.mini-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; }
.mini-brand span { width: 20px; height: 20px; border-radius: 7px; background: var(--blue); box-shadow: inset -5px -5px 0 rgba(255,255,255,.2); }
.window-status { display: flex; align-items: center; gap: 7px; color: #667085; font-size: 10px; }
.window-status i { width: 7px; height: 7px; border-radius: 50%; background: #28c76f; box-shadow: 0 0 0 4px rgba(40,199,111,.1); }
.dashboard-body { display: grid; grid-template-columns: 58px 1fr; min-height: 492px; }
.dashboard-sidebar { padding: 16px 0; background: #0f1b33; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.side-logo { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--blue); color: white; font-weight: 800; font-size: 11px; margin-bottom: 7px; }
.dashboard-sidebar i { width: 16px; height: 16px; border: 2px solid #65708a; border-radius: 5px; }
.dashboard-sidebar i.active { border-color: #fff; background: var(--blue); box-shadow: 0 0 0 8px rgba(23,96,255,.22); }
.dashboard-content { padding: 25px 25px 22px; background: #f7f8fb; min-width: 0; }
.dashboard-heading { display: flex; align-items: flex-end; justify-content: space-between; }
.dashboard-heading div { display: flex; flex-direction: column; gap: 4px; }
.dashboard-heading small, .dashboard-heading span { color: #8e99ab; font-size: 9px; }
.dashboard-heading strong { font-size: 17px; }
.metric-row { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 12px; margin-top: 21px; }
.metric-card { position: relative; min-height: 138px; padding: 16px; overflow: hidden; border: 1px solid #e9ecf2; border-radius: 15px; background: #fff; }
.metric-card > span { color: #7b8698; font-size: 9px; }
.metric-card > strong { display: block; margin-top: 9px; font-size: 27px; line-height: 1; }
.metric-card em { display: block; margin-top: 8px; color: #18a764; font-size: 8px; font-style: normal; }
.metric-primary { color: white; background: linear-gradient(135deg, #1760ff, #3979ff); border: 0; }
.metric-primary > span { color: rgba(255,255,255,.72); }
.metric-primary em { color: #c8ffe1; }
.metric-primary svg { position: absolute; left: 12px; right: 12px; bottom: 10px; width: calc(100% - 24px); height: 35px; }
.metric-primary svg path { fill: none; stroke: rgba(255,255,255,.85); stroke-width: 2; }
.metric-primary svg .area { fill: rgba(255,255,255,.12); stroke: none; }
.donut { position: absolute; right: 14px; bottom: 14px; width: 45px; height: 45px; border-radius: 50%; background: conic-gradient(var(--orange) calc(var(--value) * 1%), #edf0f4 0); display: grid; place-items: center; }
.donut::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #fff; }
.donut b { position: relative; font-size: 8px; }
.avatar-stack { position: absolute; left: 15px; bottom: 15px; display: flex; }
.avatar-stack i { width: 26px; height: 26px; margin-right: -6px; border: 2px solid white; border-radius: 50%; display: grid; place-items: center; background: #dce6ff; color: var(--blue); font-size: 8px; font-style: normal; }
.avatar-stack i:nth-child(2) { background: #ffe1d6; color: var(--orange); }
.avatar-stack i:nth-child(3) { background: #d9f8eb; color: #138b5d; }
.dashboard-lower { display: grid; grid-template-columns: 1.18fr .82fr; gap: 12px; margin-top: 12px; }
.chart-card, .live-card { min-height: 206px; padding: 16px; border: 1px solid #e9ecf2; border-radius: 15px; background: #fff; }
.card-title { display: flex; align-items: center; justify-content: space-between; }
.card-title strong { font-size: 10px; }
.card-title span { color: #97a0b0; font-size: 7px; }
.bar-chart { height: 120px; display: flex; align-items: flex-end; gap: 10px; padding: 15px 4px 0; border-bottom: 1px solid #e9ecf2; background: repeating-linear-gradient(to bottom, transparent 0, transparent 29px, #f1f3f6 30px); }
.bar-chart i { flex: 1; height: var(--h); min-width: 7px; border-radius: 5px 5px 0 0; background: #dae4fc; }
.bar-chart i.today { background: var(--blue); }
.chart-labels { display: flex; justify-content: space-around; padding-top: 8px; color: #99a2b1; font-size: 7px; }
.live-dot { padding: 3px 5px; color: #ef5247 !important; border-radius: 5px; background: #fff0ef; font-weight: 800; letter-spacing: .1em; }
.live-card ul { list-style: none; padding: 8px 0 0; margin: 0; }
.live-card li { display: grid; grid-template-columns: 7px 1fr auto; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #f0f2f5; }
.live-card li:last-child { border: 0; }
.live-card li > i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.live-card li > i.orange { background: var(--orange); }
.live-card li > i.green { background: #28c76f; }
.live-card li div { display: flex; flex-direction: column; gap: 3px; }
.live-card li strong { font-size: 8px; }
.live-card li span, .live-card time { color: #9aa3b2; font-size: 6px; }
.floating-note {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.8); border-radius: 15px; background: rgba(255,255,255,.9);
  box-shadow: 0 20px 45px rgba(29,49,90,.18); backdrop-filter: blur(14px);
}
.floating-note > div { display: flex; flex-direction: column; gap: 3px; }
.floating-note strong { font-size: 10px; }
.floating-note small { color: #8b95a5; font-size: 7px; }
.note-one { left: -27px; bottom: 70px; animation: float 4s ease-in-out infinite; }
.note-two { right: -26px; top: 105px; animation: float 4.5s ease-in-out -1.5s infinite; }
.note-icon { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: #daf8ea; color: #11915d; font-size: 13px; font-weight: 800; }
.signal { height: 28px; display: flex; align-items: flex-end; gap: 3px; }
.signal i { width: 4px; border-radius: 4px; background: var(--blue); }
.signal i:nth-child(1) { height: 8px; }.signal i:nth-child(2) { height: 15px; }.signal i:nth-child(3) { height: 23px; }
@keyframes float { 50% { transform: translateY(-8px); } }
.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; height: 77px; border-top: 1px solid rgba(16,24,40,.08); display: flex; align-items: center; overflow: hidden; background: rgba(255,255,255,.42); }
.hero-marquee div { width: max-content; display: flex; align-items: center; gap: 34px; animation: marquee 30s linear infinite; }
.hero-marquee span { color: #647085; font-size: 12px; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.hero-marquee i { width: 7px; height: 7px; border-radius: 2px; background: var(--orange); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 140px 0; }
.intro-section { background: #fff; }
.section-heading { margin-bottom: 58px; }
.split-heading, .security-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; align-items: end; }
.section-heading h2, .security-heading h2, .terminal-copy h2 {
  margin: 0; font-size: clamp(40px, 4.3vw, 64px); line-height: 1.16; letter-spacing: -.045em;
}
.section-summary { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.centered { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.centered .section-summary { margin-top: 18px; }
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.capability-card { position: relative; min-height: 565px; padding: 30px; overflow: hidden; border-radius: var(--radius); }
.card-blue { background: #edf3ff; }
.card-orange { background: #fff0ea; }
.card-mint { background: #e8f9f2; }
.card-dark { color: white; background: #111b2d; }
.card-topline { display: flex; align-items: center; gap: 14px; color: #758095; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.card-topline i { flex: 1; height: 1px; background: currentColor; opacity: .2; }
.card-dark .card-topline { color: #9fa9ba; }
.capability-icon { width: 56px; height: 56px; margin-top: 35px; border-radius: 18px; display: grid; place-items: center; background: var(--blue); color: white; }
.card-orange .capability-icon { background: var(--orange); }
.card-mint .capability-icon { background: #0a9b69; }
.card-dark .capability-icon { background: white; color: var(--blue); }
.capability-icon svg, .security-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.capability-card h3 { margin: 20px 0 10px; font-size: 30px; }
.capability-card > p { max-width: 520px; margin: 0; color: #68758a; font-size: 14px; line-height: 1.8; }
.card-dark > p { color: #aab3c2; }
.capability-card > ul { display: flex; gap: 22px; list-style: none; padding: 0; margin: 18px 0 0; color: #39465a; font-size: 11px; font-weight: 700; }
.capability-card > ul li::before { content: "✓"; margin-right: 6px; color: var(--blue); }
.card-orange > ul li::before { color: var(--orange); }
.card-mint > ul li::before { color: #0a9b69; }
.card-dark > ul { color: #dfe5ee; }
.card-visual { position: absolute; left: 30px; right: 30px; bottom: 0; height: 220px; }
.scan-visual { display: flex; justify-content: center; align-items: flex-end; }
.phone-frame { position: relative; width: 154px; height: 198px; border: 7px solid #17233a; border-bottom: 0; border-radius: 25px 25px 0 0; background: linear-gradient(160deg,#dce7ff,#fff); display: grid; place-items: center; box-shadow: 0 20px 40px rgba(30,55,110,.15); }
.phone-frame::before { content: ""; position: absolute; top: 8px; width: 48px; height: 9px; border-radius: 8px; background: #17233a; }
.scan-corners { width: 80px; height: 80px; border: 2px solid var(--blue); border-radius: 14px; box-shadow: inset 0 0 0 18px white; background: repeating-linear-gradient(45deg,#18233a 0 4px,#fff 4px 8px); }
.phone-frame span { position: absolute; bottom: 15px; color: #11915d; font-size: 10px; font-weight: 800; }
.data-pill, .print-pill, .service-badge, .delivered-badge {
  position: absolute; padding: 11px 15px; border-radius: 12px; background: white; box-shadow: 0 14px 35px rgba(31,50,85,.14); font-size: 10px; font-weight: 700;
}
.data-pill { right: 16px; bottom: 64px; }.data-pill b { color: #12a86a; }
.task-visual { padding-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.task-row { height: 55px; padding: 0 15px; display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; border: 1px solid rgba(255,107,53,.12); border-radius: 14px; background: rgba(255,255,255,.72); }
.task-row i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #f0f1f4; color: #778195; font-size: 8px; font-style: normal; }
.task-row span { font-size: 12px; font-weight: 700; }.task-row b { color: #8d96a5; font-size: 9px; }
.task-row.done i { color: white; background: #19ae71; }.task-row.done b { color: #19ae71; }
.task-row.active { background: white; box-shadow: 0 15px 35px rgba(255,107,53,.14); }.task-row.active i { color: white; background: var(--orange); }.task-row.active b { color: var(--orange); }
.ranking-visual { display: flex; align-items: flex-end; justify-content: center; gap: 10px; }
.rank { width: 29%; height: 130px; padding: 22px 8px 10px; border-radius: 18px 18px 0 0; background: rgba(255,255,255,.74); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rank-one { height: 184px; background: white; box-shadow: 0 15px 35px rgba(10,155,105,.13); }
.rank i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: #cdd5df; color: white; font-style: normal; font-weight: 800; }
.rank-one i { width: 45px; height: 45px; background: #0a9b69; box-shadow: 0 0 0 7px rgba(10,155,105,.12); }
.rank-two i { background: #87a0b2; }.rank-three i { background: #c68c5a; }
.rank span { font-size: 9px; font-weight: 700; }.rank b { color: #0a9b69; font-size: 13px; }
.certificate-visual { display: flex; justify-content: center; align-items: flex-end; }
.certificate-sheet { position: relative; width: 320px; height: 205px; padding: 26px; border-radius: 12px 12px 0 0; color: #142139; background: #fffdf5; box-shadow: 0 18px 50px rgba(0,0,0,.18); text-align: center; overflow: hidden; }
.certificate-sheet::before, .certificate-sheet::after { content: ""; position: absolute; inset: 10px; border: 1px solid #d8ad64; pointer-events: none; }
.certificate-sheet::after { inset: 15px; border-color: rgba(216,173,100,.45); }
.cert-mark { position: absolute; left: 28px; top: 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: white; background: var(--blue); font-size: 9px; font-weight: 800; }
.certificate-sheet small { color: #b4935c; font-size: 7px; letter-spacing: .18em; }
.certificate-sheet strong { display: block; margin-top: 24px; font-family: "STSong", "SimSun", serif; font-size: 22px; }
.certificate-sheet i { display: block; width: 60px; height: 1px; margin: 18px auto; background: #d8ad64; }
.certificate-sheet em { font-size: 8px; font-style: normal; }
.print-pill { right: 4px; bottom: 35px; color: #25334b; }
.print-pill span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #20c77a; box-shadow: 0 0 0 5px rgba(32,199,122,.12); }

.journey-section { background: #f1f3f7; }
.journey-shell { overflow: hidden; border: 1px solid rgba(16,24,40,.08); border-radius: 32px; background: white; box-shadow: var(--shadow); }
.journey-tabs { display: grid; grid-template-columns: repeat(4,1fr); padding: 0 30px; border-bottom: 1px solid #e8ebf0; }
.journey-tab { position: relative; height: 86px; border: 0; background: none; color: #8a94a5; cursor: pointer; font-size: 13px; font-weight: 700; }
.journey-tab span { margin-right: 7px; font-size: 10px; }
.journey-tab::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: -1px; height: 3px; border-radius: 4px 4px 0 0; background: transparent; }
.journey-tab.active { color: var(--blue); }.journey-tab.active::after { background: var(--blue); }
.journey-progress { display: none; height: 3px; background: #e5e8ee; }.journey-progress i { display: block; width: 25%; height: 100%; background: var(--blue); transition: width .3s; }
.journey-panels { min-height: 470px; }
.journey-panel { display: none; grid-template-columns: .9fr 1.1fr; min-height: 470px; }
.journey-panel.active { display: grid; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } }
.journey-copy { padding: 64px 56px; }
.journey-kicker { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.journey-copy h3 { margin: 16px 0; font-size: 34px; line-height: 1.3; letter-spacing: -.03em; }
.journey-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.journey-copy ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; color: #354157; font-size: 12px; font-weight: 700; }
.journey-copy li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.journey-scene { position: relative; min-height: 470px; overflow: hidden; background: #eaf0ff; display: flex; align-items: flex-end; justify-content: center; }
.journey-scene::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(23,96,255,.12); border-radius: 50%; top: -80px; right: -80px; box-shadow: 0 0 0 65px rgba(23,96,255,.035),0 0 0 130px rgba(23,96,255,.025); }
.scene-phone { position: relative; z-index: 1; width: 190px; height: 350px; margin-right: -20px; padding-top: 55px; border: 8px solid #17233a; border-bottom: 0; border-radius: 32px 32px 0 0; background: white; box-shadow: 0 30px 60px rgba(35,54,90,.25); text-align: center; display: flex; flex-direction: column; align-items: center; }
.phone-top { position: absolute; top: 10px; width: 60px; height: 13px; border-radius: 10px; background: #17233a; }
.success-ring { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: #dcf8ea; color: #14a767; font-size: 25px; font-weight: 800; box-shadow: 0 0 0 9px #f1fcf7; }
.scene-phone strong { margin-top: 18px; font-size: 17px; }.scene-phone small { margin-top: 7px; color: #98a1b0; font-size: 9px; }
.scene-phone > i { display: block; width: 120px; height: 10px; margin-top: 30px; border-radius: 6px; background: #edf0f4; }.scene-phone > i + i { width: 88px; margin-top: 8px; }
.scene-terminal { position: relative; z-index: 2; width: 205px; height: 310px; margin-left: 20px; padding: 55px 28px 0; border-radius: 28px 28px 0 0; color: white; background: #101b2f; box-shadow: 0 30px 60px rgba(35,54,90,.25); text-align: center; font-size: 12px; line-height: 1.7; }
.scene-terminal strong { font-size: 27px; }
.terminal-camera { position: absolute; top: 17px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: #536079; transform: translateX(-50%); }
.scene-terminal button { width: 100%; height: 42px; margin-top: 40px; border: 0; border-radius: 12px; background: var(--blue); color: white; font-size: 11px; font-weight: 700; }
.scene-service { align-items: center; background: #fff1eb; }
.staff-card { position: relative; z-index: 1; width: 360px; padding: 28px; border-radius: 24px; background: white; box-shadow: 0 28px 60px rgba(100,55,30,.15); }
.staff-card > span { color: #9d7a6c; font-size: 9px; letter-spacing: .12em; }.staff-card > strong { display: block; margin: 7px 0 20px; font-size: 23px; }
.staff-card div { padding: 15px 0; display: flex; align-items: center; gap: 12px; border-top: 1px solid #eee; color: #667085; font-size: 12px; }
.staff-card div i { width: 25px; height: 25px; border-radius: 8px; display: grid; place-items: center; color: white; background: #20b875; font-style: normal; }
.staff-card div.current { color: var(--orange); font-weight: 700; }.staff-card div.current i { background: var(--orange); }
.service-badge { right: 28px; bottom: 42px; color: var(--orange); }
.scene-achievement { align-items: center; background: #f0f8f4; }
.big-certificate { position: relative; z-index: 1; width: 410px; height: 290px; padding: 30px; border: 2px solid #c5a46d; outline: 1px solid #dbc59e; outline-offset: -12px; background: #fffdf8; box-shadow: 0 30px 60px rgba(70,80,60,.15); text-align: center; }
.big-certificate > span { display: block; color: #947545; font-size: 9px; font-weight: 700; }.big-certificate > small { display: block; margin-top: 30px; color: #af9569; font-size: 8px; letter-spacing: .2em; }
.big-certificate > strong { display: block; margin-top: 14px; font-family: "STSong","SimSun",serif; font-size: 30px; }.cert-name { margin-top: 35px; font-size: 11px; }
.seal { position: absolute; right: 46px; bottom: 30px; width: 48px; height: 48px; border: 3px double #c95745; border-radius: 50%; display: grid; place-items: center; color: #c95745; font-size: 16px; font-style: normal; font-weight: 800; transform: rotate(-12deg); }
.delivered-badge { left: 30px; bottom: 36px; color: #11915d; }.delivered-badge i { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 7px; color: white; background: #14aa6a; font-style: normal; }
.scene-return { align-items: center; gap: 18px; background: #f0edff; }
.points-card, .share-card { position: relative; z-index: 1; border-radius: 23px; box-shadow: 0 28px 60px rgba(60,45,110,.14); }
.points-card { width: 245px; padding: 28px; background: #17233a; color: white; }.points-card span { color: #a7b1c5; font-size: 10px; }.points-card strong { display: block; margin-top: 12px; font-size: 36px; }.points-card small { color: #86f3bd; font-size: 9px; }
.points-card > div { height: 7px; margin-top: 28px; border-radius: 8px; background: #33415a; overflow: hidden; }.points-card > div i { display: block; width: var(--w); height: 100%; border-radius: inherit; background: #29d388; }
.share-card { width: 210px; padding: 28px; background: white; }.share-card span { color: var(--orange); font-size: 9px; font-weight: 800; }.share-card strong { display: block; margin: 12px 0 35px; font-size: 21px; }.share-card button { width: 100%; height: 40px; border: 0; border-radius: 12px; color: white; background: var(--blue); font-size: 10px; font-weight: 700; }

.terminal-section { overflow: hidden; color: white; background: #0d1729; }
.terminal-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; min-height: 690px; }
.terminal-copy .eyebrow { color: #74a1ff; }.terminal-copy .section-summary { max-width: 490px; margin-top: 24px; color: #99a5b9; }
.terminal-selector { margin-top: 42px; display: grid; gap: 8px; }
.terminal-selector button { width: 100%; padding: 15px 16px; border: 1px solid transparent; border-radius: 15px; background: transparent; color: #a7b2c5; cursor: pointer; display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 13px; text-align: left; transition: background .2s, border .2s, color .2s; }
.terminal-selector button > i { width: 7px; height: 7px; border-radius: 50%; background: #57647a; }
.terminal-selector button span { display: flex; flex-direction: column; gap: 4px; }.terminal-selector button strong { font-size: 13px; }.terminal-selector button small { color: #68758b; font-size: 9px; }
.terminal-selector button b { opacity: 0; font-size: 16px; }
.terminal-selector button.active { color: white; border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.055); }.terminal-selector button.active > i { background: #66e5b2; box-shadow: 0 0 0 5px rgba(102,229,178,.12); }.terminal-selector button.active b { opacity: 1; color: #66e5b2; }
.terminal-stage { position: relative; height: 650px; }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(114,149,205,.14); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 400px; height: 400px; }.orbit-two { width: 610px; height: 610px; }
.terminal-core { position: absolute; left: 50%; top: 50%; z-index: 3; width: 205px; height: 205px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: rgba(20,36,62,.86); box-shadow: 0 0 80px rgba(23,96,255,.24); transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.terminal-core .brand-mark { width: 52px; height: 52px; margin-bottom: 15px; }.terminal-core strong { font-size: 14px; }.terminal-core small { margin-top: 7px; color: #74839a; font-size: 8px; }
.connection-lines { position: absolute; inset: 0; width: 100%; height: 100%; }.connection-lines path { fill: none; stroke: rgba(83,139,255,.32); stroke-width: 1; stroke-dasharray: 4 7; }
.device { position: absolute; z-index: 2; text-align: center; opacity: .64; transform: scale(.9); transition: opacity .25s, transform .25s, filter .25s; }
.device.active { opacity: 1; transform: scale(1); filter: drop-shadow(0 18px 25px rgba(23,96,255,.18)); }
.device > span { display: inline-block; margin-top: 9px; color: #aeb9ca; font-size: 9px; font-weight: 700; }
.device-web { left: 5px; top: 36px; }.device-visitor { right: 44px; top: 48px; }.device-staff { left: 27px; bottom: 22px; }.device-terminal { right: 22px; bottom: 18px; }
.device-screen { width: 188px; height: 118px; padding: 9px; border: 5px solid #344158; border-radius: 9px; background: #eef2fa; display: grid; grid-template-columns: 25px 1fr; gap: 8px; }
.screen-nav { border-radius: 4px; background: #192640; }.screen-main { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 26px 1fr; gap: 5px; }
.screen-main i { border-radius: 3px; background: #cbd7ed; }.screen-main i:first-child { background: #3979ff; }.screen-main div { grid-column: 1/-1; border-radius: 4px; background: linear-gradient(160deg,#dbe5f5 50%,#c3d4f2 50%); }
.mobile-device { width: 86px; height: 154px; padding: 7px; border: 5px solid #354259; border-bottom: 0; border-radius: 17px 17px 4px 4px; background: white; }
.mobile-device > div { height: 100%; padding: 20px 8px 8px; border-radius: 8px; background: #f1f4f9; display: flex; flex-direction: column; gap: 8px; }
.mobile-device span { width: 38px; height: 38px; margin: 0 auto 7px; border-radius: 50%; background: #dce7ff; }.mobile-device i { display: block; height: 10px; border-radius: 4px; background: white; }.mobile-device button { height: 22px; margin-top: auto; border: 0; border-radius: 6px; background: var(--blue); }
.device-staff .mobile-device > div { padding-top: 12px; background: #eef8f4; }.device-staff .mobile-device strong { color: #18342b; font-size: 8px; }.device-staff .mobile-device i { height: 24px; background: white; box-shadow: inset 4px 0 #21b578; }
.kiosk-device { position: relative; width: 115px; height: 160px; padding: 13px 11px 32px; border: 7px solid #354259; border-radius: 18px 18px 8px 8px; background: #e8ecf3; }
.kiosk-device > div { height: 100%; padding: 18px 10px; border-radius: 7px; background: #fff; color: #1a2943; }.kiosk-device b { font-size: 11px; }.kiosk-device i { display: block; width: 35px; height: 35px; margin: 12px auto; border-radius: 50%; background: #dce7ff; }.kiosk-device button { width: 100%; height: 22px; border: 0; border-radius: 5px; color: white; background: var(--blue); font-size: 6px; }
.kiosk-device > span { position: absolute; bottom: -24px; left: 30px; width: 40px; height: 26px; background: #354259; clip-path: polygon(30% 0,70% 0,100% 100%,0 100%); }

.security-section { background: #fff; }
.security-heading { margin-bottom: 60px; }
.security-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #e4e7ec; border-radius: 24px; overflow: hidden; }
.security-card { min-height: 310px; padding: 28px; border-right: 1px solid #e4e7ec; transition: color .25s, background .25s; }
.security-card:last-child { border: 0; }.security-card:hover { color: white; background: var(--blue); }.security-card:hover p, .security-card:hover > span { color: rgba(255,255,255,.72); }.security-card:hover .security-icon { color: var(--blue); background: white; }
.security-card > span { color: #a6aeba; font-size: 10px; font-weight: 800; }
.security-icon { width: 54px; height: 54px; margin-top: 43px; border-radius: 17px; display: grid; place-items: center; color: var(--blue); background: #edf3ff; transition: color .25s, background .25s; }
.security-card h3 { margin: 24px 0 10px; font-size: 19px; }.security-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; transition: color .25s; }
.deployment-strip { margin-top: 22px; min-height: 105px; padding: 20px 28px; border-radius: 20px; background: #f3f5f8; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.deployment-strip > div { display: flex; align-items: center; gap: 18px; }.deployment-strip p { margin: 0; display: flex; flex-direction: column; gap: 6px; }.deployment-strip strong { font-size: 14px; }.deployment-strip small { color: #7a8597; font-size: 10px; }
.pulse-ring { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: #e2eaff; }.pulse-ring i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(23,96,255,.12); }
.deployment-strip a { color: var(--blue); font-size: 12px; font-weight: 800; }.deployment-strip a span { margin-left: 8px; }

.cta-section { position: relative; padding: 130px 0; overflow: hidden; color: white; background: #1760ff; text-align: center; }
.cta-section::before, .cta-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.cta-section::before { width: 520px; height: 520px; left: -250px; top: -250px; }.cta-section::after { width: 620px; height: 620px; right: -250px; bottom: -400px; }
.cta-aura { position: absolute; width: 620px; height: 620px; left: 50%; top: 45%; transform: translate(-50%,-50%); background: radial-gradient(circle,rgba(255,255,255,.16),transparent 66%); }
.cta-content { position: relative; }.cta-content .eyebrow { color: #c6d7ff; }.cta-content h2 { max-width: 880px; margin: 0 auto; font-size: clamp(43px,5vw,70px); line-height: 1.15; letter-spacing: -.05em; }
.cta-content > p:not(.eyebrow) { max-width: 610px; margin: 25px auto 0; color: #dce6ff; font-size: 15px; line-height: 1.8; }
.cta-button { margin-top: 35px; height: 58px; padding: 0 27px; border-radius: 17px; color: var(--ink); background: white; box-shadow: 0 16px 30px rgba(4,30,92,.22); }
.cta-button:hover { color: var(--blue); background: white; }.cta-button span { font-size: 18px; }
.cta-note { margin-top: 25px; color: #c9d8fb; font-size: 10px; }.cta-note i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #65f0b6; }

.site-footer { color: #c3cad6; background: #0c1423; }
.footer-main { padding: 70px 0 55px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.footer-brand .brand { color: white; }.footer-brand .brand-copy small { color: #768299; }.footer-brand p { margin: 22px 0 0; color: #778398; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }.footer-links strong { margin-bottom: 6px; color: white; font-size: 12px; }.footer-links a, .footer-links button { padding: 0; border: 0; color: #8490a4; background: none; cursor: pointer; font-size: 10px; }.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { min-height: 70px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; color: #647085; font-size: 9px; letter-spacing: .04em; }

.contact-dialog {
  width: min(790px, calc(100% - 32px)); padding: 0; overflow: hidden; border: 0; border-radius: 28px;
  background: white; box-shadow: 0 35px 100px rgba(6,18,45,.35);
}
.contact-dialog::backdrop { background: rgba(8,18,38,.66); backdrop-filter: blur(8px); }
.contact-dialog[open] { display: grid; grid-template-columns: 1.05fr .95fr; animation: dialogIn .25s ease; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.dialog-close { position: absolute; right: 16px; top: 14px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(16,24,40,.07); cursor: pointer; font-size: 22px; line-height: 1; }
.dialog-copy { padding: 50px 42px; }.dialog-copy .eyebrow { margin-bottom: 16px; }.dialog-copy h2 { margin: 0; font-size: 32px; letter-spacing: -.03em; }.dialog-copy > p:not(.eyebrow) { margin: 17px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }.dialog-copy ul { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 12px; font-size: 11px; font-weight: 700; }.dialog-copy li::before { content: "✓"; margin-right: 9px; color: #14a767; }.dialog-copy small { color: #98a1af; font-size: 9px; }
.dialog-qr { padding: 54px 38px 38px; background: #eff4ff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.qr-frame { width: 210px; height: 210px; padding: 12px; overflow: hidden; border-radius: 22px; background: white; box-shadow: 0 20px 45px rgba(23,96,255,.12); }
.qr-frame img { width: 174%; max-width: none; height: auto; transform: translate(-23.5%, -24%); }
.dialog-qr strong { margin-top: 22px; font-size: 13px; }.dialog-qr span { margin-top: 7px; color: #7f8a9c; font-size: 9px; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { min-height: auto; padding-bottom: 77px; }
  .hero-layout { grid-template-columns: 1fr; padding-bottom: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(720px, 96%); margin: 30px auto 0; transform: none; }
  .terminal-layout { grid-template-columns: 1fr; }
  .terminal-copy { max-width: 720px; }
  .terminal-selector { grid-template-columns: 1fr 1fr; }
  .terminal-stage { width: min(700px,100%); margin: 0 auto; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .header-inner { width: calc(100% - 32px); height: 72px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu {
    position: absolute; left: 16px; right: 16px; top: 70px; padding: 16px;
    border: 1px solid rgba(16,24,40,.08); border-radius: 18px; background: rgba(255,255,255,.97);
    box-shadow: 0 24px 50px rgba(25,39,70,.16); backdrop-filter: blur(18px);
  }
  .mobile-menu.open { display: grid; animation: panelIn .2s ease; }
  .mobile-menu a, .mobile-menu button { padding: 14px 12px; border: 0; border-bottom: 1px solid #edf0f4; background: none; text-align: left; font-weight: 700; font-size: 14px; }
  .mobile-menu button { margin-top: 8px; border: 0; border-radius: 12px; color: white; background: var(--blue); text-align: center; }
  .hero { padding-top: 130px; }
  .hero-layout { min-height: auto; }
  .hero h1 { font-size: clamp(45px, 11vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-facts { flex-wrap: wrap; row-gap: 18px; }
  .dashboard-window { min-height: 470px; }
  .dashboard-body { min-height: 410px; }
  .dashboard-content { padding: 18px; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .live-card { display: none; }
  .note-two { display: none; }
  .section { padding: 100px 0; }
  .split-heading, .security-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .capability-grid { grid-template-columns: 1fr; }
  .journey-tabs { padding: 0 10px; }
  .journey-tab { height: 75px; font-size: 11px; }
  .journey-tab span { display: block; margin: 0 0 4px; }
  .journey-panel { grid-template-columns: 1fr; }
  .journey-copy { padding: 42px 34px; }
  .journey-scene { min-height: 390px; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .security-card:nth-child(2) { border-right: 0; }
  .security-card:nth-child(-n+2) { border-bottom: 1px solid #e4e7ec; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand-copy small { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 43px; line-height: 1.12; }
  .hero-lead { margin-top: 22px; font-size: 14px; line-height: 1.75; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .primary-button { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-facts { margin-top: 38px; }
  .hero-facts li { width: 50%; padding: 0 12px; }
  .hero-facts li:nth-child(2) { border: 0; }
  .hero-facts li:nth-child(3) { padding-left: 0; }
  .hero-product { width: 108%; margin-left: -4%; }
  .window-bar { height: 47px; }
  .dashboard-window { min-height: 365px; border-radius: 18px; }
  .dashboard-body { grid-template-columns: 38px 1fr; min-height: 318px; }
  .dashboard-sidebar { gap: 16px; }
  .dashboard-sidebar i { width: 12px; height: 12px; }
  .side-logo { width: 23px; height: 23px; font-size: 8px; }
  .dashboard-content { padding: 12px; }
  .metric-row { gap: 6px; margin-top: 13px; }
  .metric-card { min-height: 105px; padding: 10px; }
  .metric-card > strong { font-size: 18px; }
  .donut { width: 35px; height: 35px; }
  .chart-card { min-height: 150px; padding: 10px; }
  .bar-chart { height: 90px; gap: 6px; }
  .note-one { left: -4px; bottom: 20px; }
  .section { padding: 82px 0; }
  .section-heading h2, .security-heading h2, .terminal-copy h2 { font-size: 38px; }
  .section-summary { font-size: 14px; }
  .capability-card { min-height: 570px; padding: 24px; }
  .capability-card > ul { gap: 10px; flex-direction: column; }
  .card-visual { left: 20px; right: 20px; }
  .journey-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(100px,1fr)); }
  .journey-copy { padding: 35px 25px; }
  .journey-copy h3 { font-size: 28px; }
  .journey-scene { min-height: 340px; transform: translateZ(0); }
  .scene-phone { width: 145px; height: 285px; margin-right: -10px; }
  .scene-terminal { width: 145px; height: 250px; margin-left: 8px; padding: 48px 18px 0; }
  .scene-terminal strong { font-size: 21px; }.scene-terminal button { margin-top: 25px; }
  .staff-card { width: calc(100% - 44px); }
  .big-certificate { width: calc(100% - 36px); height: 245px; padding: 24px 16px; }
  .scene-return { gap: 10px; padding: 0 14px; }
  .points-card { width: 55%; padding: 20px; }.share-card { width: 45%; padding: 20px 15px; }
  .terminal-selector { grid-template-columns: 1fr; }
  .terminal-stage { height: 510px; transform: scale(.86); transform-origin: top center; margin-bottom: -70px; }
  .orbit-two { width: 500px; height: 500px; }
  .device-web { left: -25px; }.device-visitor { right: -5px; }.device-staff { left: -5px; }.device-terminal { right: -20px; }
  .security-grid { grid-template-columns: 1fr; }
  .security-card { min-height: 250px; border-right: 0; border-bottom: 1px solid #e4e7ec; }
  .security-card:nth-child(3) { border-bottom: 1px solid #e4e7ec; }
  .security-card:last-child { border-bottom: 0; }
  .security-icon { margin-top: 25px; }
  .deployment-strip { align-items: flex-start; flex-direction: column; }
  .deployment-strip > div { align-items: flex-start; }
  .cta-section { padding: 95px 0; }
  .footer-links { gap: 20px; }
  .footer-bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-dialog[open] { display: block; max-height: calc(100vh - 24px); overflow-y: auto; }
  .dialog-copy { padding: 42px 28px 26px; }
  .dialog-qr { padding: 30px; }
  .qr-frame { width: 180px; height: 180px; }
}

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