/* Greater Heights — auth pages (login / register / reset / app).
   Reuses tokens + form components from style.css. */

.auth-content { max-width: 380px; }

.auth-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 18px;
}

.auth-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(196,153,58,0.08);
}

.auth-help {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.auth-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.auth-links a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.auth-links a:hover { color: var(--gold); border-bottom-color: var(--gold-border); }
.auth-links .sep { opacity: 0.3; }

/* Persistent login entry on the landing page */
.corner-login {
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 5;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}
.corner-login:hover { color: var(--gold); }
.corner-login .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(196,153,58,0.6);
  opacity: 0.85;
}

/* "App is live" note under the waitlist form */
.app-ready {
  margin: 4px 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.app-ready a { color: var(--gold); text-decoration: none; }
.app-ready a:hover { text-decoration: underline; }
.app-ready-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(196,153,58,0.7);
  animation: halo 5s ease-in-out infinite;
}

/* Authenticated app placeholder */
.app-shell { visibility: hidden; }
.app-note {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  margin: 6px 0 28px;
  line-height: 1.5;
}
.app-user {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 30px;
  word-break: break-all;
}
.logout-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.logout-btn:hover { color: var(--gold); border-color: var(--gold-hover); }
