*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #04050a;
  --deep: #07080f;
  --panel: #0c0e1a;
  --accent: #1e8fff;
  --accent2: #56b4ff;
  --text: #e4e8f0;
  --muted: #6a7080;
  --border: rgba(30,143,255,0.28);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
  max-width: 1600px;
  margin: 0 auto;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 500;
  opacity: 0.5;
}

/* ─── SCANLINE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 499;
}

/* ─── HERO SCANLINE TEXTURE ─── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 4px,
    rgba(0, 0, 0, 0.04) 4px,
    rgba(0, 0, 0, 0.04) 5px
  );
  pointer-events: none;
  z-index: 1;
}

/* ─── HERO PANEL CUTS ─── */
.hero-panel-cuts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-panel-cuts::before,
.hero-panel-cuts::after {
  content: '';
  position: absolute;
  top: -5%;
  width: 1px;
  height: 110%;
}

.hero-panel-cuts::before {
  left: 62%;
  background: linear-gradient(to bottom, transparent, rgba(30,143,255,0.13) 20%, rgba(30,143,255,0.13) 80%, transparent);
  transform: rotate(3deg);
  transform-origin: top center;
}

.hero-panel-cuts::after {
  left: 73%;
  background: linear-gradient(to bottom, transparent, rgba(30,143,255,0.12) 30%, rgba(30,143,255,0.12) 70%, transparent);
  transform: rotate(-4deg);
  transform-origin: top center;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(4,5,10,0.98) 60%, transparent);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(4,5,10,0.96);
  backdrop-filter: blur(18px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(30,143,255,0.1), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo {
  display: block;
  text-decoration: none;
}

.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(10) saturate(0);
  transition: opacity 0.2s, filter 0.3s;
}
.nav-logo:hover img { opacity: 0.8; filter: brightness(1) saturate(1); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; background: var(--accent); }

/* CTA link in nav */
.nav-links li:last-child a {
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.45rem 1.1rem 0.45rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  letter-spacing: 0.18em;
}
.nav-links li:last-child a::after { display: none; }
.nav-links li:last-child a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─── NAV CART BUTTON ─── */
.nav-cart {
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-cart:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-cart svg { display: block; }

.cart-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 1.1em;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cart-count.has-items { opacity: 1; }

/* ─── CART OVERLAY ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,5,10,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ─── CART PANEL ─── */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: var(--deep);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 48px rgba(0,0,0,0.6);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-panel.is-open { transform: translateX(0); }

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-panel-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.cart-panel-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cart-panel-close:hover { border-color: var(--accent); color: var(--accent); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-empty {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 3rem 0;
  font-family: 'Barlow', sans-serif;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.cart-qty-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cart-qty-btn:hover { border-color: var(--accent); color: var(--accent); }

.cart-item-qty {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 1.2em;
  text-align: center;
  color: var(--text);
}

.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.2rem 0.3rem;
  margin-left: 0.2rem;
  transition: color 0.2s;
}
.cart-remove:hover { color: #ff5a5a; }

.cart-panel-footer {
  padding: 1.25rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.cart-subtotal span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover {
  background: var(--accent2);
  box-shadow: 0 0 24px rgba(30,143,255,0.4);
}

.cart-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .cart-panel { transition: none; }
  .cart-overlay { transition: none; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
  gap: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
}
/* overlay to keep text readable and blend into dark theme */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4,5,10,0.98) 0%, rgba(4,5,10,0.91) 52%, rgba(4,5,10,0.15) 75%, rgba(4,5,10,0.4) 100%),
    linear-gradient(to bottom, rgba(4,5,10,0.3) 0%, transparent 20%, transparent 70%, rgba(4,5,10,1) 100%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(4,5,10,0.8) 0%, transparent 100%);
  pointer-events: none;
}

/* ─── HERO ENERGY SYSTEM ─── */
.hero-energy-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 38% 65%, rgba(30, 143, 255, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 35% 30% at 62% 38%, rgba(110, 50, 255, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 25% 20% at 50% 80%, rgba(0, 200, 230, 0.05) 0%, transparent 60%);
  animation: energyPulse 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes energyPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  color: #ffffff;
  display: block;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 3px rgba(0,0,0,1),
    0 2px 10px rgba(0,0,0,0.95),
    0 0 18px rgba(30,143,255,0.88),
    0 0 40px rgba(30,143,255,0.80),
    0 0 80px rgba(30,143,255,0.50),
    0 0 160px rgba(30,143,255,0.22);
}

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #bcc3d4;
  max-width: 460px;
  margin-bottom: 2.5rem;
  margin-top: 1.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* small scroll hint */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.25rem;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,143,255,0.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(30,143,255,0.2); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 2.25rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(30,143,255,0.06);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ─── HERO IMAGE SIDE ─── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  height: 100vh;
}

.cover-frame {
  position: relative;
  width: 300px;
}

.cover-frame::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  pointer-events: none;
  animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: inset 0 0 0 1px rgba(30,143,255,0.2); }
}

.cover-badge {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 0.35rem 0.9rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  z-index: 3;
}

.cover-img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  filter: saturate(1.1) contrast(1.05);
  box-shadow: 0 50px 100px rgba(0,0,0,0.88), 0 0 100px rgba(30,143,255,0.26);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cover-img:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 60px 100px rgba(0,0,0,0.85), 0 0 100px rgba(30,143,255,0.28);
}

.cover-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(30,143,255,0.28), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

/* floating availability tag */
.cover-avail {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cover-avail::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: dot-ping 2.4s ease-out infinite;
}

@keyframes dot-ping {
  0%   { transform: scale(1);   opacity: 1; }
  60%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,143,255,0.22) 30%, rgba(30,143,255,0.28) 50%, rgba(30,143,255,0.22) 70%, transparent);
  margin: 0 3rem;
  box-shadow: 0 0 12px rgba(30,143,255,0.18), 0 0 2px rgba(30,143,255,0.12);
}

/* ─── ABOUT SECTION ─── */
.about {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '01';
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(14rem, 22vw, 20rem);
  position: absolute;
  right: -1rem;
  top: -2rem;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 4px,
    rgba(0,0,0,0.025) 4px,
    rgba(0,0,0,0.025) 5px
  );
  pointer-events: none;
  z-index: 0;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #8a90a0;
  margin-bottom: 1.5rem;
}

/* ─── WHY READ ESSENCE ─── */
.why-section {
  padding: var(--section-pad) var(--side-pad);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.why-inner .section-title {
  margin-bottom: 2.5rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.why-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.why-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-item:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: 'Rubik Dirt', cursive;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* pull-quote panel */
.quote-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 3rem 3rem 3rem 3.5rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.quote-panel::before {
  content: '"';
  font-family: 'Rubik Dirt', cursive;
  font-size: 10rem;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
}

.quote-sub {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
}

/* ─── AUTHOR SECTION ─── */
.author {
  padding: 8rem 3rem;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.author::before {
  content: 'SKYLAR';
  font-family: 'Rubik Dirt', cursive;
  font-size: 20vw;
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  color: rgba(30,143,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* accent line top */
.author::after {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent 60%);
}

.author-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 920px;
}

.author-avatar {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  border: 1px solid var(--border);
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(30,143,255,0.18), 0 8px 32px rgba(0,0,0,0.5);
  display: block;
}

.author-name {
  font-family: 'Rubik Dirt', cursive;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.author-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-bio {
  font-size: 1rem;
  line-height: 1.9;
  color: #8a90a0;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.author-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 1rem;
  transition: color 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.author-link:hover { color: var(--accent); border-color: var(--border); }

/* ─── STORE PAGE ─── */
.page-header {
  padding: 9rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.page-header-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 40px rgba(30,143,255,0.3),
    0 0 80px rgba(30,143,255,0.15);
}

.page-header-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.issue-section {
  padding: 6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.issue-section-header {
  margin-bottom: 3rem;
}

.issue-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.issue-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.issue-section-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.1;
}

.store-grid--wide {
  max-width: 900px;
}

.store-collection {
  padding: 4rem 3rem 6rem;
}

.store-collection--featured {
  padding-bottom: 2rem;
}

.store-grid--collection {
  max-width: 820px;
  grid-template-columns: repeat(2, 1fr);
}

.store-grid--solo {
  max-width: 380px;
  grid-template-columns: 1fr;
}

/* ─── READ THE FIRST PAGES ─── */
.preview-section {
  padding: 5rem 3rem 6rem;
  text-align: center;
}

.preview-section-header {
  margin-bottom: 3rem;
}

.preview-section-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
}

.preview-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.preview-page {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(30,143,255,0.15);
  background: var(--panel);
  cursor: pointer;
  position: relative;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  padding: 0;
}

.preview-page:hover {
  transform: scale(1.03);
  border-color: rgba(30,143,255,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(30,143,255,0.15);
}

.preview-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.preview-page:hover img { transform: scale(1.06); }

.preview-page::after {
  content: '⤢';
  position: absolute;
  bottom: 0.6rem;
  right: 0.7rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.preview-page:hover::after { opacity: 1; }
.preview-page:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.preview-section-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2rem;
}

.preview-section-cta {
  display: flex;
  justify-content: center;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4,5,10,0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(90vw, 600px);
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(30,143,255,0.18);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─── PRODUCT OPTIONS (issue-grouped cards) ─── */
.product-options {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
}

.option-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.product-option--print .option-label {
  color: rgba(210,170,60,0.85);
}

.product-option--print .option-price {
  color: rgba(240,200,80,0.95);
}

.product-option--print .btn-buy {
  background: linear-gradient(90deg, #c9a43e, #e8c060);
  color: #1a1100;
}

.product-option--print .btn-buy:hover {
  background: linear-gradient(90deg, #dbb84e, #f5d070);
  box-shadow: 0 6px 20px rgba(200,160,50,0.25);
}

/* ─── STORE ─── */
.store {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.store::after {
  content: '03';
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(14rem, 22vw, 20rem);
  position: absolute;
  left: -2rem;
  bottom: -3rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.store::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.store-header {
  text-align: center;
  margin-bottom: 4rem;
}
.store-header .section-title {
  text-align: center;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.store-all-link {
  text-align: center;
  margin-top: 2.5rem;
}

.store-all-anchor {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.store-all-anchor:hover {
  color: var(--accent);
}

.product-card {
  background: var(--panel);
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-desc {
  flex: 1;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30,143,255,0.12);
}

/* Physical card gets gold treatment */
.product-card.card-physical {
  background: linear-gradient(160deg, #0e1018 0%, #0c0e1a 100%);
  border-color: rgba(255,220,100,0.15);
}
.product-card.card-physical:hover {
  border-color: rgba(255,220,100,0.35);
  box-shadow: 0 24px 60px rgba(255,200,60,0.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  z-index: 2;
}

.product-card.card-physical .product-badge {
  background: linear-gradient(90deg, #c9a43e, #f0cd74);
  color: #1a1100;
}

.product-badge-start {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(30, 143, 255, 0.12);
  border: 1px solid rgba(30, 143, 255, 0.45);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  color: #6ab8ff;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(30, 143, 255, 0.25), inset 0 0 8px rgba(30, 143, 255, 0.06);
  z-index: 2;
}

.product-img-wrap {
  background: linear-gradient(to bottom, #0a0a14, #08080f);
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(30,143,255,0.25), transparent 70%);
  filter: blur(12px);
}

.product-card.card-physical .product-img-wrap::after {
  background: radial-gradient(ellipse, rgba(255,200,60,0.15), transparent 70%);
}

.product-img {
  width: 155px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.product-card:hover .product-img { transform: scale(1.05) rotate(-1deg) translateY(-4px); }

.product-info {
  padding: 1.75rem;
}

.product-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Rubik Dirt', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.product-includes {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}

.product-includes-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.product-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-includes-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.product-includes-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.25rem;
}

.product-checkout-note {
  font-size: 0.72rem;
  color: rgba(106,112,128,0.6);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 0.75rem;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.btn-buy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-buy:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,143,255,0.3);
}
.btn-buy:active { transform: translateY(0); box-shadow: none; }
.btn-buy:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.btn-coming-soon {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.product-card.card-physical .btn-buy {
  background: linear-gradient(90deg, #c9a43e, #e8c060);
  color: #1a1100;
}
.product-card.card-physical .btn-buy:hover {
  background: linear-gradient(90deg, #dbb84e, #f5d070);
  box-shadow: 0 6px 20px rgba(200,160,50,0.25);
}

/* ─── EMAIL SIGNUP ─── */
.signup {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
}

.signup-inner {
  max-width: 540px;
  margin: 0 auto;
}

.signup-title {
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.signup-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.signup-field {
  display: flex;
  width: 100%;
  max-width: 440px;
  gap: 0;
}

.signup-field input[type="email"] {
  flex: 1;
  background: var(--panel);
  border: 1px solid rgba(30,143,255,0.25);
  border-right: none;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.8rem 1.2rem;
  outline: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: border-color 0.2s, background 0.2s;
}

.signup-field input[type="email"]::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.signup-field input[type="email"]:focus {
  border-color: rgba(30,143,255,0.6);
  background: rgba(30,143,255,0.05);
}

.signup-field button {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.signup-field button:hover {
  background: var(--accent2);
  box-shadow: 0 4px 18px rgba(30,143,255,0.3);
  transform: translateY(-1px);
}

.signup-field button:active { transform: translateY(0); box-shadow: none; }
.signup-field button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.signup-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── FOOTER ─── */
/* ─── SITE FOOTER ─── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.site-footer-copy p {
  font-size: 0.82rem;
  color: rgba(106,112,128,0.7);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0;
}

.site-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-links a:hover {
  color: var(--accent);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.7s 0.1s both; }
.hero-title { animation: fadeUp 0.7s 0.2s both; }
.hero-tagline { animation: fadeUp 0.7s 0.35s both; }
.hero-cta { animation: fadeUp 0.7s 0.5s both; }
.hero-visual { animation: fadeUp 0.9s 0.3s both; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.store-grid .reveal:nth-child(2) {
  transition-delay: 0.13s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-primary, .btn-outline, .btn-buy {
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .btn-primary:hover, .btn-outline:hover, .btn-buy:hover,
  .btn-primary:active, .btn-outline:active, .btn-buy:active {
    transform: none;
  }
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-cta, .hero-visual {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cover-avail::before { animation: none; }
  .preview-page, .preview-page img { transition: none; }
  .preview-page:hover { transform: none; }
  .preview-page:hover img { transform: none; }
  .lightbox { transition: none; }
  .cover-frame::before {
    animation: none;
  }
  .preview-panel, .preview-panel img {
    transition: none;
  }
  .preview-panel:hover {
    transform: none;
  }
  .preview-panel:hover img {
    transform: none;
  }
}

/* ─── NAV RIGHT GROUP ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ─── HAMBURGER ─── */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  width: 2rem;
  height: 2rem;
}
.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.nav-open .nav-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SIGNUP SUCCESS ─── */
.signup-success { text-align: center; }
.signup-success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links li:last-child a { padding: 0.35rem 0.75rem; letter-spacing: 0.12em; font-size: 0.72rem; }
  .hero { grid-template-columns: 1fr; padding: 0 1.5rem; min-height: auto; padding-top: 8rem; padding-bottom: 4rem; }
  .hero-visual { height: auto; padding-top: 3rem; }
  .cover-frame { width: 240px; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .about-stats { gap: 0; }
  .author { padding: 5rem 1.5rem; }
  .author-inner { grid-template-columns: 1fr; gap: 2rem; }
  .author-avatar { max-width: 140px; }
  .preview { padding: 5rem 1.5rem; }
  .signup { padding: 5rem 1.5rem; }
  .store { padding: 5rem 1.5rem; }
  .store-collection { padding: 2rem 1.5rem 4rem; }
  .store-grid--collection { grid-template-columns: repeat(2, 1fr); }
  .preview-section { padding: 4rem 1.5rem 5rem; }
  .preview-pages-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .page-header { padding: 8rem 1.5rem 3rem; }
  .issue-section { padding: 4rem 1.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .divider { margin: 0 1.5rem; }
}

@media (max-width: 560px) {
  .store-grid--collection { grid-template-columns: 1fr; }
  .store-grid--solo { max-width: 100%; }
  .preview-pages-grid { grid-template-columns: 1fr; max-width: 340px; }
  .preview-grid { grid-template-columns: 1fr; max-width: 340px; }
  .preview-grid .preview-panel:nth-child(2),
  .preview-grid .preview-panel:nth-child(3),
  .preview-grid .preview-panel:nth-child(4) { transition-delay: 0s; }
  .signup-field { flex-direction: column; }
  .signup-field input[type="email"] {
    border-right: 1px solid rgba(30,143,255,0.25);
    border-bottom: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .signup-field button {
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    padding: 0.85rem;
  }
}

/* ─── OPTION ACTIONS (Buy Now + Add to Cart) ─── */
.option-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  margin-left: auto;
}
.btn-cart-text {
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.btn-cart-text:hover { opacity: 1; }

/* ─── CHECKOUT PAGE ─── */
.checkout-page {
  min-height: calc(100vh - 220px);
  padding: 7rem 2rem 5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.checkout-inner {
  width: 100%;
  max-width: 820px;
}
.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.checkout-back:hover { color: var(--text); }
.checkout-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.checkout-maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2.5rem;
  gap: 1.2rem;
}
.maintenance-icon {
  font-size: 2.4rem;
  opacity: 0.4;
  line-height: 1;
}
.not-found-num {
  font-family: 'Rubik Dirt', display;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: -0.02em;
}
.maintenance-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0;
}
.maintenance-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36ch;
  margin: 0;
  line-height: 1.6;
}
.checkout-cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.checkout-summary { display: flex; flex-direction: column; }
.checkout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.checkout-title {
  font-family: 'Rubik Dirt', display;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1rem;
}
.checkout-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.checkout-meta span { color: var(--text); }
.checkout-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.checkout-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.checkout-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.checkout-price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.btn-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: #ffc439;
  color: #003087;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}
.btn-paypal:hover {
  background: #f0b429;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255,196,57,0.25);
}
.btn-paypal:active { transform: translateY(0); }
.checkout-trust {
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}
.checkout-trust a { color: var(--muted); text-decoration: underline; }
@media (max-width: 680px) {
  .checkout-page { padding: 6rem 1.25rem 4rem; }
  .checkout-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .checkout-cover { max-width: 160px; margin: 0 auto; display: block; }
  .checkout-title { font-size: 1.6rem; }
}

@media (max-width: 680px) {
  .nav-menu-btn { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    list-style: none;
    background: rgba(4,5,10,0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  nav.nav-open .nav-links {
    max-height: 300px;
    padding: 0.5rem 0;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    text-align: center;
  }
  .nav-links li:last-child a {
    clip-path: none;
    border: none;
    padding: 0.85rem 1.5rem;
    color: var(--accent);
  }
  .nav-links a::after { display: none; }

  @media (prefers-reduced-motion: reduce) {
    .nav-links { transition: none; }
    .nav-menu-btn span { transition: none; }
  }
}
