*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --void:   #06080a;
  --deep:   #0b0f0d;
  --forest: #111712;
  --moss:   #1a3a2a;
  --fern:   #2d5a3d;
  --sage:   #4a7c5a;
  --mist:   #7aab8a;
  --gold:   #8b6914;
  --amber:  #b8932a;
  --pale:   #d4b86a;
  --bone:   #ede4cc;
  --fog:    #b8c8b0;
  --smoke:  #586858;
}
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--bone);
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 900;
}
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% 110%, rgba(26,58,42,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 15% 40%, rgba(11,15,13,0.9) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 25%, rgba(11,15,13,0.9) 0%, transparent 55%),
    linear-gradient(180deg, var(--void) 0%, var(--deep) 45%, #0f1a12 85%, var(--deep) 100%);
}
.bl {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: flicker var(--d,5s) ease-in-out infinite alternate;
  animation-delay: var(--dl,0s);
}
.bl1 { width:350px;height:220px;left:-4%;top:28%;background:radial-gradient(circle,rgba(74,124,90,0.13) 0%,transparent 70%);--d:6s;--dl:0s; }
.bl2 { width:220px;height:160px;right:3%;top:55%;background:radial-gradient(circle,rgba(74,124,90,0.09) 0%,transparent 70%);--d:8s;--dl:2.5s; }
.bl3 { width:180px;height:120px;left:35%;bottom:18%;background:radial-gradient(circle,rgba(139,105,20,0.07) 0%,transparent 70%);--d:7s;--dl:1.2s; }
.bl4 { width:140px;height:90px;right:25%;top:15%;background:radial-gradient(circle,rgba(45,90,61,0.06) 0%,transparent 70%);--d:9s;--dl:3.5s; }
@keyframes flicker {
  0%   { opacity:.35; transform:scale(1) translateY(0); }
  35%  { opacity:.7;  transform:scale(1.06) translateY(-6px); }
  65%  { opacity:.25; transform:scale(.97) translateY(4px); }
  100% { opacity:.55; transform:scale(1.03) translateY(-3px); }
}
.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.logo-mark {
  width: 48px;
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1.2s ease 0s forwards;
}
.publisher {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: riseIn 1s ease 0.2s forwards;
}
.year {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseIn 1s ease 0.5s forwards;
}
.year::before, .year::after { content: '\2014'; margin: 0 0.9em; color: var(--moss); font-weight: 400; }
.title-the {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.7em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: riseIn 1s ease 0.8s forwards;
}
.title-main {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-shadow: 0 0 120px rgba(139,105,20,0.18), 0 4px 60px rgba(0,0,0,0.9), 0 0 1px rgba(237,228,204,0.3);
  opacity: 0;
  animation: riseIn 1.4s ease 1s forwards;
}
.title-sub {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0;
  animation: riseIn 1s ease 1.3s forwards;
}
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  width: 100%;
  max-width: 400px;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.6s forwards;
}
.orn-line { flex:1; height:1px; background:linear-gradient(90deg,transparent,var(--gold) 50%,transparent); }
.orn-glyph { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.35em; }
.teaser {
  max-width: 540px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: riseIn 1s ease 1.9s forwards;
}
.teaser-hook {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fog);
  margin-bottom: 1.6rem;
}
.teaser-hook strong { font-style: normal; font-weight: 500; color: var(--bone); }
.teaser-body {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--smoke);
  letter-spacing: 0.01em;
}
.factions {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--moss);
  text-transform: uppercase;
  margin: 2rem 0 2.8rem;
  opacity: 0;
  animation: fadeIn 2s ease 2.2s forwards;
  line-height: 2.4;
}
.factions span { color: var(--fern); transition: color 0.4s ease; }
.factions span:hover { color: var(--mist); cursor: default; }
.signup {
  width: 100%;
  max-width: 460px;
  opacity: 0;
  animation: riseIn 1s ease 2.5s forwards;
}
.signup-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--amber);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}
.form-row {
  display: flex;
  border: 1px solid var(--moss);
  background: rgba(11,15,13,0.8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(139,105,20,0.3), 0 0 30px rgba(139,105,20,0.08);
}
.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.02em;
  min-width: 0;
}
.email-input::placeholder { color: var(--smoke); }
.submit-btn {
  background: var(--moss);
  border: none;
  border-left: 1px solid var(--fern);
  padding: 1rem 1.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--pale);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.submit-btn:hover { background: var(--fern); color: var(--bone); }
.submit-btn:active { background: var(--gold); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
  min-height: 1.4em;
  transition: opacity 0.3s;
}
.form-message.success { color: var(--mist); }
.form-message.error   { color: #c87a6a; }
.privacy {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--smoke);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,58,42,0.4);
  width: 100%;
  max-width: 460px;
  opacity: 0;
  animation: fadeIn 2s ease 3s forwards;
}
.footer-mark {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--smoke);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-copy { font-size: 0.7rem; color: rgba(88,104,88,0.6); font-style: italic; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.signup.submitted .form-row { opacity: 0.4; pointer-events: none; }
@media (max-width: 500px) {
  .form-row { flex-direction: column; }
  .submit-btn { border-left: none; border-top: 1px solid var(--fern); padding: 0.9rem; }
  .factions { letter-spacing: 0.3em; font-size: 0.52rem; }
  .title-main { font-size: clamp(3.2rem, 18vw, 5rem); }
}

/* ── Honeypot field — hidden off-screen, bots fill it ── */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
