
:root {
  --bg: #050b14;
  --bg-soft: #091321;
  --panel: rgba(14, 27, 45, .72);
  --line: rgba(255,255,255,.10);
  --text: #f7fbff;
  --muted: #a8b6c8;
  --blue: #148cff;
  --cyan: #38c8ff;
  --green: #20c76f;
  --red: #ff394f;
  --orange: #ff9d20;
  --radius: 26px;
  --max: 1440px;
  --font: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(26,124,255,.13), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(0,194,255,.07), transparent 24%),
    var(--bg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  transition: .35s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5,11,20,.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  width: 190px;
  height: 58px;
  display: flex;
  align-items: center;
}
.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 44px);
}
.main-nav a {
  position: relative;
  color: #c8d3e1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: right .25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  transition: .25s ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(56,200,255,.65);
  background: rgba(20,140,255,.16);
}

.menu-toggle { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  padding: 148px clamp(24px, 4vw, 72px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,11,20,.98) 0%, rgba(5,11,20,.84) 42%, rgba(5,11,20,.32) 100%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .18;
}
.hero-glow-a {
  width: 420px; height: 420px;
  right: 7%; top: 11%;
  background: var(--blue);
}
.hero-glow-b {
  width: 260px; height: 260px;
  left: 20%; bottom: 3%;
  background: var(--cyan);
  opacity: .10;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 780px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #c8d4e3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(32,199,111,.8);
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(52px, 6.4vw, 100px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 800;
}
h1 span {
  display: block;
  margin-top: 14px;
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #87d9ff 62%, #2aa9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #0e75ff, #1fb8ff);
  box-shadow: 0 16px 38px rgba(20,140,255,.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(20,140,255,.38); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,.13);
  color: #d8e1ec;
  background: rgba(255,255,255,.035);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
}
.proof-item { display: grid; gap: 4px; }
.proof-item strong { font-size: 24px; letter-spacing: -.04em; }
.proof-item span { color: #8291a5; font-size: 12px; }
.proof-separator { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.hero-visual {
  position: relative;
  z-index: 3;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,147,255,.16), rgba(8,35,63,.10) 40%, transparent 70%);
  filter: blur(3px);
}

.core {
  position: relative;
  z-index: 5;
  width: min(540px, 88%);
  min-height: 360px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(20,38,62,.92), rgba(7,18,32,.78)),
    rgba(8,22,39,.86);
  border: 1px solid rgba(142,210,255,.18);
  box-shadow:
    0 50px 120px rgba(0,0,0,.55),
    inset 0 1px rgba(255,255,255,.08),
    0 0 90px rgba(20,140,255,.10);
  transform: rotateY(-8deg) rotateX(5deg);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.core::after {
  content:"";
  position:absolute;
  inset:-30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.07) 50%, transparent 62%);
  transform: translateX(-50%);
  animation: sheen 7s infinite ease-in-out;
}
@keyframes sheen {
  0%,25% { transform: translateX(-70%); }
  55%,100% { transform: translateX(70%); }
}

.core-topline,
.core-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8da1b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.status { display: inline-flex; align-items: center; gap: 7px; }
.status i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(32,199,111,.85);
}

.core-main {
  min-height: 225px;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 30px;
}
.core-copy { display: grid; gap: 9px; }
.core-kicker { color: #55c8ff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.core-copy strong { max-width: 290px; font-size: 40px; line-height: 1.08; letter-spacing: -.055em; }
.core-copy small { color: #7f90a6; font-size: 13px; }

.signal {
  height: 120px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}
.signal span {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(to top, #1276ff, #52d4ff);
  box-shadow: 0 0 28px rgba(34,171,255,.35);
  animation: pulsebar 3s ease-in-out infinite;
}
.signal span:nth-child(1){height:38%; animation-delay:.1s}
.signal span:nth-child(2){height:68%; animation-delay:.3s}
.signal span:nth-child(3){height:100%; animation-delay:.5s}
.signal span:nth-child(4){height:62%; animation-delay:.7s}
.signal span:nth-child(5){height:80%; animation-delay:.9s}
@keyframes pulsebar { 50% { transform: scaleY(.72); opacity:.65; } }

.core-tags { justify-content: flex-start; gap: 9px; }
.core-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(68,179,255,.18);
}
.orbit-one { width: 620px; height: 620px; animation: spin 22s linear infinite; }
.orbit-two { width: 490px; height: 490px; animation: spin 15s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute;
  z-index: 7;
  min-width: 206px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,24,41,.82);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
  animation: float 5.5s ease-in-out infinite;
}
.floating-card small { display:block; color:#7f90a7; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.floating-card strong { display:block; margin-top:4px; font-size:13px; }
.floating-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display:grid; place-items:center;
  color:#6fd5ff;
  background: rgba(20,140,255,.14);
  font-weight:800;
}
.card-a { top: 17%; right: -2%; }
.card-b { left: -3%; bottom: 23%; animation-delay: -1.8s; }
.card-c { right: 4%; bottom: 9%; animation-delay: -3.2s; }
@keyframes float { 50% { transform: translateY(-14px); } }

.color-node {
  position: absolute;
  z-index: 8;
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 24px currentColor;
}
.node-green { color: var(--green); background: var(--green); top: 9%; left: 20%; }
.node-red { color: var(--red); background: var(--red); top: 25%; right: 3%; }
.node-orange { color: var(--orange); background: var(--orange); bottom: 15%; left: 12%; }
.node-blue { color: var(--blue); background: var(--blue); bottom: 7%; right: 28%; }

.hero-scroll {
  position:absolute;
  left: clamp(24px,4vw,72px);
  bottom: 28px;
  z-index:5;
  display:flex;
  align-items:center;
  gap:12px;
  color:#647489;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero-scroll span {
  width:34px; height:1px;
  background:linear-gradient(90deg,var(--cyan),transparent);
}

.trust-strip {
  position: relative;
  z-index: 8;
  width: min(calc(100% - 48px), var(--max));
  margin: -34px auto 0;
  min-height: 92px;
  padding: 20px 28px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: rgba(11,24,41,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.trust-label {
  color:#6f8197;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.trust-stars { color:#ffc54a; letter-spacing:4px; font-size:18px; }
.trust-copy { display:grid; gap:3px; }
.trust-copy strong { font-size:16px; }
.trust-copy span { color:#8494a9; font-size:12px; }
.trust-link {
  color:#6ed3ff;
  font-size:13px;
  font-weight:800;
}

.preview-section {
  min-height: 58vh;
  padding: 150px clamp(24px, 7vw, 120px);
  background:#f4f8fc;
  color:#06111f;
}
.section-intro { max-width: 860px; }
.section-intro > span {
  color:#1388f2;
  font-size:12px;
  font-weight:800;
  letter-spacing:.13em;
}
.section-intro h2 {
  margin:18px 0 0;
  max-width:820px;
  font-size:clamp(42px,5vw,74px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.section-intro p {
  margin:28px 0 0;
  max-width:680px;
  color:#5d6b7c;
  font-size:18px;
  line-height:1.65;
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns:auto 1fr auto; }
  .main-nav { display:none; }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    gap:7px;
    justify-self:end;
    width:42px;
    height:42px;
    border:0;
    background:transparent;
  }
  .menu-toggle span { width:24px; height:2px; background:#fff; }
  .header-cta { display:none; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .hero-content { max-width: 900px; }
  .hero-visual { min-height: 560px; }
  .main-nav.open {
    display:flex;
    position:absolute;
    top:76px;
    left:20px;
    right:20px;
    padding:24px;
    border-radius:20px;
    flex-direction:column;
    align-items:flex-start;
    background:rgba(5,11,20,.97);
    border:1px solid rgba(255,255,255,.09);
  }
}

@media (max-width: 760px) {
  .site-header { height:74px; padding:0 18px; }
  .brand { width:150px; }
  .hero {
    min-height:auto;
    padding:120px 20px 72px;
    gap:34px;
  }
  .eyebrow { font-size:10px; line-height:1.4; }
  h1 { font-size:clamp(46px,14vw,68px); }
  .hero-lead { font-size:16px; }
  .hero-proof { gap:14px; margin-top:40px; }
  .proof-item strong { font-size:20px; }
  .proof-item span { font-size:10px; }
  .hero-visual { min-height:460px; }
  .core { width:92%; min-height:300px; padding:22px; }
  .core-main { grid-template-columns:1fr 90px; min-height:190px; }
  .core-copy strong { font-size:28px; }
  .signal { height:90px; gap:7px; }
  .signal span { width:10px; }
  .orbit-one { width:420px; height:420px; }
  .orbit-two { width:330px; height:330px; }
  .floating-card { min-width:165px; padding:12px; }
  .floating-card strong { font-size:11px; }
  .floating-icon { width:32px; height:32px; }
  .card-a { top:8%; right:-10%; }
  .card-b { left:-8%; bottom:20%; }
  .card-c { right:-8%; bottom:3%; }
  .hero-scroll { display:none; }

  .trust-strip {
    width:calc(100% - 28px);
    margin-top:-10px;
    grid-template-columns:1fr auto;
    gap:10px 14px;
    padding:18px;
  }
  .trust-label { grid-column:1/-1; }
  .trust-copy { grid-column:1/2; }
  .trust-stars { grid-column:2/3; grid-row:2/3; }
  .trust-link { grid-column:1/-1; margin-top:8px; }
  .preview-section { padding:110px 22px; }
}


.brand-statement {
  padding: 170px clamp(24px, 6vw, 96px) 130px;
  background: #f3f7fb;
  color: #06111f;
}
.statement-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: #657486;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.statement-line i {
  width: 5px; height: 5px; border-radius: 50%;
  background: #168cf5;
}
.brand-statement h2 {
  max-width: 1240px;
  margin: 28px 0 0;
  font-size: clamp(46px, 6.2vw, 96px);
  line-height: 1.01;
  letter-spacing: -.065em;
}

.expertise-section {
  padding: 130px clamp(24px, 5vw, 80px);
  background: #f3f7fb;
  color: #07111e;
}
.section-head {
  max-width: var(--max);
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}
.section-kicker {
  color: #1388f2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}
.section-head h2 {
  margin: 16px 0 0;
  max-width: 780px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-head p {
  margin: 0;
  color: #627083;
  font-size: 17px;
  line-height: 1.7;
}

.expertise-stack {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.expertise-panel {
  position: relative;
  min-height: 560px;
  padding: 54px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px minmax(300px, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 28px;
  color: #fff;
  background: #081421;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(4,16,30,.12);
}
.expertise-panel::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:54px 54px;
  mask-image: linear-gradient(90deg, black, transparent);
}
.panel-index {
  align-self:start;
  position:relative;
  z-index:2;
  color:#6d8096;
  font-weight:800;
  letter-spacing:.1em;
}
.panel-copy {
  position:relative;
  z-index:2;
  max-width:520px;
}
.panel-copy > span {
  color:#6ed2ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}
.panel-copy h3 {
  margin:18px 0 0;
  font-size:clamp(36px,4vw,62px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.panel-copy p {
  margin:24px 0 0;
  color:#9fb0c3;
  font-size:16px;
  line-height:1.7;
}
.panel-copy a {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:32px;
  color:#fff;
  font-size:14px;
  font-weight:800;
}
.panel-copy a b { color:#6ed2ff; }

.panel-visual {
  position:relative;
  z-index:2;
  min-height:390px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 65% 30%, rgba(26,145,255,.2), transparent 38%),
    linear-gradient(145deg,#0e1e31,#07111e);
  border:1px solid rgba(132,207,255,.14);
  box-shadow:inset 0 1px rgba(255,255,255,.06);
}

.infrastructure-visual { display:grid; place-items:center; }
.rack {
  position:absolute;
  width:120px;
  padding:12px;
  border-radius:16px;
  background:rgba(10,24,42,.94);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}
.rack-a { left:24%; top:18%; }
.rack-b { right:22%; bottom:16%; }
.rack i {
  display:block;
  height:24px;
  margin:7px 0;
  border-radius:7px;
  background:linear-gradient(90deg,#152a44,#203d5d);
  border:1px solid rgba(255,255,255,.05);
}
.rack i::after {
  content:"";
  float:right;
  width:6px;height:6px;
  margin:8px;
  border-radius:50%;
  background:#28cc75;
  box-shadow:0 0 12px rgba(40,204,117,.8);
}
.network-line {
  position:absolute;
  height:1px;
  background:linear-gradient(90deg,transparent,#34c7ff,transparent);
  transform-origin:left;
}
.line-a { width:240px; left:31%; top:50%; transform:rotate(28deg); }
.line-b { width:190px; left:35%; top:58%; transform:rotate(-22deg); }
.network-node {
  position:absolute;
  width:12px;height:12px;border-radius:50%;
  background:#2dc9ff;
  box-shadow:0 0 24px rgba(45,201,255,.9);
}
.n1{left:48%;top:42%}.n2{left:64%;top:58%}.n3{left:42%;top:70%}

.browser-visual { display:grid; place-items:center; }
.browser-shell {
  width:72%;
  min-height:250px;
  padding:16px;
  border-radius:22px;
  background:#f8fbff;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  transform:rotate(-3deg);
}
.browser-top { display:flex;gap:6px;margin-bottom:15px; }
.browser-top i { width:7px;height:7px;border-radius:50%;background:#bcc8d6; }
.browser-hero {
  min-height:125px;
  padding:22px;
  border-radius:16px;
  background:linear-gradient(135deg,#0a1930,#143e6d);
}
.browser-hero span,.browser-hero strong,.browser-hero small,.browser-hero em {
  display:block;border-radius:999px;background:rgba(255,255,255,.75);
}
.browser-hero span{width:55px;height:7px}
.browser-hero strong{width:70%;height:14px;margin-top:14px}
.browser-hero small{width:48%;height:8px;margin-top:10px;opacity:.55}
.browser-hero em{width:80px;height:24px;margin-top:18px;background:#26a8ff}
.browser-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:12px; }
.browser-grid i { height:54px;border-radius:12px;background:#e6edf5; }
.mobile-shell {
  position:absolute;
  right:12%;bottom:11%;
  width:82px;height:168px;
  padding:14px 10px;
  border-radius:22px;
  background:#091829;
  border:4px solid #dbe7f1;
  box-shadow:0 22px 55px rgba(0,0,0,.35);
}
.mobile-shell span,.mobile-shell strong,.mobile-shell small {
  display:block;border-radius:999px;background:#55c7ff;
}
.mobile-shell span{width:28px;height:5px;margin:auto}
.mobile-shell strong{height:52px;margin-top:15px;border-radius:10px;background:linear-gradient(145deg,#1a7cff,#3bcfff)}
.mobile-shell small{width:75%;height:6px;margin:13px auto 0;background:#6d8197}

.software-visual { display:grid;place-items:center; }
.software-window {
  width:82%;
  min-height:290px;
  display:grid;
  grid-template-columns:74px 1fr;
  border-radius:22px;
  background:#08111f;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 30px 80px rgba(0,0,0,.38);
}
.software-sidebar {
  padding:22px 16px;
  border-right:1px solid rgba(255,255,255,.08);
}
.software-sidebar i {
  display:block;width:34px;height:34px;margin:0 auto 14px;border-radius:10px;
  background:#142a42;
}
.software-sidebar i:first-child { background:linear-gradient(135deg,#157aff,#3acbff); }
.software-content { padding:24px; }
.software-metrics { display:grid;grid-template-columns:repeat(3,1fr);gap:12px; }
.software-metrics span { height:54px;border-radius:12px;background:#10253d; }
.software-chart {
  height:120px;
  margin-top:18px;
  padding:18px;
  display:flex;align-items:end;gap:12px;
  border-radius:14px;background:#0d1f34;
}
.software-chart i {
  flex:1;border-radius:8px 8px 3px 3px;
  background:linear-gradient(to top,#106cff,#4dd6ff);
}
.software-lines { display:grid;gap:9px;margin-top:18px; }
.software-lines span { height:8px;border-radius:999px;background:#17304d; }
.software-lines span:nth-child(2){width:72%}.software-lines span:nth-child(3){width:48%}

.cloud-visual { display:grid;place-items:center; }
.cloud-core {
  width:150px;height:150px;border-radius:50%;
  display:grid;place-items:center;
  font-size:20px;font-weight:800;letter-spacing:.08em;
  color:#fff;
  background:radial-gradient(circle at 35% 30%,#55d4ff,#176eff 45%,#0c2548 72%);
  box-shadow:0 0 100px rgba(28,142,255,.42);
}
.cloud-orbit {
  position:absolute;border-radius:50%;border:1px solid rgba(92,204,255,.22);
  animation:spin 16s linear infinite;
}
.cloud-o1{width:300px;height:300px}.cloud-o2{width:390px;height:390px;animation-direction:reverse}
.cloud-dot {
  position:absolute;width:14px;height:14px;border-radius:50%;
  background:#56d6ff;box-shadow:0 0 26px rgba(86,214,255,.9);
}
.d1{top:19%;left:25%}.d2{top:28%;right:18%}.d3{bottom:18%;left:18%}.d4{bottom:14%;right:28%}

.webdesign-section {
  padding:140px clamp(24px,6vw,96px);
  background:#07111e;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
}
.webdesign-copy h2 {
  margin:18px 0 0;
  max-width:760px;
  font-size:clamp(44px,5vw,76px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.webdesign-copy p {
  max-width:660px;
  margin:26px 0 0;
  color:#9aabc0;
  font-size:17px;
  line-height:1.7;
}
.webdesign-features {
  display:flex;flex-wrap:wrap;gap:10px;
  margin:30px 0 34px;
}
.webdesign-features span {
  padding:10px 13px;border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  color:#bfd0e2;font-size:12px;font-weight:700;
}
.pricing-board {
  border-radius:30px;
  background:linear-gradient(145deg,#0d1c2e,#09131f);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
  box-shadow:0 35px 100px rgba(0,0,0,.3);
}
.pricing-header { padding:28px 30px;border-bottom:1px solid rgba(255,255,255,.08);display:grid;gap:6px; }
.pricing-header small { color:#4bc9ff;font-size:11px;font-weight:800;letter-spacing:.12em; }
.pricing-header strong { font-size:22px; }
.price-row {
  padding:24px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.price-row:last-child{border-bottom:0}
.price-row div{display:grid;gap:6px}
.price-row span{font-weight:800}
.price-row small{color:#8193a9}
.price-row strong{color:#6bd4ff;white-space:nowrap}

.software-capabilities {
  padding:140px clamp(24px,6vw,96px);
  background:#f2f7fb;
  color:#07111e;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}
.software-cap-head h2 {
  margin:18px 0 0;
  font-size:clamp(44px,5vw,76px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.software-cap-head p {
  max-width:650px;
  margin:26px 0 0;
  color:#5d6c7d;
  font-size:17px;
  line-height:1.7;
}
.capability-cloud {
  min-height:430px;
  display:flex;
  flex-wrap:wrap;
  align-content:center;
  justify-content:center;
  gap:14px;
  padding:30px;
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(28,145,255,.15), transparent 50%),
    #e7f0f8;
}
.capability-cloud span {
  padding:15px 20px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(8,35,63,.08);
  box-shadow:0 10px 30px rgba(7,35,65,.07);
  font-weight:800;
}
.capability-cloud span:nth-child(3n){transform:translateY(-12px)}
.capability-cloud span:nth-child(4n){transform:translateY(14px)}
.capability-cloud span:nth-child(2){background:#0c74ff;color:#fff}
.capability-cloud span:nth-child(7){background:#081421;color:#fff}

.reviews-feature {
  padding:120px clamp(24px,6vw,96px);
  background:#081421;
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:80px;
  align-items:center;
}
.reviews-score > span {
  color:#67d3ff;font-size:12px;font-weight:800;letter-spacing:.12em;
}
.reviews-score > strong {
  display:block;
  margin-top:12px;
  font-size:clamp(90px,10vw,160px);
  line-height:.9;
  letter-spacing:-.08em;
}
.reviews-score > div { color:#ffc64b;font-size:24px;letter-spacing:6px;margin-top:22px; }
.reviews-score p { color:#8fa1b7; }
.review-quotes { display:grid;gap:18px; }
.review-quotes blockquote {
  margin:0;
  padding:30px;
  border-radius:24px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  font-size:20px;
  line-height:1.55;
}
.review-quotes footer {
  margin-top:18px;
  color:#6ed1ff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.final-cta {
  padding:130px clamp(24px,6vw,96px);
  background:
    radial-gradient(circle at 78% 20%, rgba(36,162,255,.25), transparent 28%),
    linear-gradient(135deg,#07111e,#0b1e33);
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:60px;
}
.final-cta > div > span {
  color:#6bd4ff;font-size:12px;font-weight:800;letter-spacing:.12em;
}
.final-cta h2 {
  max-width:950px;
  margin:18px 0 0;
  font-size:clamp(46px,6vw,88px);
  line-height:1.01;
  letter-spacing:-.06em;
}
.cta-orb {
  width:190px;height:190px;border-radius:50%;
  display:grid;place-items:center;text-align:center;
  background:linear-gradient(145deg,#137cff,#45d1ff);
  box-shadow:0 30px 80px rgba(18,139,255,.35);
  transition:.3s ease;
}
.cta-orb:hover{transform:scale(1.05) rotate(3deg)}
.cta-orb span{font-weight:800}
.cta-orb b{display:block;font-size:30px;margin-top:-26px}

.site-footer {
  padding:80px clamp(24px,5vw,80px) 30px;
  background:#040a12;
  border-top:1px solid rgba(255,255,255,.07);
}
.footer-top {
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr .7fr .7fr 1fr;
  gap:60px;
}
.footer-brand img { width:210px; }
.footer-brand p {
  max-width:420px;
  color:#7f91a6;
  line-height:1.7;
}
.footer-col,.footer-contact { display:grid;align-content:start;gap:12px; }
.footer-col > span,.footer-contact > span {
  margin-bottom:8px;
  color:#5fd0ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.footer-col a,.footer-contact a,.footer-contact p {
  margin:0;color:#a5b4c6;font-size:14px;
}
.footer-col a:hover,.footer-contact a:hover{color:#fff}
.footer-button {
  width:fit-content;
  margin-top:10px !important;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(30,146,255,.14);
  border:1px solid rgba(74,190,255,.22);
}
.footer-bottom {
  max-width:var(--max);
  margin:64px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.07);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#66778c;
  font-size:12px;
}

@media (max-width: 1050px) {
  .section-head,
  .webdesign-section,
  .software-capabilities,
  .reviews-feature {
    grid-template-columns:1fr;
  }
  .expertise-panel {
    grid-template-columns:60px 1fr;
  }
  .panel-visual {
    grid-column:1/-1;
  }
  .footer-top { grid-template-columns:1fr 1fr; }
}

@media (max-width: 700px) {
  .brand-statement,
  .expertise-section,
  .webdesign-section,
  .software-capabilities,
  .reviews-feature,
  .final-cta {
    padding-left:20px;
    padding-right:20px;
  }
  .expertise-panel {
    min-height:auto;
    padding:28px 22px;
    grid-template-columns:1fr;
  }
  .panel-index { display:none; }
  .panel-visual { min-height:300px; }
  .price-row { align-items:flex-start;flex-direction:column; }
  .final-cta { grid-template-columns:1fr; }
  .cta-orb { width:150px;height:150px; }
  .footer-top { grid-template-columns:1fr;gap:38px; }
  .footer-bottom { flex-direction:column; }
}
