:root {
  --bg: #050812;
  --bg-2: #09101f;
  --panel: rgba(13, 22, 42, 0.76);
  --panel-strong: #0d172b;
  --line: rgba(145, 183, 255, 0.15);
  --line-strong: rgba(110, 181, 255, 0.28);
  --text: #f5f8ff;
  --muted: #9eacc6;
  --muted-2: #70809c;
  --blue: #3c7cff;
  --cyan: #5ce2ff;
  --cyan-soft: #a2eeff;
  --green: #61f2b3;
  --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;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(38, 96, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #060a14 0%, #050812 44%, #070b15 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.site-shell { position: relative; min-height: 100vh; overflow: hidden; }
.ambient { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .22; }
.ambient-one { width: 420px; height: 420px; background: #0b62ff; top: 280px; left: -260px; }
.ambient-two { width: 520px; height: 520px; background: #00b4ff; top: 1120px; right: -350px; opacity: .12; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 8, 18, 0.76);
  border-color: rgba(142, 177, 236, 0.12);
  backdrop-filter: blur(20px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; width: 178px; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: 30px; color: #b9c5d9; font-size: 14px; font-weight: 520; }
.primary-nav > a:not(.nav-cta) { position: relative; transition: color .2s ease; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--cyan); transition: right .25s ease; }
.primary-nav > a:not(.nav-cta):hover { color: white; }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px; border: 1px solid var(--line-strong); border-radius: 999px; color: white; background: rgba(41, 104, 255, .1); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); border-color: rgba(92, 226, 255, .58); background: rgba(41, 104, 255, .18); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.03); align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1px; background: white; transition: transform .2s ease; }

.hero { min-height: 860px; display: flex; align-items: center; padding-top: 150px; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(112,151,225,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(112,151,225,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black 0%, transparent 78%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.eyebrow, .section-kicker { color: var(--cyan-soft); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1px solid var(--line); background: rgba(38, 101, 255, .08); border-radius: 999px; margin-bottom: 28px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(97,242,179,.8); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(54px, 6.3vw, 86px); line-height: .97; letter-spacing: -.06em; font-weight: 670; }
.hero h1 span { color: transparent; background: linear-gradient(100deg, #eaf8ff 3%, #83e8ff 48%, #4b7dff 100%); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border-radius: 999px; font-size: 14px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #05101d; background: linear-gradient(110deg, #b3f3ff 0%, #61dfff 45%, #5c8cff 100%); box-shadow: 0 12px 36px rgba(38, 141, 255, .28); }
.button-primary:hover { box-shadow: 0 16px 44px rgba(38, 141, 255, .4); }
.button-secondary { color: white; border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: rgba(92, 226, 255, .5); background: rgba(92,226,255,.05); }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 610px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 7px; padding-right: 20px; }
.hero-proof strong { font-size: 21px; letter-spacing: -.03em; }
.hero-proof span { color: var(--muted-2); font-size: 12px; }

.hero-visual { min-height: 600px; position: relative; }
.hero-image { position: absolute; inset: 20px -150px 52px 20px; border-radius: 40% 0 0 38%; background: linear-gradient(90deg, rgba(5,8,18,.95) 0%, rgba(5,8,18,.16) 34%, rgba(5,8,18,.28) 100%), url("assets/hero2.jpg") center / cover no-repeat; filter: saturate(1.08) contrast(1.08); opacity: .88; mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 82%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 15%, black 78%, transparent 100%); mask-composite: intersect; }
.hero-visual::before { content: ""; position: absolute; width: 360px; height: 360px; left: 90px; top: 120px; border-radius: 50%; background: rgba(54, 125, 255, .2); filter: blur(58px); }
.visual-grid { position: absolute; inset: 60px 0 0 20px; background-image: linear-gradient(rgba(113,184,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(113,184,255,.08) 1px, transparent 1px); background-size: 44px 44px; transform: perspective(500px) rotateY(-12deg) rotateX(8deg); mask-image: radial-gradient(circle, black 0, transparent 65%); }
.glass-card { border: 1px solid rgba(126, 184, 255, .2); background: linear-gradient(145deg, rgba(15,27,50,.84), rgba(7,13,27,.75)); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.cluster-panel { position: absolute; left: 54px; right: 0; bottom: 30px; padding: 22px; border-radius: 22px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.panel-head > div { display: grid; gap: 5px; }
.panel-label { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.panel-head strong { font-size: 16px; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; color: #baf9dc; font-size: 11px; padding: 8px 10px; border: 1px solid rgba(97,242,179,.19); border-radius: 999px; background: rgba(97,242,179,.06); }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.cluster-map { height: 160px; margin: 18px 0; position: relative; overflow: hidden; border-radius: 14px; background: rgba(2,7,17,.5); border: 1px solid rgba(129,170,236,.09); }
.cluster-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cluster-map path { fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-dasharray: 6 7; filter: drop-shadow(0 0 5px rgba(92,226,255,.8)); animation: dash 8s linear infinite; }
.cluster-map .path-faint { stroke: #4774ff; opacity: .35; animation-direction: reverse; }
@keyframes dash { to { stroke-dashoffset: -130; } }
.rack { position: absolute; z-index: 2; width: 44px; height: 74px; padding: 7px; border: 1px solid rgba(112,181,255,.32); border-radius: 8px; background: linear-gradient(180deg, rgba(40,83,159,.32), rgba(8,17,34,.95)); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.rack-one { left: 10%; top: 24%; }.rack-two { left: 46%; top: 12%; }.rack-three { right: 9%; top: 37%; }
.rack span { display: block; height: 7px; margin-bottom: 5px; border-radius: 2px; background: linear-gradient(90deg, #2d5cb1, #56dcff); opacity: .78; }
.panel-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.panel-metrics div { display: grid; gap: 4px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.04); }
.panel-metrics span { color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.panel-metrics strong { font-size: 12px; }
.floating-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(132,196,255,.22); background: rgba(7,13,28,.77); backdrop-filter: blur(16px); border-radius: 999px; color: #b9c7de; font-size: 11px; box-shadow: 0 16px 35px rgba(0,0,0,.3); animation: float 5s ease-in-out infinite; }
.floating-chip span { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: white; background: linear-gradient(135deg, #2d68ff, #50d6ff); font-weight: 800; }
.chip-one { top: 92px; left: 15px; }.chip-two { right: -20px; top: 245px; animation-delay: -2.4s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.trust-strip { position: relative; border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.trust-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.trust-inner p { margin: 0; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; white-space: nowrap; }
.workload-list { display: flex; align-items: center; justify-content: flex-end; gap: 22px; color: #cad4e6; font-size: 13px; }
.workload-list i { width: 3px; height: 3px; border-radius: 50%; background: #3b5479; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.section-heading h2, .process-intro h2, .about-copy h2, .faq-intro h2, .contact-copy h2 { margin: 14px 0 0; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.06; letter-spacing: -.045em; font-weight: 630; }
.section-heading p, .process-intro > p, .about-copy > p, .faq-intro > p, .contact-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.bento-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.feature-card { position: relative; min-height: 340px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(16,27,50,.78), rgba(8,14,28,.83)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.feature-card::after { content: ""; position: absolute; inset: auto -10% -60% 35%; height: 250px; background: radial-gradient(circle, rgba(44,111,255,.15), transparent 68%); pointer-events: none; }
.feature-card > span, .feature-copy > span, .feature-wide-copy > span { display: block; margin: 28px 0 16px; color: #5f7395; font-size: 11px; letter-spacing: .12em; }
.feature-card h3 { max-width: 460px; margin: 0; font-size: 26px; line-height: 1.17; letter-spacing: -.025em; }
.feature-card p { max-width: 530px; margin: 14px 0 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(87,175,255,.21); border-radius: 13px; background: linear-gradient(145deg, rgba(44,108,255,.16), rgba(82,221,255,.045)); }
.card-icon svg { width: 21px; fill: none; stroke: #7ddfff; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.feature-large { min-height: 480px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 20px; grid-column: 1 / -1; }
.feature-large .card-icon { position: absolute; top: 30px; left: 30px; }
.feature-copy { position: relative; z-index: 3; align-self: end; padding-top: 100px; }
.compute-visual { min-height: 390px; position: relative; display: grid; place-items: center; perspective: 900px; }
.compute-core { position: relative; z-index: 3; width: 138px; height: 138px; display: grid; place-items: center; border-radius: 28px; font-size: 25px; font-weight: 800; letter-spacing: .15em; color: white; background: linear-gradient(145deg, #183875, #0a1530); border: 1px solid rgba(106, 202, 255, .5); box-shadow: inset 0 0 34px rgba(82,206,255,.17), 0 0 80px rgba(41,107,255,.25); transform: rotateX(57deg) rotateZ(-33deg); }
.compute-core::before, .compute-core::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(102,220,255,.25); border-radius: 21px; }
.compute-core::after { inset: -13px; border-style: dashed; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit { position: absolute; border: 1px solid rgba(91, 163, 255, .23); border-radius: 50%; transform: rotateX(65deg) rotateZ(-18deg); }
.orbit-a { width: 250px; height: 250px; }.orbit-b { width: 340px; height: 340px; }.orbit-c { width: 440px; height: 440px; }
.node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(92,226,255,.9); }
.node-a { top: 70px; left: 46%; }.node-b { top: 49%; right: 38px; }.node-c { bottom: 55px; left: 29%; }.node-d { top: 31%; left: 52px; }
.latency-meter { position: absolute; left: 30px; right: 30px; bottom: 30px; }
.meter-track { height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.06); }
.meter-track span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #4775ff, #58e5ff); box-shadow: 0 0 14px rgba(88,229,255,.48); }
.meter-labels { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.meter-labels small { color: var(--muted-2); font-size: 9px; }.meter-labels strong { color: #b9c9df; font-size: 10px; }
.security-lines { position: absolute; right: 22px; bottom: 22px; width: 150px; height: 120px; display: flex; align-items: end; justify-content: space-between; opacity: .58; }
.security-lines i { width: 23px; border: 1px solid rgba(81,194,255,.3); background: linear-gradient(to top, rgba(43,104,255,.42), rgba(84,226,255,.12)); border-radius: 6px 6px 2px 2px; }
.security-lines i:nth-child(1){height:38%}.security-lines i:nth-child(2){height:67%}.security-lines i:nth-child(3){height:48%}.security-lines i:nth-child(4){height:92%}
.feature-wide { min-height: 370px; grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 50px; }
.scale-chart { position: relative; height: 270px; border: 1px solid rgba(118,169,255,.11); background: rgba(4,10,23,.4); border-radius: 18px; overflow: hidden; }
.chart-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,150,216,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(108,150,216,.08) 1px, transparent 1px); background-size: 52px 52px; }
.scale-chart svg { position: absolute; inset: 25px 22px 22px; width: calc(100% - 44px); height: calc(100% - 47px); overflow: visible; }
.scale-chart .area { fill: url(#areaGradient); }.scale-chart .line { fill: none; stroke: #76e8ff; stroke-width: 2.5; filter: drop-shadow(0 0 7px rgba(92,226,255,.65)); }
.chart-badge { position: absolute; top: 24px; right: 24px; display: grid; gap: 5px; padding: 12px 14px; border: 1px solid rgba(101,192,255,.15); border-radius: 12px; background: rgba(6,13,28,.78); backdrop-filter: blur(14px); }
.chart-badge span { color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }.chart-badge strong { font-size: 12px; }

.solutions-section { background: linear-gradient(180deg, rgba(12,21,40,.24), rgba(5,8,18,0)); border-top: 1px solid rgba(129,166,229,.07); }
.solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.solution-card { min-height: 530px; position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(15,26,49,.79), rgba(7,13,27,.88)); }
.solution-top { display: flex; align-items: center; justify-content: space-between; color: #5b6e8f; font-size: 11px; }
.arrow-chip { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(119,174,255,.16); border-radius: 50%; color: #a8bad4; transition: transform .2s ease, background .2s ease; }
.solution-card:hover .arrow-chip { transform: rotate(45deg); background: rgba(92,226,255,.08); }
.solution-art { height: 265px; margin: 24px 0 22px; position: relative; display: grid; place-items: center; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at center, rgba(43,112,255,.14), transparent 60%), rgba(4,10,22,.45); border: 1px solid rgba(105,159,241,.08); }
.solution-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(112,151,225,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(112,151,225,.05) 1px, transparent 1px); background-size: 36px 36px; }
.solution-card h3 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.solution-card p { max-width: 540px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.brain-core { width: 108px; height: 118px; position: relative; border-radius: 52% 48% 46% 54% / 45% 48% 52% 55%; border: 1px solid rgba(99,216,255,.75); box-shadow: inset 0 0 35px rgba(46,134,255,.18), 0 0 45px rgba(50,128,255,.25); }
.art-ai i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }
.art-ai i:nth-of-type(1){left:20%;top:28%}.art-ai i:nth-of-type(2){right:22%;top:24%}.art-ai i:nth-of-type(3){left:26%;bottom:26%}.art-ai i:nth-of-type(4){right:25%;bottom:23%}.art-ai i:nth-of-type(5){left:50%;top:16%}.art-ai i:nth-of-type(6){right:14%;top:52%}
.art-ai i::after { content:""; position:absolute; left:3px; top:3px; width:70px; height:1px; background:linear-gradient(90deg,rgba(92,226,255,.8),transparent); transform-origin:left center; }
.art-ai i:nth-of-type(1)::after{transform:rotate(20deg)}.art-ai i:nth-of-type(2)::after{transform:rotate(156deg)}.art-ai i:nth-of-type(3)::after{transform:rotate(-25deg)}.art-ai i:nth-of-type(4)::after{transform:rotate(205deg)}.art-ai i:nth-of-type(5)::after{transform:rotate(90deg)}.art-ai i:nth-of-type(6)::after{transform:rotate(180deg)}
.art-data { align-items: end; grid-template-columns: repeat(5, 35px); gap: 18px; padding-bottom: 36px; }
.data-column { position: relative; z-index: 2; border: 1px solid rgba(100,196,255,.4); background: linear-gradient(to top, rgba(37,89,202,.55), rgba(87,221,255,.13)); border-radius: 7px 7px 3px 3px; box-shadow: inset 0 0 20px rgba(62,160,255,.12); }
.c1{height:65px}.c2{height:115px}.c3{height:92px}.c4{height:150px}.c5{height:185px}
.wire-cube { width: 120px; height: 120px; position: relative; border: 1px solid #5bb9ff; transform: rotateX(58deg) rotateZ(35deg); box-shadow: 0 0 35px rgba(48,119,255,.2); }
.wire-cube::before,.wire-cube::after,.wire-cube span{content:"";position:absolute;border:1px solid rgba(93,215,255,.65);inset:18px}.wire-cube::after{inset:36px}.wire-cube span:nth-child(1){transform:translate(22px,-22px)}.wire-cube span:nth-child(2){transform:translate(-22px,22px)}.wire-cube span:nth-child(3){inset:-30px;border-color:rgba(76,115,255,.2)}
.atom { width: 180px; height: 180px; position: relative; }
.atom i { position: absolute; inset: 43px 5px; border: 1px solid rgba(93,209,255,.56); border-radius: 50%; }
.atom i:nth-child(1){transform:rotate(0)}.atom i:nth-child(2){transform:rotate(60deg)}.atom i:nth-child(3){transform:rotate(120deg)}
.atom b { position:absolute; left:50%; top:50%; width:17px; height:17px; transform:translate(-50%,-50%); border-radius:50%; background:var(--cyan); box-shadow:0 0 32px rgba(92,226,255,.9); }

.process-section { border-block: 1px solid rgba(129,166,229,.07); background: rgba(11,19,36,.25); }
.process-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro > p { margin-top: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--cyan-soft); font-size: 14px; font-weight: 700; }
.steps { border-top: 1px solid var(--line); }
.step { min-height: 164px; display: grid; grid-template-columns: 62px 1fr auto; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); }
.step-number { color: #59708f; font-size: 11px; letter-spacing: .12em; }
.step h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }.step p { max-width: 540px; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.step-tag { padding: 7px 10px; border: 1px solid rgba(117,163,235,.15); border-radius: 999px; color: #7388a8; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-visual { min-height: 570px; position: relative; display: grid; place-items: center; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 55% 42%, rgba(52,118,255,.22), transparent 43%), linear-gradient(145deg, #0d1931, #060b17); }
.about-visual::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(102,145,214,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(102,145,214,.055) 1px,transparent 1px);background-size:42px 42px; transform:perspective(700px) rotateX(56deg) translateY(150px) scale(1.4); }
.server-frame { position: relative; z-index: 2; width: 260px; padding: 18px; border: 1px solid rgba(112,193,255,.36); border-radius: 14px; background: linear-gradient(145deg, rgba(22,42,78,.9), rgba(5,12,26,.95)); box-shadow: 0 36px 70px rgba(0,0,0,.5), inset 0 0 45px rgba(47,126,255,.08); transform: perspective(900px) rotateY(-12deg) rotateX(5deg); }
.server-lights { display:flex; gap:5px; padding-bottom:12px; }.server-lights i{width:6px;height:6px;border-radius:50%;background:#63ebba;box-shadow:0 0 9px rgba(99,235,186,.8)}.server-lights i:nth-child(even){background:#61dfff;box-shadow:0 0 9px rgba(97,223,255,.8)}
.server-row { height: 54px; display: grid; grid-template-columns: 1fr 25px 25px; align-items:center; gap:10px; padding:0 12px; margin-top:9px; border:1px solid rgba(112,170,255,.17); border-radius:7px; background:rgba(2,7,17,.58); }
.server-row span:first-child { height:6px;border-radius:99px;background:linear-gradient(90deg,#2851a2,#57dcff);opacity:.75}.server-row span:not(:first-child){width:10px;height:10px;border:1px solid #5473a6;border-radius:50%}
.about-stat { position:absolute; z-index:3; left:30px; bottom:30px; display:grid; gap:7px; padding:17px 19px; border:1px solid rgba(110,181,255,.22); border-radius:15px; background:rgba(6,13,28,.78);backdrop-filter:blur(14px);box-shadow:0 20px 45px rgba(0,0,0,.32)}
.about-stat small { color:var(--muted-2);font-size:9px;text-transform:uppercase;letter-spacing:.12em}.about-stat strong{font-size:15px}.about-stat span{display:flex;align-items:center;gap:7px;color:#aeeed1;font-size:10px}.about-stat span i{width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 9px var(--green)}
.about-copy > p { margin-top: 25px; }
.about-points { margin-top: 34px; border-top: 1px solid var(--line); }
.about-points div { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.about-points span { color: #556c8e; font-size: 10px; letter-spacing: .12em; }.about-points p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }.about-points strong { color: white; }

.faq-section { border-top: 1px solid rgba(129,166,229,.07); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro > p { margin-top: 23px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { font-size: 18px; font-weight: 590; }
.faq-item button i { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content:""; position:absolute; left:9px; right:9px; top:14px; height:1px; background:#bcd0ec; transition: transform .2s ease; }
.faq-item button i::after { transform: rotate(90deg); }.faq-item button[aria-expanded="true"] i::after { transform: rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer > p { padding: 0 55px 27px 0; }

.contact-section { padding: 0 0 120px; }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 62px; border: 1px solid rgba(112,181,255,.2); border-radius: 30px; background: linear-gradient(135deg, rgba(19,37,73,.92), rgba(7,14,29,.96)); box-shadow: var(--shadow); }
.contact-card::before { content:""; position:absolute; width:480px;height:480px;border-radius:50%;top:-270px;left:-130px;background:rgba(61,121,255,.22);filter:blur(80px) }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-copy > p { margin-top: 24px; }
.contact-details { margin-top: 36px; display: grid; gap: 13px; }
.contact-details div { display:grid;gap:6px;padding:15px 17px;border:1px solid rgba(121,177,255,.13);border-radius:13px;background:rgba(255,255,255,.025)}.contact-details small{color:var(--muted-2);font-size:9px;text-transform:uppercase;letter-spacing:.12em}.contact-details strong{font-size:12px;font-weight:600}
.contact-form { display: grid; gap: 16px; padding: 26px; border: 1px solid rgba(138,188,255,.14); border-radius: 20px; background: rgba(4,10,22,.48); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }.contact-form label > span { color: #9eafc8; font-size: 11px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(129,174,242,.14); border-radius: 12px; color: white; background: rgba(255,255,255,.027); outline: none; transition: border-color .2s ease, background .2s ease; }
.contact-form input { height: 50px; padding: 0 15px; }.contact-form textarea { resize: vertical; padding: 14px 15px; min-height: 125px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(91,211,255,.5); background: rgba(255,255,255,.04); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #53627b; }
.form-submit { width: 100%; border: 0; margin-top: 3px; }
.form-note { margin: 0; color: #64748e; font-size: 10px; line-height: 1.5; text-align: center; }
.form-note.success { color: #9df1ca; }

.site-footer { border-top: 1px solid var(--line); background: #040710; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 90px; padding: 70px 0 55px; }
.footer-brand img { width: 220px; }.footer-brand p { max-width: 330px; margin: 20px 0 0; color: var(--muted-2); font-size: 13px; line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 12px; }.footer-links strong { margin-bottom: 4px; color: #dce6f6; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }.footer-links a { width: fit-content; color: var(--muted-2); font-size: 13px; transition: color .2s ease; }.footer-links a:hover { color: white; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(127,164,225,.1); color: #52617a; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .primary-nav { gap: 20px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(52px, 6.5vw, 72px); }
  .hero-visual { min-height: 560px; }
  .section-heading, .process-grid, .faq-grid { gap: 60px; }
  .about-grid { gap: 55px; }
  .contact-card { gap: 50px; padding: 48px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 92px 0; }
  .menu-toggle { display: flex; }
  .primary-nav { position: fixed; inset: 82px 20px auto 20px; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,12,24,.96); backdrop-filter: blur(22px); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav > a { padding: 15px; border-bottom: 1px solid rgba(124,163,225,.08); }
  .primary-nav .nav-cta { margin-top: 8px; justify-content: center; border-bottom: 1px solid var(--line-strong); }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; width: 100%; justify-self: center; min-height: 580px; }
  .trust-inner { padding: 26px 0; align-items: flex-start; flex-direction: column; }
  .workload-list { flex-wrap: wrap; justify-content: flex-start; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading p { max-width: 700px; }
  .process-grid, .faq-grid, .about-grid, .contact-card, .footer-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .about-visual { min-height: 520px; }
  .contact-card { gap: 40px; }
  .footer-grid { gap: 48px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 76px 0; }
  .nav-wrap { min-height: 72px; }
  .brand { width: 156px; }
  .primary-nav { top: 72px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(44px, 13vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-proof div { grid-template-columns: 85px 1fr; align-items: baseline; }
  .hero-visual { min-height: 500px; }
  .hero-image { inset: 0 -120px 80px -30px; }
  .cluster-panel { left: 0; padding: 17px; }
  .panel-metrics { grid-template-columns: 1fr; }
  .panel-metrics div { grid-template-columns: 1fr 1fr; }
  .cluster-map { height: 138px; }
  .chip-two { right: 0; }
  .workload-list { gap: 12px; }
  .workload-list i { display: none; }
  .workload-list span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; }
  .section-heading h2, .process-intro h2, .about-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 38px; }
  .bento-grid, .solution-grid { grid-template-columns: 1fr; }
  .feature-large, .feature-wide { grid-column: auto; grid-template-columns: 1fr; }
  .feature-large { min-height: 650px; }
  .compute-visual { min-height: 320px; }
  .orbit-c { width: 330px; height: 330px; }.orbit-b { width: 270px; height: 270px; }.orbit-a { width: 210px; height: 210px; }
  .feature-wide { gap: 25px; }
  .solution-card { min-height: 490px; }
  .step { grid-template-columns: 42px 1fr; padding: 24px 0; }
  .step-tag { display: none; }
  .about-visual { min-height: 440px; }
  .server-frame { width: 220px; }
  .faq-item button { min-height: 80px; }
  .faq-item button span { font-size: 16px; }
  .contact-section { padding-bottom: 76px; }
  .contact-card { padding: 30px 20px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 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; }
  .js .reveal { opacity: 1; transform: none; }
}

.contact-details a { color: inherit; transition: color .2s ease; }
.contact-details a:hover { color: var(--cyan-soft); }
