/* ──────────────────────────────────────────────────────────────────
   Xeno Reliquary — holding page
   Same brand family as The Last Light (deep void, ember focal, ice
   linework, ancient typography). Single screen, no scroll.
   ────────────────────────────────────────────────────────────────── */

:root {
  --void:         #0E1A35;
  --void-deep:    #06101F;
  --void-tinted:  #15264B;

  --ice:          #D4E8F8;
  --ice-muted:    #94B5D8;
  --ice-faint:    #6A85AB;

  --ember:        #C5582A;
  --fire:         #F4934A;
  --hot:          #FFFCEC;
  --glyph:        #1F3358;

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

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

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ice);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--ice-muted); text-decoration: none; transition: color 0.2s ease; border-bottom: 1px solid rgba(148, 181, 216, 0.30); }
a:hover { color: var(--fire); border-color: var(--fire); }

img { display: block; max-width: 100%; height: auto; }

/* Corner glyphs */
.corner-glyph {
  position: fixed;
  color: var(--glyph);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.corner-tl { top: 28px; left: 28px; }
.corner-br { bottom: 28px; right: 28px; transform: rotate(180deg); }

/* ── Holding screen ─────────────────────────────────────────── */

.holding {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  overflow: hidden;
}

.holding-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 1200px; height: 1200px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%,
      rgba(244, 147, 74, 0.16) 0%,
      rgba(197, 88, 42, 0.08) 22%,
      rgba(14, 26, 53, 0)     58%);
  pointer-events: none;
  z-index: 0;
  animation: emberPulse 8s ease-in-out infinite;
}

@keyframes emberPulse {
  0%, 100% { opacity: 1.0; }
  50%      { opacity: 0.78; }
}

.holding-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
}

.mark-wrap {
  margin-bottom: 48px;
  filter: drop-shadow(0 24px 40px rgba(244, 147, 74, 0.18));
  animation: heroFloat 12s ease-in-out infinite;
}
.mark-wrap img { margin: 0 auto; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  color: var(--ice);
  text-transform: uppercase;
}

.tagline {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  letter-spacing: 0.04em;
  color: var(--ice-muted);
  margin: 0 0 56px;
}

.status {
  font-size: 0.75rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ice-faint);
  margin: 0 0 24px;
}

/* ── Notify form ──────────────────────────────────────────── */

.notify-form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 auto 64px;
  max-width: 440px;
}

.notify-form input {
  flex: 1 1 240px;
  padding: 14px 20px;
  background: rgba(14, 26, 53, 0.6);
  border: 1px solid var(--ice-faint);
  border-right: none;
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease;
}
.notify-form input::placeholder { color: var(--ice-faint); }
.notify-form input:focus { border-color: var(--ice-muted); }

.notify-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #E07A2A 0%, #C5582A 100%);
  color: var(--hot);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.notify-form button:hover {
  background: linear-gradient(135deg, #F4934A 0%, #E07A2A 100%);
  box-shadow: 0 0 24px rgba(244, 147, 74, 0.30);
}

/* ── Studio attribution ───────────────────────────────────── */

.studio-mark {
  display: inline-block;
  margin: 0 0 16px;
  border: none;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.studio-mark:hover { opacity: 1; transform: translateY(-1px); }
.studio-mark img {
  display: block;
  width: 248px;
  height: auto;
}

/* ── Footer line ──────────────────────────────────────────── */

.footer {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ice-faint);
  letter-spacing: 0.04em;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 600px) {
  .mark-wrap img { width: 240px; height: 240px; }
  .corner-glyph { width: 28px; height: 28px; }
  .corner-tl { top: 16px; left: 16px; }
  .corner-br { bottom: 16px; right: 16px; }
  .notify-form { flex-direction: column; gap: 12px; }
  .notify-form input { border-right: 1px solid var(--ice-faint); flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
