:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-2: #0b0f14;
  --fg: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.7);
  --accent: #6ee7f8;
  --accent-2: #e7f17d;
  --stroke: rgba(255, 255, 255, 0.18);
  --card: rgba(11, 15, 20, 0.72);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 15% 15%, rgba(110, 231, 248, 0.08), transparent 55%),
    radial-gradient(800px 500px at 80% 10%, rgba(231, 241, 125, 0.06), transparent 60%),
    var(--bg);
  color: var(--fg);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  position: relative;
  overflow-x: hidden;
}

.bg-orbit {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 248, 0.15);
  box-shadow: 0 0 80px rgba(110, 231, 248, 0.1);
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(-12deg);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  pointer-events: none;
}

.page {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 56px 0 80px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.center {
  display: grid;
  place-content: center;
  gap: 28px;
  text-align: center;
}

.logo {
  display: grid;
  place-items: center;
}

.globe {
  width: 160px;
  height: 160px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.globe-grid {
  position: absolute;
  inset: 0;
}

.foe-text {
  width: 132px;
  height: 56px;
  z-index: 1;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.name {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.tagline {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
