:root {
  --bg: #06111f;
  --bg-deep: #030914;
  --panel: #0a1929;
  --panel-2: #0d2134;
  --panel-soft: rgba(13, 33, 52, .72);
  --white: #f6f8fb;
  --text: #a8b4c3;
  --muted: #718195;
  --accent: #2dd9ca;
  --accent-2: #15b7d3;
  --accent-soft: rgba(45, 217, 202, .12);
  --line: rgba(169, 202, 223, .14);
  --line-strong: rgba(45, 217, 202, .28);
  --success: #61e99a;
  --shadow: 0 34px 90px rgba(0, 0, 0, .34);
  --font-body: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --container: 1380px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 124px 0; }
[id] { scroll-margin-top: 108px; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 10px 16px;
  color: #031017;
  background: var(--accent);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.page-glow { position: fixed; z-index: -1; pointer-events: none; border-radius: 50%; filter: blur(80px); opacity: .12; }
.page-glow--one { width: 540px; height: 540px; right: -230px; top: -90px; background: var(--accent); }
.page-glow--two { width: 420px; height: 420px; left: -240px; top: 48%; background: #0d67b7; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  padding: 13px 0;
  border-top: 6px solid #c9dbf3;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(4, 12, 22, .92);
  border-top-color: rgba(45, 217, 202, .8);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px);
}
.header-shell {
  width: min(calc(100% - 42px), 1530px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; min-width: 214px; }
.brand-logo-panel {
  width: 214px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 14px 35px rgba(0,0,0,.16);
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.28)); }

.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 12px;
  color: #bac5d2;
  background: none;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-dropdown.is-open > .nav-trigger { color: var(--white); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-dropdown.is-open > .nav-trigger::after { transform: scaleX(1); transform-origin: left; }
.nav-trigger svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-dropdown.is-open > .nav-trigger svg { transform: rotate(180deg); }
.nav-support { display: none; }

.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown.is-open > .dropdown-panel,
.nav-dropdown:hover > .dropdown-panel,
.nav-dropdown:focus-within > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-panel {
  position: fixed;
  top: 92px;
  left: 50%;
  width: min(1180px, calc(100vw - 48px));
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  transform: translate(-50%, 12px);
  background: rgba(5, 15, 27, .98);
  border: 1px solid rgba(45,217,202,.2);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
  backdrop-filter: blur(24px);
}
.nav-dropdown.is-open > .mega-panel,
.nav-dropdown:hover > .mega-panel,
.nav-dropdown:focus-within > .mega-panel { transform: translate(-50%, 0); }
.mega-intro {
  padding: 28px;
  background: linear-gradient(145deg, rgba(45,217,202,.12), rgba(12,32,50,.5));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}
.mega-intro > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mega-intro strong { display: block; margin: 14px 0; color: var(--white); font: 600 25px/1.18 var(--font-display); }
.mega-intro p { margin: 0 0 22px; color: #92a3b4; font-size: 12px; line-height: 1.65; }
.mega-intro a { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.mega-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
.mega-columns h3 { margin: 2px 0 8px; color: #75899d; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mega-columns a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 8px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}
.mega-columns a:hover { background: rgba(255,255,255,.035); transform: translateX(2px); }
.menu-dot { width: 5px; height: 5px; margin-top: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px rgba(45,217,202,.7); }
.mega-columns b { display: block; color: #e6edf4; font-size: 11px; line-height: 1.3; }
.mega-columns small { display: block; margin-top: 3px; color: #718396; font-size: 9px; line-height: 1.35; }
.compact-panel {
  right: -65px;
  width: 390px;
  padding: 10px;
  background: rgba(5,15,27,.98);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 24px 65px rgba(0,0,0,.46);
}
.compact-panel a { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 13px; border-radius: 11px; transition: background .2s ease; }
.compact-panel a:hover { background: rgba(45,217,202,.07); }
.dropdown-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: rgba(45,217,202,.08); border: 1px solid rgba(45,217,202,.17); border-radius: 10px; font-size: 9px; font-weight: 800; }
.compact-panel b { display: block; color: var(--white); font-size: 11px; }
.compact-panel small { display: block; margin-top: 3px; color: #76889a; font-size: 9px; line-height: 1.35; }

.language-switch {
  min-width: 80px;
  height: 40px;
  margin-inline: 3px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #c8d3de;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: border-color .2s ease, background .2s ease;
}
.language-switch:hover { background: rgba(45,217,202,.07); border-color: rgba(45,217,202,.3); }
.language-switch svg { width: 15px; height: 15px; color: var(--accent); }
.language-switch i { width: 1px; height: 14px; background: rgba(255,255,255,.14); }
.language-next { color: var(--accent); }

.menu-toggle { display: none; width: 48px; height: 44px; padding: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); border-radius: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* Shared typography and buttons */
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--white); font-family: var(--font-display); }
h1 { margin-bottom: 26px; font-size: clamp(58px, 5.2vw, 86px); line-height: .99; letter-spacing: -.055em; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
h2 { margin-bottom: 0; font-size: clamp(45px, 4.2vw, 65px); line-height: 1.06; letter-spacing: -.045em; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span:first-child { flex: 0 0 auto; width: 22px; height: 1px; background: var(--accent); }
.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 16px; height: 16px; }
.button--primary { color: #021316; background: linear-gradient(135deg, #42e0d2, #25cfc7); box-shadow: 0 12px 34px rgba(45,217,202,.18); }
.button--primary:hover { box-shadow: 0 16px 40px rgba(45,217,202,.28); }
.button--ghost { color: var(--white); background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.19); }
.button--ghost:hover { background: rgba(255,255,255,.055); border-color: rgba(45,217,202,.35); }
.button--light { color: #05101c; background: var(--white); }
.button--small { min-height: 44px; padding-inline: 20px; }
.button--full { width: 100%; }
.text-link { display: inline-flex; gap: 12px; color: var(--white); font-size: 12px; font-weight: 800; }
.text-link span:last-child { color: var(--accent); }

/* Hero */
.hero { min-height: 920px; padding-top: 178px; padding-bottom: 88px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 920px;
  height: 920px;
  right: -270px;
  top: -110px;
  border-radius: 50%;
  border: 1px solid rgba(45,217,202,.08);
  box-shadow: 0 0 0 130px rgba(45,217,202,.018), 0 0 0 260px rgba(45,217,202,.012);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 58px; }
.hero-copy { max-width: 735px; }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #a8b5c5; font-size: 15px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-trust { margin-top: 48px; display: flex; align-items: stretch; }
.hero-trust > div { min-width: 156px; padding: 0 25px; border-left: 1px solid var(--line); }
.hero-trust > div:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { display: block; color: var(--white); font-size: 12px; }
.hero-trust span { display: block; margin-top: 5px; color: #63768b; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.hero-visual { position: relative; min-height: 610px; }
.visual-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(45,217,202,.14); border-radius: 50%; transform: translate(-50%,-50%); }
.visual-orbit--outer { width: 510px; height: 510px; }
.visual-orbit--inner { width: 355px; height: 355px; border-style: dashed; animation: spin 30s linear infinite; }
.core-card {
  position: absolute;
  z-index: 3;
  width: 246px;
  height: 256px;
  left: 50%;
  top: 50%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #12314a, #0c2034);
  border: 1px solid rgba(124,203,223,.25);
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
  transform: translate(-50%,-50%);
}
.core-icon { width: 53px; height: 53px; margin-bottom: 25px; display: grid; place-items: center; color: var(--accent); background: rgba(45,217,202,.12); border-radius: 15px; }
.core-icon svg { width: 27px; }
.core-card > span { color: #6f899e; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.core-card > strong { margin: 4px 0 19px; color: var(--white); font: 600 27px var(--font-display); }
.status-bar { height: 4px; overflow: hidden; background: rgba(255,255,255,.08); border-radius: 999px; }
.status-bar i { display: block; width: 87%; height: 100%; background: var(--accent); border-radius: inherit; box-shadow: 0 0 14px var(--accent); }
.core-card small { margin-top: 14px; display: flex; align-items: center; gap: 8px; color: #7f93a7; font-size: 10px; }
.core-card small > span:first-child { width: 7px; height: 7px; background: var(--success); border-radius: 50%; box-shadow: 0 0 12px var(--success); }
.mini-card {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: center;
  background: rgba(8,24,38,.94);
  border: 1px solid rgba(141,189,211,.19);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(0,0,0,.25);
}
.mini-card svg { grid-row: 1/3; width: 23px; color: var(--accent); }
.mini-card span { color: #647b90; font-size: 8px; text-transform: uppercase; }
.mini-card strong { color: var(--white); font-size: 11px; }
.mini-card--cloud { right: 4%; top: 17%; }
.mini-card--network { left: 0; top: 51%; }
.mini-card--security { right: 0; bottom: 15%; }
.data-chip { position: absolute; z-index: 2; padding: 8px 11px; color: #6f8da1; background: rgba(8,22,35,.82); border: 1px solid rgba(132,180,202,.18); border-radius: 9px; font-size: 8px; font-weight: 800; }
.data-chip--one { left: 14%; top: 18%; }
.data-chip--two { right: 14%; top: 49%; }
.data-chip--three { left: 16%; bottom: 17%; }
.network-lines .line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(45,217,202,.5), transparent); transform-origin: left; }
.line--1 { width: 165px; left: 18%; top: 34%; transform: rotate(22deg); }
.line--2 { width: 145px; left: 52%; top: 36%; transform: rotate(-18deg); }
.line--3 { width: 160px; left: 27%; top: 67%; transform: rotate(-20deg); }
.line--4 { width: 145px; left: 52%; top: 65%; transform: rotate(22deg); }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.client-strip { border-block: 1px solid var(--line); background: rgba(4,13,23,.55); }
.client-strip-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.client-strip-inner > span { color: #61768a; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.capability-list { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.capability-list b { color: #9baaba; font: 500 13px var(--font-display); }
.capability-list i { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; }

/* Services */
.services { background: #071321; }
.section-heading { margin-bottom: 58px; display: grid; grid-template-columns: 1.1fr .72fr; align-items: end; gap: 80px; }
.section-heading .eyebrow { margin-bottom: 19px; }
.section-heading > p { max-width: 510px; margin: 0 0 5px; color: #8899aa; font-size: 13px; line-height: 1.8; }
.service-clusters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-cluster {
  position: relative;
  overflow: hidden;
  padding: 31px;
  background: linear-gradient(145deg, rgba(12,31,48,.96), rgba(7,20,33,.92));
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: 0 24px 55px rgba(0,0,0,.14);
  transition: transform .25s ease, border-color .25s ease;
}
.service-cluster::before { content: ""; position: absolute; width: 210px; height: 210px; right: -110px; top: -120px; background: rgba(45,217,202,.08); border-radius: 50%; filter: blur(20px); }
.service-cluster:hover { transform: translateY(-5px); border-color: rgba(45,217,202,.3); }
.cluster-heading { position: relative; display: grid; grid-template-columns: 42px 1fr 52px; align-items: center; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cluster-number { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(45,217,202,.18); border-radius: 10px; font-size: 9px; font-weight: 800; }
.cluster-heading small { color: #60768b; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cluster-heading h3 { margin: 2px 0 0; font-size: 22px; }
.cluster-heading > svg { width: 34px; height: 34px; justify-self: end; color: rgba(45,217,202,.55); }
.cluster-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
.cluster-services--compact { grid-template-columns: 1fr 1fr; }
.cluster-service { min-height: 156px; display: grid; grid-template-columns: 25px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid rgba(169,202,223,.09); }
.cluster-service:nth-last-child(-n+2) { border-bottom: 0; }
.cluster-service > span { color: var(--accent); font-size: 8px; font-weight: 800; }
.cluster-service h4 { margin: 0 0 7px; font-size: 14px; line-height: 1.3; }
.cluster-service p { margin: 0; color: #7f91a3; font-size: 10px; line-height: 1.65; }

/* Server build */
.server-build { background: linear-gradient(180deg, #06111f, #081827); }
.server-build-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 75px; }
.server-build-copy .eyebrow { margin-bottom: 20px; }
.server-build-copy > p { max-width: 570px; margin: 27px 0 32px; color: #899bad; font-size: 13px; }
.build-checklist { margin-bottom: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.build-checklist > div { min-height: 92px; padding: 16px; display: grid; grid-template-columns: 26px 1fr; gap: 11px; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 13px; }
.build-checklist > div > span { width: 23px; height: 23px; display: grid; place-items: center; color: #05141a; background: var(--accent); border-radius: 50%; font-size: 10px; font-weight: 900; }
.build-checklist p { margin: 0; }
.build-checklist strong { display: block; color: var(--white); font-size: 10px; }
.build-checklist small { display: block; margin-top: 4px; color: #6f8398; font-size: 8px; line-height: 1.45; }
.architecture-panel { overflow: hidden; background: #081522; border: 1px solid rgba(45,217,202,.2); border-radius: 24px; box-shadow: var(--shadow); }
.architecture-top { min-height: 58px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; color: #698097; background: rgba(255,255,255,.018); border-bottom: 1px solid var(--line); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.architecture-top b { display: flex; align-items: center; gap: 8px; color: #8fb7a2; }
.architecture-top i { width: 7px; height: 7px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); }
.architecture-canvas { position: relative; min-height: 440px; overflow: hidden; background-image: linear-gradient(rgba(45,217,202,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(45,217,202,.03) 1px, transparent 1px); background-size: 35px 35px; }
.architecture-canvas::before { content: ""; position: absolute; width: 310px; height: 310px; left: 50%; top: 50%; border: 1px dashed rgba(45,217,202,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.arch-core { position: absolute; z-index: 4; width: 148px; height: 148px; left: 50%; top: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--accent); background: radial-gradient(circle at 50% 35%, #16445b, #0a2234 70%); border: 1px solid rgba(45,217,202,.35); border-radius: 50%; box-shadow: 0 0 50px rgba(45,217,202,.13); transform: translate(-50%,-50%); }
.arch-core svg { width: 43px; }
.arch-core span { margin-top: 10px; color: #b9ced8; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.arch-node { position: absolute; z-index: 3; min-width: 122px; padding: 13px 15px; background: rgba(7,24,38,.96); border: 1px solid rgba(130,187,211,.2); border-radius: 12px; box-shadow: 0 14px 32px rgba(0,0,0,.25); }
.arch-node span { display: block; color: #627d91; font-size: 7px; letter-spacing: .08em; }
.arch-node strong { display: block; margin-top: 2px; color: #edf5f8; font: 600 11px/1.2 var(--font-display); }
.arch-node--cloud { left: 7%; top: 14%; }
.arch-node--dc { right: 6%; top: 12%; }
.arch-node--vm { left: 4%; bottom: 16%; }
.arch-node--mail { right: 6%; bottom: 14%; }
.arch-node--users { left: 50%; bottom: 5%; transform: translateX(-50%); text-align: center; }
.arch-line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, rgba(45,217,202,.08), rgba(45,217,202,.55), rgba(45,217,202,.08)); transform-origin: left; }
.arch-line--one { width: 165px; left: 21%; top: 28%; transform: rotate(26deg); }
.arch-line--two { width: 170px; left: 52%; top: 39%; transform: rotate(-28deg); }
.arch-line--three { width: 160px; left: 18%; top: 69%; transform: rotate(-24deg); }
.arch-line--four { width: 175px; left: 53%; top: 60%; transform: rotate(27deg); }
.architecture-footer { min-height: 82px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.018); border-top: 1px solid var(--line); }
.architecture-footer > div { display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--line); }
.architecture-footer > div:first-child { border-left: 0; }
.architecture-footer span { color: var(--white); font: 600 16px var(--font-display); }
.architecture-footer small { margin-top: 4px; color: #5f768a; font-size: 7px; font-weight: 800; letter-spacing: .1em; }

/* Physical security */
.solutions { background: #f3f6f8; }
.solutions-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.solutions .eyebrow { margin-bottom: 20px; color: #0c8f99; }
.solutions .eyebrow > span:first-child { background: #0c8f99; }
.solutions h2 { color: #081421; }
.solutions-copy > p { margin: 26px 0 30px; color: #536476; font-size: 13px; }
.solution-points { margin-bottom: 27px; }
.solution-points > div { display: grid; grid-template-columns: 35px 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid #dbe2e8; }
.solution-points > div > span { color: #0c9b9a; font-size: 9px; font-weight: 800; }
.solution-points p { margin: 0; color: #657587; font-size: 11px; }
.solution-points strong, .solution-points p > span { display: block; }
.solution-points strong { margin-bottom: 3px; color: #122231; font-size: 12px; }
.solutions .text-link { color: #071421; }
.security-panel { overflow: hidden; background: #071420; border: 1px solid rgba(32,123,148,.25); border-radius: 23px; box-shadow: 0 34px 80px rgba(18,42,54,.22); transform: rotate(1.2deg); }
.security-panel-top { min-height: 55px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: #647c90; background: #0a1b2a; border-bottom: 1px solid var(--line); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.security-panel-top b { display: flex; align-items: center; gap: 8px; color: #6fb990; }
.security-panel-top i { width: 7px; height: 7px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); }
.camera-grid { padding: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.camera-feed { position: relative; aspect-ratio: 1.52; overflow: hidden; background-color: #102431; background-size: cover; border: 1px solid rgba(152,198,217,.12); border-radius: 8px; }
.camera-feed::before { content: ""; position: absolute; inset: 0; opacity: .48; background: radial-gradient(circle at 65% 45%, rgba(46,164,171,.24), transparent 35%), linear-gradient(140deg, transparent 20%, rgba(159,205,219,.08) 21%, transparent 22%), linear-gradient(55deg, transparent 58%, rgba(159,205,219,.08) 59%, transparent 60%); }
.camera-feed--two::before { transform: scaleX(-1); }
.camera-feed--three::before { background: radial-gradient(circle at 35% 55%, rgba(46,164,171,.21), transparent 33%), linear-gradient(28deg, transparent 30%, rgba(159,205,219,.09) 31%, transparent 32%); }
.camera-feed--four::before { background: radial-gradient(circle at 72% 70%, rgba(46,164,171,.2), transparent 31%), linear-gradient(115deg, transparent 45%, rgba(159,205,219,.08) 46%, transparent 47%); }
.camera-feed > span { position: absolute; z-index: 2; left: 10px; bottom: 8px; color: #97aebd; font-size: 7px; font-weight: 700; letter-spacing: .06em; }
.scan { position: absolute; z-index: 1; left: 0; right: 0; top: -10%; height: 1px; background: rgba(45,217,202,.45); box-shadow: 0 0 10px rgba(45,217,202,.4); animation: scan 5s linear infinite; }
@keyframes scan { to { top: 110%; } }
.security-stats { min-height: 82px; display: grid; grid-template-columns: repeat(3,1fr); background: #0a1b2a; border-top: 1px solid var(--line); }
.security-stats > div { display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid var(--line); }
.security-stats > div:first-child { border-left: 0; }
.security-stats span { color: var(--white); font: 600 17px var(--font-display); }
.security-stats small { margin-top: 4px; color: #617689; font-size: 7px; font-weight: 800; letter-spacing: .08em; }

/* Approach */
.approach { background: #071321; }
.approach-card { padding: 72px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 85px; background: linear-gradient(135deg, #25cfc5, #1ab4c3); border-radius: 31px; box-shadow: 0 35px 85px rgba(7,92,101,.2); }
.approach .eyebrow { margin-bottom: 19px; color: #073e43; }
.approach .eyebrow > span:first-child { background: #073e43; }
.approach h2 { color: #041a21; }
.approach h2 em { color: #f5ffff; }
.approach-copy > p { margin: 27px 0 32px; color: #0c535a; font-size: 13px; }
.approach-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.approach-steps article { min-height: 150px; padding: 21px; display: grid; grid-template-columns: 28px 1fr; gap: 12px; background: rgba(3,35,41,.1); border: 1px solid rgba(3,35,41,.11); border-radius: 15px; }
.approach-steps article > span { color: #07515a; font-size: 9px; font-weight: 800; }
.approach-steps h3 { margin: 0 0 8px; color: #05232a; font-size: 15px; }
.approach-steps p { margin: 0; color: #0b535a; font-size: 9px; line-height: 1.6; }

/* Quote */
.quote-section { background: #050e19; }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 88px; }
.quote-copy { position: sticky; top: 130px; }
.quote-copy .eyebrow { margin-bottom: 19px; }
.quote-copy > p { margin: 27px 0 35px; color: #8799aa; font-size: 13px; }
.quote-contact-list { display: grid; gap: 10px; }
.quote-contact-list > a, .quote-contact-list > div { padding: 14px; display: grid; grid-template-columns: 43px 1fr; gap: 12px; align-items: center; background: rgba(255,255,255,.023); border: 1px solid var(--line); border-radius: 13px; transition: border-color .2s ease, background .2s ease; }
.quote-contact-list > a:hover { background: rgba(45,217,202,.04); border-color: rgba(45,217,202,.28); }
.contact-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--accent); background: rgba(45,217,202,.08); border-radius: 10px; }
.contact-icon svg { width: 20px; }
.quote-contact-list small { display: block; color: #64798d; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quote-contact-list strong { display: block; color: #dce6ef; font-size: 10px; line-height: 1.45; }
.quote-form-card { padding: 42px; background: #0b1a29; border: 1px solid rgba(139,183,205,.17); border-radius: 25px; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 27px; }
.form-heading > span { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.form-heading h3 { margin: 7px 0 5px; font-size: 28px; }
.form-heading p { margin: 0; color: #72869a; font-size: 10px; }
#quote-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#quote-form label > span { display: block; margin-bottom: 7px; color: #9badbd; font-size: 9px; font-weight: 700; }
#quote-form input, #quote-form select, #quote-form textarea { width: 100%; color: #eaf1f6; background: #071522; border: 1px solid rgba(147,187,207,.16); border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
#quote-form input, #quote-form select { height: 50px; padding: 0 14px; }
#quote-form textarea { min-height: 128px; padding: 13px 14px; resize: vertical; }
#quote-form input::placeholder, #quote-form textarea::placeholder { color: #50667a; }
#quote-form input:focus, #quote-form select:focus, #quote-form textarea:focus { border-color: rgba(45,217,202,.55); box-shadow: 0 0 0 3px rgba(45,217,202,.07); }
#quote-form .is-invalid { border-color: #e86d75; }
.consent { display: flex !important; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 16px !important; height: 16px !important; margin-top: 2px; accent-color: var(--accent); }
.consent span { margin: 0 !important; color: #718599 !important; font-size: 8px !important; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 18px; margin: 0; color: var(--accent); font-size: 9px; text-align: center; }
.form-status.error { color: #f07f86; }

/* Contact and footer */
.contact-band { padding: 60px 0; background: linear-gradient(110deg, #1cbdbe, #28d7c7); }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.contact-band-inner > div > span { color: #075158; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-band h2 { margin-top: 3px; color: #05212a; font-size: clamp(31px,3vw,44px); }
.site-footer { padding: 75px 0 27px; background: #030914; border-top: 1px solid rgba(255,255,255,.04); }
.footer-main { padding-bottom: 55px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.footer-logo { width: 260px; height: 62px; padding: 8px 13px; display: flex; align-items: center; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-block p { max-width: 440px; margin: 22px 0 0; color: #687c8f; font-size: 11px; }
.footer-links { display: grid; grid-template-columns: .8fr 1.45fr .8fr; gap: 38px; }
.footer-links h3 { margin: 0 0 17px; color: #d9e2ea; font-size: 11px; }
.footer-links a { display: block; margin: 10px 0; color: #6e8193; font-size: 9px; line-height: 1.5; transition: color .2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 23px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #53677a; font-size: 8px; }
.footer-bottom a { color: #8da1b2; }
.floating-support { position: fixed; z-index: 90; right: 18px; bottom: 18px; min-width: 205px; min-height: 66px; padding: 6px 13px 6px 6px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; color: var(--white); background: rgba(5,20,33,.95); border: 1px solid rgba(97,164,190,.3); border-radius: 999px; box-shadow: 0 18px 50px rgba(0,0,0,.36); backdrop-filter: blur(18px); }
.support-icon { position: relative; z-index: 2; width: 52px; height: 52px; display: grid; place-items: center; color: #03171d; background: var(--accent); border: 4px solid #0c2738; border-radius: 50%; }
.support-icon svg { width: 23px; }
.support-pulse { position: absolute; width: 52px; height: 52px; left: 6px; top: 6px; border: 1px solid var(--accent); border-radius: 50%; animation: pulse 2.3s ease-out infinite; }
@keyframes pulse { 70%, 100% { transform: scale(1.42); opacity: 0; } }
.support-copy small { display: block; color: #708497; font-size: 8px; }
.support-copy strong { display: block; font-size: 10px; }
.support-arrow { color: var(--accent); font-size: 13px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal--delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1280px) {
  :root { --container: 1180px; }
  .header-shell { width: min(calc(100% - 30px), 1240px); gap: 16px; }
  .brand { min-width: 186px; }
  .brand-logo-panel { width: 186px; height: 48px; }
  .nav-link { padding-inline: 9px; font-size: 10px; }
  .nav-link::after { left: 9px; right: 9px; }
  .language-switch { min-width: 71px; padding-inline: 8px; }
  .nav-quote { padding-inline: 16px; }
  .mega-panel { width: min(1060px, calc(100vw - 40px)); grid-template-columns: 235px 1fr; }
  .hero-grid { gap: 25px; }
  .hero-visual { transform: scale(.92); }
  .service-cluster { padding: 27px; }
  .cluster-services { gap: 0 18px; }
  .server-build-grid { gap: 50px; }
}

@media (max-width: 1100px) {
  .site-header { height: 84px; }
  .header-shell { width: min(calc(100% - 34px), 1000px); }
  .brand-logo-panel { width: 205px; height: 50px; }
  .menu-toggle { display: block; position: relative; z-index: 132; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 130;
    padding: 105px 26px 38px;
    display: block;
    overflow-y: auto;
    background: rgba(3,10,18,.99);
    backdrop-filter: blur(22px);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav > .nav-link, .nav-dropdown > .nav-link {
    width: 100%;
    min-height: 55px;
    padding: 15px 5px;
    justify-content: space-between;
    color: var(--white);
    border-bottom: 1px solid var(--line);
    font: 600 19px var(--font-display);
  }
  .nav-link::after { display: none; }
  .nav-support { display: flex !important; }
  .nav-dropdown { position: static; }
  .dropdown-panel, .mega-panel, .compact-panel {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transform: none !important;
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav-dropdown:hover > .dropdown-panel, .nav-dropdown:focus-within > .dropdown-panel { max-height: 0; padding: 0; }
  .nav-dropdown.is-open > .dropdown-panel { max-height: 1300px; padding: 15px 0 20px; }
  .mega-panel { display: block; }
  .mega-intro { display: none; }
  .mega-columns { grid-template-columns: 1fr; gap: 13px; }
  .mega-columns h3 { margin-top: 13px; }
  .mega-columns a { min-height: 50px; padding: 9px 12px; background: rgba(255,255,255,.018); }
  .mega-columns b { font-size: 12px; }
  .mega-columns small { font-size: 9px; }
  .compact-panel a { padding: 12px; background: rgba(255,255,255,.018); }
  .language-switch { width: 100%; height: 48px; margin: 22px 0 14px; }
  .nav-quote { width: 100%; min-height: 53px; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid, .server-build-grid, .solutions-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 570px; transform: scale(.92); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-clusters { grid-template-columns: 1fr; }
  .server-build-grid { gap: 60px; }
  .solutions-grid { gap: 60px; }
  .security-panel { transform: none; }
  .approach-card { padding: 55px; gap: 50px; }
  .quote-copy { position: static; }
}

@media (max-width: 780px) {
  .section { padding: 92px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  h1 { font-size: clamp(50px, 10.8vw, 70px); }
  h2 { font-size: clamp(39px, 8vw, 54px); }
  .hero-trust > div { min-width: 0; flex: 1; padding-inline: 16px; }
  .client-strip-inner { min-height: 120px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 14px; }
  .capability-list { justify-content: flex-start; flex-wrap: wrap; gap: 11px 16px; }
  .capability-list i { display: none; }
  .cluster-services { grid-template-columns: 1fr; }
  .cluster-service { min-height: auto; }
  .cluster-service:nth-last-child(-n+2) { border-bottom: 1px solid rgba(169,202,223,.09); }
  .cluster-service:last-child { border-bottom: 0; }
  .build-checklist { grid-template-columns: 1fr; }
  .approach-card { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 560px) {
  :root { --header-height: 80px; }
  .site-header { padding: 10px 0; }
  .header-shell { width: calc(100% - 24px); }
  .brand { min-width: 0; }
  .brand-logo-panel { width: 174px; height: 46px; padding: 6px 9px; }
  .menu-toggle { width: 45px; height: 43px; }
  .primary-nav { padding: 92px 18px 30px; }
  .hero { padding-top: 125px; padding-bottom: 55px; }
  h1 { font-size: clamp(43px, 13.1vw, 60px); }
  .hero-lead { font-size: 13px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
  .hero-trust > div { padding: 0; border: 0; }
  .hero-trust > div:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 405px; margin: 10px -50px -20px; transform: scale(.71); }
  .service-cluster { padding: 23px 19px; border-radius: 18px; }
  .cluster-heading { grid-template-columns: 38px 1fr 35px; }
  .cluster-heading h3 { font-size: 18px; }
  .cluster-heading > svg { width: 27px; }
  .server-build-grid { gap: 45px; }
  .architecture-canvas { min-height: 420px; }
  .arch-node { min-width: 105px; padding: 10px; }
  .arch-node strong { font-size: 9px; }
  .arch-node--cloud { left: 3%; }
  .arch-node--dc { right: 3%; }
  .arch-node--vm { left: 2%; }
  .arch-node--mail { right: 2%; }
  .arch-core { width: 126px; height: 126px; }
  .camera-grid { grid-template-columns: 1fr; }
  .camera-feed:nth-child(n+3) { display: none; }
  .approach-card { padding: 37px 23px; border-radius: 24px; }
  .approach-steps { grid-template-columns: 1fr; }
  .quote-form-card { padding: 31px 20px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-band { padding: 45px 0; }
  .contact-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-logo { width: 230px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:nth-child(2) { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-support { right: 12px; bottom: 12px; min-width: 0; width: 58px; height: 58px; min-height: 58px; padding: 5px; grid-template-columns: 1fr; border-radius: 50%; }
  .support-icon { width: 46px; height: 46px; }
  .support-copy, .support-arrow { display: none; }
  .support-pulse { width: 46px; height: 46px; left: 5px; top: 5px; }
}

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

/* Motion layer — restrained enterprise animation */
.orbit-dots,
.arch-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.orbit-dots--outer { width: 510px; height: 510px; animation: orbit-spin 18s linear infinite; }
.orbit-dots--inner { width: 355px; height: 355px; animation: orbit-spin-reverse 13s linear infinite; }
.orbit-dots i,
.arch-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent), 0 0 20px rgba(45,217,202,.55);
}
.orbit-dots i::after,
.arch-orbit i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(45,217,202,.35);
  border-radius: inherit;
  animation: dot-ripple 2.2s ease-out infinite;
}
.orbit-dots i:nth-child(1) { left: 50%; top: -3px; }
.orbit-dots i:nth-child(2) { right: 7%; top: 25%; animation-delay: -.7s; }
.orbit-dots i:nth-child(3) { left: 10%; bottom: 18%; animation-delay: -1.3s; }
.orbit-dots--inner i:nth-child(1) { left: 12%; top: 20%; }
.orbit-dots--inner i:nth-child(2) { right: 2%; bottom: 34%; }

.arch-orbit--outer { width: 310px; height: 310px; animation: orbit-spin 20s linear infinite; }
.arch-orbit--inner { width: 220px; height: 220px; animation: orbit-spin-reverse 14s linear infinite; }
.arch-orbit i:nth-child(1) { left: 50%; top: -3px; }
.arch-orbit i:nth-child(2) { right: 7%; bottom: 22%; animation-delay: -.8s; }
.arch-orbit i:nth-child(3) { left: 3%; top: 42%; animation-delay: -1.4s; }
.arch-orbit--inner i:nth-child(1) { left: 12%; top: 15%; }
.arch-orbit--inner i:nth-child(2) { right: 4%; bottom: 25%; }

.button--primary,
.nav-cta,
.support-float,
.architecture-top b,
.core-card small > span:first-child {
  isolation: isolate;
}
.button--primary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid rgba(45,217,202,.48);
  border-radius: inherit;
  opacity: 0;
  animation: action-pulse 3.4s ease-out infinite;
}
.button--primary:hover::after,
.nav-cta:hover::after { animation-duration: 1.5s; }
.architecture-top b i,
.core-card small > span:first-child { animation: status-beat 2s ease-in-out infinite; }
.mini-card { animation: card-float 5.5s ease-in-out infinite; }
.mini-card--network { animation-delay: -1.6s; }
.mini-card--security { animation-delay: -3.2s; }
.arch-node { animation: node-breathe 5s ease-in-out infinite; }
.arch-node--dc, .arch-node--vm { animation-delay: -2.5s; }

@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes dot-ripple { 0% { transform: scale(.55); opacity: .9; } 75%,100% { transform: scale(1.8); opacity: 0; } }
@keyframes action-pulse { 0%,58% { transform: scale(1); opacity: 0; } 66% { opacity: .7; } 92%,100% { transform: scale(1.12,1.28); opacity: 0; } }
@keyframes status-beat { 0%,100% { transform: scale(1); box-shadow: 0 0 10px var(--success); } 50% { transform: scale(1.3); box-shadow: 0 0 18px var(--success); } }
@keyframes card-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@keyframes node-breathe { 0%,100% { border-color: rgba(130,187,211,.2); box-shadow: 0 14px 32px rgba(0,0,0,.25); } 50% { border-color: rgba(45,217,202,.34); box-shadow: 0 14px 36px rgba(0,0,0,.25), 0 0 18px rgba(45,217,202,.07); } }

@media (prefers-reduced-motion: reduce) {
  .orbit-dots, .arch-orbit, .orbit-dots i::after, .arch-orbit i::after,
  .button--primary::after, .nav-cta::after, .architecture-top b i,
  .core-card small > span:first-child, .mini-card, .arch-node {
    animation: none !important;
  }
}
.button--primary, .nav-cta { position: relative; }
