:root {
  --bg: #020812;
  --bg-deep: #01050d;
  --surface: rgba(7, 20, 39, .76);
  --surface-strong: #071427;
  --surface-soft: rgba(8, 26, 49, .5);
  --line: rgba(71, 139, 222, .22);
  --line-strong: rgba(53, 151, 255, .48);
  --text: #f5f8fc;
  --muted: #9aa9bb;
  --blue: #168cff;
  --blue-bright: #37b7ff;
  --cyan: #00d5ff;
  --orange: #ff9b37;
  --green: #21d6a1;
  --radius: 18px;
  --shadow-blue: 0 0 36px rgba(20, 132, 255, .23);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 73% 9%, rgba(0, 95, 255, .14), transparent 25%),
    radial-gradient(circle at 10% 46%, rgba(0, 117, 255, .07), transparent 22%),
    linear-gradient(180deg, #020916 0%, #020711 54%, #01050c 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(67, 155, 255, .65) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255,255,255,.28) 0 1px, transparent 1.2px);
  background-size: 84px 84px, 137px 137px;
  background-position: 5px 17px, 38px 61px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: var(--blue);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section-shell { position: relative; }
.content-section { padding: 92px 0 18px; position: relative; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0 0;
  transition: padding .25s ease, background .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  padding-top: 8px;
  background: linear-gradient(180deg, rgba(1, 7, 17, .94), rgba(1, 7, 17, .72), transparent);
  backdrop-filter: blur(16px);
}
.header-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 18px;
  border: 1px solid rgba(55, 132, 214, .17);
  border-radius: 15px;
  background: rgba(3, 13, 27, .72);
  box-shadow: inset 0 1px rgba(255,255,255,.025), 0 16px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.brand img { width: 196px; height: auto; filter: drop-shadow(0 0 9px rgba(27, 126, 255, .26)); }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.5vw, 34px); }
.nav-link {
  position: relative;
  padding: 14px 0;
  color: #d8e0ea;
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  box-shadow: 0 0 14px rgba(23, 147, 255, .75);
}
.nav-link:hover, .nav-link.active { color: white; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(45, 162, 255, .84);
  border-radius: 7px;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .01em;
  color: white;
  background: rgba(6, 21, 39, .72);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.15), transparent 72%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(24, 145, 255, .25); border-color: var(--cyan); }
.button:hover::before { transform: translateX(120%); }
.button-primary { background: linear-gradient(180deg, rgba(6, 40, 72, .95), rgba(5, 18, 34, .92)); box-shadow: inset 0 0 22px rgba(0, 132, 255, .08); }
.button-outline { background: rgba(4, 18, 34, .42); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .86rem; }
.menu-toggle { display: none; }

.hero {
  min-height: 810px;
  padding-top: 150px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 90px 0 auto;
  height: 620px;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, .97) 0%, rgba(2, 8, 18, .78) 38%, transparent 68%),
    radial-gradient(circle at 80% 42%, rgba(0, 105, 255, .12), transparent 34%);
  z-index: -2;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 24px; }
.hero-content { padding: 50px 0 70px 18px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 700;
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(2.85rem, 3.25vw, 3.35rem);
  line-height: .99;
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.18);
}
.hero h1 .hero-line { display: block; white-space: nowrap; color: inherit; }
.hero h1 .accent {
  color: #1b8cff;
  background: linear-gradient(135deg, #5ac5ff 5%, #187cff 62%, #0d64e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(17, 122, 255, .19));
}
.hero-copy { max-width: 560px; margin: 24px 0 0; color: #b7c1ce; font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.75; }
.hero-actions { margin-top: 28px; }
.hero-pillars { display: flex; gap: 26px; margin-top: 36px; }
.pillar { min-width: 0; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 11px; padding-right: 22px; border-right: 1px solid rgba(116, 155, 203, .18); }
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar strong { display: block; font-size: .86rem; font-weight: 500; color: #e1e7ef; }
.pillar small { display: block; margin-top: 4px; color: #78899d; font-size: .68rem; }
.pillar-icon { width: 40px; height: 40px; border: 1px solid rgba(52, 127, 215, .34); border-radius: 50%; position: relative; background: rgba(4, 17, 33, .74); }
.icon-network::before, .icon-network::after { content:""; position:absolute; border:1px solid #8fb9e7; border-radius:50%; width:6px; height:6px; }
.icon-network::before { left:8px; top:16px; box-shadow: 14px -9px 0 -1px #061426, 14px -9px 0 0 #8fb9e7, 17px 10px 0 -1px #061426, 17px 10px 0 0 #8fb9e7; }
.icon-network::after { width:21px; height:17px; border-radius:0; border-left:0; border-bottom:0; transform:rotate(26deg); left:9px; top:11px; }
.icon-gear::before { content:"⚙"; position:absolute; inset:0; display:grid; place-items:center; color:#8db7e3; font-size:23px; font-family:Arial,sans-serif; }
.icon-eye::before { content:""; position:absolute; width:24px; height:14px; border:1px solid #8db7e3; border-radius:50% 0 50% 0; transform:rotate(-45deg); left:7px; top:12px; }
.icon-eye::after { content:""; position:absolute; width:6px; height:6px; border:1px solid #8db7e3; border-radius:50%; left:16px; top:16px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.network-globe {
  position: relative;
  width: 132%;
  max-width: 860px;
  transform: translate(2%, -2%);
  filter: drop-shadow(0 0 26px rgba(0, 88, 255, .2));
  animation: globeFloat 7s ease-in-out infinite;
  z-index: 2;
}
.globe-halo {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 125, 255, .16), rgba(0, 65, 255, .05) 42%, transparent 69%);
  filter: blur(20px);
  animation: haloPulse 5s ease-in-out infinite;
}
.speed-lines {
  position: absolute;
  width: 130%;
  height: 45%;
  left: -38%;
  top: 45%;
  opacity: .48;
  transform: rotate(-8deg);
  background: repeating-linear-gradient(173deg, transparent 0 17px, rgba(29, 105, 255, .22) 18px 19px, transparent 20px 31px);
  mask-image: linear-gradient(90deg, transparent, black 25%, black 70%, transparent);
  filter: blur(.2px);
  z-index: 1;
}
@keyframes globeFloat { 0%,100% { transform: translate(2%,-2%) scale(1); } 50% { transform: translate(2%,-4%) scale(1.015); } }
@keyframes haloPulse { 0%,100% { opacity:.65; transform:scale(.96); } 50% { opacity:1; transform:scale(1.05); } }

.scroll-cue { position:absolute; left:50%; bottom:20px; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:10px; color:#60748c; text-transform:uppercase; letter-spacing:.3em; font-size:.57rem; }
.scroll-cue span { width:20px; height:32px; border:1px solid rgba(127,164,209,.42); border-radius:12px; position:relative; }
.scroll-cue span::before { content:""; position:absolute; width:2px; height:6px; border-radius:2px; background:var(--blue-bright); left:50%; top:6px; transform:translateX(-50%); animation:scrollDot 1.9s infinite; box-shadow:0 0 8px var(--blue); }
@keyframes scrollDot { 0% { opacity:0; transform:translate(-50%,0); } 30% { opacity:1; } 100% { opacity:0; transform:translate(-50%,12px); } }

.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2, .system-copy h2, .cta-panel h2 { margin: 0; font-family: Rajdhani, Inter, sans-serif; font-size: clamp(2rem, 4vw, 3.3rem); line-height:1.08; letter-spacing:.01em; }
.section-heading > p:last-child, .system-copy > p { color: var(--muted); line-height:1.75; }
.card-grid { display:grid; gap:18px; }
.problems-grid { grid-template-columns:repeat(4,1fr); }
.info-card, .capability-card {
  position:relative;
  min-height:230px;
  padding:30px 24px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg, rgba(8,24,46,.72), rgba(4,12,25,.88));
  box-shadow:inset 0 1px rgba(255,255,255,.025);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow:hidden;
}
.info-card::before, .capability-card::before { content:""; position:absolute; inset:auto -25% -65% -25%; height:80%; background:radial-gradient(circle, rgba(16,126,255,.14), transparent 67%); opacity:0; transition:opacity .25s ease; }
.info-card:hover, .capability-card:hover { transform:translateY(-6px); border-color:rgba(42,153,255,.55); box-shadow:0 16px 44px rgba(0,0,0,.28), 0 0 25px rgba(18,117,255,.08); }
.info-card:hover::before, .capability-card:hover::before { opacity:1; }
.info-card h3, .capability-card h3 { margin:18px 0 10px; font-size:1.02rem; }
.info-card p, .capability-card p { margin:0; color:var(--muted); font-size:.88rem; line-height:1.65; }
.line-icon, .step-symbol, .cap-icon { margin-inline:auto; width:58px; height:58px; position:relative; color:var(--blue-bright); }
.line-icon { border:1px solid rgba(37,139,255,.17); border-radius:50%; background:rgba(0,75,160,.08); }
.connected-nodes::before { content:""; position:absolute; left:15px; top:15px; width:8px; height:8px; border:2px solid var(--blue); border-radius:2px; box-shadow:20px 2px 0 -2px #071427,20px 2px 0 0 var(--blue),5px 20px 0 -2px #071427,5px 20px 0 0 var(--blue),25px 25px 0 -2px #071427,25px 25px 0 0 var(--blue); }
.connected-nodes::after { content:""; position:absolute; left:20px; top:19px; width:24px; height:24px; border:1px solid var(--blue); border-left-color:transparent; border-bottom-color:transparent; transform:rotate(12deg); }
.refresh-icon::before { content:"↻"; position:absolute; inset:-6px 0 0; display:grid; place-items:center; font:400 55px/1 Arial,sans-serif; color:var(--blue); }
.person-icon::before { content:""; position:absolute; width:15px; height:15px; border:2px solid var(--blue); border-radius:50%; left:20px; top:10px; }
.person-icon::after { content:""; position:absolute; width:34px; height:18px; border:2px solid var(--blue); border-bottom:0; border-radius:24px 24px 0 0; left:10px; bottom:10px; }
.clock-icon::before { content:""; position:absolute; width:34px; height:34px; border:2px solid var(--blue); border-radius:50%; left:10px; top:10px; }
.clock-icon::after { content:""; position:absolute; width:12px; height:10px; border-left:2px solid var(--blue); border-bottom:2px solid var(--blue); left:28px; top:20px; transform:rotate(-5deg); transform-origin:left bottom; }

.workflow-section { padding-top:105px; }
.workflow { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.workflow::before { content:""; position:absolute; left:8%; right:8%; top:38px; height:1px; background:linear-gradient(90deg, transparent, rgba(21,134,255,.62), rgba(21,134,255,.62), transparent); box-shadow:0 0 10px rgba(28,128,255,.35); }
.workflow-step { position:relative; padding:0 14px 12px; text-align:center; }
.step-number { position:relative; z-index:2; display:grid; place-items:center; width:36px; height:36px; margin:20px auto 12px; border:1px solid rgba(74,175,255,.9); border-radius:50%; background:linear-gradient(145deg,#0a62db,#082c6c); color:white; box-shadow:0 0 20px rgba(18,120,255,.45); font-weight:700; }
.step-symbol { height:60px; }
.workflow-step h3 { margin:8px 0 10px; font-size:1rem; }
.workflow-step p { margin:0 auto; max-width:230px; color:var(--muted); font-size:.84rem; line-height:1.62; }
.magnifier-symbol::before { content:""; position:absolute; width:27px; height:27px; border:2px solid var(--blue); border-radius:50%; left:10px; top:9px; }
.magnifier-symbol::after { content:""; position:absolute; width:20px; height:2px; background:var(--blue); transform:rotate(45deg); left:35px; top:38px; box-shadow:0 0 8px var(--blue); }
.puzzle-symbol::before { content:"✣"; position:absolute; inset:0; display:grid; place-items:center; color:var(--blue); font-size:52px; font-family:Georgia,serif; }
.database-symbol::before { content:""; position:absolute; width:38px; height:44px; border:2px solid var(--blue); border-radius:50% / 16%; left:9px; top:8px; }
.database-symbol::after { content:""; position:absolute; width:38px; height:13px; border-top:2px solid var(--blue); border-bottom:2px solid var(--blue); left:11px; top:24px; }
.chart-symbol::before { content:""; position:absolute; left:7px; right:7px; bottom:10px; height:36px; background:linear-gradient(135deg,transparent 0 18%, var(--blue) 19% 22%, transparent 23% 43%, var(--blue) 44% 47%, transparent 48% 67%, var(--blue) 68% 71%, transparent 72%); clip-path:polygon(0 80%,25% 52%,43% 67%,72% 22%,100% 4%,100% 12%,74% 33%,45% 78%,25% 63%,0 92%); }

.system-section { padding-top:115px; }
.system-layout { display:grid; grid-template-columns:.68fr 1.32fr; gap:52px; align-items:center; }
.check-list { list-style:none; margin:26px 0 0; padding:0; display:grid; gap:13px; color:#c5cfda; }
.check-list li { position:relative; padding-left:28px; font-size:.92rem; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:-2px; display:grid; place-items:center; width:18px; height:18px; border:1px solid var(--blue); border-radius:50%; color:var(--blue-bright); font-size:.68rem; box-shadow:0 0 10px rgba(16,132,255,.16); }
.dashboard-demo { position:relative; }
.demo-label { position:absolute; top:-15px; right:18px; z-index:4; padding:7px 11px; border:1px solid rgba(40,145,255,.35); border-radius:99px; background:#061326; color:#8fbce8; font-size:.68rem; letter-spacing:.05em; }
.dashboard-frame { min-height:440px; display:grid; grid-template-columns:68px 1fr; border:1px solid rgba(47,141,236,.38); border-radius:16px; overflow:hidden; background:linear-gradient(145deg,#061426,#030b17); box-shadow:0 24px 70px rgba(0,0,0,.34),0 0 42px rgba(13,113,255,.08); }
.dash-sidebar { padding:22px 15px; border-right:1px solid rgba(93,145,205,.15); background:#041020; display:flex; flex-direction:column; align-items:center; gap:17px; }
.dash-logo-dot { width:22px; height:22px; border:2px solid var(--blue-bright); border-radius:50%; box-shadow:0 0 13px rgba(31,151,255,.55); margin-bottom:8px; }
.side-item { width:28px; height:28px; border-radius:7px; border:1px solid rgba(102,152,209,.16); position:relative; }
.side-item::before { content:""; position:absolute; inset:8px; border:1px solid #58718e; border-radius:2px; }
.side-item.active { background:rgba(22,118,255,.15); border-color:rgba(29,139,255,.42); }
.side-item.active::before { border-color:var(--blue-bright); box-shadow:0 0 8px rgba(25,139,255,.45); }
.dash-main { padding:24px; min-width:0; }
.dash-topbar { display:flex; justify-content:space-between; align-items:center; padding-bottom:20px; border-bottom:1px solid rgba(100,151,205,.12); }
.dash-topbar small { display:block; color:#71859d; font-size:.68rem; }
.dash-topbar strong { display:block; margin-top:4px; font-family:Rajdhani,sans-serif; font-size:1.4rem; }
.user-chip { width:34px; height:34px; border:1px solid rgba(68,145,230,.25); border-radius:50%; background:linear-gradient(145deg,rgba(26,119,225,.25),rgba(5,17,32,.7)); }
.summary-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px; }
.summary-card { min-height:92px; padding:15px; border:1px solid rgba(69,134,207,.18); border-radius:10px; background:rgba(7,24,45,.66); }
.summary-card small { color:#6d8299; font-size:.63rem; }
.summary-card strong { display:block; margin-top:7px; font-size:.78rem; }
.mini-line { display:block; height:3px; width:68%; margin-top:16px; background:linear-gradient(90deg,var(--blue),rgba(22,140,255,.1)); border-radius:4px; }
.dash-panels { display:grid; grid-template-columns:1.55fr .75fr; gap:12px; margin-top:12px; }
.dash-panel { min-height:210px; border:1px solid rgba(69,134,207,.18); border-radius:10px; background:rgba(6,20,39,.78); padding:15px; overflow:hidden; }
.panel-title { font-size:.68rem; color:#8ea1b5; }
.chart-panel svg { width:100%; height:170px; margin-top:8px; }
.chart-grid { fill:none; stroke:rgba(105,151,204,.09); stroke-width:1; }
.chart-area { fill:url(#areaBlue); }
.chart-line { fill:none; stroke:#168cff; stroke-width:3; filter:drop-shadow(0 0 5px rgba(22,140,255,.65)); }
.status-panel { display:grid; grid-template-columns:90px 1fr; align-content:center; gap:10px; }
.status-panel .panel-title { grid-column:1/-1; }
.donut { width:78px; height:78px; margin:auto; border-radius:50%; background:conic-gradient(var(--blue) 0 46%, var(--cyan) 46% 67%, var(--orange) 67% 79%, #18314e 79% 100%); position:relative; }
.donut::after { content:""; position:absolute; inset:16px; border-radius:50%; background:#061426; }
.status-lines { display:grid; align-content:center; gap:10px; }
.status-lines span { height:5px; border-radius:5px; background:linear-gradient(90deg,#2b88e9,rgba(72,115,166,.16)); }
.status-lines span:nth-child(2){width:84%}.status-lines span:nth-child(3){width:68%}.status-lines span:nth-child(4){width:46%}
.demo-note { margin:14px 0 0; color:#60748d; font-size:.65rem; text-align:right; }

.capabilities-section { padding-bottom:92px; }
.capabilities-grid { grid-template-columns:repeat(5,1fr); }
.capability-card { min-height:205px; padding:28px 18px; }
.cap-icon { display:block; height:50px; }
.tree-cap::before { content:""; position:absolute; left:12px; top:4px; width:32px; height:38px; border-top:2px solid var(--blue); border-left:2px solid var(--blue); border-right:2px solid var(--blue); clip-path:polygon(45% 0,55% 0,55% 35%,100% 35%,100% 100%,87% 100%,87% 48%,55% 48%,55% 100%,45% 100%,45% 48%,13% 48%,13% 100%,0 100%,0 35%,45% 35%); background:var(--blue); }
.bars-cap::before { content:""; position:absolute; left:10px; bottom:8px; width:8px; height:18px; border:2px solid var(--blue); box-shadow:15px -10px 0 -2px #071427,15px -10px 0 0 var(--blue),30px -24px 0 -2px #071427,30px -24px 0 0 var(--blue); }
.bars-cap::after { content:"↗"; position:absolute; right:5px; top:-7px; color:var(--blue); font-size:25px; }
.records-cap::before { content:""; position:absolute; width:36px; height:42px; border:2px solid var(--blue); border-radius:50% / 14%; left:10px; top:4px; }
.records-cap::after { content:""; position:absolute; width:36px; height:12px; border-top:2px solid var(--blue); border-bottom:2px solid var(--blue); left:12px; top:18px; }
.clipboard-cap::before { content:"✓"; position:absolute; width:32px; height:38px; border:2px solid var(--blue); border-radius:4px; left:12px; top:8px; display:grid; place-items:center; color:var(--blue); font-size:20px; }
.clipboard-cap::after { content:""; position:absolute; width:14px; height:5px; border:2px solid var(--blue); border-bottom:0; border-radius:5px 5px 0 0; left:22px; top:2px; background:#071427; }
.shield-cap::before { content:""; position:absolute; width:37px; height:43px; left:10px; top:3px; border:2px solid var(--blue); clip-path:polygon(50% 0,95% 18%,88% 70%,50% 100%,12% 70%,5% 18%); }
.shield-cap::after { content:""; position:absolute; width:10px; height:9px; border:2px solid var(--blue); border-radius:2px; left:24px; top:23px; box-shadow:0 -7px 0 -4px #071427,0 -7px 0 -2px var(--blue); }

.cta-section { padding:0 0 46px; }
.cta-panel { position:relative; min-height:190px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:34px; padding:36px 50px; border:1px solid rgba(40,149,255,.48); border-radius:16px; background:linear-gradient(100deg,rgba(7,28,52,.95),rgba(3,12,25,.9)); overflow:hidden; box-shadow:inset 0 0 34px rgba(14,102,213,.05), var(--shadow-blue); }
.cta-panel > * { position:relative; z-index:2; }
.cta-panel h2 { font-size:clamp(1.8rem,3.2vw,2.8rem); }
.cta-panel p:not(.eyebrow) { margin:8px 0 0; color:var(--muted); }
.cta-globe { position:absolute; z-index:1; right:-70px; bottom:-140px; width:330px; height:330px; border:1px solid rgba(28,142,255,.42); border-radius:50%; opacity:.64; box-shadow:0 0 45px rgba(0,107,255,.18), inset 0 0 35px rgba(0,107,255,.18); background:repeating-linear-gradient(27deg,transparent 0 15px,rgba(22,140,255,.15) 16px 17px),repeating-linear-gradient(153deg,transparent 0 22px,rgba(22,140,255,.13) 23px 24px); }
.cta-globe::before,.cta-globe::after { content:""; position:absolute; inset:18%; border:1px solid rgba(64,164,255,.34); border-radius:50%; transform:scaleX(.36); }
.cta-globe::after { transform:scaleY(.36); }

.site-footer { border-top:1px solid rgba(89,137,192,.13); padding:26px 0 34px; background:rgba(1,5,12,.78); }
.footer-layout { display:grid; grid-template-columns:220px 1fr auto; grid-template-areas:"brand tagline nav" "brand copy copy"; align-items:center; gap:12px 32px; }
.footer-brand { grid-area:brand; }
.footer-brand img { width:178px; }
.footer-layout > p:first-of-type { grid-area:tagline; margin:0; color:#8191a4; font-size:.82rem; }
.footer-layout nav { grid-area:nav; display:flex; gap:24px; color:#b7c2ce; font-size:.82rem; }
.footer-layout nav a:hover { color:var(--blue-bright); }
.copyright { grid-area:copy; margin:0; color:#53677e; font-size:.72rem; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

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

@media (max-width: 1080px) {
  .header-shell { grid-template-columns:210px 1fr auto; gap:18px; }
  .brand img { width:180px; }
  .main-nav { gap:18px; }
  .nav-link { font-size:.82rem; }
  .header-cta { display:none; }
  .hero-grid { grid-template-columns:1fr .9fr; }
  .hero-pillars { gap:14px; }
  .pillar { padding-right:14px; }
  .problems-grid { grid-template-columns:repeat(2,1fr); }
  .system-layout { grid-template-columns:1fr; }
  .system-copy { max-width:720px; }
  .capabilities-grid { grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 820px) {
  .container { width:min(100% - 28px,var(--container)); }
  .site-header { padding-top:10px; }
  .header-shell { min-height:64px; display:flex; justify-content:space-between; padding:8px 12px; }
  .brand img { width:168px; }
  .menu-toggle { display:grid; gap:5px; width:44px; height:42px; place-content:center; border:1px solid rgba(47,142,236,.28); border-radius:9px; background:rgba(4,18,34,.8); }
  .menu-toggle span { display:block; width:22px; height:2px; background:#dbe8f6; transition:transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .main-nav { position:absolute; top:76px; left:14px; right:14px; display:grid; gap:0; padding:12px; border:1px solid rgba(52,139,230,.28); border-radius:12px; background:rgba(3,12,25,.97); box-shadow:0 22px 50px rgba(0,0,0,.42); opacity:0; visibility:hidden; transform:translateY(-8px); transition:.2s ease; }
  .main-nav.open { opacity:1; visibility:visible; transform:translateY(0); }
  .nav-link { padding:13px 12px; border-bottom:1px solid rgba(87,137,195,.1); }
  .nav-link:last-child { border-bottom:0; }
  .nav-link::after { left:12px; right:auto; width:42px; bottom:6px; }
  .hero { min-height:auto; padding:126px 0 62px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-content { padding:25px 8px 0; text-align:center; }
  .hero h1 { margin-inline:auto; max-width:720px; font-size:clamp(2.65rem,8.5vw,4rem); }
  .hero h1 .hero-line { white-space: normal; }
  .hero-copy { margin-inline:auto; }
  .hero-actions { display:flex; justify-content:center; }
  .hero-pillars { justify-content:center; flex-wrap:wrap; }
  .hero-visual { min-height:440px; margin-top:-20px; }
  .network-globe { width:min(720px,115%); }
  .scroll-cue { display:none; }
  .workflow { grid-template-columns:repeat(2,1fr); row-gap:38px; }
  .workflow::before { display:none; }
  .dash-main { padding:17px; }
  .dashboard-frame { grid-template-columns:54px 1fr; }
  .summary-cards { grid-template-columns:1fr; }
  .dash-panels { grid-template-columns:1fr; }
  .status-panel { min-height:160px; }
  .capabilities-grid { grid-template-columns:repeat(2,1fr); }
  .cta-panel { grid-template-columns:1fr; align-items:start; padding:34px 28px; }
  .cta-panel .button { width:max-content; }
  .footer-layout { grid-template-columns:1fr; grid-template-areas:"brand" "tagline" "nav" "copy"; text-align:center; justify-items:center; }
  .footer-layout nav { flex-wrap:wrap; justify-content:center; }
}

@media (max-width: 560px) {
  .content-section { padding-top:76px; }
  .hero { padding-top:112px; }
  .hero h1 { font-size:clamp(2.35rem,12.5vw,3.6rem); }
  .hero-copy { font-size:.98rem; line-height:1.65; }
  .button { width:100%; }
  .hero-actions { width:100%; }
  .hero-pillars { display:grid; grid-template-columns:1fr; width:min(100%,320px); margin-inline:auto; text-align:left; }
  .pillar { border-right:0; padding-right:0; }
  .hero-visual { min-height:330px; }
  .network-globe { width:135%; }
  .problems-grid, .workflow, .capabilities-grid { grid-template-columns:1fr; }
  .info-card { min-height:210px; }
  .workflow-step { padding-inline:0; }
  .dashboard-frame { grid-template-columns:1fr; }
  .dash-sidebar { display:none; }
  .dash-main { padding:14px; }
  .dash-panels { grid-template-columns:1fr; }
  .chart-panel { min-height:190px; }
  .status-panel { grid-template-columns:75px 1fr; }
  .summary-card { min-height:78px; }
  .cta-panel .button { width:100%; }
}

/* Link direto para a landing page do SNO Manutenção */
.system-actions { margin-top: 28px; }

/* PATCH SITE 003 — responsividade Android e contenção horizontal */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body { min-width: 0; }

.site-header,
main,
.site-footer,
.section-shell,
.content-section {
  max-width: 100%;
}

.hero,
.hero-visual,
.site-footer {
  overflow-x: hidden;
  overflow-x: clip;
}

.header-shell,
.hero-grid,
.system-layout,
.footer-layout,
.cta-panel,
.header-shell > *,
.hero-grid > *,
.system-layout > *,
.footer-layout > *,
.cta-panel > * {
  min-width: 0;
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 24px);
    max-width: var(--container);
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .header-shell {
    width: calc(100% - 24px);
    max-width: none;
    margin-inline: auto;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    overflow: hidden;
  }

  .brand img {
    width: min(168px, 100%);
    max-width: 100%;
  }

  .menu-toggle {
    flex: 0 0 44px;
    margin-left: 0;
  }

  .main-nav {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-visual { overflow: hidden; overflow: clip; }
  .network-globe { max-width: none; }
}
