/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-bg:           #121212;
  --color-text:         #F4F1EC;
  --color-text-muted:   #A8A39B;
  --color-accent:       #CFB152;
  --color-accent-strong:#B89A3E;
  --color-border:       #2A2A2A;

  --font: 'Archivo', system-ui, sans-serif;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* ============================================================
   LAYOUT
   ============================================================ */
.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 480px;
  width: 100%;
}


/* ============================================================
   LOGO
   ============================================================ */
.logo {
  width: 220px;
  height: auto;
  display: block;
}


/* ============================================================
   TEXT
   ============================================================ */
.tagline {
  font-size: 1.0625rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.coming-soon {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}


/* ============================================================
   FORM
   ============================================================ */
.notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.form-row {
  display: flex;
  width: 100%;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.form-row:focus-within {
  border-color: var(--color-accent);
}

.email-input {
  flex: 1;
  background: #ffffff;
  border: none;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: #000000;
  min-width: 0;
  outline: none;
}

.email-input::placeholder {
  color: #999999;
  opacity: 1;
}

.submit-btn {
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  opacity: 0.6;
}


/* ============================================================
   SCREEN-READER ONLY
   ============================================================ */
.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;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .logo {
    width: 180px;
  }

  .form-row {
    flex-direction: column;
    border-radius: 2px;
  }

  .submit-btn {
    border-left: none;
    border-top: 1px solid #cccccc;
    padding: 13px;
    width: 100%;
  }
}
