/* ===== Satella Landing — Minimal, dark, quiet ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Base --- */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #0b0b10;
  color: #e6e6e6;
}

/* --- Top bar --- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 16px 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: #b0b0c0;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #ff4df0;
}

.nav-link-accent {
  border: 1px solid rgba(255, 77, 240, 0.35);
  border-radius: 6px;
  padding: 4px 14px;
}

.nav-link-accent:hover,
.nav-link-accent:focus {
  border-color: #ff4df0;
  background: rgba(255, 77, 240, 0.08);
}

/* --- Hero / brand --- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.brand {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0f0f0;
  text-shadow: 0 0 18px rgba(140, 80, 255, 0.25);
}

/* --- Subtle violet atmosphere --- */
body::before {
  content: "";
  position: fixed;
  top: 30%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(100, 40, 200, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}