:root {
  color-scheme: dark;
  --carbon: #0d0d0d;
  --black: #020407;
  --blue: #0066ff;
  --blue-light: #28b9ff;
  --gold: #d4af37;
  --white: #ffffff;
  --muted: #aeb8c7;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: #000000;
  color: var(--white);
  font-family: "Segoe UI", "Avenir Next", Avenir, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 4.5rem);
  place-items: center;
  padding: max(1.75rem, env(safe-area-inset-top)) 1.5rem 1.5rem;
}

.hero {
  width: min(64rem, 100%);
  text-align: center;
}

.brand-lockup {
  position: relative;
  width: min(42rem, 88vw);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(0.75rem) scale(0.985);
  animation: brand-arrival 1.8s cubic-bezier(0.2, 0.72, 0.2, 1) 0.2s forwards;
}

.brand-lockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.25), transparent 70%);
  filter: blur(32px);
  transform: translateX(-50%);
}

.brand-lockup__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.brand-lockup__pulse {
  position: absolute;
  z-index: 2;
  top: 11.5%;
  left: 50%;
  width: clamp(0.3rem, 0.7vw, 0.48rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0.35rem var(--white),
    0 0 0.9rem var(--blue-light),
    0 0 1.7rem var(--blue);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: origin-pulse 4.8s ease-in-out 2.1s infinite;
}

.intro {
  margin-top: clamp(-1.5rem, -2vw, -0.6rem);
  opacity: 0;
  transform: translateY(0.6rem);
  animation: intro-arrival 1.2s ease 1.45s forwards;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 0;
  margin: 0;
  color: #dbe5f2;
  font-size: clamp(0.68rem, 1.5vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services span {
  display: inline-flex;
  align-items: center;
}

.services span:not(:last-child)::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  margin-inline: 0.85rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0.55rem rgba(212, 175, 55, 0.65);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(0, 102, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 9, 16, 0.62);
  box-shadow: inset 0 0 1.2rem rgba(0, 102, 255, 0.05);
  backdrop-filter: blur(10px);
}

.status p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status__indicator {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0.8rem var(--blue);
  animation: status-breathe 2.8s ease-in-out infinite;
}

footer {
  position: relative;
  z-index: 1;
  min-height: 4.5rem;
  padding: 1.3rem max(1.5rem, env(safe-area-inset-right)) max(1.3rem, env(safe-area-inset-bottom));
  color: rgba(174, 184, 199, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

footer p {
  margin: 0;
}

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

@keyframes brand-arrival {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-arrival {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes origin-pulse {
  0%, 10% {
    top: 11.5%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  48% {
    top: 43.6%;
    opacity: 1;
  }
  55% {
    opacity: 0.42;
  }
  82% {
    top: 11.5%;
    opacity: 0.9;
  }
  92%, 100% {
    top: 11.5%;
    opacity: 0;
  }
}

@keyframes status-breathe {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 38rem) {
  .landing {
    min-height: calc(100svh - 4rem);
    padding-inline: 0.8rem;
  }

  .brand-lockup {
    width: min(30rem, 100%);
  }

  .intro {
    margin-top: -0.75rem;
    padding-inline: 1rem;
  }

  .services {
    max-width: 22rem;
    margin-inline: auto;
    letter-spacing: 0.16em;
  }

  .services span:not(:last-child)::after {
    margin-inline: 0.58rem;
  }

  footer {
    min-height: 4rem;
  }
}

@media (max-height: 43rem) and (orientation: landscape) {
  .landing {
    min-height: auto;
    padding-block: 1rem;
  }

  .brand-lockup {
    width: min(30rem, 64vw);
  }

  .status {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-lockup,
  .intro {
    opacity: 1;
    transform: none;
  }

  .brand-lockup__pulse {
    display: none;
  }
}

.visitor-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}
