:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-2: #090b14;
  --card: rgba(12, 13, 22, 0.76);
  --line: rgba(231, 184, 92, 0.32);
  --line-strong: rgba(238, 194, 105, 0.72);
  --gold: #f1c66d;
  --gold-2: #a8742d;
  --cream: #fff2cf;
  --muted: #c7bdd0;
  --violet: #8f57ff;
  --blue: #6fb8ff;
  --shadow: #05050b;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 18% 12%, rgba(145, 87, 255, .2), transparent 28%), radial-gradient(circle at 80% 10%, rgba(241, 198, 109, .14), transparent 25%), var(--bg);
  color: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  z-index: -1;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.shell { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: #111; padding: 10px 14px; border-radius: 999px; z-index: 1000; }
.skip-link:focus { left: 12px; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 3vw, 44px);
  background: linear-gradient(to bottom, rgba(5, 6, 11, .88), rgba(5, 6, 11, .38), transparent);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(5, 6, 11, .82); border-bottom-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; min-width: 0; font-family: Georgia, serif; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.brand-logo { width: 34px; height: 34px; border: 1px solid rgba(241,198,109,.36); border-radius: 50%; object-fit: cover; object-position: center; box-shadow: 0 0 22px rgba(241,198,109,.18); }
.menu-toggle { display: inline-grid; gap: 5px; place-content: center; width: 44px; height: 44px; border: 1px solid rgba(241,198,109,.32); border-radius: 50%; background: rgba(5,6,11,.46); color: var(--cream); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: var(--cream); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.admin-cta { flex: 0 0 auto; }
.nav { position: fixed; top: 72px; right: clamp(14px, 3vw, 44px); z-index: 51; display: grid; gap: 8px; width: min(300px, calc(100vw - 28px)); padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(5,6,11,.92); box-shadow: 0 22px 70px rgba(0,0,0,.42); backdrop-filter: blur(18px); font-size: .95rem; color: var(--muted); }
.nav[hidden] { display: none; }
.nav a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; border-radius: 12px; background: rgba(255,255,255,.035); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--gold); background: rgba(241,198,109,.09); }
.nav-cta { color: #100904 !important; background: linear-gradient(135deg, var(--gold), #fff0b8); padding: 9px 14px; border-radius: 999px; font-weight: 800; }
.hero { min-height: 100svh; position: relative; display: grid; place-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('/assets/images/sigil-eye.jpg'); background-size: cover; background-position: center; transform: scale(1.04); filter: saturate(1.15) contrast(1.06); opacity: .88; }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(circle at 53% 40%, rgba(5,6,11,.05) 0, rgba(5,6,11,.18) 34%, rgba(5,6,11,.9) 84%), linear-gradient(90deg, rgba(5,6,11,.94), rgba(5,6,11,.34) 52%, rgba(5,6,11,.86)); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 360px); gap: clamp(28px, 5vw, 70px); align-items: center; }
.eyebrow { color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.04; margin: 0; font-weight: 700; }
h1 { font-size: clamp(3.4rem, 9vw, 8.6rem); letter-spacing: -.055em; text-shadow: 0 0 28px rgba(0,0,0,.9), 0 0 44px rgba(241,198,109,.25); max-width: 820px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
.hero-deck { max-width: 680px; font-size: clamp(1.06rem, 2vw, 1.38rem); color: #f4e6d2; margin: 26px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #160d03; background: linear-gradient(135deg, #ffdd83, #c8842e 55%, #fff2b8); box-shadow: 0 12px 38px rgba(241,198,109,.23); }
.button-secondary { color: var(--cream); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.button-ghost { color: var(--cream); background: transparent; }
.free-note { color: var(--muted); margin-top: 14px; }
.cover-card { justify-self: center; width: min(100%, 360px); background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04)); border: 1px solid var(--line); border-radius: 24px; padding: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.55); transform: perspective(1200px) rotateY(-6deg) rotateX(2deg); }
.cover-link { position: relative; display: block; border-radius: 16px; overflow: hidden; }
.cover-card img { width: 100%; height: auto; max-height: min(66svh, 560px); object-fit: contain; border-radius: 16px; border: 1px solid rgba(255,255,255,.18); }
.cover-link span { position: absolute; left: 12px; right: 12px; bottom: 12px; display: inline-flex; align-items: center; justify-content: center; min-height: 42px; border: 1px solid rgba(241,198,109,.5); border-radius: 999px; background: rgba(5,6,11,.68); color: var(--gold); font-weight: 900; backdrop-filter: blur(12px); }
.cover-link:hover img { filter: saturate(1.08) contrast(1.04); }
.download-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .8rem; padding: 12px 4px 2px; }
.download-meta a { color: var(--gold); font-weight: 800; }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(5,6,11,.76); backdrop-filter: blur(18px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stats-grid div { padding: 22px 20px; border-left: 1px solid var(--line); }
.stats-grid div:last-child { border-right: 1px solid var(--line); }
.stats-grid strong { display: block; font-family: Georgia, serif; font-size: 1.24rem; color: var(--gold); }
.stats-grid span { color: var(--muted); font-size: .92rem; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.split-section { display: grid; grid-template-columns: 1fr 360px; gap: clamp(30px, 6vw, 88px); align-items: center; }
.section-copy p, .section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-copy > p { max-width: 720px; }
.mini-quote { margin-top: 32px; padding: 24px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(241,198,109,.12), transparent); font-family: Georgia, serif; font-size: 1.22rem; color: var(--cream); }
.integration-image { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); box-shadow: 0 0 80px rgba(143,87,255,.2), 0 0 80px rgba(241,198,109,.12); }
.integration-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.vision-panel { background: linear-gradient(180deg, rgba(143,87,255,.08), rgba(241,198,109,.08)); border-block: 1px solid var(--line); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vision-card { padding: 34px; background: var(--card); border: 1px solid var(--line); border-radius: 28px; min-height: 280px; }
.symbol { font-size: 3rem; color: var(--gold); text-shadow: 0 0 35px rgba(241,198,109,.55); }
.vision-card p { color: var(--muted); }
.sample-section { padding-top: 90px; padding-bottom: 90px; }
.sample-card { padding: clamp(28px, 5vw, 64px); border: 1px solid var(--line); border-radius: 34px; background: radial-gradient(circle at 20% 0%, rgba(241,198,109,.15), transparent 30%), radial-gradient(circle at 100% 40%, rgba(143,87,255,.14), transparent 36%), rgba(8,9,16,.82); box-shadow: 0 30px 90px rgba(0,0,0,.38); }
blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.4rem, 3vw, 2.5rem); line-height: 1.25; }
.inline-link { color: var(--gold); border-bottom: 1px solid var(--gold); font-weight: 800; }
.album-section { position: relative; overflow: hidden; background: radial-gradient(circle at 20% 18%, rgba(111,184,255,.17), transparent 30%), radial-gradient(circle at 88% 12%, rgba(241,198,109,.12), transparent 24%), #05060d; border-block: 1px solid var(--line); }
.album-shell { position: relative; }
.album-product { position: relative; display: block; max-width: 760px; margin: -18px auto 34px; border: 1px solid rgba(241,198,109,.3); border-radius: 24px; overflow: hidden; background: #020204; box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.album-product img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.album-product span { position: absolute; left: 18px; right: 18px; bottom: 18px; display: inline-flex; justify-content: center; align-items: center; min-height: 50px; border: 1px solid rgba(241,198,109,.58); border-radius: 999px; background: rgba(5,6,11,.7); color: var(--gold); font-weight: 950; backdrop-filter: blur(14px); box-shadow: 0 16px 42px rgba(0,0,0,.38); }
.album-player { display: grid; grid-template-columns: minmax(280px, 520px) minmax(320px, .9fr); gap: 18px; align-items: start; justify-content: center; }
.album-stage { position: relative; width: min(100%, 520px); aspect-ratio: 9 / 16; justify-self: center; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 28px; background: #05060b; box-shadow: 0 34px 90px rgba(0,0,0,.5); }
.album-video, .album-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.album-video { z-index: 1; opacity: 1; filter: saturate(1.08) contrast(1.03); }
.album-fallback { z-index: 0; opacity: 1; filter: saturate(1.08) contrast(1.03); }
.album-stage-shade { display: none; }
.album-top-controls { position: absolute; inset: 14px 14px auto 14px; z-index: 6; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 8px; align-items: center; pointer-events: none; }
.album-play-toggle,
.album-info-button,
.album-state { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; border: 1px solid rgba(241,198,109,.48); border-radius: 999px; background: rgba(5,6,11,.66); color: var(--gold); font-weight: 900; backdrop-filter: blur(12px); box-shadow: 0 12px 34px rgba(0,0,0,.35); }
.album-play-toggle,
.album-info-button { pointer-events: auto; cursor: pointer; }
.album-play-toggle { min-width: 76px; padding: 0 14px; }
.album-state { justify-self: start; padding: 0 12px; color: var(--cream); letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; }
.album-state[hidden] { display: none; }
.album-info-button { width: 38px; padding: 0; font-family: Georgia, serif; font-size: 1.2rem; line-height: 1; }
.album-now { display: none; position: absolute; inset: 18px auto auto 18px; z-index: 3; padding: 0; }
.album-now .eyebrow { display: inline-flex; align-items: center; min-height: 34px; margin: 0; padding: 0 12px; border: 1px solid rgba(241,198,109,.48); border-radius: 999px; background: rgba(5,6,11,.62); backdrop-filter: blur(12px); color: var(--gold); box-shadow: 0 12px 34px rgba(0,0,0,.35); }
.album-now h3,
.album-now p:not(.eyebrow),
.album-tags { display: none; }
.album-tags { flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.album-tags span { max-width: 100%; padding: 7px 10px; border: 1px solid rgba(241,198,109,.35); border-radius: 999px; background: rgba(5,6,11,.66); color: var(--gold); font-size: .76rem; font-weight: 800; overflow-wrap: anywhere; }
.album-skip-controls { position: absolute; inset: 0; z-index: 4; pointer-events: none; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; }
.album-skip-controls button { pointer-events: auto; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(241,198,109,.5); border-radius: 50%; background: rgba(5,6,11,.58); color: var(--cream); font-size: 2.4rem; line-height: 1; cursor: pointer; backdrop-filter: blur(12px); transition: transform .2s ease, background .2s ease; }
.album-skip-controls button:hover { transform: translateY(-1px); background: rgba(241,198,109,.16); }
.album-lyrics-panel { position: absolute; inset: 0; z-index: 7; display: grid; grid-template-rows: auto auto minmax(0, 1fr); align-content: start; gap: 12px; padding: 64px 24px 24px; background: rgba(0,0,0,.72); color: var(--cream); backdrop-filter: blur(8px); overflow-y: auto; }
.album-lyrics-panel[hidden] { display: none; }
.album-lyrics-panel h3 { font-size: clamp(1.4rem, 4vw, 2.3rem); overflow-wrap: anywhere; }
.album-lyrics-panel p:not(.eyebrow) { margin: 0; color: #fff5d8; font-size: clamp(.95rem, 2.2vw, 1.08rem); line-height: 1.55; white-space: pre-wrap; }
.album-lyrics-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid rgba(241,198,109,.48); border-radius: 50%; background: rgba(5,6,11,.66); color: var(--cream); font-size: 1.55rem; line-height: 1; cursor: pointer; }
.album-panel { display: flex; flex-direction: column; gap: 16px; max-height: none; padding: 18px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03)); box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.album-cover-line { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 16px; align-items: center; }
.album-cover-line img { width: 112px; height: 112px; object-fit: cover; border: 1px solid var(--line); border-radius: 18px; background: #111; }
.album-cover-line p { margin: 8px 0 0; color: var(--muted); }
.album-cover-line h3 { overflow-wrap: anywhere; }
.album-current { padding: 14px; border: 1px solid rgba(241,198,109,.24); border-radius: 18px; background: rgba(5,6,11,.38); }
.album-current .eyebrow { margin-bottom: 8px; }
.album-current h3 { font-size: 1.26rem; overflow-wrap: anywhere; }
.album-current p:not(.eyebrow) { margin: 8px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.album-panel audio { width: 100%; accent-color: var(--gold); }
.album-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.album-links .button { min-height: 44px; padding-inline: 10px; text-align: center; }
.album-list { display: grid; gap: 8px; min-height: 0; overflow: visible; padding-right: 0; }
.album-list p { color: var(--muted); margin: 0; }
.track-button { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; align-items: center; width: 100%; min-height: 58px; padding: 10px 12px; border: 1px solid rgba(241,198,109,.22); border-radius: 16px; background: rgba(255,255,255,.045); color: var(--cream); text-align: left; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.track-button:hover, .track-button[aria-pressed="true"] { border-color: var(--line-strong); background: rgba(241,198,109,.11); transform: translateY(-1px); }
.track-number { color: var(--gold); font-family: Georgia, serif; font-weight: 900; }
.track-copy { min-width: 0; }
.track-copy strong { display: -webkit-box; overflow: hidden; font-size: .95rem; line-height: 1.18; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.track-copy span { display: block; color: var(--muted); font-size: .76rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-duration { color: var(--gold); font-size: .78rem; font-weight: 900; }
.gallery-section { background: #060710; border-block: 1px solid var(--line); }
.section-heading { text-align: center; max-width: 850px; margin: 0 auto 44px; }
.gallery-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #111; min-height: 380px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; inset: auto 14px 14px; padding: 12px 14px; border: 1px solid rgba(241,198,109,.32); border-radius: 999px; background: rgba(5,6,11,.72); backdrop-filter: blur(12px); color: var(--cream); font-size: .9rem; }
.book-art-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; align-items: start; }
.book-art-card { margin: 0; overflow: hidden; border: 1px solid rgba(241,198,109,.26); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.book-art-card a { display: block; color: inherit; }
.book-art-card img { aspect-ratio: 7 / 10; width: 100%; object-fit: cover; border-bottom: 1px solid rgba(241,198,109,.2); transition: filter .2s ease, transform .45s ease; }
.book-art-card:hover img { filter: saturate(1.13) contrast(1.05); transform: scale(1.025); }
.book-art-card figcaption { color: var(--gold); font-family: Georgia, serif; font-size: .86rem; letter-spacing: .08em; padding: 10px 12px 12px; text-align: center; text-transform: uppercase; }
.series-section { overflow: hidden; }
.series-track { display: grid; grid-template-columns: repeat(5, minmax(210px, 1fr)); gap: 14px; overflow-x: auto; padding-bottom: 8px; }
.series-track article { min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); }
.series-track span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); margin-bottom: 16px; font-family: Georgia, serif; font-weight: 900; }
.series-track p { color: var(--muted); }
.author-section { background: radial-gradient(circle at 80% 20%, rgba(143,87,255,.17), transparent 26%), #060710; }
.author-grid { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: stretch; }
.reader-list, .author-copy { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--card); }
.reader-list p, .author-copy p { color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
details { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.045); padding: 20px; }
summary { cursor: pointer; font-family: Georgia, serif; font-size: 1.18rem; color: var(--gold); }
details p { color: var(--muted); }
.final-download { padding-top: 40px; }
.final-card { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: center; border: 1px solid var(--line-strong); border-radius: 34px; padding: 28px; background: linear-gradient(135deg, rgba(241,198,109,.14), rgba(143,87,255,.12)); }
.final-card img { border-radius: 22px; border: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; background: #030409; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.footer-grid strong { color: var(--gold); font-family: Georgia, serif; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid div:last-child { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--gold); }
.toast { position: fixed; bottom: 18px; right: 18px; padding: 12px 16px; background: rgba(5,6,11,.9); border: 1px solid var(--line); border-radius: 999px; color: var(--gold); opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; z-index: 80; }
.toast.show { opacity: 1; transform: translateY(0); }
.art-lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(16px, 3vw, 34px); background: rgba(0,0,0,.7); }
.art-lightbox[hidden] { display: none; }
.lightbox-frame { margin: 0 auto; width: min(100%, 1120px); max-height: calc(100svh - 80px); display: grid; grid-template-rows: minmax(0, 1fr) auto; border: 1px solid rgba(241,198,109,.45); border-radius: 18px; overflow: hidden; background: rgba(5,6,11,.88); box-shadow: 0 34px 100px rgba(0,0,0,.7); }
.lightbox-frame img { width: 100%; max-height: calc(100svh - 146px); object-fit: contain; background: #020204; }
.lightbox-frame figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 12px 16px; color: var(--gold); font-family: Georgia, serif; letter-spacing: .06em; text-transform: uppercase; }
.lightbox-close, .lightbox-nav { border: 1px solid rgba(241,198,109,.45); background: rgba(5,6,11,.72); color: var(--cream); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--line-strong); background: rgba(241,198,109,.13); transform: translateY(-1px); }
.lightbox-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; width: 54px; height: 76px; border-radius: 999px; font-size: 3rem; line-height: 1; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(calc(-50% - 1px)); }
.lightbox-prev { left: clamp(10px, 3vw, 32px); }
.lightbox-next { right: clamp(10px, 3vw, 32px); }
.reader-page { background: radial-gradient(circle at 18% 10%, rgba(111,184,255,.16), transparent 30%), radial-gradient(circle at 82% 6%, rgba(241,198,109,.12), transparent 24%), #05060b; }
.reader-main { min-height: 100svh; padding: 110px 0 48px; }
.reader-hero { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: 22px; align-items: end; margin-bottom: 22px; }
.reader-heading h1 { font-size: clamp(3rem, 8vw, 6.8rem); letter-spacing: -.045em; }
.reader-heading p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }
.reader-toolbar { display: grid; grid-template-columns: 128px repeat(5, minmax(0, auto)); gap: 10px; align-items: center; justify-content: end; padding: 16px; border: 1px solid var(--line); border-radius: 24px; background: rgba(7,8,15,.72); box-shadow: 0 24px 70px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
.reader-page-control { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: center; min-height: 48px; padding: 0 12px; border: 1px solid rgba(241,198,109,.32); border-radius: 999px; color: var(--gold); font-weight: 900; }
.reader-page-control input { width: 56px; border: 0; background: transparent; color: var(--cream); font: inherit; font-weight: 900; outline: none; }
.reader-toolbar .button { min-height: 48px; padding-inline: 14px; white-space: nowrap; }
.reader-status { grid-column: 1 / -1; margin: 2px 2px 0; color: var(--muted); font-size: .88rem; text-align: right; }
.reader-frame-shell { padding-bottom: 30px; }
.pdf-frame { display: block; width: 100%; height: min(86svh, 980px); min-height: 680px; border: 1px solid var(--line-strong); border-radius: 24px; background: #12131b; box-shadow: 0 34px 100px rgba(0,0,0,.48); }
.admin-main { min-height: 100svh; display: grid; place-items: center; padding-top: 120px; padding-bottom: 70px; }
.admin-card { width: min(100%, 760px); padding: clamp(24px, 5vw, 54px); border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 12% 0, rgba(241,198,109,.13), transparent 32%), rgba(7,8,15,.84); box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.admin-card h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.admin-form-row, .admin-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.admin-label { display: grid; gap: 8px; margin-top: 22px; color: var(--gold); font-weight: 900; }
.admin-label input, .admin-form-row input { width: 100%; min-height: 50px; border: 1px solid rgba(241,198,109,.34); border-radius: 16px; background: rgba(255,255,255,.07); color: var(--cream); font: inherit; padding: 0 14px; outline: none; }
.admin-form-row input { flex: 1 1 180px; }
.admin-status { min-height: 1.5em; color: var(--muted); }
.admin-hint { color: var(--muted); font-size: .92rem; margin: 18px 0 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@media (max-width: 920px) {
  .hero-grid, .split-section, .author-grid, .final-card, .album-player, .reader-hero { grid-template-columns: 1fr; }
  .cover-card { max-width: 340px; transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid, .gallery-grid, .faq-grid { grid-template-columns: 1fr; }
  .album-panel { max-height: none; }
  .book-art-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item, .gallery-item.tall { min-height: 360px; grid-row: auto; }
  .reader-toolbar { grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: stretch; }
  .reader-page-control { grid-column: span 1; }
  .reader-toolbar .button { width: 100%; }
}
@media (max-width: 560px) {
  .shell { padding-inline: 18px; }
  .site-header { padding: 12px 14px; }
  .brand { letter-spacing: .08em; }
  .brand-logo { width: 28px; height: 28px; }
  .menu-toggle { width: 40px; height: 40px; }
  .nav-cta { padding: 8px 10px; }
  .hero { padding-top: 98px; }
  h1 { font-size: 3.2rem; }
  .cover-card { width: min(78vw, 320px); padding: 10px; }
  .cover-card img { max-height: 460px; }
  .download-meta { flex-direction: column; gap: 2px; }
  .integration-image img { aspect-ratio: 4 / 5; }
  .album-product { border-radius: 18px; margin-bottom: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 1px solid var(--line); }
  .album-stage { aspect-ratio: 9 / 16; border-radius: 22px; }
  .album-top-controls { inset: 12px 12px auto 12px; gap: 6px; }
  .album-play-toggle { min-width: 66px; padding-inline: 11px; }
  .album-state { padding-inline: 9px; font-size: .6rem; letter-spacing: .08em; }
  .album-info-button { width: 36px; }
  .album-now { inset: 14px auto auto 14px; padding: 0; }
  .album-now .eyebrow { min-height: 32px; padding-inline: 10px; font-size: .68rem; }
  .album-panel { padding: 14px; border-radius: 22px; }
  .album-cover-line { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; }
  .album-cover-line img { width: 78px; height: 78px; border-radius: 14px; }
  .album-links { grid-template-columns: 1fr; }
  .track-button { grid-template-columns: 34px minmax(0, 1fr) auto; min-height: 62px; padding: 10px; }
  .track-copy span { white-space: nowrap; }
  .book-art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .book-art-card { border-radius: 14px; }
  .book-art-card figcaption { font-size: .72rem; padding: 8px 8px 9px; }
  .final-card { padding: 18px; }
  .art-lightbox { padding: 54px 12px 16px; }
  .lightbox-frame { width: 100%; max-height: calc(100svh - 82px); }
  .lightbox-frame img { max-height: calc(100svh - 144px); }
  .lightbox-frame figcaption { font-size: .78rem; }
  .lightbox-nav { width: 44px; height: 52px; font-size: 2.2rem; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .reader-main { padding-top: 92px; }
  .reader-hero { margin-bottom: 16px; }
  .reader-heading h1 { font-size: 3.2rem; }
  .reader-toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px; border-radius: 18px; }
  .reader-page-control { grid-column: 1 / -1; justify-content: space-between; }
  .reader-status { text-align: left; }
  .pdf-frame { min-height: 620px; height: 78svh; border-radius: 18px; }
  .admin-main { padding-top: 92px; }
  .admin-form-row .button, .admin-actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
