:root {
  --ink: #f6f8ff;
  --muted: #a8b2ca;
  --quiet: #75819d;
  --navy-950: #03050d;
  --navy-900: #050816;
  --navy-850: #080d1d;
  --navy-800: #0b1227;
  --navy-750: #101a34;
  --line: rgba(139, 161, 215, 0.16);
  --line-strong: rgba(139, 161, 215, 0.28);
  --cyan: #0bcdfe;
  --blue: #3b70ff;
  --violet: #5860ff;
  --gradient: linear-gradient(115deg, var(--cyan), var(--blue) 62%, var(--violet));
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--cyan);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-background {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #050816 0%, #03050d 56%, #050816 100%);
}

.aurora {
  position: absolute;
  width: 50vw;
  height: 50vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.aurora-one {
  top: -25vw;
  right: -10vw;
  background: var(--blue);
}

.aurora-two {
  top: 42vh;
  left: -30vw;
  background: var(--cyan);
  opacity: 0.07;
}

.grid-field {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(101, 127, 185, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 127, 185, 0.3) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(3, 5, 13, 0.86);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand img {
  width: 28px;
  height: 39px;
  object-fit: contain;
}

.brand strong {
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #bdc6da;
  font-size: 14px;
  transition: color 150ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(94, 132, 255, 0.44);
  border-radius: 999px;
  color: #eaf0ff;
  background: rgba(43, 80, 190, 0.12);
  font-size: 14px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-contact:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 205, 254, 0.72);
  background: rgba(11, 205, 254, 0.1);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 170px 0 105px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  transform: translateX(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: #9fb7f6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span,
.map-caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(11, 205, 254, 0.92);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.hero h1 em {
  display: inline;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03101c;
  background: linear-gradient(110deg, #29d5fb, #5481ff);
  box-shadow: 0 14px 38px rgba(42, 119, 255, 0.24);
}

.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-secondary {
  color: #d8dfef;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(103, 140, 235, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 610px;
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-metrics div {
  min-width: 0;
}

.hero-metrics dt {
  color: #eef2ff;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.infrastructure-map {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: min(100%, 530px);
  margin-inline: auto;
  border: 1px solid rgba(125, 148, 207, 0.17);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 48%, rgba(56, 112, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(13, 21, 47, 0.8), rgba(5, 9, 21, 0.54));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.035);
  isolation: isolate;
  overflow: hidden;
}

.infrastructure-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(100, 131, 202, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 131, 202, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 75%);
}

.map-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(49, 118, 255, 0.16);
  filter: blur(40px);
  transform: translate(-50%, -50%);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(90, 130, 231, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 270px;
  height: 270px;
}

.ring-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
}

.map-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 129, 255, 0.7), transparent);
  transform-origin: center;
}

.line-one { transform: translate(-50%, -50%) rotate(23deg); }
.line-two { transform: translate(-50%, -50%) rotate(-43deg); }
.line-three { transform: translate(-50%, -50%) rotate(82deg); }

.map-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 15px 17px;
  border: 1px solid rgba(115, 148, 230, 0.26);
  border-radius: 14px;
  background: rgba(7, 13, 30, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.map-node > i {
  width: 6px;
  height: 6px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(11, 205, 254, 0.8);
}

.map-node span {
  color: #eef3ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.map-node small {
  margin-top: 4px;
  color: #7483a4;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node-core {
  top: 50%;
  left: 50%;
  width: 128px;
  height: 128px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  border-radius: 50%;
  border-color: rgba(71, 132, 255, 0.52);
  background: radial-gradient(circle at 35% 25%, #122452, #070d20 70%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 9px rgba(52, 101, 239, 0.07), 0 22px 50px rgba(0, 0, 0, 0.45);
}

.node-core img {
  width: 32px;
  height: 44px;
}

.node-core span {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.node-ai { top: 12%; right: 9%; }
.node-cloud { top: 21%; left: 7%; }
.node-fiber { right: 6%; bottom: 19%; }
.node-source { left: 8%; bottom: 13%; }

.map-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0;
  color: #6f7d9e;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.map-caption span {
  width: 5px;
  height: 5px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-about {
  padding-top: 120px;
}

.about-grid,
.approach-grid,
.reach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.section h2 {
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.about-copy {
  padding-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.75;
}

.about-copy p:first-child {
  color: #d9e0ef;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capability-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 25, 51, 0.82), rgba(7, 12, 27, 0.75));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(82, 129, 245, 0.42);
  background: linear-gradient(145deg, rgba(18, 32, 68, 0.9), rgba(7, 13, 31, 0.78));
}

.card-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #56627c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid rgba(77, 131, 255, 0.3);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(19, 194, 254, 0.12), rgba(60, 93, 255, 0.14));
}

.card-icon > span {
  position: relative;
  width: 22px;
  height: 22px;
}

.fiber-icon::before,
.fiber-icon::after {
  content: "";
  position: absolute;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.fiber-icon::before { inset: 1px 7px 7px 1px; }
.fiber-icon::after { inset: 7px 1px 1px 7px; }

.cloud-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 3px;
  width: 20px;
  height: 11px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
}

.cloud-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--cyan);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.compute-icon {
  border: 1px solid var(--cyan);
  border-radius: 4px;
}

.compute-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--blue);
  border-radius: 2px;
}

.compute-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 5px;
  right: 5px;
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.source-icon::before,
.source-icon::after {
  content: "";
  position: absolute;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.source-icon::before {
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  box-shadow: 12px 12px 0 -1px var(--navy-800), 12px 12px 0 0 var(--blue);
}

.source-icon::after {
  left: 6px;
  bottom: 1px;
  width: 8px;
  height: 8px;
}

.capability-card h3 {
  max-width: 360px;
  margin: 0;
  color: #eef2ff;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.capability-card p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.card-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.capability-card:hover .card-line {
  transform: scaleX(1);
}

.section-approach {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 27, 0.48);
}

.approach-copy {
  position: sticky;
  top: 130px;
}

.approach-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: #cbd8ff;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--cyan);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: #63708b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.process-list h3 {
  margin: -5px 0 5px;
  color: #edf2ff;
  font-size: 20px;
  font-weight: 620;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reach-grid {
  align-items: center;
}

.reach-visual {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 105, 255, 0.15), transparent 62%);
}

.reach-visual::before,
.reach-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(85, 126, 226, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.reach-visual::before { width: 72%; height: 72%; }
.reach-visual::after { width: 42%; height: 42%; }

.globe-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  height: 42%;
  border: 1px dashed rgba(84, 142, 255, 0.3);
  border-radius: 50%;
}

.orbit-one { transform: translate(-50%, -50%) rotate(26deg); }
.orbit-two { transform: translate(-50%, -50%) rotate(-34deg); }

.globe-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(73, 137, 255, 0.58);
  border-radius: 50%;
  background: #09122b;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(42, 102, 255, 0.24);
}

.globe-core span {
  font-size: 15px;
  font-weight: 750;
}

.globe-core small {
  color: #7e8dae;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.geo-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #071027;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(11, 205, 254, 0.86);
}

.point-one { top: 17%; left: 52%; }
.point-two { top: 41%; right: 11%; }
.point-three { right: 28%; bottom: 12%; }
.point-four { bottom: 19%; left: 18%; }
.point-five { top: 30%; left: 12%; }

.reach-copy > p:not(.section-kicker) {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.market-list span {
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #c5cee1;
  background: rgba(255, 255, 255, 0.02);
  font-size: 12px;
}

.contact-section {
  padding-top: 48px;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: end;
  gap: 80px;
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(86, 131, 244, 0.3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 15%, rgba(32, 181, 255, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(15, 30, 68, 0.96), rgba(7, 12, 28, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -12%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(77, 129, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(77, 129, 255, 0.03), 0 0 0 110px rgba(77, 129, 255, 0.02);
  pointer-events: none;
}

.contact-panel h2 {
  max-width: 700px;
}

.contact-panel p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-email {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  padding: 22px 0 14px;
  border-bottom: 1px solid rgba(98, 151, 255, 0.55);
}

.contact-email span {
  color: #7f8daa;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email strong {
  grid-column: 1;
  color: #eef3ff;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 600;
}

.contact-email i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--cyan);
  font-size: 24px;
  font-style: normal;
  transition: transform 160ms ease;
}

.contact-email:hover i {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 54px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 50px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 14px 0 0;
  color: #737f99;
  font-size: 13px;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #8995ae;
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
}

.site-footer address a {
  color: #bfc8db;
}

.site-footer address a:first-of-type {
  margin-top: 9px;
}

.site-footer address a:hover {
  color: var(--cyan);
}

.footer-meta {
  color: #67738c;
  font-size: 11px;
  text-align: right;
}

.footer-meta p {
  margin: 2px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .desktop-nav,
  .nav-contact {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: white;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: var(--container);
    margin: 0 auto 18px;
    padding: 12px 0 6px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    color: #c5cde0;
    font-size: 15px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-map {
    width: min(100%, 590px);
  }

  .about-grid,
  .approach-grid,
  .reach-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .approach-copy {
    position: static;
  }

  .reach-visual {
    order: 2;
  }

  .reach-copy {
    order: 1;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .nav-shell {
    height: 70px;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 82px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics {
    gap: 12px;
  }

  .hero-metrics dt {
    font-size: 15px;
  }

  .hero-metrics dd {
    font-size: 10px;
    line-height: 1.45;
  }

  .infrastructure-map {
    border-radius: 26px;
  }

  .ring-one { width: 55%; height: 55%; }
  .ring-two { width: 82%; height: 82%; }
  .node-core { width: 104px; height: 104px; }
  .map-node:not(.node-core) { padding: 11px 12px; }
  .map-node:not(.node-core) span { font-size: 10px; }
  .map-node:not(.node-core) small { display: none; }
  .node-ai { right: 5%; }
  .node-cloud { left: 4%; }
  .node-fiber { right: 3%; }
  .node-source { left: 4%; }
  .map-caption { display: none; }

  .section {
    padding: 82px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 320px;
    padding: 28px;
  }

  .card-icon {
    margin-bottom: 42px;
  }

  .process-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .contact-panel {
    padding: 36px 25px;
    border-radius: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-meta {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
