/* ============================================================
   VERTEX AUDIO — MAIN CSS
   Matches homepage aesthetic exactly
   ============================================================ */

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

:root {
  --black:     #070503;
  --panel:     #100d08;
  --amber:     #d4900c;
  --amber-b:   #ffb82a;
  --amber-dim: #c4821a;
  --cream:     #f0e0c0;
  --cream-dim: #b8a882;
  --metal:     #2c2318;
  --crt:       #3dff6e;
  --free:      #2adf8a;
  --sale:      #ff4444;
  --radius:    0px; /* sharp corners throughout */
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- GRAIN OVERLAY ---- */
#grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.05;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; z-index: 9998;
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; line-height: 1; }
p { line-height: 1.75; }

/* ---- NAV ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 3rem;
  background: linear-gradient(to bottom, rgba(7,5,3,0.97) 60%, transparent);
  border-bottom: 1px solid rgba(212,144,12,0.1);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; padding: 1.2rem 0; gap: 0 2rem;
}
/* col 1: logo | col 2: nav-links (center) | col 3: nav-right | col 4: hamburger */
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.3em; color: var(--amber-b);
  text-shadow: 0 0 14px rgba(255,184,42,1), 0 0 40px rgba(255,184,42,0.75);
  text-decoration: none; transition: text-shadow 0.3s;
}
.nav-logo:hover { text-shadow: 0 0 16px rgba(255,184,42,1), 0 0 50px rgba(255,184,42,0.95), 0 0 110px rgba(255,184,42,0.6); }
.nav-logo span { color: var(--cream-dim); font-size: 0.65em; letter-spacing: 0.45em; }
.nav-links { list-style: none; display: flex; gap: 2rem; justify-content: center; }
.nav-links a {
  font-family: 'Courier Prime', monospace; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-b); }
.nav-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; justify-self: end; }
.nav-right .nav-account { order: 1; }
.nav-right .nav-cta    { order: 2; }
.nav-account {
  font-family: 'Courier Prime', monospace; font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber-dim); text-decoration: none; transition: color 0.2s;
}
.nav-account:hover { color: var(--amber-b); }
.nav-cta {
  font-family: 'Courier Prime', monospace; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--amber-dim); color: var(--amber-b);
  padding: 0.45rem 1.1rem; text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--amber); border-color: var(--amber-b);
  color: var(--black); box-shadow: 0 0 30px rgba(212,144,12,0.65);
}

/* ---- PAGE WRAPPER ---- */
.page-content { padding-top: 80px; }

/* ---- SECTION UTILITIES ---- */
.section-wrap { padding: 6rem 3rem; max-width: 1440px; margin: 0 auto; }
.section-label {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.05em; color: var(--cream);
  line-height: 1; margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.9rem; color: var(--cream-dim);
  line-height: 1.78; font-weight: 300; max-width: 600px;
}

/* ---- DIVIDER ---- */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 3rem; max-width: 1440px; margin: 0 auto;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--amber-dim), transparent); }
.divider-label {
  font-family: 'Courier Prime', monospace; font-size: 0.58rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--amber-dim);
}

/* ---- BUTTONS ---- */
.btn-primary {
  font-family: 'Courier Prime', monospace; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; background: var(--amber); color: var(--black);
  padding: 0.85rem 2.5rem; font-weight: 700;
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-b); box-shadow: 0 0 65px rgba(255,184,42,0.7); }

.btn-ghost {
  font-family: 'Courier Prime', monospace; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--amber-dim);
  color: var(--cream-dim); padding: 0.85rem 2.5rem;
  transition: all 0.2s; display: inline-block; background: transparent; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-b); }

.btn-free {
  font-family: 'Courier Prime', monospace; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--free);
  color: var(--free); padding: 0.85rem 2.5rem;
  transition: all 0.2s; display: inline-block; background: transparent; cursor: pointer;
}
.btn-free:hover { background: var(--free); color: var(--black); box-shadow: 0 0 40px rgba(42,223,138,0.5); }

.btn-sm {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--amber-dim);
  color: var(--amber-b); padding: 0.45rem 1.1rem;
  transition: all 0.2s; display: inline-block; background: transparent; cursor: pointer;
}

/* ---- PLUGIN CARDS ---- */
.plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--metal);
}
.plugin-card {
  background: var(--panel); position: relative;
  overflow: visible; display: flex; flex-direction: column;
  transition: background 0.3s;
}
.plugin-card:hover { background: #151008; }
.plugin-card.hidden { display: none; }

.card-img-wrap {
  position: relative; width: 100%; height: 230px;
  overflow: hidden; background: #080604; flex-shrink: 0;
}
.card-img {
  width: 100%; height: 100%; object-fit: contain;
  object-position: center; padding: 1.2rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block;
}
.plugin-card:hover .card-img { transform: scale(1.09); }
.card-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(7,5,3,0.9) 100%);
  pointer-events: none;
}
.card-cover-link { position: absolute; inset: 0; z-index: 1; }
.card-badges {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.35rem; flex-wrap: wrap;
  justify-content: flex-start; z-index: 2;
}
.badge {
  font-family: 'Courier Prime', monospace; font-size: 0.5rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.2rem 0.5rem;
}
.badge-cat  { border: 1px solid rgba(138,92,8,0.8); color: var(--amber-dim); background: rgba(7,5,3,0.75); }
.badge-free { border: 1px solid var(--free); color: var(--free); background: rgba(7,5,3,0.8); }
.badge-sale { background: var(--sale); color: #fff; border: none; }
.badge-pre  { border: 1px solid var(--amber-b); color: var(--amber-b); background: rgba(7,5,3,0.8); }

.card-body { padding: 1.1rem 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.1em; color: var(--cream); line-height: 1; }
.card-tag  { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.16em; color: var(--amber-dim); text-transform: uppercase; }
.card-desc { font-size: 0.77rem; color: var(--cream-dim); line-height: 1.65; font-weight: 300; flex: 1; margin-top: 0.4rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.card-footer {
  padding: 0.9rem 1.4rem 1.3rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04); margin-top: 0.8rem;
  overflow: visible;
}
.price-wrap { display: flex; flex-direction: column; gap: 0.1rem; }
.price-original { font-family: 'Courier Prime', monospace; font-size: 0.58rem; color: var(--cream-dim); text-decoration: line-through; opacity: 0.4; }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.05em; line-height: 1; }
.price-amount.free    { color: var(--free); text-shadow: 0 0 18px rgba(42,223,138,0.65); }
.price-amount.paid    { color: var(--amber-b); }
.price-amount.preorder{ color: var(--amber); font-size: 1.2rem; }
.price-label { font-family: 'Courier Prime', monospace; font-size: 0.48rem; letter-spacing: 0.2em; color: var(--amber-dim); text-transform: uppercase; }

/* ---- FILTER TABS ---- */
.filter-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid #2a2010; color: var(--cream-dim);
  padding: 0.4rem 1rem; background: transparent; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--amber); color: var(--amber-b); background: rgba(212,144,12,0.07);
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(212,144,12,0.15);
  border-bottom: 1px solid rgba(212,144,12,0.15);
  background: var(--panel); padding: 0.6rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 45s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.marquee-item {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--amber-dim); white-space: nowrap; padding: 0 2.5rem;
  text-decoration: none; display: inline-block;
  transition: color 0.3s, filter 0.3s, text-shadow 0.3s;
}
.marquee-item:hover {
  color: var(--amber-b); filter: blur(1.5px);
  text-shadow: 0 0 8px rgba(255,184,42,0.9), 0 0 20px rgba(255,184,42,0.6);
}
.dot { transition: color 0.3s; }
.dot-r { color: #ff4444; text-shadow: 0 0 8px rgba(255,68,68,0.8); }
.dot-g { color: #2adf8a; text-shadow: 0 0 8px rgba(42,223,138,0.8); }
.dot-y { color: #ffb82a; text-shadow: 0 0 8px rgba(255,184,42,0.8); }

/* ---- FOOTER ---- */
.site-footer {
  background: #040302; padding: 3.5rem 3rem 2rem;
  border-top: 1px solid #1a1208;
}
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 0.2em; color: var(--amber-b);
  text-shadow: 0 0 28px rgba(255,184,42,0.6); text-decoration: none;
}
.footer-social { display: flex; gap: 1.6rem; align-items: center; }
.footer-social a {
  color: var(--cream-dim); text-decoration: none;
  opacity: 0.45; transition: opacity 0.2s, color 0.2s; display: flex; align-items: center;
}
.footer-social a:hover { opacity: 1; color: var(--amber-b); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; opacity: 0.55; transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover { opacity: 1; color: var(--amber-b); }
.footer-legal {
  display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.04); padding-top: 1.5rem; width: 100%;
}
.footer-legal a {
  font-family: 'Courier Prime', monospace; font-size: 0.52rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; opacity: 0.3; transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.7; }
.footer-copy {
  font-family: 'Courier Prime', monospace; font-size: 0.52rem;
  letter-spacing: 0.15em; color: var(--cream-dim); opacity: 0.25; text-align: center;
}

/* ---- STRIPE CHECKOUT MODAL ---- */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(7,5,3,0.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: var(--panel); border: 1px solid rgba(212,144,12,0.2);
  width: 100%; max-width: 520px; margin: 1rem;
  position: relative;
  box-shadow: 0 0 80px rgba(0,0,0,0.8), 0 0 40px rgba(212,144,12,0.1);
  transform: translateY(20px); transition: transform 0.3s;
}
.checkout-overlay.open .checkout-modal { transform: translateY(0); }

.checkout-header {
  padding: 1.8rem 2rem 1.2rem;
  border-bottom: 1px solid rgba(212,144,12,0.1);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.checkout-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: 0.08em; color: var(--cream);
}
.checkout-subtitle {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-dim); margin-top: 0.3rem;
}
.checkout-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--amber-b); line-height: 1;
  text-align: right;
}
.checkout-price-label {
  font-family: 'Courier Prime', monospace; font-size: 0.48rem;
  letter-spacing: 0.2em; color: var(--amber-dim); text-transform: uppercase;
}
.checkout-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(7,5,3,0.8); border: 1px solid rgba(212,144,12,0.2);
  color: var(--cream-dim); font-size: 1.2rem; cursor: pointer; line-height: 1;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; z-index: 10; border-radius: 0;
}
.checkout-close:hover { color: var(--amber-b); }

.checkout-body { padding: 1.8rem 2rem; }

.checkout-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.checkout-field label {
  font-family: 'Courier Prime', monospace; font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dim);
}
.checkout-field input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,144,12,0.2);
  color: var(--cream); font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; padding: 0.8rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.checkout-field input:focus {
  border-color: var(--amber); background: rgba(212,144,12,0.05);
}

/* Stripe Element container */
#stripe-card-element, #payment-element {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,144,12,0.2);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s;
}
#stripe-card-element.StripeElement--focus,
#payment-element.StripeElement--focus {
  border-color: var(--amber);
}

.checkout-error {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  color: var(--sale); margin-top: 0.8rem; min-height: 1.2rem;
  letter-spacing: 0.05em;
}

.checkout-submit {
  width: 100%; margin-top: 1.5rem;
  font-family: 'Courier Prime', monospace; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.1rem; background: var(--amber); border: none;
  color: var(--black); cursor: pointer; font-weight: 700; transition: all 0.25s;
}
.checkout-submit:hover:not(:disabled) {
  background: var(--amber-b); box-shadow: 0 0 42px rgba(212,144,12,0.65);
}
.checkout-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.checkout-footer {
  padding: 1rem 2rem 1.5rem; text-align: center;
  border-top: 1px solid rgba(212,144,12,0.08);
}
.checkout-secure {
  font-family: 'Courier Prime', monospace; font-size: 0.52rem;
  letter-spacing: 0.2em; color: var(--cream-dim); opacity: 0.4; text-transform: uppercase;
}

/* ---- SOAK FREE MODAL ---- */
.soak-modal-body { padding: 1.8rem 2rem; }
.soak-modal-body p {
  font-size: 0.82rem; color: var(--cream-dim); line-height: 1.7;
  margin-bottom: 1.4rem; font-weight: 300;
}

/* ---- HERO (pages) ---- */
.page-hero {
  position: relative; min-height: 320px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; overflow: hidden;
  padding: 8rem 2rem 4rem; text-align: center;
  background: var(--panel);
  border-bottom: 1px solid rgba(212,144,12,0.1);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,144,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.04em; color: var(--cream);
  line-height: 0.95; position: relative; z-index: 1;
}
.page-hero-title .accent {
  color: var(--amber-b);
  text-shadow: 0 0 60px rgba(255,184,42,0.8);
}
.page-hero-sub {
  font-size: 0.82rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 300; margin-top: 1rem;
  position: relative; z-index: 1;
}

/* ---- PLUGIN DETAIL PAGE ---- */
.plugin-detail { max-width: 1440px; margin: 0 auto; padding: 5rem 3rem; }
.plugin-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.plugin-detail-img {
  width: 100%; display: block;
  border: 1px solid #2a2010;
  box-shadow: 0 0 0 1px #060402, 0 24px 80px rgba(0,0,0,0.85), 0 0 80px rgba(212,144,12,0.15);
}
.plugin-detail-copy .section-title { margin-bottom: 0.6rem; }
.plugin-detail-tag {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-dim); margin-bottom: 1.5rem;
}
.plugin-detail-desc {
  font-size: 0.9rem; color: var(--cream-dim); line-height: 1.78;
  font-weight: 300; margin-bottom: 2rem;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.features-list li {
  display: flex; gap: 0.75rem; align-items: baseline;
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  letter-spacing: 0.08em; color: var(--cream-dim);
}
.feature-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--amber);
  flex-shrink: 0; margin-top: 0.35rem;
  box-shadow: 0 0 10px var(--amber), 0 0 22px rgba(212,144,12,0.45);
}
.plugin-price-block { margin-bottom: 2rem; }
.plugin-price-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  letter-spacing: 0.04em; line-height: 1;
}
.plugin-price-amount.paid    { color: var(--amber-b); }
.plugin-price-amount.preorder{ color: var(--amber); font-size: 2rem; }
.plugin-price-amount.free    { color: var(--free); }
.plugin-price-label {
  font-family: 'Courier Prime', monospace; font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dim); margin-top: 0.3rem;
}
.plugin-price-original {
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  color: var(--cream-dim); text-decoration: line-through; opacity: 0.4;
}
.plugin-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- SPECS TABLE ---- */
.specs-section { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid rgba(212,144,12,0.1); }
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem 2rem; margin-top: 1.5rem;
}
.spec-item { display: flex; gap: 0.75rem; align-items: baseline; }
.spec-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--amber);
  flex-shrink: 0; margin-top: 0.4rem;
  box-shadow: 0 0 10px var(--amber);
}
.spec-text {
  font-family: 'Courier Prime', monospace; font-size: 0.7rem;
  letter-spacing: 0.08em; color: var(--cream-dim);
}

/* ---- FORMATS BAR ---- */
.formats-bar {
  background: #0c0906; padding: 1.2rem 3rem;
  border-top: 1px solid rgba(212,144,12,0.08);
}
.formats-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.formats-label {
  font-family: 'Courier Prime', monospace; font-size: 0.58rem;
  letter-spacing: 0.4em; color: var(--amber-dim);
  text-transform: uppercase; white-space: nowrap;
}
.format-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.fmt-badge {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; color: var(--cream-dim);
  border: 1px solid #2a2010; padding: 0.28rem 0.7rem;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.fmt-badge:hover {
  color: var(--amber-b); border-color: var(--amber);
  box-shadow: 0 0 14px rgba(212,144,12,0.5);
}
.fmt-soon { color: var(--amber-dim); border-color: var(--amber-dim); opacity: 0.6; font-style: italic; }

/* ---- SUCCESS / CANCEL PAGES ---- */
.result-page {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; padding: 4rem 2rem;
}
.result-card {
  background: var(--panel); border: 1px solid rgba(212,144,12,0.2);
  max-width: 600px; width: 100%; padding: 3rem;
  box-shadow: 0 0 80px rgba(0,0,0,0.6), 0 0 40px rgba(212,144,12,0.08);
}
.result-icon {
  font-size: 3rem; margin-bottom: 1.5rem; display: block;
}
.result-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  letter-spacing: 0.06em; color: var(--cream); margin-bottom: 1rem; line-height: 1;
}
.result-title.success { color: var(--free); }
.result-title.cancel  { color: var(--sale); }
.result-desc {
  font-size: 0.88rem; color: var(--cream-dim);
  line-height: 1.78; font-weight: 300; margin-bottom: 2rem;
}
.download-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.download-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,144,12,0.15);
}
.download-item-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: 0.08em; color: var(--cream);
}
.install-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(212,144,12,0.1); }
.install-title {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber-dim); margin-bottom: 1rem;
}
.install-steps { display: flex; flex-direction: column; gap: 0.6rem; }
.install-step {
  display: flex; gap: 1rem; align-items: baseline;
  font-size: 0.82rem; color: var(--cream-dim); font-weight: 300;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  color: var(--amber); flex-shrink: 0; line-height: 1;
}

/* ---- REVEAL ANIMATION ---- */
.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .plugin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .plugin-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  /* NAV — flexbox on mobile, no grid */
  .site-nav { padding: 0 1rem; }
  .nav-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .nav-links { display: none; }
  .nav-right { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 0.5rem !important; }
  .nav-right .nav-cta { display: none !important; }
  .mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

  /* FEATURED SECTION — stack on mobile */
  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 3rem 1.5rem !important;
  }

  /* CONTACT FORM — stack name/email on mobile */
  .contact-name-email-row {
    grid-template-columns: 1fr !important;
  }

  /* GENERAL */
  .section-wrap { padding: 4rem 1.5rem; }
  .plugin-grid { grid-template-columns: 1fr; }
  .checkout-modal { margin: 0; height: 100dvh; overflow-y: auto; }
  .plugin-detail { padding: 3rem 1.5rem; }
}

/* ============================================================
   HOVER GLOW + BLUR EFFECTS — buttons, cards, badges
   ============================================================ */

/* All buy/action buttons glow and blur on hover */
.btn-primary:hover {
  background: var(--amber-b);
  box-shadow: 0 0 65px rgba(255,184,42,0.7);
  }
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-b);
  box-shadow: 0 0 20px rgba(212,144,12,0.35);
  }
.btn-free:hover {
  background: var(--free);
  color: var(--black);
  box-shadow: 0 0 40px rgba(42,223,138,0.5);
  }

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(212,144,12,0.65);
  }
.checkout-submit:hover:not(:disabled) {
  box-shadow: 0 0 42px rgba(212,144,12,0.65);
  }



/* Plugin card hover — card glow */
.plugin-card:hover {
  background: #151008;
  box-shadow: 0 0 0 1px rgba(212,144,12,0.15), 0 8px 40px rgba(0,0,0,0.5);
}

/* Detail page CTA */
.plugin-detail-copy .btn-primary:hover,
.plugin-detail-copy button.btn-primary:hover {
  box-shadow: 0 0 65px rgba(255,184,42,0.7);
}

/* Format badges hover */
.fmt-badge:hover {
  color: var(--amber-b);
  border-color: var(--amber);
  box-shadow: 0 0 14px rgba(212,144,12,0.5), inset 0 0 8px rgba(212,144,12,0.08);
  filter: blur(0.8px);
  text-shadow: 0 0 8px rgba(255,184,42,0.8);
}

/* Filter buttons hover */
.filter-btn:hover, .filter-btn.active {
  box-shadow: 0 0 12px rgba(212,144,12,0.3);
}

/* ============================================================
   GHOSTY FOOTER CREDIT
   ============================================================ */
.ghosty-link {
  color: var(--amber-b);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255,184,42,0.9), 0 0 25px rgba(255,184,42,0.6), 0 0 50px rgba(255,184,42,0.3);
  transition: filter 0.35s ease, text-shadow 0.35s ease;
  display: inline-block;
}
.ghosty-link:hover {
  filter: blur(3px);
  text-shadow: 0 0 18px rgba(255,184,42,1), 0 0 40px rgba(255,184,42,0.9), 0 0 80px rgba(255,184,42,0.5);
}
.ghosty-credit {
  font-family: 'Courier Prime', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: -1.2rem;
  text-align: center;
  color: var(--cream-dim);
  opacity: 0.65;
}

/* ============================================================
   PAGE HERO OSCILLOSCOPE — for non-homepage pages
   ============================================================ */
.page-hero-osc {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.28; pointer-events: none;
}

/* ============================================================
   ABOUT / DEVELOPER SECTION
   ============================================================ */
.about-section {
  background: var(--panel);
  border-top: 1px solid rgba(212,144,12,0.1);
  border-bottom: 1px solid rgba(212,144,12,0.1);
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  background-image: url('../images/about-panel.jpg');
  background-size: cover; background-position: center top;
  opacity: 0.12; z-index: 0;
}
.about-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--panel) 0%, transparent 30%, transparent 70%, var(--panel) 100%),
    linear-gradient(to bottom, var(--panel) 0%, transparent 15%, transparent 85%, var(--panel) 100%);
  z-index: 1;
}
.about-inner { max-width: 1440px; margin: 0 auto; padding: 6rem 3rem; position: relative; z-index: 2; }
.dev-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 5rem; }
.dev-photo-wrap { position: relative; width: 100%; overflow: hidden; }
.dev-photo-link { display: block; position: relative; overflow: hidden; cursor: pointer; text-decoration: none; }
.dev-photo {
  width: 100%; display: block; height: 520px;
  object-fit: cover; object-position: center center;
  border: 1px solid rgba(212,144,12,0.25); border-bottom: none;
  box-shadow: 0 0 0 1px #060402, 0 24px 80px rgba(0,0,0,0.85), 0 0 60px rgba(212,144,12,0.15);
  filter: grayscale(30%) contrast(1.08);
  transition: filter 0.45s ease, box-shadow 0.45s ease;
}
.dev-photo-wrap:hover .dev-photo {
  filter: grayscale(0%) contrast(1.05) blur(3px) brightness(1.1);
  box-shadow: 0 0 0 1px #060402, 0 0 0 2px rgba(212,144,12,0.4), 0 0 60px rgba(212,144,12,0.55), 0 0 120px rgba(212,144,12,0.25);
}
.dev-photo-wrap::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent); z-index: 2;
}
.dev-photo-caption {
  font-family: 'Courier Prime', monospace; font-size: 0.52rem;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber-dim);
  margin-top: 0; padding: 0.7rem 1rem; text-align: center;
  background: var(--panel);
  border: 1px solid rgba(212,144,12,0.25);
  border-top: 1px solid rgba(212,144,12,0.12);
  border-bottom: none;
}
.dev-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(212,144,12,0.1); margin-top: 0;
  border: 1px solid rgba(212,144,12,0.25);
  border-top: 1px solid rgba(212,144,12,0.1);
}
.dev-stat { background: var(--panel); padding: 1rem 0.75rem; text-align: center; }
.dev-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.06em; color: var(--amber-b); line-height: 1; }
.dev-stat-label { font-family: 'Courier Prime', monospace; font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.25rem; opacity: 0.65; }
.dev-bio-block { display: flex; flex-direction: column; gap: 1.4rem; }
.dev-bio-p { font-size: 0.86rem; color: var(--cream-dim); line-height: 1.82; font-weight: 300; }
.dev-bio-p mark { background: transparent; color: var(--amber-b); font-weight: 400; }
.dev-bio-pull {
  border-left: 2px solid var(--amber); padding-left: 1.2rem;
  font-family: 'Courier Prime', monospace; font-size: 0.8rem;
  color: var(--cream); line-height: 1.7; letter-spacing: 0.02em;
}
.dev-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.dev-tag {
  font-family: 'Courier Prime', monospace; font-size: 0.56rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-dim);
  border: 1px solid rgba(212,144,12,0.2); padding: 0.3rem 0.75rem;
  background: rgba(212,144,12,0.04);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, filter 0.3s, text-shadow 0.3s;
  cursor: default;
}
.dev-tag:hover {
  color: var(--amber-b); border-color: var(--amber);
  box-shadow: 0 0 14px rgba(212,144,12,0.5), inset 0 0 8px rgba(212,144,12,0.08);
  filter: blur(0.8px); text-shadow: 0 0 8px rgba(255,184,42,0.8);
}
.about-divider { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 4rem; }
.about-divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(212,144,12,0.3), transparent); }
.about-divider-label { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--amber-dim); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.value-card { border-left: 2px solid var(--amber-dim); padding-left: 1.2rem; }
.value-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.15em; color: var(--amber-b); margin-bottom: 0.5rem; }
.value-text { font-size: 0.78rem; color: var(--cream-dim); line-height: 1.68; font-weight: 300; }

/* Glitch keyframes for photo */
@keyframes glitch-r {
  0%,100%{clip-path:inset(0 0 92% 0);transform:translate(-5px,0);opacity:1}
  15%{clip-path:inset(25% 0 55% 0);transform:translate(5px,0)}
  30%{clip-path:inset(55% 0 22% 0);transform:translate(-3px,0)}
  45%{clip-path:inset(75% 0 8% 0);transform:translate(6px,0)}
  60%{clip-path:inset(10% 0 68% 0);transform:translate(-4px,0)}
  75%{clip-path:inset(45% 0 35% 0);transform:translate(3px,0)}
}
@keyframes glitch-b {
  0%,100%{clip-path:inset(5% 0 80% 0);transform:translate(5px,0);opacity:1}
  20%{clip-path:inset(35% 0 45% 0);transform:translate(-5px,0)}
  40%{clip-path:inset(65% 0 15% 0);transform:translate(4px,0)}
  55%{clip-path:inset(15% 0 65% 0);transform:translate(-6px,0)}
  70%{clip-path:inset(50% 0 28% 0);transform:translate(3px,0)}
  85%{clip-path:inset(82% 0 3% 0);transform:translate(-3px,0)}
}
.dev-photo-link::before, .dev-photo-link::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/about-panel.jpg');
  background-size: cover; background-position: center center;
  opacity: 0; pointer-events: none; z-index: 3; transition: opacity 0.05s;
}
.dev-photo-link:hover::before {
  opacity: 0.9; animation: glitch-r 0.35s steps(1) infinite;
  mix-blend-mode: screen; filter: hue-rotate(200deg) saturate(4) brightness(1.4);
}
.dev-photo-link:hover::after {
  opacity: 0.7; animation: glitch-b 0.35s steps(1) infinite;
  mix-blend-mode: screen; filter: hue-rotate(310deg) saturate(4) brightness(1.4);
  animation-delay: 0.07s;
}

/* Responsive about */
@media (max-width: 960px) {
  .dev-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .about-inner { padding: 4rem 1.5rem; }
  .dev-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FULL FOOTER NAV
   ============================================================ */
.footer-nav-full {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.footer-nav-full a {
  font-family: 'Courier Prime', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav-full a:hover { opacity: 1; color: var(--amber-b); }

/* ============================================================
   CONTACT FORM FULL ELEMENTS
   ============================================================ */
.contact-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,144,12,0.2);
  color: var(--cream); font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; padding: 0.8rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; width: 100%;
}
.contact-select:focus { border-color: var(--amber); background: rgba(212,144,12,0.05); }
.contact-select option { background: #100d08; color: var(--cream); }


/* ============================================================
   CART SYSTEM
   ============================================================ */
.cart-icon-wrap {
  position: relative; cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-dim); transition: color 0.2s;
}
.cart-icon-wrap:hover { color: var(--amber-b); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--amber); color: var(--black);
  font-family: 'Bebas Neue', sans-serif; font-size: 0.75rem;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; opacity: 0; transition: opacity 0.2s;
}
.cart-count.has-items { opacity: 1; }

.cart-overlay {
  position: fixed; inset: 0; z-index: 8999;
  background: rgba(7,5,3,0); backdrop-filter: blur(0px);
  display: flex; justify-content: flex-end;
  opacity: 1; pointer-events: none;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.cart-overlay.open {
  background: rgba(7,5,3,0.88);
  backdrop-filter: blur(5px);
  pointer-events: all;
}
.cart-overlay.closing {
  background: rgba(7,5,3,0);
  backdrop-filter: blur(0px);
  pointer-events: none;
}
.cart-panel {
  background: var(--panel); width: 100%; max-width: 440px;
  height: 100%; overflow-y: auto;
  border-left: 1px solid rgba(212,144,12,0.15);
  box-shadow: -40px 0 80px rgba(0,0,0,0.7);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex; flex-direction: column;
}
.cart-overlay.open .cart-panel {
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}
.cart-overlay.closing .cart-panel {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.cart-header {
  padding: 1.5rem 1.8rem; border-bottom: 1px solid rgba(212,144,12,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.cart-header-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.1em; color: var(--cream); }
.cart-close { background: none; border: none; color: var(--cream-dim); font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.cart-close:hover { color: var(--amber-b); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.8rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; font-family: 'Courier Prime', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-dim); opacity: 0.6; }
.cart-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-item-img { width: 64px; height: 48px; object-fit: cover; flex-shrink: 0; border: 1px solid #2a2010; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; color: var(--cream); line-height: 1; }
.cart-item-tag { font-family: 'Courier Prime', monospace; font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber-dim); margin-top: 0.2rem; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--amber-b); }
.cart-item-remove { background: none; border: none; color: var(--cream-dim); opacity: 0.4; cursor: pointer; font-size: 1rem; transition: all 0.2s; padding: 0.2rem; }
.cart-item-remove:hover { color: var(--sale); opacity: 1; }
.cart-footer { padding: 1.5rem 1.8rem; border-top: 1px solid rgba(212,144,12,0.1); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.2rem; }
.cart-total-label { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dim); }
.cart-total-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--amber-b); }
.cart-checkout-btn {
  width: 100%; padding: 1.1rem;
  font-family: 'Courier Prime', monospace; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--amber); border: none; color: var(--black);
  cursor: pointer; font-weight: 700; transition: all 0.25s;
  position: relative;
}
.cart-checkout-btn::after {
  content: ''; position: absolute; inset: -4px;
  background: var(--amber); filter: blur(14px); opacity: 0; z-index: -1; transition: opacity 0.3s;
}
.cart-checkout-btn:hover { background: var(--amber-b); box-shadow: 0 0 40px rgba(255,184,42,0.8); }
.cart-checkout-btn:hover::after { opacity: 0.5; }
.cart-continue { display: block; text-align: center; margin-top: 0.8rem; font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); cursor: pointer; transition: color 0.2s; background: none; border: none; width: 100%; }
.cart-continue:hover { color: var(--amber-b); }

/* Add to cart button */
.btn-add-cart {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(212,144,12,0.3); color: var(--cream-dim);
  padding: 0.45rem 0.9rem; background: transparent;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-add-cart:hover { border-color: var(--amber-dim); color: var(--amber-b); background: rgba(212,144,12,0.06); }
.btn-add-cart.added { border-color: var(--free); color: var(--free); }

/* ============================================================
   AUDIO DEMO PLAYER
   ============================================================ */
.demo-player {
  background: #080602; border: 1px solid #1a1208;
  padding: 1.2rem 1.4rem; margin-top: 1.5rem;
}
.demo-player-label {
  font-family: 'Courier Prime', monospace; font-size: 0.54rem;
  letter-spacing: 0.38em; color: var(--amber-dim);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.demo-tracks { display: flex; flex-direction: column; gap: 0.6rem; }
.demo-track { display: flex; align-items: center; gap: 1rem; }
.demo-play-btn {
  width: 28px; height: 28px; border: 1px solid var(--amber-dim);
  background: transparent; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0;
  transition: all 0.2s;
}
.demo-play-btn:hover { background: var(--amber); border-color: var(--amber-b); }
.demo-play-btn svg { fill: var(--amber-b); width: 10px; height: 10px; }
.demo-play-btn:hover svg { fill: var(--black); }
.demo-bar { flex: 1; height: 2px; background: #2a2010; cursor: pointer; position: relative; }
.demo-fill { height: 100%; background: var(--amber); width: 0%; transition: width 0.1s; pointer-events: none; }
.demo-track-name { font-family: 'Courier Prime', monospace; font-size: 0.57rem; letter-spacing: 0.1em; color: var(--cream-dim); width: 90px; text-align: right; }
.demo-time { font-family: 'Courier Prime', monospace; font-size: 0.5rem; letter-spacing: 0.08em; color: var(--amber-dim); width: 36px; text-align: right; }

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.account-hero { background: var(--panel); padding: 8rem 3rem 4rem; border-bottom: 1px solid rgba(212,144,12,0.1); position: relative; }
.account-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(212,144,12,0.06), transparent 65%); pointer-events: none; }
.account-wrap { max-width: 960px; margin: 0 auto; padding: 4rem 3rem; }
.account-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(212,144,12,0.15); margin-bottom: 2.5rem; }
.account-tab {
  font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); padding: 0.8rem 1.5rem;
  background: transparent; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.2s; margin-bottom: -1px;
}
.account-tab:hover { color: var(--amber-b); }
.account-tab.active { color: var(--amber-b); border-bottom-color: var(--amber-b); }
.account-panel { display: none; }
.account-panel.active { display: block; }
.account-form { display: grid; gap: 1.2rem; max-width: 520px; }
.account-field { display: flex; flex-direction: column; gap: 0.45rem; }
.account-field label { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dim); }
.account-field input, .account-field select {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(212,144,12,0.2);
  color: var(--cream); font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; padding: 0.8rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
  -webkit-appearance: none;
}
.account-field input:focus, .account-field select:focus { border-color: var(--amber); background: rgba(212,144,12,0.05); }
.account-submit {
  align-self: start; font-family: 'Courier Prime', monospace; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase; padding: 1rem 2.4rem;
  background: transparent; border: 1px solid var(--amber); color: var(--amber-b);
  cursor: pointer; transition: all 0.25s;
}
.account-submit:hover { background: var(--amber); color: var(--black); box-shadow: 0 0 42px rgba(212,144,12,0.65); }
.account-divider { height: 1px; background: rgba(212,144,12,0.1); margin: 2rem 0; }
.account-section-label { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.purchases-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.purchase-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,144,12,0.12); gap: 1rem; flex-wrap: wrap;
}
.purchase-item-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.08em; color: var(--cream); }
.purchase-item-date { font-family: 'Courier Prime', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: var(--amber-dim); text-transform: uppercase; }
.purchase-item-status { font-family: 'Courier Prime', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; }
.status-delivered { color: var(--free); }
.status-preorder  { color: var(--amber); }
.no-purchases { font-family: 'Courier Prime', monospace; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--amber-dim); opacity: 0.55; padding: 2rem 0; text-align: center; text-transform: uppercase; }
.account-msg { padding: 0.8rem 1rem; font-family: 'Courier Prime', monospace; font-size: 0.62rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.account-msg.success { background: rgba(42,223,138,0.08); border: 1px solid rgba(42,223,138,0.25); color: var(--free); }
.account-msg.error   { background: rgba(255,68,68,0.08); border: 1px solid rgba(255,68,68,0.2); color: var(--sale); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500;
  background: rgba(16,13,8,0.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,144,12,0.2);
  padding: 1.2rem 2rem; display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.6), 0 -2px 0 rgba(212,144,12,0.15);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; color: var(--cream-dim); line-height: 1.6; max-width: 620px; font-weight: 300; }
.cookie-text a { color: var(--amber-b); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-label { font-family: 'Courier Prime', monospace; font-size: 0.52rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.3rem; }
.cookie-buttons { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-accept {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--amber); color: var(--black); border: none;
  padding: 0.65rem 1.4rem; cursor: pointer; font-weight: 700;
  transition: all 0.2s;
}
.cookie-accept:hover { background: var(--amber-b); box-shadow: 0 0 30px rgba(255,184,42,0.6); }
.cookie-deny {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: var(--cream-dim);
  border: 1px solid rgba(212,144,12,0.2); padding: 0.65rem 1.4rem;
  cursor: pointer; transition: all 0.2s;
}
.cookie-deny:hover { border-color: var(--amber-dim); color: var(--amber-b); }

/* ============================================================
   MAILING LIST POPUP
   ============================================================ */
.ml-overlay {
  position: fixed; inset: 0; z-index: 9400;
  background: rgba(7,5,3,0.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.ml-overlay.open { opacity: 1; pointer-events: all; }
.ml-modal {
  background: var(--panel); max-width: 500px; width: calc(100% - 2rem);
  border: 1px solid rgba(212,144,12,0.25);
  box-shadow: 0 0 0 1px rgba(212,144,12,0.08), 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(212,144,12,0.12);
  position: relative; overflow: hidden;
  transform: translateY(30px) scale(0.97); transition: transform 0.4s;
}
.ml-overlay.open .ml-modal { transform: translateY(0) scale(1); }
.ml-modal-accent { height: 3px; background: linear-gradient(to right, transparent, var(--amber), var(--amber-b), var(--amber), transparent); }
.ml-modal-body { padding: 2.5rem 2rem; }
.ml-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--cream-dim);
  font-size: 1.2rem; cursor: pointer; opacity: 0.5; transition: opacity 0.2s;
}
.ml-modal-close:hover { opacity: 1; color: var(--amber-b); }
.ml-eyebrow { font-family: 'Courier Prime', monospace; font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.6rem; }
.ml-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 0.05em; color: var(--cream); line-height: 1; margin-bottom: 0.8rem; }
.ml-title span { color: var(--amber-b); text-shadow: 0 0 40px rgba(255,184,42,0.6); }
.ml-desc { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.ml-perks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.ml-perk { font-family: 'Courier Prime', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--amber-dim); }
.ml-perk span { color: var(--amber-b); margin-right: 0.5rem; }
.ml-form { display: flex; gap: 0.6rem; }
.ml-input {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,144,12,0.2); color: var(--cream);
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem;
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s;
}
.ml-input:focus { border-color: var(--amber); background: rgba(212,144,12,0.05); }
.ml-submit {
  font-family: 'Courier Prime', monospace; font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--amber); color: var(--black); border: none;
  padding: 0.75rem 1.2rem; cursor: pointer; font-weight: 700;
  transition: all 0.2s; white-space: nowrap;
}
.ml-submit:hover { background: var(--amber-b); box-shadow: 0 0 30px rgba(255,184,42,0.6); }
.ml-skip { display: block; text-align: center; margin-top: 1rem; font-family: 'Courier Prime', monospace; font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); opacity: 0.4; cursor: pointer; transition: opacity 0.2s; background: none; border: none; width: 100%; }
.ml-skip:hover { opacity: 0.8; }
.ml-success { text-align: center; padding: 1rem 0; }
.ml-success-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--free); margin-bottom: 0.5rem; }
.ml-success-text { font-size: 0.82rem; color: var(--cream-dim); font-weight: 300; }
@media (max-width: 480px) { .ml-form { flex-direction: column; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 5rem 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.08em; color: var(--amber-b); margin-bottom: 0.8rem; }
.legal-section p { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.85; font-weight: 300; margin-bottom: 0.8rem; }
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.8rem; padding-left: 1rem; }
.legal-section ul li { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; font-weight: 300; position: relative; }
.legal-section ul li::before { content: '◈'; color: var(--amber-dim); position: absolute; left: -1.2rem; font-size: 0.6rem; top: 0.25rem; }
.legal-updated { font-family: 'Courier Prime', monospace; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-dim); margin-bottom: 2rem; }
.legal-contact { background: rgba(212,144,12,0.04); border: 1px solid rgba(212,144,12,0.15); padding: 1.2rem 1.5rem; margin-top: 1rem; }
.legal-contact a { color: var(--amber-b); text-decoration: none; }
.legal-contact a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .legal-wrap { padding: 3rem 1.5rem; }
  .account-wrap { padding: 3rem 1.5rem; }
  .cookie-banner { gap: 1rem; }
  .cart-panel { max-width: 100%; }
}

/* ============================================================
   BUTTON HOVER — single definition, nothing below this
   ============================================================ */

/* non-glow btn-sm hover (ghost buttons etc) */
.btn-sm:hover {
  background: var(--amber);
  border-color: var(--amber-b);
  color: var(--black);
  box-shadow: 0 0 22px rgba(212,144,12,0.6);
}

/* Resting amber glow on buy buttons */
.card-buy {
  box-shadow: 0 0 10px rgba(212,144,12,0.55), 0 0 28px rgba(212,144,12,0.22);
  transition: all 0.2s ease;
}

/* MASSIVE HOVER GLOW — this is the only card-buy:hover in the entire file */
.card-buy:hover {
  background: #ffb82a !important;
  border-color: #ffb82a !important;
  color: #060402 !important;
  filter: none !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 0 25px #ffb82a,
    0 0 60px rgba(255,184,42,0.95),
    0 0 120px rgba(255,184,42,0.7),
    0 0 200px rgba(212,144,12,0.5) !important;
}

/* Hero tagline — responsive */
.hero-tagline {
  font-family: 'Courier Prime', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .hero-tagline { font-size: 0.55rem; letter-spacing: 0.2em; }
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
  margin-left: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber-b);
  transition: all 0.3s;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,5,3,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--amber-b); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--amber-b);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   MOBILE AUDIT FIXES — full site pass
   ============================================================ */

/* Quote section */
@media (max-width: 640px) {
  .quote-section {
    padding: 3rem 1.5rem !important;
  }
  .quote-mark {
    font-size: 4rem !important;
  }

  /* Contact section */
  .contact-inner {
    padding: 3rem 1.5rem !important;
  }

  /* Featured section — already handled by .featured-grid */
  .featured-grid {
    grid-template-columns: 1fr !important;
    padding: 3rem 1.5rem !important;
    gap: 2.5rem !important;
  }

  /* Contact name/email row — already handled */
  .contact-name-email-row {
    grid-template-columns: 1fr !important;
  }

  /* Account form rows */
  .account-form-row {
    grid-template-columns: 1fr !important;
  }

  /* Hero section */
  #hero { padding: 90px 1.2rem 2rem !important; }

  /* Formats bar */
  .formats-inner { padding: 1.5rem 1.2rem; }
  .format-badges { gap: 0.4rem; }
  .fmt-badge { font-size: 0.5rem; padding: 0.25rem 0.5rem; }

  /* Footer */
  .footer-inner { padding: 3rem 1.5rem; gap: 1.5rem; }
  .footer-nav-full { gap: 0.8rem; }
  .footer-social { gap: 1rem; }

  /* About section dev-stats */
  .dev-stats { grid-template-columns: repeat(3, 1fr); }

  /* Values grid — already auto-fit but tighten */
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Marquee */
  .marquee-item { font-size: 0.65rem; }

  /* Page hero on inner pages */
  .page-hero { padding: 7rem 1.5rem 3rem !important; }

  /* Plugin detail page */
  .plugin-detail-grid { gap: 2rem; }
  .plugin-cta-group { flex-direction: column; }
  .plugin-cta-group a, .plugin-cta-group button { width: 100%; text-align: center; }

  /* Checkout modal */
  .checkout-header { flex-direction: column; gap: 0.5rem; }
  .checkout-modal { padding: 1.5rem; }

  /* Filter tabs */
  .filter-tabs { gap: 0.35rem; }
  .filter-btn { font-size: 0.52rem; padding: 0.35rem 0.7rem; }

  /* Section titles */
  .section-title { font-size: clamp(2rem, 10vw, 4rem) !important; }
}

/* Slightly wider breakpoint for tablet */
@media (max-width: 768px) {
  .dev-layout { grid-template-columns: 1fr; gap: 3rem; }
  .featured-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; padding: 3rem 1.5rem !important; }
  .footer-legal { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
}

/* Mobile nav CTA button */
.mobile-nav-overlay .mobile-nav-cta {
  margin-top: 1rem;
  border: 1px solid var(--amber-b) !important;
  color: var(--amber-b) !important;
  padding: 0.8rem 2rem;
  font-size: 1.2rem !important;
  letter-spacing: 0.15em;
}
.mobile-nav-overlay .mobile-nav-cta:hover {
  background: var(--amber-b);
  color: var(--black) !important;
}

/* ============================================================
   VISUAL ENHANCEMENTS
   ============================================================ */

/* 1. Hero AUDIO text shimmer */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero-audio-shimmer {
  background: linear-gradient(90deg,
    #d4900c 0%,
    #ffb82a 30%,
    #fff8e7 50%,
    #ffb82a 70%,
    #d4900c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
  text-shadow: none;
}

/* 2. Plugin card — glow bloom on hover */
.plugin-card {
  transition: background 0.3s, box-shadow 0.4s, transform 0.3s;
}
.plugin-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(212,144,12,0.35),
    0 12px 50px rgba(0,0,0,0.7),
    0 0 60px rgba(212,144,12,0.12);
}

/* 3. Card image zoom now with a golden overlay flash */
.plugin-card:hover .card-img-wrap::after {
  background: linear-gradient(to bottom,
    rgba(212,144,12,0.04) 0%,
    transparent 40%,
    rgba(7,5,3,0.9) 100%
  );
}

/* 4. Section label draw-in animation */
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.section-label {
  position: relative;
  overflow: hidden;
}

/* 5. Floating particles in hero */
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.3; }
  100% { transform: translateY(-160px) translateX(var(--drift, 20px)) scale(0.3); opacity: 0; }
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffb82a;
  border-radius: 50%;
  animation: floatUp linear infinite;
  box-shadow: 0 0 6px 2px rgba(255,184,42,0.6);
  pointer-events: none;
}

/* 6. Nav logo pulse */
@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 14px rgba(255,184,42,1), 0 0 40px rgba(255,184,42,0.75); }
  50%       { text-shadow: 0 0 20px rgba(255,184,42,1), 0 0 60px rgba(255,184,42,0.9), 0 0 100px rgba(212,144,12,0.5); }
}
.nav-logo {
  animation: logoPulse 3s ease-in-out infinite;
}

/* 7. Stat numbers glow when counted */
.dev-stat-num {
  transition: text-shadow 0.3s;
}
.dev-stat-num.counted {
  text-shadow: 0 0 20px rgba(255,184,42,0.8), 0 0 40px rgba(212,144,12,0.5);
}

/* 8. Value cards lift on hover */
.value-card {
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,144,12,0.4) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,144,12,0.1);
}

/* 9. Filter buttons — active state glow */
.filter-btn.active {
  background: rgba(212,144,12,0.1);
  border-color: var(--amber-b) !important;
  color: var(--amber-b) !important;
  box-shadow: 0 0 20px rgba(212,144,12,0.35);
}

/* 10. Featured section image — subtle Ken Burns */
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0); }
  100% { transform: scale(1.04) translateX(-1%); }
}
#featured img {
  animation: kenBurns 12s ease-in-out infinite alternate;
}

/* 11. Marquee items — gold flash on hover */
.marquee-item:hover {
  color: #fff !important;
  text-shadow:
    0 0 10px rgba(255,184,42,1),
    0 0 25px rgba(255,184,42,0.8),
    0 0 50px rgba(212,144,12,0.6);
}

/* 12. Footer logo glow */
.footer-logo {
  transition: text-shadow 0.3s;
}
.footer-logo:hover {
  text-shadow: 0 0 20px rgba(255,184,42,0.9), 0 0 50px rgba(212,144,12,0.5);
}

/* 13. Checkout modal entrance */
@keyframes modalSlideIn {
  from { transform: translateY(40px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
.checkout-overlay.open .checkout-modal {
  animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 14. Scroll progress bar at top of page */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #d4900c, #ffb82a, #fff8e7);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,184,42,0.8);
}

/* 15. Plugin detail image — glow border on hover */
.plugin-detail-img {
  transition: box-shadow 0.4s;
}
.plugin-detail-img:hover {
  box-shadow:
    0 0 0 1px rgba(212,144,12,0.3),
    0 0 40px rgba(212,144,12,0.2),
    0 24px 80px rgba(0,0,0,0.8);
}

/* ============================================================
   ABOUT SECTION — WHITE DUST PARTICLES
   ============================================================ */
@keyframes aboutDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.4; }
  100% { transform: translateY(-200px) translateX(var(--drift-x, 15px)) scale(0.4); opacity: 0; }
}
.about-particle {
  position: absolute !important;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: aboutDrift linear infinite;
}



/* ============================================================
   MEGA GLOW — Buy buttons + Portal hover effects
   ============================================================ */

/* Portal Pre-Order button — massive glow on hover */
.portal-preorder-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow:
    0 0 15px rgba(0,212,255,1),
    0 0 40px rgba(0,212,255,0.9),
    0 0 80px rgba(0,212,255,0.6),
    0 0 120px rgba(168,85,247,0.7),
    0 0 200px rgba(168,85,247,0.4) !important;
  filter: brightness(1.15);
}

/* Portal GUI image — float + glow + slight rotate on hover */
@keyframes portalGuiFloat {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  50%  { transform: translateY(-6px) rotate(1deg) scale(1.03); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}
.portal-gui-hover:hover {
  animation: portalGuiFloat 2s ease-in-out infinite !important;
  box-shadow:
    0 0 20px rgba(0,212,255,0.5),
    0 0 50px rgba(0,212,255,0.3),
    0 0 90px rgba(168,85,247,0.25),
    0 0 0 2px rgba(0,212,255,0.4) !important;
  border-color: rgba(0,212,255,0.6) !important;
}

/* ALL buy/pre-order buttons — nuclear glow on hover */
/* Covers: btn-buy-glow, btn-primary, card-buy, checkout-submit, btn-portal */
.btn-buy-glow:hover,
.btn-primary:hover,
.card-buy:hover,
[data-buy]:hover,
.btn-sm[data-buy]:hover,
button[data-buy]:hover {
  background: #ffb82a !important;
  border-color: #ffb82a !important;
  color: #060402 !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow:
    0 0 15px rgba(255,184,42,1),
    0 0 35px rgba(255,184,42,0.95),
    0 0 70px rgba(255,184,42,0.8),
    0 0 120px rgba(212,144,12,0.6),
    0 0 200px rgba(212,144,12,0.3) !important;
  transition: all 0.2s ease !important;
}

/* Plugin card buy buttons base state */
.btn-buy-glow,
.card-buy,
button[data-buy] {
  transition: all 0.2s ease !important;
  box-shadow:
    0 0 10px rgba(212,144,12,0.55),
    0 0 28px rgba(212,144,12,0.22) !important;
}

/* Portal plugin page btn */
.btn-portal:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow:
    0 0 15px rgba(0,212,255,1),
    0 0 40px rgba(0,212,255,0.9),
    0 0 80px rgba(0,212,255,0.7),
    0 0 130px rgba(168,85,247,0.6),
    0 0 200px rgba(168,85,247,0.3) !important;
  filter: brightness(1.1) !important;
}

/* Plugin detail page pre-order/buy button */
.plugin-cta-group .btn-primary:hover,
.plugin-cta-group button[data-buy]:hover {
  background: #ffb82a !important;
  border-color: #ffb82a !important;
  color: #060402 !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow:
    0 0 20px rgba(255,184,42,1),
    0 0 50px rgba(255,184,42,0.95),
    0 0 100px rgba(255,184,42,0.8),
    0 0 160px rgba(212,144,12,0.6),
    0 0 250px rgba(212,144,12,0.3) !important;
}

/* SOAK free download button */
.btn-free:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow:
    0 0 15px rgba(42,223,138,1),
    0 0 40px rgba(42,223,138,0.8),
    0 0 80px rgba(42,223,138,0.5) !important;
}

/* Checkout submit button */
.checkout-submit:hover {
  box-shadow:
    0 0 20px rgba(255,184,42,1),
    0 0 50px rgba(255,184,42,0.9),
    0 0 100px rgba(212,144,12,0.6) !important;
  transform: translateY(-2px) !important;
}

/* Cart checkout button */
.cart-checkout-btn:hover {
  box-shadow:
    0 0 15px rgba(255,184,42,1),
    0 0 40px rgba(255,184,42,0.85),
    0 0 80px rgba(212,144,12,0.5) !important;
  transform: translateY(-2px) !important;
}

/* Main nav CTA button */
.nav-cta:hover {
  box-shadow:
    0 0 12px rgba(255,184,42,0.9),
    0 0 30px rgba(255,184,42,0.6),
    0 0 60px rgba(212,144,12,0.4) !important;
}

/* ============================================================
   MEGA GLOW — ALL BUY/PREORDER BUTTONS
   ============================================================ */

/* Base state — always has a subtle glow */
.btn-buy-glow,
.card-buy,
[data-buy],
.btn-portal,
.btn-primary {
  box-shadow: 0 0 12px rgba(212,144,12,0.6), 0 0 30px rgba(212,144,12,0.25) !important;
  transition: all 0.25s ease !important;
}

/* Hover — absolutely nuclear glow */
.btn-buy-glow:hover,
.card-buy:hover,
[data-buy]:hover,
.btn-primary:hover {
  transform: translateY(-3px) !important;
  background: #ffb82a !important;
  border-color: #ffb82a !important;
  color: #060402 !important;
  box-shadow:
    0 0 15px #ffb82a,
    0 0 40px rgba(255,184,42,1),
    0 0 80px rgba(255,184,42,0.9),
    0 0 140px rgba(212,144,12,0.7),
    0 0 220px rgba(212,144,12,0.4) !important;
}

/* Portal pre-order button — cyan glow */
.btn-portal {
  box-shadow: 0 0 15px rgba(0,212,255,0.5), 0 0 35px rgba(168,85,247,0.25) !important;
}
.btn-portal:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 20px rgba(0,212,255,1),
    0 0 50px rgba(0,212,255,0.9),
    0 0 100px rgba(0,212,255,0.6),
    0 0 160px rgba(168,85,247,0.5),
    0 0 220px rgba(168,85,247,0.3) !important;
}

/* Portal coming soon section CTA link */
#portal-banner a:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 20px rgba(0,212,255,1),
    0 0 50px rgba(0,212,255,0.9),
    0 0 100px rgba(0,212,255,0.6),
    0 0 160px rgba(168,85,247,0.5) !important;
}
#portal-banner a {
  transition: all 0.25s ease !important;
}

/* ============================================================
   PORTAL BANNER GUI — hover animation
   ============================================================ */
.portal-gui-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.portal-gui-wrap:hover {
  transform: scale(1.03) translateY(-4px);
}
.portal-gui-wrap img {
  transition: all 0.4s ease;
  display: block;
}
.portal-gui-wrap:hover img {
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.4),
    0 0 30px rgba(0,212,255,0.4),
    0 0 70px rgba(0,212,255,0.2),
    0 0 120px rgba(168,85,247,0.2) !important;
}
/* Scan line sweep on hover */
.portal-gui-wrap::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,212,255,0.06) 40%,
    rgba(0,212,255,0.12) 50%,
    rgba(0,212,255,0.06) 60%,
    transparent 100%
  );
  transition: top 0s;
  pointer-events: none;
}
.portal-gui-wrap:hover::after {
  top: 120%;
  transition: top 0.8s ease;
}

/* Plugin detail image on portal page — same effect */
.portal-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.portal-img-wrap:hover img {
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.3),
    0 0 40px rgba(0,212,255,0.3),
    0 0 80px rgba(168,85,247,0.2) !important;
  transform: scale(1.01);
}
.portal-img-wrap img {
  transition: all 0.4s ease;
}

/* ── Portal banner — CSS-only ambient glow ── */
#portal-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 15%;
  transform: translate(-50%, -50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#portal-banner::after {
  content: '';
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  width: 350px; height: 300px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Portal banner pre-order button */
#portal-banner a[href*="vertex-portal"] {
  font-family: 'Courier Prime', monospace !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #00d4ff, #a855f7) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #060402 !important;
  color: #060402 !important;
  padding: 0.9rem 2rem !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  display: inline-block !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 0 20px rgba(0,212,255,0.5), 0 0 50px rgba(168,85,247,0.3) !important;
  min-width: 180px !important;
  text-align: center !important;
  white-space: nowrap !important;
}
#portal-banner a[href*="vertex-portal"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 0 30px rgba(0,212,255,0.9), 0 0 80px rgba(0,212,255,0.7), 0 0 120px rgba(168,85,247,0.5) !important;
}
@media (max-width: 768px) {
  #portal-banner > div {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  #portal-banner a[href*="vertex-portal"] {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}
