/* ─────────────────────────────────────────
   Curay — styles.css
   Placeholder / home page only.
   Requires: /global.css
───────────────────────────────────────── */

/* Fullscreen lock — only on this page */
html, body {
  height: 100%;
  overflow: hidden;
}

/* ── LAYOUT ───────────────────────────── */

.page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
}

/* ── LOGO (top-left) ──────────────────── */

.logo {
  position: absolute;
  top: 36px;
  left: 48px;
}

/* ── NAV LINKS (top-right) ────────────── */

.nav-links {
  position: absolute;
  top: 38px;
  right: 48px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
}

/* ── CENTER CONTENT ───────────────────── */

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  font-size: clamp(22px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: 0.08em;
text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}



.subline {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--mid);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

/* ── EMAIL FORM ───────────────────────── */

.form-wrap {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.email-row {
  display: flex;
  border-bottom: 1px solid var(--ink);
  width: 320px;
  max-width: 100%;
  margin-bottom: 14px;
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 10px 0;
}

.email-input::placeholder {
  color: var(--light);
}

.email-btn {
  background: transparent;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 0 10px 16px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.email-btn:hover {
  color: var(--mid);
}

.form-note {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--light);
  text-align: center;
}

.form-note.success {
  color: var(--ink);
}

/* ── BOTTOM BAR ───────────────────────── */

.bottom-bar {
  position: absolute;
  bottom: 36px;
  left: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--light);
}

.bottom-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── MOBILE ───────────────────────────── */

@media (max-width: 600px) {
  .nav-links {
    top: 30px;
    right: 24px;
    gap: 20px;
  }

  .bottom-bar {
    left: 24px;
    right: 24px;
    bottom: 28px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .email-row {
    width: 280px;
  }
}
