/* ===== Stealth Landing Page Styles ===== */

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

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.stealth-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.stealth-content {
  text-align: center;
}

.stealth-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.stealth-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #b0b0b0;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 480px) {
  .stealth-logo {
    max-width: 200px;
  }

  .stealth-subtitle {
    font-size: 1rem;
  }
}
