* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  --bg: #07110f;
  --text: #eefbf6;
  --muted: #adc2b7;
  --soft: #dfffea;
  --line: rgba(218, 255, 235, 0.22);
  --green: #1f83ff;
  --green-dark: #05291e;
  --font: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  font-family: var(--font);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.55;
  pointer-events: none;
}

.coming-soon-page {
  min-height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 80px;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 160px;
  height: auto;
  display: block;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-card {
  width: min(680px, 100%);
  text-align: center;
  padding: 64px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.coming-soon-card h1 {
  margin: 16px 0 12px;
  font-size: clamp(56px, 9vw, 86px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.035em;
}

.intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.signup-form {
  margin-top: 28px;
}

.signup-row {
  width: min(440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(223, 255, 234, 0.03);
}

.signup-row input {
  flex: 1;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.signup-row input::placeholder {
  color: var(--muted);
}

.signup-button {
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .coming-soon-page {
    padding: 20px 16px;
  }

  .signup-row {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .signup-row input {
    min-width: 100%;
  }

  .signup-button {
    width: 100%;
  }
}
