/* ==========================================================================
   OARA — Pre-launch landing page
   Minimal, premium, dark. Radial teal gradient, gold accents.
   ========================================================================== */

:root {
  --gold: #D2B06C;
  --teal: #0F6E7C;
  --teal-dark: #0D292D;
  --bg-dark: #00383B;
  --bg-darker: #002F32;
  --off-white: #F5F1E8;
  --text-light: #E4E7E4;
  --text-muted: rgba(228, 231, 228, 0.6);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-light);
  font-family: var(--font-body);
  background-color: var(--bg-darker);
  background-image: radial-gradient(circle at 50% 38%, var(--teal) 0%, var(--bg-dark) 48%, var(--bg-darker) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

/* ---------- Public page shell ---------- */

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

.container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: min(180px, 42vw);
  height: auto;
  margin-bottom: 40px;
  opacity: 0;
  animation: oara-logo-in 800ms ease-out 100ms forwards;
}

.drop-label {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: oara-fade-up 700ms ease-out 260ms forwards;
}

.title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  letter-spacing: 0.06em;
  color: var(--off-white);
  opacity: 0;
  animation: oara-fade-up 700ms ease-out 360ms forwards;
}

.main-text {
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text-light);
  max-width: 34ch;
  opacity: 0;
  animation: oara-fade-up 700ms ease-out 460ms forwards;
}

.form-block {
  width: 100%;
  opacity: 0;
  animation: oara-fade-up 700ms ease-out 560ms forwards;
}

.form-intro {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--off-white);
}

#subscribe-form {
  width: 100%;
}

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

.field-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.field-row input[type="email"] {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(210, 176, 108, 0.35);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.field-row input[type="email"]::placeholder {
  color: var(--text-muted);
}

.field-row input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.25);
}

.field-row button {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.field-row button:hover,
.field-row button:focus-visible {
  background: var(--gold);
  color: var(--teal-dark);
}

.field-row button:disabled {
  opacity: 0.6;
  cursor: default;
}

@media (min-width: 560px) {
  .field-row {
    flex-direction: row;
  }

  .field-row input[type="email"] {
    flex: 1 1 auto;
  }

  .field-row button {
    flex: 0 0 auto;
    width: auto;
  }
}

.form-message {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--gold);
}

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

.consent-text {
  margin: 22px 0 0;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 38ch;
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.social-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.social-links a:hover {
  color: var(--gold);
}

.site-footer {
  margin-top: 64px;
  text-align: center;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.site-footer a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.site-footer a:hover {
  color: var(--gold);
}

@keyframes oara-logo-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oara-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .drop-label,
  .title,
  .main-text,
  .form-block {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Static legal / privacy pages ---------- */

.static-page {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 10vh 24px 60px;
}

.static-page .back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
}

.static-page h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--off-white);
  margin: 0 0 8px;
}

.static-page .page-subtitle {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 40px;
}

.static-page h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--off-white);
  margin: 36px 0 12px;
}

.static-page p,
.static-page li {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-light);
}

.static-page strong {
  color: var(--off-white);
  font-weight: 500;
}

.static-page .placeholder {
  color: var(--gold);
  font-style: italic;
}
