/* ---------------------------------------------------------
   Live. Inspire. Thrive. — Coming Soon
   Tokens: background #060606, white #FFFFFF, muted #A6A6A6,
   accent (gold) #C9A64A. Headline face: Archivo. Body: Inter.
--------------------------------------------------------- */

:root {
  --bg: #060606;
  --white: #ffffff;
  --muted: #a6a6a6;
  --muted-dim: #6f6f6f;
  --accent: #c9a64a;
  --border: rgba(255, 255, 255, 0.16);
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 24px;
}

.content {
  width: 100%;
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: min(100%, 180px);
  height: auto;
  margin-bottom: 40px;
}

.headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.headline .cap {
  font-size: 1.4em;
  font-weight: 800;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  max-width: 460px;
  margin: 0 0 28px;
}

.rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 32px;
}

.signup-form {
  width: 100%;
  max-width: 380px;
}

.field-row {
  display: flex;
  gap: 10px;
}

#email {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
}

#email::placeholder {
  color: var(--muted-dim);
}

#email:focus {
  outline: none;
  border-color: var(--accent);
}

#signup-button {
  flex-shrink: 0;
  background: var(--white);
  color: #060606;
  border: 1px solid var(--white);
  border-radius: 2px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#signup-button:hover,
#signup-button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #060606;
  outline: none;
}

#signup-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--muted);white-space: pre-line;
}

.form-message.is-success {
  color: var(--accent);
}

.form-message.is-error {
  color: #e08b8b;
}

.social {
  margin-top: 44px;
}

.social-label {
  font-size: 0.82rem;
  color: var(--muted-dim);
  margin: 0 0 14px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-links a {
  color: var(--white);
  display: inline-flex;
  transition: color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer {
  margin-top: 48px;
}

.footer p {
  font-size: 0.78rem;
  color: var(--muted-dim);
  margin: 0;
}

@media (max-width: 420px) {
  .field-row {
    flex-direction: column;
  }

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