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

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: #1c3738;
  background: #ffffff;
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* Layout */
.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

/* Hero */
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Brand */
.brand {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  max-width: 160px;
}

.brand-line {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Next Steps */
.next-steps {
  margin: 4rem 0;
}

.next-steps h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.next-steps ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.next-steps li {
  margin: 0.6rem 0;
  font-size: 1rem;
}

.note {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Return */
.return {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.primary-button {
  background: #ff5714;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.secondary-link {
  font-size: 0.9rem;
  color: #1c3738;
  opacity: 0.75;
  text-decoration: none;
}

.secondary-link:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 4rem 1.5rem;
  }
}

