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

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: url('background.jpg') center center / cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f5f5f2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.75rem;
  max-width: 32rem;
  width: 90%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: #d9d6cf;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.launch {
  font-size: 1rem;
  color: #e5e2da;
  margin-bottom: 2rem;
}

.launch span {
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.divider {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 2rem;
}

.company {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #cfccc4;
  margin-bottom: 0.75rem;
}

.email {
  display: inline-block;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.email:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 480px) {
  .content {
    padding: 2rem 1.25rem;
  }
}
