:root {
  --bg: #1c1c1f;
  --bg-deep: #121214;
  --bg-elevated: #242428;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.075);
  --surface-active: rgba(255, 255, 255, 0.1);
  --text: #f7f6f2;
  --muted: rgba(247, 246, 242, 0.72);
  --dim: rgba(247, 246, 242, 0.44);
  --accent: #8bb8e8;
  --accent-bright: #8bb8e8;
  --accent-deep: #5a8fd4;
  --accent-hover: #5a8fd4;
  --accent-glow: rgba(139, 184, 232, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(139, 184, 232, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.006em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(139, 184, 232, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 85% 25%,
      rgba(82, 130, 200, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 35% at 15% 65%,
      rgba(145, 185, 230, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 100%,
      rgba(180, 60, 30, 0.04) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #1c1c1f 0%, #1a1a1d 40%, #181819 70%, #161617 100%);
  background-attachment: fixed;
}

/* ── Ambient Blizzard Canvas ─────────────────────────────────────────── */

#blizzard-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-bright);
}

/* ── Header ─────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 44px;
  border-bottom: 1px solid var(--border);
  background: rgba(22, 22, 25, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(139, 184, 232, 0.08) inset;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 184, 232, 0.15) 20%,
    rgba(145, 185, 230, 0.25) 50%,
    rgba(139, 184, 232, 0.15) 80%,
    transparent 100%
  );
  animation: headerGlow 8s ease-in-out infinite;
}

@keyframes headerGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.logo:hover {
  opacity: 0.88;
  text-decoration: none;
  transform: translateY(-0.5px);
}

.logo span {
  background: linear-gradient(
    135deg,
    var(--accent-bright) 0%,
    var(--accent-deep) 50%,
    var(--accent-bright) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  filter: drop-shadow(0 0 12px rgba(139, 184, 232, 0.35));
  animation: logoShimmer 6s ease-in-out infinite;
}

@keyframes logoShimmer {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(139, 184, 232, 0.3));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 18px rgba(139, 184, 232, 0.5));
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 50%,
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[href="purchase.html"] {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #111;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(139, 184, 232, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.site-nav a[href="purchase.html"]::after {
  display: none;
}

.site-nav a[href="purchase.html"]:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 18px rgba(139, 184, 232, 0.45);
  transform: translateY(-1px);
  color: #111;
}

.site-nav a[href="purchase.html"][aria-current="page"] {
  filter: brightness(1.05);
  box-shadow: 0 0 0 2px rgba(139, 184, 232, 0.35);
  color: #111;
}

/* ── Main Layout ────────────────────────────────────────────────────── */

main {
  flex: 1;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 6.5rem 5vw 5.5rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8.5vw, 4.85rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  color: #ffffff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(139, 184, 232, 0.08);
  animation: heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {
  0%,
  100% {
    text-shadow:
      0 2px 24px rgba(0, 0, 0, 0.4),
      0 0 60px rgba(139, 184, 232, 0.08);
  }
  50% {
    text-shadow:
      0 2px 24px rgba(0, 0, 0, 0.4),
      0 0 80px rgba(139, 184, 232, 0.15);
  }
}

.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .button,
.hero .button-secondary {
  min-width: 180px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
}

/* ── Buttons ────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--accent-bright) 0%,
    var(--accent-deep) 50%,
    var(--accent-bright) 100%
  );
  background-size: 200% 200%;
  color: #111;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.015em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 18px rgba(139, 184, 232, 0.25),
    0 0 0 0 rgba(139, 184, 232, 0.3);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.2s ease,
    background-position 0.4s ease;
  animation: buttonGradient 4s ease-in-out infinite;
}

@keyframes buttonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.button:hover {
  filter: brightness(1.12);
  box-shadow:
    0 8px 28px rgba(139, 184, 232, 0.45),
    0 0 0 4px rgba(139, 184, 232, 0.12);
  color: #111;
  text-decoration: none;
  transform: translateY(-2px);
  animation: buttonGradient 2s ease-in-out infinite;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  animation: none;
}

.button-secondary:hover {
  background: rgba(139, 184, 232, 0.08);
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow:
    0 6px 22px rgba(139, 184, 232, 0.18),
    0 0 0 3px rgba(139, 184, 232, 0.08);
}

/* ── Section Containers ─────────────────────────────────────────────── */

.intro,
.features,
.cta-section,
.page-content,
.volume-list,
.preview,
.purchase,
.contact,
.faq,
.not-found {
  padding: 4.5rem 5vw;
  max-width: 920px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.intro h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.intro p {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ── Feature Cards ──────────────────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  padding-top: 2rem;
}

.features article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(139, 184, 232, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 184, 232, 0.5),
    rgba(145, 185, 230, 0.6),
    rgba(139, 184, 232, 0.5),
    transparent
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: shimmerBorder 3s linear infinite;
}

@keyframes shimmerBorder {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.features article:hover {
  transform: translateY(-6px);
  background: var(--surface-hover);
  border-color: rgba(139, 184, 232, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(139, 184, 232, 0.15),
    0 0 0 1px rgba(139, 184, 232, 0.1);
  animation: cardPulse 2.5s ease-in-out infinite;
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.45),
      0 0 30px rgba(139, 184, 232, 0.15),
      0 0 0 1px rgba(139, 184, 232, 0.1);
  }
  50% {
    box-shadow:
      0 20px 55px rgba(0, 0, 0, 0.5),
      0 0 45px rgba(139, 184, 232, 0.25),
      0 0 0 1px rgba(139, 184, 232, 0.2);
  }
}

.features article:hover::before {
  opacity: 1;
}

.features h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-bright);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.features p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.cta-section {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 5vw;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

/* ── Eyebrow ────────────────────────────────────────────────────────── */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-bright);
  margin: 0 0 1rem;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139, 184, 232, 0.08);
  border: 1px solid rgba(139, 184, 232, 0.2);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(139, 184, 232, 0.1);
  animation: eyebrowPulse 4s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(139, 184, 232, 0.1);
    border-color: rgba(139, 184, 232, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 184, 232, 0.2);
    border-color: rgba(139, 184, 232, 0.35);
  }
}

/* ── How it works ───────────────────────────────────────────────────── */

.how-it-works {
  padding: 4.5rem 5vw;
  max-width: 920px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.how-it-works ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.how-it-works li {
  counter-increment: step;
  position: relative;
  padding: 1.35rem 0 1.35rem 3.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.how-it-works li strong {
  color: #ffffff;
}

.how-it-works li:last-child {
  border-bottom: none;
}

.how-it-works li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #111;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow:
    0 2px 10px rgba(139, 184, 232, 0.35),
    0 0 0 0 rgba(139, 184, 232, 0.2);
  animation: stepGlow 3s ease-in-out infinite;
}

@keyframes stepGlow {
  0%,
  100% {
    box-shadow:
      0 2px 10px rgba(139, 184, 232, 0.35),
      0 0 0 0 rgba(139, 184, 232, 0.2);
  }
  50% {
    box-shadow:
      0 2px 14px rgba(139, 184, 232, 0.45),
      0 0 0 4px rgba(139, 184, 232, 0.08);
  }
}

/* ── Testimonials ───────────────────────────────────────────────────── */

.testimonials {
  padding: 4.5rem 5vw;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-grid blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 14px;
  border-left: 3px solid var(--accent);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(139, 184, 232, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.4s ease;
}

.testimonial-grid blockquote:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(139, 184, 232, 0.12);
}

.testimonial-grid blockquote p {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.testimonial-grid blockquote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  display: block;
}

.testimonial-solo {
  display: flex;
  justify-content: center;
}

.testimonial-solo blockquote {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 2.5rem 2.25rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(139, 184, 232, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.4s ease;
}

.testimonial-solo blockquote:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(139, 184, 232, 0.12);
}

.testimonial-solo blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 0.6rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.testimonial-solo blockquote p {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text);
}

.testimonial-solo blockquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  display: block;
  text-align: right;
}

/* ── Headings ───────────────────────────────────────────────────────── */

.page-content h1,
.volume-list h1,
.preview h1,
.purchase h1,
.contact h1,
.faq h1,
.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.page-content h2,
.preview h2,
.purchase h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--accent-bright);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.page-content p,
.preview p,
.preview ul,
.purchase p,
.purchase ul,
.contact p,
.faq p,
.not-found p {
  max-width: 740px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-content p {
  margin-bottom: 1.35rem;
}

/* ── Legal pages ────────────────────────────────────────────────────── */

.legal .updated {
  color: var(--dim);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  color: var(--accent-bright);
  margin-top: 2.25rem;
  font-size: 1.35rem;
  font-weight: 600;
}

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

.site-footer {
  padding: 3.5rem 5vw 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 0.85rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 12, 0.65) 100%
  );
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  align-items: center;
}

.footer-nav a {
  color: var(--dim);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-bright);
}

.footer-copy {
  text-align: center;
  margin: 0;
  font-size: 0.8rem;
  color: var(--dim);
}

/* ── FAQ ────────────────────────────────────────────────────────────── */

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin: 0.85rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.faq details[open] {
  background: var(--surface-hover);
  border-color: rgba(139, 184, 232, 0.3);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(139, 184, 232, 0.08);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent-bright);
  font-size: 1.35rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ── 404 ────────────────────────────────────────────────────────────── */

.not-found {
  text-align: center;
  padding-top: 6rem;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 9.5rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 35px rgba(139, 184, 232, 0.3);
  animation: notFoundPulse 3s ease-in-out infinite;
}

@keyframes notFoundPulse {
  0%,
  100% {
    text-shadow: 0 0 35px rgba(139, 184, 232, 0.3);
  }
  50% {
    text-shadow:
      0 0 50px rgba(139, 184, 232, 0.5),
      0 0 80px rgba(139, 184, 232, 0.2);
  }
}

.not-found .hero-actions {
  margin-top: 2rem;
}

/* ── Volume Grid ────────────────────────────────────────────────────── */

.volume-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.volume-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 0 rgba(139, 184, 232, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.volume-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 184, 232, 0.06) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.volume-card:hover {
  transform: translateY(-6px);
  background: var(--surface-hover);
  border-color: rgba(139, 184, 232, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(139, 184, 232, 0.15),
    0 0 0 1px rgba(139, 184, 232, 0.1);
}

.volume-card:hover::after {
  opacity: 1;
}

.volume-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-bright);
  margin: 0 0 0.65rem;
  letter-spacing: 0.01em;
}

.volume-card p {
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
}

/* ── Badge ──────────────────────────────────────────────────────────── */

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  margin-left: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-free {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #111;
  border: none;
  box-shadow: 0 2px 8px rgba(139, 184, 232, 0.35);
}

/* ── Sample / Preview Callout ───────────────────────────────────────── */

.sample {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.75rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 2.25rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.preview ul,
.purchase ul {
  padding-left: 1.5rem;
}

.preview li,
.purchase li {
  margin: 0.6rem 0;
  line-height: 1.68;
}

/* ── Contact Form ───────────────────────────────────────────────────── */

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
  margin-top: 2rem;
}

.contact label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.contact input,
.contact textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 184, 232, 0.2);
}

/* ── Responsive Media Queries ───────────────────────────────────────── */

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(22, 22, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 24px 1.5rem;
    display: none;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding: 4.5rem 5vw 3.5rem;
  }

  .page-content h1,
  .volume-list h1,
  .preview h1,
  .purchase h1,
  .contact h1,
  .faq h1,
  .not-found h1 {
    font-size: 2.15rem;
  }
}

/* ── Custom Scrollbar ───────────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 184, 232, 0.4);
}

* {
  scrollbar-color: rgba(255, 255, 255, 0.12) var(--bg-deep);
  scrollbar-width: thin;
}

/* ── Scroll Progress Bar ────────────────────────────────────────────── */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
  z-index: 200;
  pointer-events: none;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(139, 184, 232, 0.5);
}

/* ── Text Selection ─────────────────────────────────────────────────── */

::selection {
  background: rgba(139, 184, 232, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(139, 184, 232, 0.3);
  color: #fff;
}

/* ── Focus-Visible Accessibility ────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-nav a:focus-visible {
  outline-offset: 4px;
}

/* ── Page Load Fade-In ──────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: fadeInUp 0.6s ease-out;
}

.site-header {
  animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  main,
  .site-header,
  .hero h1,
  .logo span,
  .button,
  .eyebrow,
  .how-it-works li::before,
  .not-found-code,
  .site-header::after,
  .features article,
  .features article::before,
  .features article:hover,
  .cursor-dot,
  .cursor-ring,
  body::after {
    animation: none;
  }

  [data-reveal],
  [data-reveal].is-visible {
    transform: none;
    opacity: 1;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto;
  }
}

/* ── Hero Separator ─────────────────────────────────────────────────── */

.hero h1 {
  position: relative;
}

.hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 50%,
    transparent
  );
  border-radius: 2px;
}

/* ── Section Dividers ───────────────────────────────────────────────── */

.intro,
.features,
.how-it-works,
.testimonials,
.cta-section,
.volume-list,
.preview,
.purchase,
.contact,
.faq {
  position: relative;
}

.intro::before,
.features::before,
.how-it-works::before,
.testimonials::before,
.cta-section::before,
.volume-list::before,
.preview::before,
.purchase::before,
.contact::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 50%,
    transparent
  );
}

/* ── Volume Card Numerals ───────────────────────────────────────────── */

.volume-card {
  position: relative;
}

.volume-card h3 {
  position: relative;
  z-index: 1;
}

/* ── First Letter Drop Cap for Intro Paragraph ──────────────────────── */

.page-content > p:first-of-type::first-letter,
.intro p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 0.35rem 0.6rem 0 0;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(139, 184, 232, 0.3);
}

/* ── Blockquote Decorative Mark ─────────────────────────────────────── */

.testimonial-grid blockquote {
  position: relative;
}

.testimonial-grid blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

/* ── CTA Section Refined ────────────────────────────────────────────── */

.cta-section .button {
  min-width: 200px;
  text-align: center;
}

/* ── Footer Refined ─────────────────────────────────────────────────── */

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 184, 232, 0.3) 50%,
    transparent
  );
}

/* ── Link Underline Refined ─────────────────────────────────────────── */

.page-content p a,
.preview p a,
.purchase p a,
.contact p a,
.faq p a,
.footer-brand p a {
  text-decoration: underline;
  text-decoration-color: rgba(139, 184, 232, 0.3);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease;
}

.page-content p a:hover,
.preview p a:hover,
.purchase p a:hover,
.contact p a:hover,
.faq p a:hover,
.footer-brand p a:hover {
  text-decoration-color: var(--accent);
}

/* ── List Styling Refinement ────────────────────────────────────────── */

.preview ul,
.purchase ul {
  list-style: none;
  padding-left: 0;
}

.preview li,
.purchase li {
  position: relative;
  padding-left: 1.5rem;
}

.preview li::before,
.purchase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ── Micro-Interaction Layer ────────────────────────────────────────── */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: left, top, transform;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  box-shadow:
    0 0 10px var(--accent-bright),
    0 0 20px var(--accent);
  z-index: 9999;
  transition:
    width 0.15s ease,
    height 0.15s ease,
    box-shadow 0.15s ease;
  overflow: hidden;
}

.cursor-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-bright),
    var(--accent-deep),
    var(--accent-bright)
  );
  animation: cursorGradientSpin 4s linear infinite;
}

.cursor-ring {
  width: 31px;
  height: 31px;
  box-shadow:
    0 0 0 1px rgba(139, 184, 232, 0.04),
    0 0 20px rgba(139, 184, 232, 0.08);
  z-index: 9998;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease;
}

.cursor-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-bright),
    var(--accent-deep),
    var(--accent-bright)
  );
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 1px), black 50%);
  mask: radial-gradient(circle, transparent calc(50% - 1px), black 50%);
  animation: cursorGradientSpin 4s linear infinite;
}

.cursor-dot.hover {
  width: 10px;
  height: 10px;
  box-shadow:
    0 0 14px var(--accent-bright),
    0 0 28px var(--accent);
}

.cursor-dot.hover::before,
.cursor-ring.hover::before {
  animation-duration: 2.5s;
}

.cursor-ring.hover {
  width: 48px;
  height: 48px;
}

@keyframes cursorGradientSpin {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none;
}

/* ── Magnetic Targets ───────────────────────────────────────────────── */

.magnetic {
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Scroll Reveals ─────────────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Ambient Background Layers ──────────────────────────────────────── */

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

body::after {
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  min-width: 600px;
  min-height: 600px;
  margin: -30vw 0 0 -30vw;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 184, 232, 0.09) 0%,
    rgba(82, 130, 200, 0.04) 35%,
    transparent 70%
  );
  filter: blur(120px);
  animation: ambientDrift 24s ease-in-out infinite;
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6vw, -4vh) scale(1.08);
  }
}

/* ── Extra Hover / Focus Polish ─────────────────────────────────────── */

.button:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.95);
}

.button-secondary:active {
  transform: translateY(0) scale(0.98);
}

.site-nav a:not([href="purchase.html"]):hover {
  text-shadow: 0 0 12px rgba(139, 184, 232, 0.3);
}

.volume-card:hover {
  transform: translateY(-8px);
}

.how-it-works li:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.testimonial-grid blockquote:hover {
  transform: translateY(-6px);
}

.contact input:focus,
.contact textarea:focus {
  box-shadow:
    0 0 0 3px rgba(139, 184, 232, 0.2),
    0 0 20px rgba(139, 184, 232, 0.08);
}

/* ── Skip Link ──────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.75rem;
}

/* ── Cookie Consent Banner ──────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(18, 18, 20, 0.96);
  border-top: 1px solid var(--border);
  padding: 1rem 5vw;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-banner button {
  background: var(--accent);
  color: #111;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cookie-banner button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 184, 232, 0.35);
}

/* ── Back to Top ────────────────────────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 250;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent-bright);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
  backdrop-filter: blur(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--surface-hover);
  border-color: rgba(139, 184, 232, 0.3);
  color: var(--text);
}

/* ── Share Bar ──────────────────────────────────────────────────────── */

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.share-btn:hover {
  background: var(--surface-hover);
  border-color: rgba(139, 184, 232, 0.35);
  transform: translateY(-2px);
}

.share-message {
  font-size: 0.85rem;
  color: var(--dim);
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: 0.5rem;
}

.share-message.is-visible {
  opacity: 1;
}

/* ── Volume Search ──────────────────────────────────────────────────── */

.volumes-search {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.volumes-search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 1rem 1.5rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  backdrop-filter: blur(8px);
}

.volumes-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 184, 232, 0.2);
}

.volume-card.is-hidden {
  display: none;
}

/* ── Contact Form ───────────────────────────────────────────────────── */

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
  margin-top: 2rem;
}

.contact label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.contact input,
.contact textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 184, 232, 0.2);
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.contact button[type="submit"] {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 184, 232, 0.35);
}

/* ── Reduced Motion Toggle ──────────────────────────────────────────── */

.motion-toggle {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 250;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  color: var(--dim);
  font-family: var(--font-display);
  font-size: 0.72rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.motion-toggle:hover {
  color: var(--text);
  border-color: rgba(139, 184, 232, 0.35);
}

.motion-toggle input {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  margin: 0;
}

/* ── 404 Search ─────────────────────────────────────────────────────── */

.not-found .volumes-search {
  margin-top: 2rem;
}

/* ── Reduced motion override ────────────────────────────────────────── */

.reduced-motion,
.reduced-motion * {
  animation: none;
  transition: none;
}

.reduced-motion #blizzard-canvas,
.reduced-motion .cursor-dot,
.reduced-motion .cursor-ring {
  display: none;
}

/* ── Price callout ──────────────────────────────────────────────────── */

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin: 0.75rem 0 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(139, 184, 232, 0.25);
}

.price span {
  font-size: 1rem;
  color: var(--dim);
  font-weight: 500;
  margin-left: 0.4rem;
}

/* ── Print Styles for Legal Pages ───────────────────────────────────── */

@media print {
  .site-header,
  .site-footer,
  #blizzard-canvas,
  .menu-toggle,
  .site-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-content,
  .legal {
    max-width: 100%;
    padding: 0;
  }

  .page-content p,
  .legal p {
    color: #000;
    max-width: 100%;
  }

  .page-content h1,
  .page-content h2,
  .legal h1,
  .legal h2 {
    color: #000;
  }
}
