/* ============================================================================
   ARXANGEL — main.css
   ----------------------------------------------------------------------------
   Table of contents
     01. Design tokens
     02. Reset & base
     03. Typography & layout primitives
     04. Buttons & chips
     05. Background & FX layers
     06. Navigation
     07. Hero
     08. Emblem (animated)
     09. Manifesto
     10. SUMMONED release + audio player
     11. Pillars + Vault
     12. Live (Twitch facade)
     13. Join + social
     14. Footer
     15. Floating UI (crosshair, quote line, sound pill, scroll progress)
     16. Intro overlay
     17. Reveal animations
     18. Embed mode
     19. Responsive
     20. Reduced motion / accessibility
   ========================================================================== */

/* ===== 01. DESIGN TOKENS ================================================== */
:root {
  /* Brand golds */
  --gold-200: #ffeaa6;
  --gold-300: #f1d18a;
  --gold-400: #e5bd6d;   /* primary */
  --gold-500: #f5c400;   /* vivid accent */
  --amber:    #bc823d;
  --bronze:   #945019;
  --ivory:    #faefc5;
  --cyan:     #3ac0ff;   /* transmission accent, used sparingly */

  /* Warm near-black surfaces */
  --ink-900: #07060a;
  --ink-850: #0b0805;
  --ink-800: #120c07;
  --ink-700: #1a1109;

  /* Text */
  --text:       rgba(250, 239, 197, 0.92);
  --text-dim:   rgba(250, 239, 197, 0.64);
  --text-faint: rgba(250, 239, 197, 0.40);

  /* Lines, glass */
  --line:        rgba(229, 189, 109, 0.18);
  --line-strong: rgba(229, 189, 109, 0.34);
  --glass:        rgba(18, 12, 7, 0.46);
  --glass-strong: rgba(10, 8, 5, 0.66);
  --blur: 14px;

  /* Type — EB Garamond sits after Cinzel ONLY to supply Greek Λ/Ξ glyphs
     (it's unicode-range-restricted to Greek; Cinzel renders all Latin). */
  --font-display: "Cinzel", "EB Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows & glows */
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(188, 130, 61, 0.10) inset;
  --glow-gold: 0 0 28px rgba(229, 189, 109, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1200px;
  --content: 1040px;
  --nav-h: 72px;
}

/* ===== 02. RESET & BASE =================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--amber) transparent;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100svh;
}

img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
::selection { background: rgba(229, 189, 109, 0.28); color: var(--ivory); }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 100000;
  padding: 10px 16px; border-radius: var(--r-sm);
  background: var(--gold-400); color: #1a1109; font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ===== 03. TYPOGRAPHY & LAYOUT PRIMITIVES ================================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: 0.01em; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.section { position: relative; padding: clamp(72px, 11vh, 150px) 0; }
/* Keep anchored sections clear of the fixed nav (native scroll + keyboard focus). */
section[id], main [id] { scroll-margin-top: calc(var(--nav-h) + 14px); }
.section__head { max-width: var(--content); margin-inline: auto; margin-bottom: clamp(36px, 6vw, 64px); }
.section__head--center { text-align: center; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-400);
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.section__head--center .eyebrow::after {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.section__title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--ivory);
  text-shadow: 0 2px 30px rgba(229, 189, 109, 0.16);
}
.section__title--xl { font-size: clamp(2.6rem, 8vw, 5.2rem); }
.section__lede {
  margin-top: 1rem; max-width: 52ch; color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.section__head--center .section__lede { margin-inline: auto; }

/* ===== 04. BUTTONS & CHIPS =============================================== */
.btn {
  --btn-bg: var(--glass);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.6em; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ivory); background: var(--btn-bg);
  border: 1px solid var(--line-strong);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease), filter 0.2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn__icon { font-size: 0.85em; line-height: 1; transform: translateY(0.5px); }

.btn--gold {
  color: #1c1206;
  background: linear-gradient(180deg, var(--gold-200), var(--gold-400) 60%, var(--amber));
  border-color: rgba(255, 234, 166, 0.5);
  box-shadow: 0 14px 40px rgba(188, 130, 61, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--gold:hover { box-shadow: 0 18px 52px rgba(229, 189, 109, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5); filter: brightness(1.04); }

.btn--ghost {
  background: linear-gradient(180deg, rgba(229, 189, 109, 0.08), rgba(0, 0, 0, 0.18));
  -webkit-backdrop-filter: blur(var(--blur)); backdrop-filter: blur(var(--blur));
}
.btn--ghost:hover { border-color: var(--gold-400); background: linear-gradient(180deg, rgba(229, 189, 109, 0.16), rgba(0, 0, 0, 0.2)); box-shadow: var(--glow-gold); }

.btn--lg { padding: 1.1em 2em; font-size: 0.92rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.6em 1.1em; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); border: 1px solid var(--line);
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--gold-400); color: var(--gold-200); background: rgba(229, 189, 109, 0.12); }

/* ===== 05. BACKGROUND & FX LAYERS ======================================== */
/* Fixed atmospheric base behind everything (warm vignette + gold blooms). */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(229, 189, 109, 0.10), transparent 60%),
    radial-gradient(900px 900px at 85% 20%, rgba(188, 130, 61, 0.08), transparent 60%),
    radial-gradient(1200px 1000px at 10% 90%, rgba(148, 80, 25, 0.10), transparent 65%),
    linear-gradient(180deg, var(--ink-850), var(--ink-900) 40%, #050407 100%);
}
/* Faint film grain to kill banding and add texture. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx-layer { position: fixed; inset: 0; z-index: 1; pointer-events: none; contain: strict; }
.fx-layer canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Keep content above the FX layer. */
.nav, main, .footer { position: relative; z-index: 2; }

/* ===== 06. NAVIGATION ==================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease); }
.nav__inner {
  width: min(100% - 2.4rem, var(--container)); margin-inline: auto;
  height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem;
}
.nav.is-scrolled {
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.82), rgba(8, 6, 4, 0.5));
  -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.nav__mark { filter: drop-shadow(0 0 10px rgba(229, 189, 109, 0.35)); }
.nav__word { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.2em; font-size: 1.02rem; color: var(--ivory); }

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text-dim);
  position: relative; padding: 0.3em 0; transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--gold-400); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ivory); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 0.8rem; }
.nav__cta { padding: 0.7em 1.2em; font-size: 0.78rem; }

.nav__toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 18px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: grid; gap: 0.2rem; padding: 0.6rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.95), rgba(8, 6, 4, 0.85));
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.nav__mobile a { padding: 0.9rem 0.4rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; color: var(--text); border-bottom: 1px solid var(--line); }
.nav__mobile a:last-child { border-bottom: 0; }

/* ===== 07. HERO ========================================================== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--nav-h) + 4vh) 1.2rem 12vh; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(0, 0, 0, 0.1), rgba(7, 6, 10, 0.55) 70%),
    linear-gradient(180deg, rgba(7, 6, 10, 0.55) 0%, rgba(7, 6, 10, 0.25) 40%, rgba(7, 6, 10, 0.85) 100%);
}
.hero__vignette { position: absolute; inset: 0; box-shadow: inset 0 0 240px 60px rgba(0, 0, 0, 0.7); background: radial-gradient(1000px 800px at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.5)); }

.hero__content { position: relative; z-index: 1; display: grid; justify-items: center; gap: clamp(0.6rem, 1.5vw, 1rem); max-width: 980px; }
.sigil { font-size: clamp(1rem, 2.4vw, 1.5rem); letter-spacing: 0.6em; color: var(--gold-400); text-indent: 0.6em; opacity: 0.9; }

.hero__word {
  font-size: clamp(2.35rem, 10vw, 7.2rem); letter-spacing: 0.1em; line-height: 0.95; max-width: 100%;
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 0.3em;
  background: linear-gradient(180deg, #fff7e2 0%, var(--gold-200) 35%, var(--gold-400) 72%, var(--amber) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 30px rgba(229, 189, 109, 0.3));
}
.hero__word-flank { font-size: 0.42em; -webkit-text-fill-color: var(--gold-400); color: var(--gold-400); opacity: 0.85; }

.hero__tagline { font-size: clamp(0.95rem, 1.8vw, 1.25rem); letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: clamp(1rem, 2vw, 1.6rem); }

.hero__scroll { position: absolute; bottom: clamp(1.4rem, 4vh, 2.6rem); left: 50%; transform: translateX(-50%); z-index: 1; display: grid; justify-items: center; gap: 0.6rem; color: var(--text-faint); }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold-400), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--gold-200); animation: scroll-pulse 2.2s var(--ease) infinite; }
.hero__scroll-text { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; }
@keyframes scroll-pulse { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ===== 08. EMBLEM (animated) ============================================= */
.emblem-wrap { width: clamp(116px, 17vw, 196px); aspect-ratio: 1; filter: drop-shadow(0 10px 40px rgba(229, 189, 109, 0.28)); }
.emblem { width: 100%; height: 100%; overflow: visible; }
.emblem__bloom { animation: emblem-bloom 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.emblem__ring-broken { transform-box: fill-box; transform-origin: center; animation: emblem-rot 26s linear infinite; }
.emblem__wings { transform-box: fill-box; transform-origin: center; animation: emblem-breathe 5s ease-in-out infinite; }
.emblem__star { transform-box: fill-box; transform-origin: center; animation: emblem-twinkle 3.6s ease-in-out infinite; }
@keyframes emblem-bloom { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes emblem-rot { to { transform: rotate(360deg); } }
@keyframes emblem-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.025); } }
@keyframes emblem-twinkle { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }

/* ===== 09. MANIFESTO ===================================================== */
.manifesto { text-align: center; }
.manifesto .eyebrow { justify-content: center; }
.manifesto__quote { max-width: 26ch; margin-inline: auto; }
.manifesto__quote p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 4.6vw, 3rem); line-height: 1.22; color: var(--ivory); margin-bottom: 0.7em; }
.manifesto__quote em { font-style: normal; background: linear-gradient(180deg, var(--gold-200), var(--gold-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.manifesto__sign { max-width: 56ch; margin: clamp(1.6rem, 4vw, 2.6rem) auto 0; color: var(--text-dim); font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: 0.02em; }
.manifesto__sign span { color: var(--gold-300); font-weight: 600; }

/* ===== 10. SUMMONED RELEASE + PLAYER ===================================== */
.release__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }

.release__cover { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line-strong); box-shadow: var(--shadow-card), 0 0 60px rgba(229, 189, 109, 0.12); transition: transform 0.5s var(--ease); }
.release__cover img { width: 100%; height: 100%; object-fit: cover; }
.release__cover:hover { transform: translateY(-4px); }
.release__cover-overlay { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 0.4rem; text-align: center; background: radial-gradient(circle at 50% 38%, rgba(10, 8, 5, 0.2), rgba(7, 6, 10, 0.78) 78%); }
.release__cover.has-real-cover .release__cover-overlay { display: none; }
.release__cover-mark { filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5)); animation: emblem-breathe 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.release__cover-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: 0.16em; color: var(--ivory); margin-top: 0.4rem; }
.release__cover-sub { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-400); }

.release__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-bottom: 1.6rem; }
.release__meta li { font-size: 0.95rem; color: var(--ivory); font-weight: 600; }
.release__meta span { display: block; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; margin-bottom: 0.25rem; }

/* Player */
.player { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--glass-strong); -webkit-backdrop-filter: blur(var(--blur)); backdrop-filter: blur(var(--blur)); box-shadow: var(--shadow-soft); }
.player__play { width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #1c1206; background: linear-gradient(180deg, var(--gold-200), var(--gold-400) 65%, var(--amber)); box-shadow: 0 8px 26px rgba(188, 130, 61, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.player__play:hover { transform: scale(1.06); box-shadow: 0 10px 34px rgba(229, 189, 109, 0.55); }
.player__icon { width: 24px; height: 24px; fill: currentColor; }
.player__icon--pause, .player__icon--muted { display: none; }
.player.is-playing .player__icon--play { display: none; }
.player.is-playing .player__icon--pause { display: block; }
.player.is-muted .player__icon--vol { display: none; }
.player.is-muted .player__icon--muted { display: block; }

.player__main { flex: 1; min-width: 0; }
.player__top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; }
.player__title { font-size: 0.82rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.player__time { font-size: 0.74rem; color: var(--text-faint); font-variant-numeric: tabular-nums; white-space: nowrap; }

.player__eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; flex: none; }
.player__eq i { width: 2.5px; height: 30%; background: var(--gold-400); border-radius: 2px; }
.player.is-playing .player__eq i { animation: eq 0.9s ease-in-out infinite; }
.player__eq i:nth-child(2) { animation-delay: 0.15s; } .player__eq i:nth-child(3) { animation-delay: 0.3s; }
.player__eq i:nth-child(4) { animation-delay: 0.45s; } .player__eq i:nth-child(5) { animation-delay: 0.6s; }
@keyframes eq { 0%, 100% { height: 25%; } 50% { height: 100%; } }

.player__scrubber { position: relative; height: 6px; border-radius: var(--r-pill); background: rgba(250, 239, 197, 0.12); cursor: pointer; }
.player__buffer { position: absolute; inset: 0; width: 0%; border-radius: inherit; background: rgba(250, 239, 197, 0.12); }
.player__progress { position: absolute; inset: 0; width: 0%; border-radius: inherit; background: linear-gradient(90deg, var(--amber), var(--gold-400) 70%, var(--gold-200)); }
.player__thumb { position: absolute; top: 50%; left: 0%; width: 13px; height: 13px; border-radius: 50%; background: var(--gold-200); transform: translate(-50%, -50%); box-shadow: 0 0 0 3px rgba(229, 189, 109, 0.25), 0 2px 6px rgba(0, 0, 0, 0.5); opacity: 0; transition: opacity 0.2s var(--ease); }
.player__scrubber:hover .player__thumb, .player__scrubber:focus-visible .player__thumb { opacity: 1; }
.player__mute { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--text-dim); border: 1px solid var(--line); transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.player__mute:hover { color: var(--gold-200); border-color: var(--gold-400); }

/* SUMMONED Spotify embed */
.release__spotify { margin: 0.2rem 0; }
.release__spotify iframe { display: block; width: 100%; border: 0; border-radius: 14px; box-shadow: var(--shadow-soft); color-scheme: normal; }

.release__links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; margin-top: 1.6rem; }
.release__links-empty { font-size: 0.86rem; color: var(--text-faint); font-style: italic; }

/* ===== 10b. THE MUSIC (auto-populating playlist) ======================== */
.music { text-align: center; }
.music .eyebrow { justify-content: center; }
.music__actions { margin-top: 1.7rem; }
.music__empty { color: var(--text-faint); margin-top: 1.6rem; }
.music__empty a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }

.tracks { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); align-items: start; max-width: 1080px; margin: 0 auto; text-align: left; }
.track { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--glass); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); animation: track-in 0.6s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 70ms); }
.track:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
@keyframes track-in { from { opacity: 0; transform: translateY(22px); } }

.track__art { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; padding: 0; border: 0; background: none; cursor: pointer; }
.track__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.track:hover .track__art img { transform: scale(1.05); }
.track__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7, 6, 10, 0.55)); opacity: 0; transition: opacity 0.3s var(--ease); }
.track:hover .track__art::after, .track__art:focus-visible::after { opacity: 1; }

.track__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.9); z-index: 1; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; pointer-events: none; color: #1c1206; background: linear-gradient(180deg, var(--gold-200), var(--gold-400) 65%, var(--amber)); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(229, 189, 109, 0.12); opacity: 0; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.track__play svg { fill: currentColor; transform: translateX(2px); }
.track:hover .track__play, .track__art:focus-visible .track__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none) { .track__play { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.track__tag { position: absolute; top: 10px; left: 10px; z-index: 1; padding: 0.35em 0.8em; border-radius: var(--r-pill); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #1c1206; background: linear-gradient(180deg, var(--gold-200), var(--gold-400)); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4); }

.track__info { padding: 1rem 1.1rem 1.1rem; }
.track__title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ivory); }
.track__meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-top: 0.25rem; }
.track__open { display: inline-flex; gap: 0.4em; margin-top: 0.7rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-400); transition: color 0.2s var(--ease), gap 0.2s var(--ease); }
.track__open:hover { color: var(--gold-200); gap: 0.6em; }

/* Centered player modal — opens in view (no scrolling), perfect on mobile + desktop */
.player-modal { position: fixed; inset: 0; z-index: 95000; display: grid; place-items: center; padding: 1.2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.player-modal.is-open { opacity: 1; pointer-events: auto; }
.player-modal__backdrop { position: absolute; inset: 0; background: rgba(4, 3, 7, 0.74); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.player-modal__panel { position: relative; z-index: 1; width: min(420px, 94vw); border-radius: var(--r-xl); border: 1px solid var(--line-strong); background: var(--glass-strong); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 40px 110px rgba(0, 0, 0, 0.66), 0 0 0 1px rgba(188, 130, 61, 0.12) inset; padding: 14px; transform: scale(0.95) translateY(10px); transition: transform 0.4s var(--ease-out); }
.player-modal.is-open .player-modal__panel { transform: none; }
.player-modal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 4px 4px 12px 8px; }
.player-modal__title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--ivory); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-modal__close { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--text-dim); border: 1px solid var(--line); background: rgba(0, 0, 0, 0.25); transition: transform 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease); }
.player-modal__close:hover { transform: scale(1.08); color: var(--gold-200); border-color: var(--gold-400); }
.player-modal__embed iframe { display: block; width: 100%; height: 352px; border: 0; border-radius: 14px; }

/* ===== 11. PILLARS + VAULT =============================================== */
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.pillar {
  position: relative; padding: 1.8rem 1.5rem 1.6rem; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, rgba(229, 189, 109, 0.05), rgba(10, 8, 5, 0.4));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-400), transparent); transform: scaleX(0); transition: transform 0.4s var(--ease); }
.pillar:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__index { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--gold-400); opacity: 0.55; letter-spacing: 0.1em; }
.pillar__title { font-size: 1.5rem; color: var(--ivory); margin: 0.5rem 0 0.7rem; }
.pillar__text { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 1.3rem; }
.pillar__text strong { color: var(--gold-300); font-weight: 600; }
.pillar__link { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-400); display: inline-flex; gap: 0.5em; transition: gap 0.25s var(--ease), color 0.2s var(--ease); }
.pillar__link:hover { color: var(--gold-200); gap: 0.85em; }

.vault { margin-top: clamp(3rem, 6vw, 5rem); }
.vault__title { text-align: center; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ivory); margin-bottom: 2rem; }
.vault__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.vault-card { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--glass); transition: transform 0.3s var(--ease), border-color 0.3s var(--ease); }
.vault-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.vault-card__art { aspect-ratio: 1; width: 100%; object-fit: cover; }
.vault-card__body { padding: 1rem 1.1rem; }
.vault-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ivory); }
.vault-card__meta { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-top: 0.2rem; }

/* ===== 12. LIVE ========================================================== */
.live { text-align: center; }
.live .eyebrow { justify-content: center; }
.live__frame { position: relative; max-width: 940px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-card), 0 0 70px rgba(229, 189, 109, 0.1); }
.live__facade { position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-items: center; }
.live__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(1.05); transition: transform 0.6s var(--ease), filter 0.4s var(--ease); }
.live__facade:hover .live__poster { transform: scale(1.04); filter: brightness(0.7); }
.live__play { position: relative; z-index: 1; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; color: #1c1206; background: linear-gradient(180deg, var(--gold-200), var(--gold-400) 65%, var(--amber)); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(229, 189, 109, 0.12); transition: transform 0.25s var(--ease); }
.live__play svg { fill: currentColor; transform: translateX(2px); }
.live__facade:hover .live__play { transform: scale(1.08); }
.live__badge { position: absolute; top: 1rem; left: 1rem; z-index: 1; padding: 0.4em 0.9em; border-radius: var(--r-pill); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); background: rgba(10, 8, 5, 0.6); border: 1px solid var(--line); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.live__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.live__actions { margin-top: 2rem; }

/* ===== 12b. BETS (ARXΛNGΞL Bets micro-app) ============================== */
.bets { text-align: center; }
.bets .eyebrow { justify-content: center; }
.bets__frame { max-width: 1000px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); background: var(--glass); box-shadow: var(--shadow-card), 0 0 70px rgba(229, 189, 109, 0.10); }
.bets__iframe { display: block; width: 100%; height: 880px; border: 0; background: transparent; }
@media (max-width: 760px) { .bets__iframe { height: 1280px; } }

/* ===== 13. JOIN + SOCIAL ================================================= */
.join { text-align: center; }
.join__inner { max-width: 720px; }
.join .eyebrow { justify-content: center; }
.join__text { margin: 1.2rem auto 0; max-width: 46ch; color: var(--text-dim); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.join__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }
.social { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; justify-content: center; margin-top: 2.6rem; }
.social a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); position: relative; transition: color 0.2s var(--ease); }
.social a:hover { color: var(--gold-200); }

/* ===== 14. FOOTER ======================================================== */
.footer { border-top: 1px solid var(--line); padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.footer__inner { display: grid; gap: 1.4rem; justify-items: center; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__mark { filter: drop-shadow(0 0 10px rgba(229, 189, 109, 0.3)); }
.footer__word { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.22em; color: var(--ivory); }
.footer__transmission { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center; }
.footer__nav a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--gold-200); }
.footer__row { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; justify-content: center; margin-top: 0.4rem; }
.footer__share { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); border: 1px solid var(--line); padding: 0.6em 1.1em; border-radius: var(--r-pill); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.footer__share:hover { border-color: var(--gold-400); color: var(--gold-200); }
.footer__copy { color: var(--text-faint); font-size: 0.74rem; }

/* ===== 15. FLOATING UI =================================================== */
/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; pointer-events: none; }
.scroll-progress__bar { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--amber), var(--gold-400), var(--gold-200)); box-shadow: 0 0 12px rgba(229, 189, 109, 0.5); }

/* Crosshair cursor */
html.ax-cursor-on, html.ax-cursor-on * { cursor: none !important; }
.ax-xhair { position: fixed; left: 0; top: 0; width: 28px; height: 28px; margin: -14px 0 0 -14px; z-index: 99990; pointer-events: none; opacity: 0; transform: translate3d(-9999px, -9999px, 0); will-change: transform, opacity; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 14px rgba(245, 196, 0, 0.3)); transition: opacity 0.18s var(--ease); }
.ax-xhair svg { width: 100%; height: 100%; }
.ax-xhair .ring { fill: none; }
.ax-xhair .ring.outer { stroke: var(--gold-200); stroke-width: 2.2; animation: xhair-breathe 2.6s ease-in-out infinite; }
.ax-xhair .ring.inner { stroke: var(--gold-500); stroke-width: 1.6; }
.ax-xhair .tick { stroke: var(--ivory); stroke-width: 1.2; opacity: 0.85; }
.ax-xhair .dot { fill: var(--gold-500); }
.ax-xhair.is-aim .ring.inner, .ax-xhair.is-aim .dot { stroke: var(--gold-200); fill: var(--gold-200); }
.ax-xhair__flash { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold-500); opacity: 0; transform: scale(0.7); }
.ax-xhair.is-fire .ax-xhair__flash { animation: xhair-flash 0.28s ease-out; }
@keyframes xhair-breathe { 50% { stroke-width: 2.7; } }
@keyframes xhair-flash { 0% { opacity: 0.85; transform: scale(0.7); } 80% { opacity: 0.12; transform: scale(1.35); } 100% { opacity: 0; transform: scale(1.45); } }

/* Rotating transmission line */
.quote-line { position: fixed; left: 0; right: 0; bottom: 18px; z-index: 8; pointer-events: none; text-align: center; padding: 0 1rem; }
.quote-line__text { display: inline-block; max-width: 92vw; font-weight: 700; font-size: clamp(0.85rem, 1.6vw, 1.2rem); letter-spacing: 0.02em; background: linear-gradient(180deg, var(--gold-200), var(--gold-500) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35); opacity: 0; transition: opacity 0.65s var(--ease); }
.quote-line__text.is-active { opacity: 0.96; }

/* Sound pill */
.sound-pill { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(229, 189, 109, 0.16), rgba(0, 0, 0, 0.5)); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); color: var(--text); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), filter 0.2s var(--ease); }
.sound-pill.is-shown { opacity: 1; transform: translateY(0); }
.sound-pill:hover { filter: brightness(1.08); }
.sound-pill__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 14px rgba(229, 189, 109, 0.6); animation: pill-pulse 1.6s ease-in-out infinite; }
.sound-pill.is-off .sound-pill__dot { animation: none; background: var(--text-faint); box-shadow: none; }
@keyframes pill-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.15); opacity: 1; } }

/* Share popover + toast */
.share-pop { position: fixed; z-index: 75; min-width: 210px; padding: 6px; border-radius: var(--r); border: 1px solid var(--line-strong); background: var(--glass-strong); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--shadow-card); display: grid; gap: 2px; }
.share-pop__item { display: block; width: 100%; text-align: left; padding: 10px 12px; border-radius: var(--r-sm); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text); transition: background 0.15s var(--ease), color 0.15s var(--ease); }
.share-pop__item:hover { background: rgba(229, 189, 109, 0.12); color: var(--gold-200); }
.share-toast { position: fixed; left: 50%; bottom: 80px; transform: translate(-50%, 8px); z-index: 80; padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: var(--glass-strong); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: var(--ivory); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.share-toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ===== 16. INTRO OVERLAY ================================================= */
.intro { position: fixed; inset: 0; z-index: 90000; display: grid; place-items: center; padding: 1.2rem; opacity: 0; pointer-events: none; transition: opacity 0.9s var(--ease); background: radial-gradient(1200px 800px at 50% 45%, rgba(229, 189, 109, 0.1) 0%, rgba(188, 130, 61, 0.06) 35%, rgba(0, 0, 0, 0.82) 72%, rgba(0, 0, 0, 0.94) 100%); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.intro.is-shown { opacity: 1; pointer-events: auto; }
.intro.is-hidden { opacity: 0; pointer-events: none; }
.intro__card { position: relative; display: grid; justify-items: center; gap: 1rem; text-align: center; padding: clamp(2rem, 5vw, 3rem); border-radius: var(--r-xl); max-width: min(560px, 92vw); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(250, 239, 197, 0.05), rgba(0, 0, 0, 0.35)); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transform: scale(0.94); transition: transform 0.9s var(--ease-out); }
.intro.is-shown .intro__card { transform: none; }
.intro__emblem { width: clamp(120px, 30vw, 180px); aspect-ratio: 1; filter: drop-shadow(0 10px 40px rgba(229, 189, 109, 0.3)); animation: emblem-breathe 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.intro__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.1rem, 3vw, 1.6rem); letter-spacing: 0.16em; color: var(--ivory); }
.intro__sub { color: var(--text-dim); font-size: 0.95rem; }
.intro__sub b { color: var(--gold-300); }
.intro__hint { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-top: 0.4rem; }

/* ===== 17. REVEAL ANIMATIONS ============================================= */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: calc(var(--reveal-delay, 0) * 110ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== 18. EMBED MODE ==================================================== */
/* Applied when the site is loaded inside an iframe or with ?embed=1.
   Strips full-screen chrome so it nests cleanly inside Carrd. */
.is-embed body, body.is-embed { background: transparent; }
.is-embed .nav, .is-embed .intro, .is-embed .quote-line, .is-embed .scroll-progress, .is-embed .sound-pill, .is-embed .hero__scroll { display: none !important; }
.is-embed .ax-xhair { display: none !important; }
.is-embed.ax-cursor-on, .is-embed.ax-cursor-on * { cursor: auto !important; }
.is-embed body::before, .is-embed body::after { display: none; }
.is-embed .hero { min-height: auto; padding-top: 8vh; }

/* ===== 19. RESPONSIVE ==================================================== */
@media (max-width: 980px) {
  .release__grid { grid-template-columns: 1fr; }
  .release__cover { max-width: 420px; margin-inline: auto; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .player { flex-wrap: wrap; }
  .player__main { order: 3; flex-basis: 100%; }
}
@media (max-width: 540px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .join__cta .btn { width: 100%; }
  .btn { padding: 0.95em 1.2em; }
  /* Keep the wordmark from overflowing very narrow screens. */
  .hero__word { letter-spacing: 0.02em; gap: 0.16em; }
  .hero__word-flank { font-size: 0.34em; }
  .hero__tagline { letter-spacing: 0.1em; }
}

/* ===== 20. REDUCED MOTION / ACCESSIBILITY =============================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__scroll-line::after { display: none; }
}
