/* ═══════════════════════════════════════════════════════════════════
   Landing page — the entranceway.
   ═══════════════════════════════════════════════════════════════════ */

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
}

.landing .site-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2.5rem;
  text-shadow: 0 0 18px var(--purple-glow);
}

.landing .title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--bone);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 40px rgba(107, 31, 160, 0.25),
    0 2px 0 rgba(0,0,0,0.5);
}

.landing .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--bone-dim);
  max-width: 540px;
  line-height: 1.55;
  margin: 0 auto 3.5rem;
}

/* ── manifesto block ─────────────────────────────────────────────── */
.manifesto {
  max-width: 620px;
  margin: 0 auto 5rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  background:
    linear-gradient(180deg,
      rgba(107, 31, 160, 0.04) 0%,
      transparent 50%,
      rgba(107, 31, 160, 0.04) 100%);
}

.manifesto .mf-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
  text-align: center;
}

.manifesto p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--bone-soft);
  margin-bottom: 1.2rem;
}

.manifesto p:last-child { margin-bottom: 0; }

.manifesto em {
  color: var(--bone);
  font-style: italic;
}

/* ── scroll index ────────────────────────────────────────────────── */
.scroll-index {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.scroll-index h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: center;
  margin-bottom: 2.5rem;
}

.scroll-card {
  display: block;
  padding: 2rem 1.75rem;
  margin-bottom: 1rem;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--purple);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s, border-left-color 0.2s, transform 0.2s;
}

.scroll-card:hover, .scroll-card:focus {
  background: var(--black-raised);
  border-left-color: var(--crimson-hot);
  transform: translateX(4px);
  color: inherit;
}

.scroll-card .sc-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 0.5rem;
}

.scroll-card .sc-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--bone);
  display: block;
  margin-bottom: 0.75rem;
}

.scroll-card .sc-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bone-dim);
  font-size: 1rem;
  line-height: 1.55;
}

.scroll-card.pending {
  border-left-color: rgba(107, 31, 160, 0.25);
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.scroll-card.pending .sc-num { color: var(--bone-ghost); }

/* ── bell cue ─────────────────────────────────────────────────────── */
.bell-cue {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.bell-button {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--bone-dim);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}

.bell-button:hover, .bell-button:focus {
  color: var(--purple);
  border-color: var(--purple);
  text-shadow: 0 0 12px var(--purple-glow);
}

.bell-button:active {
  color: var(--crimson-hot);
  border-color: var(--crimson-hot);
}

/* ── mobile ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .landing { padding: 3rem 1.25rem 2rem; }
  .manifesto { padding: 2rem 1.25rem; }
  .manifesto p { font-size: 1.05rem; line-height: 1.8; }
  .scroll-card { padding: 1.5rem 1.25rem; }
  .scroll-card .sc-title { font-size: 1.65rem; }
}
