:root {
  color-scheme: dark;
  --bg: #050713;
  --bg-soft: #0a1022;
  --panel: rgba(14, 22, 44, 0.72);
  --panel-strong: rgba(20, 31, 59, 0.92);
  --line: rgba(151, 176, 219, 0.2);
  --text: #edf4ff;
  --muted: #a9b6cc;
  --quiet: #71809b;
  --blue: #66d9ff;
  --green: #80f2b3;
  --gold: #f7c86b;
  --red: #ff7d8b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(102, 217, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 24%, rgba(128, 242, 179, 0.12), transparent 24rem),
    linear-gradient(180deg, #050713 0%, #081020 48%, #050713 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(237, 244, 255, 0.5) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(102, 217, 255, 0.45) 1px, transparent 1.5px);
  background-position:
    0 0,
    36px 48px;
  background-size:
    160px 150px,
    220px 210px;
  opacity: 0.28;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 19, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.language-switcher,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 217, 255, 0.38);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.14), rgba(128, 242, 179, 0.08));
  box-shadow: 0 0 28px rgba(102, 217, 255, 0.16);
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.language-switcher {
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.language-option {
  min-width: 44px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  color: #03100a;
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 78px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.8vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: 1.13rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 720;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(128, 242, 179, 0.48);
  color: #03100a;
  background: var(--green);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.signal-panel,
.work-card,
.service-list article,
.team-grid article,
.location-grid article,
.credentials,
.contact-details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.signal-panel {
  overflow: hidden;
  padding: 26px;
}

.orbital-map {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(151, 176, 219, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(102, 217, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 217, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(102, 217, 255, 0.24), rgba(8, 16, 32, 0.2) 44%, transparent 72%);
  background-size:
    42px 42px,
    42px 42px,
    auto;
}

.orbital-map::before,
.orbital-map::after {
  position: absolute;
  border: 1px solid rgba(237, 244, 255, 0.14);
  border-radius: 999px;
  content: "";
}

.orbital-map::before {
  width: 68%;
  height: 68%;
}

.orbital-map::after {
  width: 44%;
  height: 44%;
  border-color: rgba(128, 242, 179, 0.18);
}

.center-node,
.node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.center-node {
  width: 108px;
  height: 108px;
  border: 1px solid rgba(128, 242, 179, 0.42);
  color: var(--green);
  background: rgba(6, 19, 26, 0.92);
}

.node {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(102, 217, 255, 0.36);
  color: var(--text);
  background: rgba(11, 19, 38, 0.9);
}

.node-ai {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.node-web {
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.node-mobile {
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.node-delivery {
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
}

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

.panel-grid div {
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(151, 176, 219, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-grid strong,
.proof-item strong,
.contact-card strong {
  display: block;
  color: var(--text);
  font-size: 1.18rem;
}

.panel-grid span,
.proof-item span,
.credentials span,
.contact-card span {
  display: block;
  margin-top: 6px;
  color: var(--quiet);
  line-height: 1.5;
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.intro-band,
.proof-band,
.profile,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.intro-band p:last-child,
.contact p {
  font-size: 1.06rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
}

.work-card p {
  flex: 1;
}

.work-card a {
  color: var(--blue);
  font-weight: 720;
  text-decoration: none;
}

.tag {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 9px;
  border: 1px solid rgba(247, 200, 107, 0.24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(247, 200, 107, 0.08);
  font-size: 0.76rem;
  font-weight: 760;
}

.split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
}

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

.service-list article {
  min-height: 228px;
  padding: 24px;
}

.team-band .section-heading {
  max-width: 860px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-grid article {
  min-height: 260px;
  padding: 24px;
}

.team-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.team-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.35;
}

.presence-band .section-heading {
  max-width: 760px;
}

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

.location-grid article {
  min-height: 210px;
  padding: 26px;
}

.location-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.location-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.proof-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 42px 0;
}

.proof-item {
  padding: 4px 24px 4px 0;
}

.profile-copy {
  max-width: 680px;
}

.credentials {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--panel-strong);
}

.credentials div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(151, 176, 219, 0.14);
}

.credentials div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.credentials strong {
  display: block;
  margin-top: 7px;
}

.contact {
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.contact-card {
  display: block;
  border: 0;
  border-radius: 0;
  padding: 30px;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

address.contact-card {
  font-style: normal;
}

.contact-card strong {
  color: var(--green);
  font-size: clamp(1.12rem, 2vw, 1.75rem);
  overflow-wrap: anywhere;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .split,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 118px;
    padding: 18px 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .language-switcher {
    width: 100%;
  }

  .language-option {
    flex: 1;
  }

  .hero {
    gap: 38px;
    padding: 48px 0 72px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .signal-panel {
    padding: 16px;
  }

  .orbital-map {
    min-height: 300px;
  }

  .panel-grid,
  .work-grid,
  .service-list,
  .team-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .service-list article,
  .team-grid article,
  .location-grid article {
    min-height: auto;
  }

  .section {
    padding: 62px 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
