* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #0b0b0c;
  color: #f2f2f2;
  font-family: 'Inter', -apple-system, sans-serif;
  text-align: center;
  padding: 40px 24px;
}

main {
  max-width: 760px;
  width: 100%;
}

.logo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 2px;
}

.wordmark {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 12px;
}

.tagline {
  max-width: 520px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f2f2f2;
  margin: 0 auto 8px;
  line-height: 1.3;
}

.subhead {
  max-width: 480px;
  font-size: 0.92rem;
  color: #9a9a9a;
  margin: 0 auto 32px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 40px;
  text-align: left;
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
}

.feature {
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 16px 18px;
  background: #141415;
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: #ff7a1a;
}

.feature p {
  margin: 0;
  font-size: 0.88rem;
  color: #b3b3b3;
  line-height: 1.45;
}

.status {
  color: #ff7a1a;
  font-weight: 600;
  margin: 0 0 20px;
}

.notify-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #2c2c2e;
  border-radius: 10px;
  background: #17171a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.notify-form:focus-within {
  border-color: #ff7a1a;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: none;
  background: transparent;
  color: #f2f2f2;
  font-size: 0.95rem;
  font-family: inherit;
}

.notify-form input:focus {
  outline: none;
}

.notify-form button {
  padding: 13px 22px;
  border: none;
  background: #ff7a1a;
  color: #0b0b0c;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.notify-form button:hover { background: #ff8f3f; }
.notify-form button:disabled { opacity: 0.6; cursor: default; }

.notify-message {
  margin-top: 16px;
  min-height: 1.2em;
  color: #9fd39f;
  font-size: 0.95rem;
}
