@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #050b18;
  --bg-soft: #081223;
  --panel: #0b1628;
  --panel-2: #0e1b30;
  --line: rgba(130, 174, 255, 0.14);
  --line-strong: rgba(91, 170, 255, 0.26);
  --blue: #0866ff;
  --blue-2: #00a8ff;
  --cyan: #49c8ff;
  --text: #f7faff;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --white: #ffffff;
  --success: #4ade80;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
::selection { background: rgba(0, 168, 255, .32); color: #fff; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #001631;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.site-bg { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.5) 44%, transparent 82%);
}
.glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .18; }
.glow-one { width: 560px; height: 560px; background: #0b71ff; top: -220px; right: -120px; }
.glow-two { width: 420px; height: 420px; background: #00c4ff; top: 520px; left: -260px; opacity: .08; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 112px 0; }
.section { position: relative; }
.section-dark {
  background:
    radial-gradient(circle at 18% 50%, rgba(8, 102, 255, .11), transparent 34%),
    linear-gradient(180deg, rgba(10, 20, 37, .86), rgba(5, 11, 24, .95));
  border-block: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5, 11, 24, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: 14px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; letter-spacing: -3px; font-size: 19px; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 28px rgba(8, 102, 255, .28), inset 0 1px 0 rgba(255,255,255,.25);
}
.brand-mark::after { content: ''; position: absolute; inset: 1px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; }
.brand-j, .brand-n { position: relative; z-index: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.04; }
.brand-copy strong { font-family: 'Space Grotesk', sans-serif; font-size: 18px; letter-spacing: .02em; }
.brand-copy span { margin-top: 4px; color: #a8b8cc; font-size: 11px; letter-spacing: .035em; }

.main-nav { display: flex; align-items: center; gap: 28px; color: #cad5e5; font-size: 13px; font-weight: 500; }
.main-nav > a:not(.btn) { position: relative; transition: color .2s ease; }
.main-nav > a:not(.btn)::after { content: ''; position: absolute; height: 1px; left: 0; right: 100%; bottom: -7px; background: var(--cyan); transition: right .25s ease; }
.main-nav > a:not(.btn):hover { color: #fff; }
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 42px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 4px; margin: 5px 0; transition: .25s ease; }

.btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 20px; border-radius: 13px; border: 1px solid transparent; font-weight: 700; font-size: 13px;
  letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 12px 34px rgba(8, 102, 255, .24); }
.btn-primary:hover { box-shadow: 0 16px 42px rgba(8, 102, 255, .34); }
.btn-secondary { color: #dce9f8; background: rgba(255,255,255,.035); border-color: rgba(148, 163, 184, .18); }
.btn-secondary:hover { border-color: rgba(73, 200, 255, .4); background: rgba(73, 200, 255, .06); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 12px; border-radius: 11px; }
.btn-light { background: #fff; color: #08204a; box-shadow: 0 12px 30px rgba(0, 28, 76, .18); }
.btn-full { width: 100%; }

.hero { min-height: 820px; display: flex; align-items: center; padding-top: 155px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: #8bcfff; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 12px rgba(73, 200, 255, .6); }
.eyebrow.light { color: #dbeeff; }
.hero h1, .section-heading h2, .split-copy h2, .security-copy h2, .contact-copy h2, .support-box h2 {
  margin: 0; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.045em; line-height: 1.02; font-weight: 700;
}
.hero h1 { max-width: 720px; font-size: clamp(49px, 5vw, 75px); }
h1 em, h2 em { font-style: normal; color: transparent; background: linear-gradient(115deg, #5fcaff, #1882ff 66%, #76dbff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin: 26px 0 30px; color: #a9b8ca; font-size: 17px; line-height: 1.76; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 0; }
.hero-proof strong { display: block; color: #edf6ff; font-size: 12px; }
.hero-proof span { display: block; margin-top: 4px; color: var(--muted-2); font-size: 10px; line-height: 1.45; }

.hero-visual { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(69, 180, 255, .11); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; animation: spin 36s linear infinite; }
.orbit-two { width: 430px; height: 430px; border-style: dashed; animation: spinReverse 26s linear infinite; }
.orbit-one::before, .orbit-two::before { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); top: -4px; left: 50%; }
.tech-panel {
  width: min(100%, 510px); position: relative; z-index: 2; padding: 18px; border: 1px solid rgba(110, 183, 255, .22);
  border-radius: 26px; background: linear-gradient(150deg, rgba(14, 28, 50, .91), rgba(6, 15, 29, .94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04); backdrop-filter: blur(18px);
}
.tech-panel::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; background: linear-gradient(140deg, rgba(73,200,255,.18), transparent 32%, transparent 75%, rgba(8,102,255,.14)); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; padding: 1px; }
.panel-topbar { display: flex; justify-content: space-between; align-items: center; padding: 2px 4px 14px; border-bottom: 1px solid var(--line); font-size: 10px; color: #91a5bd; }
.panel-status { display: flex; align-items: center; gap: 7px; }
.status-dot, .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 13px rgba(74,222,128,.7); }
.panel-time { letter-spacing: .12em; color: #607690; }
.network-map { position: relative; height: 270px; margin: 16px 0; }
.network-node { position: absolute; z-index: 3; width: 84px; min-height: 70px; padding: 10px 8px; display: flex; flex-direction: column; gap: 7px; align-items: center; justify-content: center; background: rgba(8, 20, 37, .84); border: 1px solid var(--line-strong); border-radius: 15px; box-shadow: 0 13px 30px rgba(0,0,0,.17); color: #bcd3ec; font-size: 9px; }
.network-node svg { width: 24px; height: 24px; fill: none; stroke: #56c7ff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.node-center { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 96px; min-height: 82px; background: linear-gradient(145deg, rgba(8,102,255,.25), rgba(7,22,42,.94)); box-shadow: 0 0 46px rgba(8,102,255,.16); }
.node-one { left: 6%; top: 14%; }
.node-two { right: 5%; top: 12%; }
.node-three { right: 10%; bottom: 8%; }
.network-lines .line { position: absolute; z-index: 1; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(73,200,255,.06), rgba(73,200,255,.52), rgba(73,200,255,.08)); overflow: visible; }
.network-lines .line::after { content: ''; position: absolute; width: 5px; height: 5px; top: -2px; border-radius: 50%; background: #65d0ff; box-shadow: 0 0 12px #43beff; animation: dataFlow 2.2s linear infinite; }
.line-a { width: 170px; left: 86px; top: 76px; transform: rotate(31deg); }
.line-b { width: 150px; left: 250px; top: 135px; transform: rotate(-37deg); }
.line-c { width: 164px; left: 252px; top: 145px; transform: rotate(31deg); }
.line-d { width: 156px; left: 106px; top: 208px; transform: rotate(-28deg); opacity: .52; }
.line-b::after { animation-delay: .7s !important; }.line-c::after{animation-delay:1.2s!important}.line-d::after{animation-delay:.3s!important}
.panel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-card { min-width: 0; display: flex; gap: 8px; align-items: center; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(119,165,221,.09); }
.metric-icon { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(8,102,255,.12); color: #6ed0ff; font-size: 10px; }
.metric-card strong { display: block; font-size: 8px; color: #d7e7f8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.metric-card div span { display: block; font-size: 7px; color: #667d98; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; min-width: 174px; padding: 11px 13px; border: 1px solid rgba(114,183,255,.2); border-radius: 14px; background: rgba(8, 20, 37, .86); box-shadow: 0 14px 38px rgba(0,0,0,.28); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.floating-card-one { left: -10px; top: 70px; }
.floating-card-two { right: -18px; bottom: 66px; animation-delay: -2.2s; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 10px; }
.floating-card small { margin-top: 2px; color: #7991aa; font-size: 8px; }
.mini-code { width: 36px; height: 27px; display: grid; place-items: center; border-radius: 8px; font-family: 'Space Grotesk'; font-size: 8px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); }

.signal-bar { overflow: hidden; border-block: 1px solid var(--line); background: rgba(8, 20, 37, .74); }
.signal-track { width: max-content; display: flex; gap: 34px; padding: 12px 0; color: #52677f; font-size: 9px; font-weight: 700; letter-spacing: .18em; animation: ticker 28s linear infinite; }
.signal-track span { display: flex; gap: 34px; align-items: center; }
.signal-track i { color: #158dff; font-style: normal; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .split-copy h2, .security-copy h2, .contact-copy h2, .support-box h2 { font-size: clamp(37px, 4vw, 56px); }
.section-heading p, .split-copy > p, .security-copy > p, .contact-copy > p { margin: 20px 0 0; color: #95a8bd; font-size: 15px; line-height: 1.75; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.service-card { grid-column: span 4; min-height: 295px; position: relative; overflow: hidden; padding: 25px; border-radius: 21px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(13, 28, 49, .88), rgba(7, 16, 30, .96)); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; top: -100px; right: -80px; background: #0b79ff; filter: blur(60px); opacity: .05; transition: opacity .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(73,200,255,.3); box-shadow: 0 22px 52px rgba(0,0,0,.22); }
.service-card:hover::after { opacity: .13; }
.service-card-large { grid-column: span 8; min-height: 350px; }
.service-card-wide { grid-column: span 8; min-height: 315px; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(8,102,255,.11); border: 1px solid rgba(73,200,255,.14); }
.service-icon svg { width: 23px; height: 23px; fill: none; stroke: #51c5ff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 27px; right: 25px; color: #3f526a; font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: .14em; }
.service-content { position: relative; z-index: 2; margin-top: 44px; max-width: 470px; }
.service-tag { color: #4a84b7; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin: 8px 0 10px; font-family: 'Space Grotesk', sans-serif; font-size: 23px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: #8598ad; font-size: 12px; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #60caff; font-size: 11px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }.text-link:hover span { transform: translateX(4px); }
.terminal-art { position: absolute; right: 28px; bottom: 30px; width: 285px; padding: 14px 16px; background: #050c17; border: 1px solid rgba(73,200,255,.13); border-radius: 13px; box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.terminal-art span { display: block; margin: 4px 0; color: #57718d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.terminal-art .terminal-success { color: #51c680; }
.erp-mini-dashboard { position: absolute; right: 28px; bottom: 35px; width: 250px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.erp-mini-dashboard div { min-height: 68px; padding: 10px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 11px; background: rgba(4, 12, 24, .74); border: 1px solid rgba(92,162,236,.11); }
.erp-mini-dashboard span { color: #6f859d; font-size: 8px; }.erp-mini-dashboard strong { color: #60caff; font-size: 14px; }

.split-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 84px; align-items: center; }
.erp-showcase { min-height: 480px; position: relative; display: grid; place-items: center; }
.browser-frame { width: 100%; max-width: 590px; overflow: hidden; border: 1px solid rgba(111,177,244,.18); border-radius: 18px; background: #07111f; box-shadow: 0 28px 80px rgba(0,0,0,.32), 0 0 60px rgba(8,102,255,.08); transform: perspective(1000px) rotateY(3deg) rotateX(1deg); }
.browser-bar { height: 40px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid var(--line); background: #0c1829; }
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #273b51; }.browser-bar small { margin-left: auto; color: #536b84; font-size: 8px; }
.dashboard-shell { min-height: 340px; display: grid; grid-template-columns: 62px 1fr; }
.dash-sidebar { padding: 14px 10px; border-right: 1px solid rgba(100,157,215,.1); background: #07101d; }
.dash-logo { height: 31px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, #0866ff, #00a8ff); font: 700 9px 'Space Grotesk'; }
.dash-sidebar span { display: block; height: 8px; margin: 15px 5px; border-radius: 5px; background: #14243a; }.dash-sidebar span:first-of-type{background:#173962}
.dash-main { padding: 20px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; color: #b5c6d8; font-size: 10px; }.dash-header small{color:#536a83;font-size:7px}
.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 17px; }
.dash-cards div { position: relative; min-height: 73px; padding: 10px; border: 1px solid rgba(89,150,214,.1); border-radius: 10px; background: #0b1829; }.dash-cards small,.dash-cards strong{display:block}.dash-cards small{color:#5e7590;font-size:7px}.dash-cards strong{margin-top:10px;color:#dbe9f6;font-size:13px}.dash-cards i{position:absolute;right:10px;bottom:10px;color:#43bdff;font-style:normal;font-size:9px}
.dash-chart { height: 130px; margin-top: 10px; padding: 14px 12px 8px; border: 1px solid rgba(89,150,214,.1); border-radius: 10px; background: #091625; }
.chart-bars { height: 100%; display: flex; align-items: end; justify-content: space-around; gap: 8px; }
.chart-bars span { width: 9%; height: var(--h); border-radius: 3px 3px 1px 1px; background: linear-gradient(180deg, #139cff, rgba(8,102,255,.28)); box-shadow: 0 -5px 15px rgba(26,151,255,.08); }
.dash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }.dash-bottom span{height:58px;border:1px solid rgba(89,150,214,.09);border-radius:10px;background:#091523}
.showcase-badge { position: absolute; z-index: 4; min-width: 150px; padding: 11px 13px; border: 1px solid rgba(92,174,255,.22); border-radius: 12px; background: rgba(8,20,36,.88); box-shadow: 0 14px 36px rgba(0,0,0,.28); backdrop-filter: blur(12px); }.showcase-badge strong,.showcase-badge span{display:block}.showcase-badge strong{font-size:9px}.showcase-badge span{margin-top:3px;color:#6c829a;font-size:7px}.badge-sales{top:38px;right:-8px}.badge-stock{bottom:36px;left:-12px}
.split-copy .check-list { margin: 24px 0 28px; padding: 0; list-style: none; }.check-list li{display:flex;align-items:center;gap:10px;margin:10px 0;color:#b2c3d5;font-size:12px}.check-list li span{width:22px;height:22px;display:grid;place-items:center;border-radius:7px;background:rgba(8,102,255,.12);color:#56c9ff;font-size:9px}
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }.feature-chips span,.values-row span{padding:8px 11px;border:1px solid rgba(101,158,218,.12);border-radius:9px;background:rgba(255,255,255,.02);color:#8097af;font-size:9px}

.infra-flow { position: relative; display: grid; grid-template-columns: repeat(11, auto); align-items: center; justify-content: center; gap: 10px; margin-top: 58px; padding: 38px 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(9,21,37,.65); overflow: hidden; }
.infra-flow::before { content: ''; position: absolute; height: 1px; left: 8%; right: 8%; top: 50%; background: linear-gradient(90deg, transparent, rgba(38,154,255,.24), transparent); }
.flow-item { position: relative; z-index: 2; width: 116px; min-height: 118px; padding: 14px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(112,167,225,.12); border-radius: 15px; background: #091727; }.flow-item.active{border-color:rgba(73,200,255,.3);box-shadow:0 0 35px rgba(8,102,255,.11)}
.flow-icon { width: 42px;height:42px;display:grid;place-items:center;margin-bottom:10px;border-radius:12px;background:rgba(8,102,255,.12);color:#59c8ff;font:700 9px 'Space Grotesk';letter-spacing:.05em}.flow-item strong{font-size:10px}.flow-item small{margin-top:3px;color:#60768e;font-size:7px}.flow-arrow{position:relative;z-index:3;color:#277ab5;font-size:15px}

.section-security { overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(circle at 77% 50%, rgba(8,102,255,.15), transparent 27%), #07111f; }
.security-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 80px; align-items: center; }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; }.security-list div{padding:13px 14px;border:1px solid rgba(105,163,223,.11);border-radius:11px;background:rgba(255,255,255,.02)}.security-list span{display:block;color:#307db6;font:700 8px 'Space Grotesk';letter-spacing:.1em}.security-list strong{display:block;margin-top:6px;color:#b9cadb;font-size:10px}
.security-visual { min-height: 460px; position: relative; display: grid; place-items: center; }
.shield-core { position: relative; z-index: 5; width: 128px; height: 148px; display: grid; place-items: center; filter: drop-shadow(0 0 26px rgba(8,102,255,.28)); }.shield-core svg{width:100%;height:100%;fill:rgba(8,102,255,.08);stroke:#51c6ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ring { position:absolute;border:1px solid rgba(73,200,255,.13);border-radius:50%; }.ring-1{width:250px;height:250px}.ring-2{width:350px;height:350px;border-style:dashed;animation:spin 31s linear infinite}.ring-3{width:440px;height:440px;opacity:.45;animation:spinReverse 42s linear infinite}.ring-2::after,.ring-3::after{content:'';position:absolute;width:7px;height:7px;border-radius:50%;background:#2eaaff;box-shadow:0 0 18px #168fff;left:50%;top:-4px}
.security-point { position:absolute;z-index:4;padding:7px 11px;border:1px solid rgba(71,164,242,.17);border-radius:9px;background:rgba(7,17,31,.84);color:#7094b4;font-size:8px}.point-a{left:14%;top:18%}.point-b{right:11%;top:25%}.point-c{left:11%;bottom:25%}.point-d{right:17%;bottom:16%}

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-step { position:relative;padding:26px 22px 24px;border-top:1px solid rgba(92,166,237,.2);background:linear-gradient(180deg,rgba(11,25,44,.44),transparent); }.process-step > span{color:#2c91d2;font:700 10px 'Space Grotesk';letter-spacing:.13em}.process-line{width:24px;height:2px;margin:17px 0;background:linear-gradient(90deg,#0866ff,#49c8ff)}.process-step h3{margin:0 0 9px;font:600 19px 'Space Grotesk';}.process-step p{margin:0;color:#7b91a8;font-size:11px;line-height:1.7}

.section-about { border-block:1px solid var(--line);background:linear-gradient(135deg,rgba(10,22,39,.89),rgba(6,14,27,.96)); }
.about-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:90px;align-items:center }.about-card{position:relative;min-height:390px;padding:35px;border:1px solid rgba(104,169,235,.17);border-radius:24px;background:radial-gradient(circle at 75% 25%,rgba(8,102,255,.19),transparent 34%),#081524;overflow:hidden;box-shadow:var(--shadow)}.about-code{position:relative;z-index:3;color:#fff;font:700 clamp(42px,6vw,76px) 'Space Grotesk';letter-spacing:-.05em}.about-code span{color:#188cff}.about-stat{position:absolute;z-index:3;left:35px;bottom:35px}.about-stat strong,.about-stat span{display:block}.about-stat strong{font:700 42px 'Space Grotesk';color:#68d2ff}.about-stat span{color:#7891aa;font-size:9px;text-transform:uppercase;letter-spacing:.12em}.about-lines{position:absolute;inset:0}.about-lines span{position:absolute;width:1px;height:150%;top:-25%;background:linear-gradient(transparent,rgba(54,163,255,.18),transparent);transform:rotate(36deg)}.about-lines span:nth-child(1){left:34%}.about-lines span:nth-child(2){left:46%}.about-lines span:nth-child(3){left:58%}.about-lines span:nth-child(4){left:70%}.about-lines span:nth-child(5){left:82%}
.values-row{display:flex;flex-wrap:wrap;gap:7px;margin-top:24px}

.section-support { padding-top:92px;padding-bottom:92px }.support-box{display:grid;grid-template-columns:1.1fr 1fr auto;gap:34px;align-items:center;padding:42px;border-radius:25px;background:linear-gradient(120deg,#075de9 0%,#0788ed 58%,#12b8f0 100%);box-shadow:0 30px 80px rgba(4,91,222,.18);position:relative;overflow:hidden}.support-box::after{content:'';position:absolute;width:380px;height:380px;border:1px solid rgba(255,255,255,.14);border-radius:50%;right:-180px;top:-150px}.support-box h2{font-size:clamp(32px,3.3vw,47px)}.support-box h2 em{background:none;color:#fff}.support-box p{margin:13px 0 0;max-width:470px;color:rgba(255,255,255,.78);font-size:12px}.support-options{display:grid;gap:8px}.support-options>div{display:grid;grid-template-columns:28px 1fr;column-gap:8px;padding:9px 11px;border:1px solid rgba(255,255,255,.13);border-radius:10px;background:rgba(4,44,112,.16)}.support-options>div>span{grid-row:1/3;width:25px;height:25px;display:grid;place-items:center;border-radius:7px;background:rgba(255,255,255,.12);font-size:9px}.support-options strong{font-size:9px}.support-options small{color:rgba(255,255,255,.62);font-size:7px}.support-box .btn{position:relative;z-index:3;white-space:nowrap}

.contact-grid { display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:start }.contact-direct{display:grid;gap:10px;margin-top:32px}.contact-direct a{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:14px 16px;border:1px solid var(--line);border-radius:11px;background:rgba(255,255,255,.018);transition:.2s ease}.contact-direct a:hover{border-color:rgba(73,200,255,.28);transform:translateX(3px)}.contact-direct span{color:#657b94;font-size:9px;text-transform:uppercase;letter-spacing:.1em}.contact-direct strong{font-size:10px;color:#c5d5e5;text-align:right}
.contact-form{padding:28px;border:1px solid rgba(97,164,231,.15);border-radius:20px;background:linear-gradient(145deg,rgba(12,26,46,.9),rgba(7,16,30,.94));box-shadow:0 25px 65px rgba(0,0,0,.2)}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.contact-form label{display:block;margin-bottom:13px;color:#8da2b8;font-size:10px;font-weight:600}.contact-form input,.contact-form select,.contact-form textarea{width:100%;margin-top:7px;padding:12px 13px;border:1px solid rgba(116,168,221,.14);border-radius:10px;outline:none;background:#07121f;color:#dce9f6;font-size:11px;transition:border-color .2s ease,box-shadow .2s ease}.contact-form textarea{resize:vertical;min-height:112px}.contact-form input::placeholder,.contact-form textarea::placeholder{color:#4f647a}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:rgba(57,182,255,.48);box-shadow:0 0 0 3px rgba(8,102,255,.08)}.contact-form select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#68829a 50%),linear-gradient(135deg,#68829a 50%,transparent 50%);background-position:calc(100% - 16px) 17px,calc(100% - 12px) 17px;background-size:4px 4px,4px 4px;background-repeat:no-repeat}.form-note{display:block;margin-top:10px;color:#536980;font-size:8px;line-height:1.5;text-align:center}

.site-footer { border-top:1px solid var(--line);background:#040a14 }.footer-top{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:42px;padding-top:38px;padding-bottom:30px}.footer-brand .brand-mark{width:41px;height:41px;border-radius:12px}.footer-top p{margin:0;color:#6c829a;font-size:10px}.footer-links{display:flex;gap:22px;color:#7e93aa;font-size:9px}.footer-links a:hover{color:#c4eaff}.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:20px;padding-top:18px;padding-bottom:24px;border-top:1px solid rgba(91,148,204,.08);color:#425970;font-size:8px}.footer-bottom a:hover{color:#7fbee8}
.whatsapp-float{position:fixed;z-index:90;right:22px;bottom:22px;width:51px;height:51px;display:grid;place-items:center;border-radius:16px;background:#0a8f48;box-shadow:0 16px 38px rgba(0,0,0,.3);transition:transform .2s ease,box-shadow .2s ease}.whatsapp-float:hover{transform:translateY(-3px);box-shadow:0 20px 45px rgba(0,0,0,.36)}.whatsapp-float svg{width:25px;height:25px;fill:#fff}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin{to{transform:rotate(360deg)}}
@keyframes spinReverse{to{transform:rotate(-360deg)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
@keyframes dataFlow{0%{left:0;opacity:0}15%{opacity:1}80%{opacity:1}100%{left:100%;opacity:0}}
@keyframes ticker{to{transform:translateX(-50%)}}

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.btn) { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: clamp(44px, 5vw, 61px); }
  .floating-card-one { left: 0; }.floating-card-two{right:0}
  .service-card { grid-column: span 6; }.service-card-large,.service-card-wide{grid-column:span 12}
  .split-grid,.security-grid,.about-grid,.contact-grid{gap:50px}
  .infra-flow{grid-template-columns:repeat(6,1fr);gap:8px}.flow-item{width:100%}.flow-arrow{display:none}
  .support-box{grid-template-columns:1fr 1fr}.support-box>.btn{grid-column:1/-1;width:max-content}
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .site-header { padding: 12px 0; }
  .main-nav { position: fixed; inset: 72px 14px auto 14px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: rgba(5,11,24,.97); backdrop-filter: blur(22px); box-shadow: 0 24px 70px rgba(0,0,0,.45); opacity:0; transform:translateY(-10px); pointer-events:none; transition:.22s ease; }
  .main-nav.open { opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav > a:not(.btn){display:block;padding:12px;border-radius:10px}.main-nav > a:not(.btn):hover{background:rgba(255,255,255,.04)}.main-nav> a:not(.btn)::after{display:none}.nav-cta{margin-top:6px}
  .menu-toggle{display:block}.menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}.menu-toggle.active span:nth-child(2){opacity:0}.menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .hero{min-height:auto;padding-top:135px}.hero-grid,.split-grid,.security-grid,.about-grid,.contact-grid{grid-template-columns:1fr}.hero-grid{gap:48px}.hero-copy{text-align:left}.hero-visual{min-height:510px}.hero-proof{grid-template-columns:1fr 1fr}.hero-proof div:last-child{grid-column:1/-1}
  .split-grid,.security-grid,.about-grid,.contact-grid{gap:46px}.erp-showcase{order:2}.split-copy{order:1}.browser-frame{transform:none}.badge-sales{right:4px}.badge-stock{left:4px}
  .security-visual{min-height:390px}.ring-3{width:360px;height:360px}.ring-2{width:290px;height:290px}.ring-1{width:220px;height:220px}
  .process-grid{grid-template-columns:1fr 1fr}.about-card{min-height:330px}.footer-top{grid-template-columns:1fr}.footer-links{flex-wrap:wrap}.footer-bottom{align-items:flex-start;flex-direction:column}
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy span{font-size:9px}.brand-mark{width:42px;height:42px}
  .hero{padding-top:118px}.hero h1{font-size:clamp(40px,12vw,56px)}.hero-lead{font-size:14px}.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .btn{width:100%}.hero-proof{gap:12px;margin-top:30px}.hero-visual{min-height:430px}.orbit-one{width:420px;height:420px}.orbit-two{width:340px;height:340px}.tech-panel{padding:13px}.network-map{height:230px}.network-node{width:70px;min-height:62px;font-size:8px}.node-center{width:82px;min-height:72px}.node-one{left:1%}.node-two{right:1%}.node-three{right:3%}.network-node svg{width:20px;height:20px}.line-a{width:135px;left:66px;top:65px}.line-b{width:126px;left:205px;top:115px}.line-c{width:130px;left:210px;top:127px}.line-d{width:130px;left:85px;top:178px}.panel-metrics{grid-template-columns:1fr}.metric-card:nth-child(n+2){display:none}.floating-card{min-width:155px}.floating-card-one{top:45px}.floating-card-two{bottom:35px}.panel-time{display:none}
  .section-heading h2,.split-copy h2,.security-copy h2,.contact-copy h2,.support-box h2{font-size:clamp(33px,10vw,45px)}
  .service-card,.service-card-large,.service-card-wide{grid-column:span 12;min-height:260px}.service-card-large{min-height:340px}.service-card-wide{min-height:355px}.terminal-art,.erp-mini-dashboard{left:24px;right:24px;width:auto}.terminal-art{bottom:24px}.erp-mini-dashboard{bottom:24px}.service-card-large .service-content,.service-card-wide .service-content{max-width:100%;margin-bottom:95px}
  .dashboard-shell{grid-template-columns:48px 1fr}.dash-main{padding:13px}.dash-sidebar{padding:11px 7px}.showcase-badge{display:none}
  .infra-flow{grid-template-columns:1fr 1fr;padding:20px 14px}.flow-item{min-height:105px}.security-list{grid-template-columns:1fr}.security-visual{min-height:350px}.ring-3{width:320px;height:320px}.ring-2{width:260px;height:260px}.ring-1{width:190px;height:190px}.shield-core{width:105px;height:125px}.security-point{font-size:7px}.point-a{left:3%}.point-b{right:2%}.point-c{left:2%}.point-d{right:4%}
  .process-grid{grid-template-columns:1fr}.process-step{padding-left:16px}.about-card{min-height:300px;padding:26px}.about-stat{left:26px;bottom:26px}.support-box{grid-template-columns:1fr;padding:28px 22px}.support-box>.btn{width:100%}.form-row{grid-template-columns:1fr}.contact-form{padding:20px}.contact-direct a{align-items:flex-start;flex-direction:column}.contact-direct strong{text-align:left;word-break:break-word}.whatsapp-float{right:14px;bottom:14px}
}

@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; }
}


/* JN V37 — ajuste do rodapé desktop/mobile */
.site-footer .footer-top{
  display:grid;
  grid-template-columns:minmax(190px,auto) minmax(280px,1fr) auto;
  align-items:center;
  gap:42px;
}

.site-footer .footer-brand{
  justify-self:start;
  align-self:center;
  min-width:198px;
  max-width:198px;
}

.site-footer .footer-top p{
  text-align:center;
  justify-self:center;
  max-width:460px;
  margin:0 auto;
}

.site-footer .footer-links{
  justify-self:end;
  justify-content:flex-end;
  text-align:right;
  flex-wrap:wrap;
}

@media (max-width: 820px){
  .site-footer .footer-top{
    grid-template-columns:1fr;
    gap:24px;
    text-align:center;
  }

  .site-footer .footer-brand{
    justify-self:center;
    margin:0 auto;
    min-width:198px;
    max-width:198px;
    width:198px;
    display:flex;
    justify-content:center;
  }

  .site-footer .footer-top p{
    text-align:center;
    max-width:520px;
    margin:0 auto;
  }

  .site-footer .footer-links{
    justify-self:center;
    justify-content:center;
    text-align:center;
    gap:24px;
  }

  .site-footer .footer-bottom{
    align-items:center;
    text-align:center;
  }
}


/* JN V42 — conteúdo SEO local e FAQs visíveis */
.section-local-seo{
  border-block:1px solid var(--line);
  background:linear-gradient(135deg,rgba(7,18,34,.82),rgba(5,13,26,.95));
}
.local-seo-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:72px;
  align-items:start;
}
.local-seo-grid .section-heading{margin-bottom:0}
.local-seo-copy p{
  margin:0;
  color:#95a8bd;
  font-size:15px;
  line-height:1.82;
}
.local-service-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:28px;
}
.local-service-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(9,22,40,.72);
  color:#b9cce0;
  font-size:12px;
  font-weight:700;
  transition:transform .2s ease,border-color .2s ease,color .2s ease;
}
.local-service-links a:hover{
  transform:translateY(-2px);
  border-color:rgba(73,200,255,.28);
  color:#63caff;
}
.section-home-faq{background:rgba(4,11,22,.58)}
.home-faq-list{
  max-width:900px;
  margin:0 auto;
  border-top:1px solid var(--line);
}
.home-faq-item{
  border-bottom:1px solid var(--line);
}
.home-faq-item summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 2px;
  cursor:pointer;
  color:#d8e5f3;
  font-family:'Space Grotesk',sans-serif;
  font-size:16px;
  font-weight:650;
}
.home-faq-item summary::-webkit-details-marker{display:none}
.home-faq-item summary span{
  color:#54c7ff;
  font-size:24px;
  font-weight:300;
  transition:transform .2s ease;
}
.home-faq-item[open] summary span{transform:rotate(45deg)}
.home-faq-item div{padding:0 42px 21px 2px}
.home-faq-item p{
  margin:0;
  color:#8fa3b8;
  font-size:13px;
  line-height:1.75;
}
@media(max-width:820px){
  .local-seo-grid{grid-template-columns:1fr;gap:34px}
}
@media(max-width:620px){
  .local-service-links{grid-template-columns:1fr}
  .home-faq-item summary{font-size:14px;padding:19px 2px}
}
