:root {
  --bg-deep: #050b18;
  --bg-mid: #0a1731;
  --text-main: #e7f2ff;
  --text-soft: #9ab1c8;
  --accent: #78e7ff;
  --accent-strong: #23c0eb;
  --line: rgba(120, 231, 255, 0.2);
  --surface: rgba(8, 17, 30, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 14% 16%, rgba(74, 201, 255, 0.25), transparent 33%),
    radial-gradient(circle at 78% 18%, rgba(132, 141, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 82%, rgba(56, 214, 186, 0.13), transparent 42%),
    radial-gradient(circle at 22% 84%, rgba(124, 110, 255, 0.1), transparent 38%),
    linear-gradient(145deg, var(--bg-deep), var(--bg-mid) 58%, #102145);
}

.background-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.ambient-one {
  width: min(36vw, 400px);
  height: min(36vw, 400px);
  left: -8%;
  top: -12%;
  background: rgba(66, 199, 255, 0.26);
  animation: drift-one 18s ease-in-out infinite alternate;
}

.ambient-two {
  width: min(44vw, 460px);
  height: min(44vw, 460px);
  right: -14%;
  bottom: -14%;
  background: rgba(129, 113, 255, 0.2);
  animation: drift-two 22s ease-in-out infinite alternate;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(120, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 156, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  opacity: 0.98;
  transform: translateY(-1px);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-brand {
  justify-self: start;
  margin-bottom: 0.2rem;
  animation-delay: 60ms;
}

.social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
  color: #d0e4f5;
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  letter-spacing: 0.03em;
  line-height: 1.28;
  margin-block: 0.9rem 1.2rem;
  animation-delay: 520ms;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  background: rgba(7, 18, 30, 0.38);
  box-shadow: inset 0 0 0 1px rgba(120, 231, 255, 0.04);
  font-weight: 300;
  color: inherit;
  text-decoration: none;
  opacity: 0.88;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  color: var(--accent);
  border-color: rgba(120, 231, 255, 0.58);
  background: rgba(10, 24, 38, 0.58);
  transform: translateY(-1px);
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(122, 238, 255, 0.22));
}

.social-separator {
  opacity: 0.7;
}

.social-divider {
  color: rgba(173, 214, 241, 0.62);
  font-size: 1em;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation-delay: 200ms;
}

.page-links a {
  text-decoration: none;
  color: #d4edff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(120, 231, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 18, 30, 0.45);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.page-links a:hover {
  border-color: rgba(120, 231, 255, 0.65);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: start;
  gap: 2.4rem;
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: clamp(5rem, 9vh, 7rem) 0 4.5rem;
}

.hero-intro {
  display: grid;
  gap: 1.2rem;
}

.hero-intro > *,
.offerings > * {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-up 740ms cubic-bezier(0.2, 0.8, 0.22, 1) forwards;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.72rem, 1.3vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-wrap: balance;
  animation-delay: 230ms;
}

h1 {
  margin: 0;
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
  font-size: clamp(2.3rem, 7vw, 5.3rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 0 26px rgba(121, 235, 255, 0.19);
  animation-delay: 320ms;
}

h2 {
  margin: 0;
  max-width: 72ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.33rem);
  line-height: 1.6;
  font-weight: 400;
  text-wrap: pretty;
  animation-delay: 410ms;
}

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

.service-card {
  border: 1px solid rgba(120, 231, 255, 0.24);
  background: rgba(7, 18, 30, 0.54);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.1rem 1rem;
}

.service-card:nth-child(1) {
  animation-delay: 580ms;
}

.service-card:nth-child(2) {
  animation-delay: 660ms;
}

.service-kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.72rem;
}

.service-card h3 {
  margin: 0.7rem 0 0;
  color: #e4f5ff;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.3;
  font-weight: 600;
}

.service-note {
  margin: 0.72rem 0 0;
  color: #a6c0d8;
  font-size: 0.93rem;
  line-height: 1.5;
}

.service-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: #bed8ec;
  display: grid;
  gap: 0.42rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vh, 3.5rem) 0 3.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-nav-links a {
  text-decoration: none;
  color: #d5ecff;
  border: 1px solid rgba(120, 231, 255, 0.24);
  background: rgba(7, 18, 30, 0.43);
  border-radius: 999px;
  padding: 0.4rem 0.66rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  border-color: rgba(120, 231, 255, 0.62);
  color: var(--accent);
}

.info-page {
  display: grid;
  gap: 1rem;
}

.page-card {
  border: 1px solid rgba(120, 231, 255, 0.22);
  background: rgba(7, 18, 30, 0.56);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.page-card h1,
.page-card h2,
.page-card h3 {
  margin: 0;
}

.page-card h1 {
  font-size: clamp(1.95rem, 4.3vw, 3.3rem);
  line-height: 1;
}

.page-card h2 {
  margin-top: 0.9rem;
  color: #e5f5ff;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
}

.page-card p {
  margin: 0.72rem 0 0;
  color: #b7cde1;
  line-height: 1.58;
}

.page-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: #c4dcf0;
  display: grid;
  gap: 0.42rem;
}

.support-email {
  margin-top: 0.5rem;
  color: #e7f6ff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

.page-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-section + .policy-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(120, 231, 255, 0.16);
}

.policy-updated {
  color: #95b0c8;
  font-size: 0.88rem;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-one {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(6%, 7%) scale(1.06);
  }
}

@keyframes drift-two {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-8%, -5%) scale(1.08);
  }
}

@media (max-width: 900px) {
  .hero {
    width: min(900px, 90vw);
    padding-top: 5.6rem;
    gap: 1.6rem;
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }

  h2 {
    max-width: 64ch;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    align-content: start;
    width: min(540px, 90vw);
    padding-top: 4.2rem;
    padding-bottom: 2.75rem;
    gap: 1.4rem;
  }

  .hero-brand {
    width: 50px;
    height: 50px;
    padding: 7px;
    border-radius: 10px;
  }

  .social-strip {
    gap: 0.82rem;
    row-gap: 0.62rem;
    letter-spacing: 0.02em;
    font-size: 1.06rem;
    margin-block: 1rem 1.25rem;
  }

  .social-divider {
    display: inline;
  }

  .page-links {
    gap: 0.4rem;
  }

  .page-links a {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.54rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(1.55rem, 8.4vw, 2.6rem);
    line-height: 0.99;
    letter-spacing: 0.015em;
  }

  h2 {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .offerings {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .page-shell {
    width: min(560px, 90vw);
    padding-top: 1.6rem;
  }

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

  .site-nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

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

@media (prefers-reduced-motion: reduce) {
  .ambient-one,
  .ambient-two {
    animation: none;
  }

  .hero-intro > *,
  .offerings > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .brand {
    transition: none;
  }
}