/* ================================================================
   FORBIDDEN GNOSIS — SHARED STYLESHEET
   ================================================================ */

/* ── VARIABLES ── */
:root {
  --gold:         #D4A853;
  --gold-dim:     #9C7A38;
  --gold-glow:    rgba(212, 168, 83, 0.15);
  --crimson:      #C0392B;
  --violet:       #6B3FA0;
  --violet-light: #9B6FD4;
  --cream:        #EDE8DC;
  --cream-dim:    #A89F8C;
  --muted:        #6b7280;
  --bg:           #000000;
  --surface:      #0C0C0E;
  --surface-2:    #111118;
  --border:       rgba(212, 168, 83, 0.14);
  --border-hover: rgba(212, 168, 83, 0.38);
  --nav-h:        60px;
  --max-w:        960px;
  --page-px:      1.5rem;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── BASE ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* ── AMBIENT GLOW ── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ambient::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 63, 160, 0.10) 0%, transparent 65%);
}
.ambient::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.06) 0%, transparent 65%);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-eye {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(212, 168, 83, 0.45));
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream-dim);
  padding: 0.375rem 0.625rem;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold); }

.nav-cta { flex-shrink: 0; }
.nav-cta a {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 5px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta a:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream-dim);
  transition: all 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-size: 0.9375rem;
  }
}

/* ── LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px) 5rem;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.section      { padding: 4rem 0; }
.section--sm  { padding: 2.5rem 0; }
.section--lg  { padding: 6rem 0; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.display-xl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.display-md {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
}
.text-xl  { font-size: clamp(1.0625rem, 2.5vw, 1.25rem); line-height: 1.7; }
.text-lg  { font-size: 1.0625rem; line-height: 1.7; }
.text-sm  { font-size: 0.875rem;  line-height: 1.65; }
.text-xs  { font-size: 0.75rem;   line-height: 1.6; }

.text-muted     { color: var(--muted); }
.text-cream-dim { color: var(--cream-dim); }
.text-gold      { color: var(--gold); }
.text-center    { text-align: center; }
.italic         { font-style: italic; }

/* ── PROSE (manifesto, legal) ── */
.prose { max-width: 680px; }
.prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 700;
  color: var(--cream);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.prose h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--cream); font-weight: 600; }
.prose em { font-style: italic; }
.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream-dim);
}
.prose ul li::before {
  content: '◆';
  font-size: 0.4375rem;
  color: var(--gold-dim);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.prose ol { counter-reset: prose-ol; }
.prose ol li {
  counter-increment: prose-ol;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream-dim);
}
.prose ol li::before {
  content: counter(prose-ol) '.';
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9375rem;
  color: var(--gold-dim);
  flex-shrink: 0;
  min-width: 1.25rem;
}
.prose a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.prose a:hover { color: var(--gold); }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.divider-text {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-sm { padding: 0.5rem 1rem;      font-size: 0.8125rem; }
.btn-lg { padding: 0.9375rem 2rem;   font-size: 1rem; }

.btn-gold {
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  color: #000;
}
.btn-gold:hover {
  opacity: 0.88;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}
.btn-violet {
  background: linear-gradient(to right, var(--violet), var(--violet-light));
  color: #fff;
}
.btn-violet:hover {
  opacity: 0.88;
  box-shadow: 0 4px 20px rgba(107, 63, 160, 0.3);
}

/* Tier buttons (disabled state) */
.tier-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: center;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
}
.tier-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}
.tier-btn-ghost:not(:disabled):hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}
.tier-btn-gold {
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  color: #000;
}
.tier-btn-gold:not(:disabled):hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.tier-btn-violet {
  background: linear-gradient(to right, var(--violet), var(--violet-light));
  color: #fff;
}
.tier-btn-violet:not(:disabled):hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(107, 63, 160, 0.3);
}
.tier-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── FORMS ── */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #0f0f15;
  border: 1px solid #2a2a38;
  color: var(--cream);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.25s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold-dim);
}
input.error, textarea.error { border-color: #ef4444; }
input::placeholder, textarea::placeholder { color: #3a3a4a; }

.email-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
}
@media (min-width: 480px) {
  .email-row { flex-direction: row; }
}
.input-wrap { position: relative; flex: 1; }
.success-check {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: #10b981;
  display: none;
}
.submit-btn {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 6px;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-width: 120px;
  white-space: nowrap;
}
.submit-btn:hover:not(:disabled) { opacity: 0.88; }
.submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.spinner {
  width: 0.875rem;
  height: 0.875rem;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.status-msg {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  margin-top: 0.625rem;
}
.status-msg.success { color: #10b981; display: flex; }
.status-msg.error   { color: #ef4444; display: flex; }
.privacy-note {
  font-size: 0.6875rem;
  color: #4b5563;
  margin-top: 0.625rem;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.07);
}

/* Artifact card */
.artifact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.artifact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.artifact-card-tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.artifact-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}
.artifact-card-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.artifact-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}
.artifact-card-creator { font-size: 0.75rem; color: var(--cream-dim); }
.artifact-card-price { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.artifact-card-status {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* ── TIER CARDS ── */
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tier-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.08);
}
.tier-card.featured {
  border-color: rgba(212, 168, 83, 0.35);
  background: linear-gradient(145deg, #0C0C0E 0%, #100E14 100%);
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--bg);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}
.tier-rank {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}
.tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.tier-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier-price span { font-size: 0.8125rem; font-weight: 400; color: var(--muted); }
.tier-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.5;
}
.tier-features li::before {
  content: '◆';
  font-size: 0.4375rem;
  color: var(--gold-dim);
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.tier-features li.locked { opacity: 0.32; }
.tier-features li.locked::before { content: '○'; font-size: 0.5625rem; margin-top: 0.3rem; }

/* ── CALLOUT ── */
.callout {
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.65;
}
.callout strong { color: var(--gold); }

/* ── PULL QUOTE ── */
.pull-quote {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin: 1rem 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  margin-top: 5rem;
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--page-px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.65;
  max-width: 300px;
}
.footer-nav {
  display: flex;
  gap: 3rem;
}
@media (max-width: 480px) { .footer-nav { gap: 2rem; } }
.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.875rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.8125rem; color: #4b5563; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream-dim); }

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 83, 0.07);
  padding: 1.5rem var(--page-px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-copyright { font-size: 0.6875rem; color: #374151; }
.footer-domains {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
}
.footer-domains a { color: #4b5563; transition: color 0.2s; }
.footer-domains a:hover { color: var(--cream-dim); }
.footer-domains .sep { color: #374151; }
.footer-noo { width: 100%; font-size: 0.625rem; color: #374151; text-align: center; }

/* ── GRADIENT UTILITIES ── */
.grad-gold {
  background: linear-gradient(to right, var(--gold), #eab308);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 600;
}
.grad-pink {
  background: linear-gradient(to right, #ec4899, #a855f7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 600;
}
.grad-blue {
  background: linear-gradient(to right, #818cf8, #22d3ee);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 600;
}
.grad-violet {
  background: linear-gradient(to right, var(--violet-light), #d946ef);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; font-weight: 600;
}
.text-grad-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #EFD9A0 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-grad-crimson {
  background: linear-gradient(to right, var(--crimson), #eab308, var(--crimson));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── ANIMATIONS ── */
.fade-up  { opacity: 0; transform: translateY(24px); animation: fadeUp  0.9s ease-out forwards; }
.fade-down { opacity: 0; transform: translateY(-16px); animation: fadeDown 0.9s ease-out forwards; }
.fade-in  { opacity: 0; animation: fadeIn 0.9s ease-out forwards; }
.delay-1  { animation-delay: 0.15s; }
.delay-2  { animation-delay: 0.30s; }
.delay-3  { animation-delay: 0.45s; }
.delay-4  { animation-delay: 0.60s; }
.delay-5  { animation-delay: 0.75s; }

@keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes spin     { to { transform: rotate(360deg); } }

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

/* ── CHAMBER BANNER ── */
.chamber-banner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 860px;
}
.chamber-banner-eye { width: 26px; height: 26px; flex-shrink: 0; opacity: 0.8; }
.chamber-banner-copy { font-size: 0.8125rem; color: var(--cream-dim); line-height: 1.55; }
.chamber-banner-name { color: var(--gold); font-weight: 600; }
.chamber-banner a { color: var(--gold-dim); text-decoration: underline; text-underline-offset: 2px; }
.chamber-banner a:hover { color: var(--gold); }

/* ── GATE WALL ── */
.gate-wall {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.gate-wall-icon { width: 52px; height: 52px; margin: 0 auto 1.5rem; opacity: 0.6; }
.gate-wall-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.875rem;
}
.gate-wall-copy {
  font-size: 0.9375rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.gate-wall-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.gate-wall-note { font-size: 0.6875rem; color: var(--muted); font-style: italic; }

/* ── CREATOR PROFILE (chamber.html) ── */
.creator-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .creator-profile { flex-direction: column; align-items: center; text-align: center; }
}
.creator-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border: 1px solid rgba(107, 63, 160, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.creator-profile-info { flex: 1; }
.creator-profile-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--cream);
  margin-bottom: 0.25rem;
}
.creator-profile-badge {
  display: inline-flex; align-items: center;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.28);
  color: var(--gold-dim);
  font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 4px;
  margin-bottom: 0.625rem;
}
.creator-profile-bio { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.75; }

/* ── READING PATH ── */
.reading-path { display: flex; flex-direction: column; gap: 0.75rem; }
.reading-path-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  transition: border-color 0.25s;
}
.reading-path-item:hover { border-color: var(--border-hover); }
.reading-path-step {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold-dim); font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reading-path-content { flex: 1; }
.reading-path-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.2rem;
}
.reading-path-note { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* ── MISC UTILITIES ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
