@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #07111f;
  --ink-soft: #0c1b2e;
  --panel: #102238;
  --blue: #1f9ee8;
  --blue-bright: #4ab8f5;
  --ice: #eaf7ff;
  --white: #ffffff;
  --muted: #95a9bf;
  --line: rgba(148, 184, 214, 0.18);
  --page: #f3f8fb;
  --text: #102033;
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.siteHeader {
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
  animation: headerEnter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand,
.footerBrand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footerBrand img {
  width: 168px;
  height: auto;
  display: block;
  transition: filter 260ms ease, transform 260ms ease;
}

.brand:hover img,
.footerBrand:hover img {
  filter: drop-shadow(0 0 16px rgba(74, 184, 245, 0.38));
  transform: translateY(-1px);
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c5d2df;
  font-size: 14px;
  font-weight: 500;
}

.desktopNav a:not(.navCta):hover {
  color: var(--white);
}

.navCta {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(74, 184, 245, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: rgba(31, 158, 232, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.navCta:hover {
  background: rgba(31, 158, 232, 0.16);
  box-shadow: 0 0 28px rgba(31, 158, 232, 0.14);
  transform: translateY(-1px);
}

.mobileNav {
  display: none;
  position: relative;
}

.mobileNav summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.mobileNav summary::-webkit-details-marker {
  display: none;
}

.mobileNav nav {
  position: absolute;
  right: 0;
  top: 52px;
  width: 220px;
  display: grid;
  padding: 10px;
  background: #0b192a;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}

.mobileNav nav a {
  padding: 12px;
  color: #d5e0ea;
}

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

.menuGlyph {
  width: 22px;
  height: 18px;
  display: block;
  position: relative;
}

.menuGlyph i {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #d9e7f1;
  transform-origin: center;
  transition: top 180ms ease, transform 180ms ease, opacity 140ms ease;
}

.menuGlyph i:nth-child(1) { top: 1px; }
.menuGlyph i:nth-child(2) { top: 8px; }
.menuGlyph i:nth-child(3) { top: 15px; }

.mobileNav[open] .menuGlyph i:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobileNav[open] .menuGlyph i:nth-child(2) {
  opacity: 0;
}

.mobileNav[open] .menuGlyph i:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.mobileHeaderActions {
  display: none;
  align-items: center;
  gap: 9px;
}

.languageSwitcher {
  position: relative;
}

.languageSwitcher summary {
  min-width: 92px;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(150, 195, 225, 0.42);
  border-radius: 999px;
  color: #c9d9e6;
  background: rgba(7, 24, 42, 0.72);
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.languageSwitcher summary::-webkit-details-marker {
  display: none;
}

.languageSwitcher summary:hover,
.languageSwitcher[open] summary {
  border-color: rgba(74, 184, 245, 0.78);
  background: rgba(18, 50, 79, 0.92);
  box-shadow: 0 0 0 3px rgba(74, 184, 245, 0.08);
}

.languageGlobe {
  width: 21px;
  height: 21px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  opacity: 0.86;
}

.languageGlobe::before,
.languageGlobe::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.languageGlobe::before {
  left: 3px;
  right: 3px;
  top: -2px;
  bottom: -2px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
}

.languageGlobe::after {
  left: 1px;
  right: 1px;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.languageCurrentFlag {
  min-width: 22px;
  display: block;
  font-size: 18px;
  line-height: 1;
  filter: saturate(0.92);
}

.languageChevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.languageSwitcher[open] .languageChevron {
  transform: translateY(2px) rotate(225deg);
}

.languageMenu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  width: 206px;
  padding: 10px;
  display: grid;
  gap: 3px;
  background: linear-gradient(155deg, rgba(19, 53, 84, 0.98), rgba(7, 24, 42, 0.98));
  border: 1px solid rgba(74, 184, 245, 0.3);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.languageMenu a {
  min-height: 48px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  color: #cfdae4;
  font-size: 14px;
}

.languageMenu a:hover,
.languageMenu a[aria-current="page"] {
  background: rgba(74, 184, 245, 0.08);
  color: white;
}

.languageMenu a > span {
  font-size: 20px;
  line-height: 1;
}

.languageMenu b {
  font-weight: 560;
}

.languageMenu small {
  color: #6f8ba1;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -360px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 158, 232, 0.12), transparent 66%);
  pointer-events: none;
  animation: ambientGlow 8s ease-in-out infinite alternate;
}

.heroCopy {
  padding: 84px 0 90px;
  position: relative;
  z-index: 2;
}

.heroCopy > * {
  animation: heroEnter 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.heroCopy > :nth-child(1) { animation-delay: 80ms; }
.heroCopy > :nth-child(2) { animation-delay: 160ms; }
.heroCopy > :nth-child(3) { animation-delay: 250ms; }
.heroCopy > :nth-child(4) { animation-delay: 340ms; }
.heroCopy > :nth-child(5) { animation-delay: 430ms; }

.eyebrow,
.sectionKicker {
  font-family: var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9c9d9;
  margin-bottom: 28px;
}

.statusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 6px rgba(74, 184, 245, 0.12);
  animation: statusPulse 2.2s ease-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 620;
}

h1 span {
  color: var(--blue-bright);
}

.heroLead {
  max-width: 610px;
  color: #b7c6d5;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 650;
  font-size: 15px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% -30%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%);
  transform: translateX(-85%) rotate(8deg);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::after {
  transform: translateX(85%) rotate(8deg);
}

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

.buttonPrimary {
  background: var(--blue);
  color: #03101d;
}

.buttonPrimary:hover {
  background: var(--blue-bright);
}

.buttonGhost {
  border: 1px solid var(--line);
  color: #d7e2ec;
}

.buttonGhost:hover {
  border-color: rgba(74, 184, 245, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

.heroNote {
  margin: 26px 0 0;
  color: #7f96ab;
  font-size: 13px;
  line-height: 1.6;
}

.heroVisual {
  min-width: 0;
  position: relative;
  animation: visualEnter 1s 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visualGlow {
  position: absolute;
  inset: -70px;
  background:
    linear-gradient(rgba(31, 158, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 158, 232, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, black, transparent 70%);
  transform: perspective(480px) rotateY(-8deg);
  animation: gridDrift 14s linear infinite alternate;
}

.networkCard {
  width: min(100%, 500px);
  margin-left: auto;
  padding: 24px;
  background: linear-gradient(145deg, rgba(20, 45, 72, 0.94), rgba(8, 22, 38, 0.98));
  border: 1px solid rgba(87, 181, 237, 0.25);
  border-radius: 8px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42);
  position: relative;
  animation: networkFloat 6s ease-in-out infinite;
  transform-origin: 50% 60%;
}

.networkCard::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cardTopline,
.cardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  color: #8198ad;
}

.liveLabel {
  color: #b9e6ff;
}

.liveLabel i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: liveBlink 1.8s ease-in-out infinite;
}

.coreNode {
  width: 210px;
  margin: 38px auto 30px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(74, 184, 245, 0.32);
  background: rgba(31, 158, 232, 0.08);
  position: relative;
  z-index: 2;
  animation: coreGlow 3.2s ease-in-out infinite;
}

.coreNode img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  animation: logoBreathe 3.2s ease-in-out infinite;
}

.coreNode strong,
.coreNode span {
  display: block;
}

.coreNode strong {
  font-size: 15px;
}

.coreNode span {
  margin-top: 3px;
  color: #91a8bc;
  font-size: 11px;
}

.route {
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(31, 158, 232, 0.1));
  top: 142px;
  height: 134px;
  overflow: visible;
}

.route::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 16px var(--blue-bright);
  transform: translate(-50%, -50%);
  animation: routePacket 2.4s linear infinite;
}

.routeTwo::after {
  animation-delay: -1.2s;
}

.routeOne {
  transform: translateX(-96px) rotate(39deg);
}

.routeTwo {
  transform: translateX(96px) rotate(-39deg);
}

.networkRows {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.networkRows > div {
  min-height: 72px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(5, 18, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.networkRows > div:hover {
  transform: translateX(5px);
  border-color: rgba(74, 184, 245, 0.26);
  background: rgba(9, 31, 52, 0.88);
}

.nodeIcon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 184, 245, 0.28);
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  animation: nodeSignal 3s ease-in-out infinite;
}

.networkRows > div:nth-child(2) .nodeIcon { animation-delay: -1s; }
.networkRows > div:nth-child(3) .nodeIcon { animation-delay: -2s; }

.networkRows p {
  margin: 0;
}

.networkRows strong,
.networkRows small {
  display: block;
}

.networkRows strong {
  font-size: 13px;
}

.networkRows small {
  margin-top: 4px;
  color: #7990a4;
  font-size: 10px;
}

.networkRows b {
  color: #b9e6ff;
  font-family: var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 9px;
}

.cardFooter {
  margin-top: 24px;
  justify-content: flex-start;
  gap: 22px;
}

.cardFooter span::before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: 2px;
  border-radius: 50%;
  background: var(--blue);
}

.trustStrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #081525;
}

.trustStrip p {
  margin: 0;
  color: #6f889f;
  font-size: 13px;
}

.trustStrip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 34px;
}

.trustStrip span {
  color: #d3e0ea;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trustStrip span::before {
  content: "+";
  margin-right: 8px;
  color: var(--blue);
  display: inline-block;
  animation: plusSpin 5s ease-in-out infinite;
}

.section {
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
}

.servicesSection,
.companySection {
  background: var(--page);
  color: var(--text);
}

.sectionIntro {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.sectionKicker {
  display: block;
  margin-bottom: 18px;
  color: #1687c8;
}

.sectionIntro h2,
.methodCopy h2,
.companyHeadline h2,
.contactCopy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.048em;
  font-weight: 620;
}

.sectionIntro p,
.companyBody > p {
  margin-bottom: 0;
  color: #526578;
  font-size: 17px;
  line-height: 1.7;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd9e4;
  border-left: 1px solid #cbd9e4;
}

.serviceCard {
  min-height: 340px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cbd9e4;
  border-bottom: 1px solid #cbd9e4;
  background: rgba(255, 255, 255, 0.54);
  transition: background 180ms ease, transform 180ms ease;
  position: relative;
  overflow: hidden;
}

.serviceCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(transparent, var(--blue), transparent);
  transform: translateY(-105%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.serviceCard:hover {
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(35, 86, 119, 0.1);
}

.serviceCard:hover::before {
  transform: translateY(0);
}

.serviceHead {
  display: flex;
  justify-content: space-between;
  color: #1687c8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.serviceHead small {
  color: #71869a;
  font: inherit;
}

.serviceCard h3 {
  margin: 58px 0 16px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.serviceCard p {
  max-width: 520px;
  margin-bottom: 34px;
  color: #5e7183;
  line-height: 1.65;
}

.serviceCard a {
  margin-top: auto;
  color: #116fa6;
  font-weight: 650;
  font-size: 14px;
}

.serviceCard a span {
  margin-left: 8px;
  display: inline-block;
  transition: transform 180ms ease;
}

.serviceCard a:hover span {
  transform: translate(3px, -3px);
}

.methodSection {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 96px;
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
  background: #0a1727;
}

.methodVisual {
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(31, 158, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 158, 232, 0.05) 1px, transparent 1px),
    #0c1c2e;
  background-size: 32px 32px;
  animation: methodGrid 12s linear infinite alternate;
}

.methodVisual > p {
  margin: 0;
  color: #7890a5;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.radar {
  width: 310px;
  aspect-ratio: 1;
  position: relative;
}

.radarRing {
  position: absolute;
  border: 1px solid rgba(74, 184, 245, 0.26);
  border-radius: 50%;
  animation: radarRing 3.6s ease-in-out infinite;
}

.ringOne { inset: 0; }
.ringTwo { inset: 52px; animation-delay: -1.2s; }
.ringThree { inset: 104px; animation-delay: -2.4s; }

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(74, 184, 245, 0.14);
}

.radar::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.radar::after {
  height: 1px;
  width: 100%;
  top: 50%;
}

.radarCore {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
  color: #061321;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(74, 184, 245, 0.3);
  animation: radarCore 2.4s ease-out infinite;
}

.radarSweep {
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  overflow: hidden;
  background: conic-gradient(from 12deg, transparent 0 76%, rgba(74, 184, 245, 0.05) 82%, rgba(74, 184, 245, 0.35) 99%, transparent 100%);
  animation: radarSweep 4.8s linear infinite;
}

.radarSweep::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(74, 184, 245, 0.8), transparent);
  box-shadow: 0 0 12px rgba(74, 184, 245, 0.55);
}

.radarPoint {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid #081525;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 6px rgba(74, 184, 245, 0.1);
  animation: pointPing 2.8s ease-out infinite;
}

.pointOne { left: 26px; top: 104px; }
.pointTwo { right: 54px; top: 64px; animation-delay: -0.9s; }
.pointThree { right: 78px; bottom: 42px; animation-delay: -1.8s; }

.methodCopy .sectionKicker {
  color: var(--blue-bright);
}

.methodCopy h2 {
  max-width: 700px;
  margin-bottom: 48px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms ease, background 220ms ease;
}

.step:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(31, 158, 232, 0.05), transparent);
}

.step > span {
  color: var(--blue-bright);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.step p {
  max-width: 620px;
  margin: 0;
  color: #8fa4b8;
  line-height: 1.6;
}

.companySection {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.companyHeadline h2 {
  max-width: 590px;
}

.companyBody {
  padding-top: 36px;
}

.companyBody > p {
  font-size: 19px;
}

.principles {
  margin-top: 48px;
  border-top: 1px solid #cbd9e4;
}

.principles > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  border-bottom: 1px solid #cbd9e4;
  transition: padding-left 220ms ease, color 220ms ease;
}

.principles > div:hover {
  padding-left: 10px;
}

.principles strong {
  color: #116fa6;
}

.principles span {
  color: #607487;
  line-height: 1.55;
}

.contactSection {
  margin: 0;
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
  background: var(--blue);
  color: #04111d;
  background-image: linear-gradient(120deg, #1f9ee8 0%, #49b8f4 42%, #1f9ee8 84%);
  background-size: 180% 180%;
  animation: contactFlow 9s ease-in-out infinite alternate;
}

.contactCopy .sectionKicker {
  color: #07324d;
}

.contactCopy h2 {
  max-width: 720px;
}

.contactCopy p {
  max-width: 630px;
  margin: 26px 0 34px;
  color: #0a3d5c;
  font-size: 17px;
  line-height: 1.65;
}

.buttonLight {
  background: #071523;
  color: white;
}

.buttonLight:hover {
  background: #102a40;
}

.contactDetails {
  border-top: 1px solid rgba(4, 17, 29, 0.28);
}

.contactDetails > * {
  padding: 24px 0;
  display: block;
  border-bottom: 1px solid rgba(4, 17, 29, 0.28);
  transition: padding-left 220ms ease, background 220ms ease;
}

.contactDetails > a:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.contactDetails span,
.contactDetails strong {
  display: block;
}

.contactDetails span {
  margin-bottom: 7px;
  color: #0a496d;
  font-family: var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.contactDetails strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.5;
}

.contactDetails a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  padding: 58px max(24px, calc((100vw - 1240px) / 2)) 38px;
  background: #06111e;
}

.footerBrand img {
  width: 160px;
}

footer > p {
  max-width: 460px;
  margin: 24px 0 52px;
  color: #8095a9;
  line-height: 1.6;
}

.footerLegal {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  border-top: 1px solid var(--line);
  color: #60768a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.motion-ready [data-reveal] [data-reveal-item] {
  opacity: 0;
  transform: translateY(32px);
}

.motion-ready [data-reveal].is-visible [data-reveal-item] {
  animation: revealUp 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-ready [data-reveal].is-visible [data-reveal-item]:nth-child(2) {
  animation-delay: 100ms;
}

@keyframes headerEnter {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visualEnter {
  from { opacity: 0; transform: translate(34px, 18px) scale(0.96); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ambientGlow {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1.08); opacity: 1; }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(74, 184, 245, 0.1); }
  50% { box-shadow: 0 0 0 11px rgba(74, 184, 245, 0); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 38px 19px, 19px 38px; }
}

@keyframes networkFloat {
  0%, 100% { transform: translateY(0) rotateX(0.001deg); }
  50% { transform: translateY(-10px) rotateX(0.001deg); }
}

@keyframes liveBlink {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 rgba(74, 184, 245, 0); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(74, 184, 245, 0.85); }
}

@keyframes coreGlow {
  0%, 100% { border-color: rgba(74, 184, 245, 0.25); box-shadow: 0 0 0 rgba(31, 158, 232, 0); }
  50% { border-color: rgba(74, 184, 245, 0.55); box-shadow: 0 0 26px rgba(31, 158, 232, 0.12); }
}

@keyframes logoBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes routePacket {
  from { top: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { top: 100%; opacity: 0; }
}

@keyframes nodeSignal {
  0%, 100% { box-shadow: inset 0 0 0 rgba(74, 184, 245, 0), 0 0 0 rgba(74, 184, 245, 0); }
  50% { box-shadow: inset 0 0 18px rgba(74, 184, 245, 0.09), 0 0 16px rgba(74, 184, 245, 0.08); }
}

@keyframes plusSpin {
  0%, 82%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(180deg); }
}

@keyframes methodGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 32px 16px, 16px 32px; }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes radarRing {
  0%, 100% { opacity: 0.34; }
  50% { opacity: 1; }
}

@keyframes radarCore {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 184, 245, 0.32); }
  70% { box-shadow: 0 0 0 18px rgba(74, 184, 245, 0); }
}

@keyframes pointPing {
  0%, 100% { box-shadow: 0 0 0 5px rgba(74, 184, 245, 0.08); }
  55% { box-shadow: 0 0 0 13px rgba(74, 184, 245, 0); }
}

@keyframes contactFlow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (max-width: 1120px) {
  .desktopNav {
    display: none;
  }

  .mobileHeaderActions,
  .mobileHeaderActions .mobileNav {
    display: flex;
  }

  .mobileHeaderActions .mobileNav {
    position: relative;
  }

  .desktopNav + .mobileNav {
    display: none;
  }
}

@media (max-width: 980px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 90px;
  }

  .heroCopy {
    padding-bottom: 54px;
  }

  .networkCard {
    margin: 0;
  }

  .sectionIntro,
  .methodSection,
  .companySection,
  .contactSection {
    grid-template-columns: 1fr;
  }

  .sectionIntro,
  .methodSection,
  .companySection,
  .contactSection {
    gap: 54px;
  }

  .methodVisual {
    min-height: 460px;
  }

  .companyBody {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .siteHeader,
  .hero {
    width: min(100% - 32px, 1240px);
  }

  .siteHeader {
    height: 76px;
  }

  .languageSwitcher summary {
    min-width: 78px;
    min-height: 42px;
    padding: 0 10px;
    gap: 7px;
  }

  .languageMenu {
    right: -55px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 68px;
  }

  .heroCopy {
    padding: 64px 0 46px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .heroActions .button {
    width: 100%;
  }

  .networkCard {
    padding: 18px;
  }

  .networkRows > div {
    grid-template-columns: 34px 1fr;
  }

  .networkRows b {
    grid-column: 2;
  }

  .coreNode {
    width: 190px;
  }

  .trustStrip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trustStrip div {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .section,
  .methodSection,
  .contactSection {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .sectionIntro {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 42px;
  }

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

  .serviceCard {
    min-height: 300px;
    padding: 26px;
  }

  .serviceCard h3 {
    margin-top: 40px;
  }

  .methodVisual {
    min-height: 360px;
  }

  .radar {
    width: 250px;
  }

  .ringTwo { inset: 42px; }
  .ringThree { inset: 84px; }

  .principles > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contactSection {
    gap: 58px;
  }

  .contactDetails strong {
    font-size: 14px;
  }
}

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

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

  .motion-ready [data-reveal] [data-reveal-item] {
    opacity: 1;
    transform: none;
  }
}
