/* =========================================================
   Music Sound Software — Main Stylesheet
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0a0a0f;
  --bg-2:         #0e0e16;
  --bg-3:         #13131e;
  --surface:      #181824;
  --surface-2:    #1e1e2e;
  --border:       rgba(255,255,255,0.07);
  --border-bright:rgba(255,255,255,0.14);
  --text:         #e8e8f0;
  --text-muted:   #888899;
  --text-dim:     #555566;

  --blue:         #3a9eff;
  --blue-glow:    rgba(58,158,255,0.18);
  --blue-dark:    #1a6abf;

  --orange:       #ff6b2b;
  --orange-glow:  rgba(255,107,43,0.18);
  --orange-dark:  #c04a10;

  --green:        #2ecc8a;
  --green-glow:   rgba(46,204,138,0.18);
  --green-dark:   #1a9962;

  --gold:         #f0c040;

  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Orbitron', monospace;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        68px;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mss {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 0.08em;
}
.logo-full {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active { color: var(--blue); }

.nav-links a[href="bluewave.html"]:hover  { color: var(--blue); }
.nav-links a[href="firestorm.html"]:hover { color: var(--orange); }
.nav-links a[href="leaf.html"]:hover      { color: var(--green); }
.nav-links a[href="bundle.html"]:hover    { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 800px) {
  .logo-full { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; width: 100%; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,158,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,158,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: glow-drift 8s ease-in-out infinite alternate;
}
.glow-blue  { width: 600px; height: 400px; top: -10%; left: -10%; background: var(--blue-glow); animation-delay: 0s; }
.glow-orange{ width: 500px; height: 350px; bottom: 0; right: -5%; background: var(--orange-glow); animation-delay: -3s; }
.glow-green { width: 400px; height: 300px; bottom: 20%; left: 30%; background: var(--green-glow); animation-delay: -5s; opacity: 0.3; }

@keyframes glow-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  max-width: 720px;
  margin-left: 8vw;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.7s ease 0.35s forwards;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.7s ease 0.5s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s ease 0.65s forwards;
}
.hero-intro-offer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-up 0.7s ease 0.8s forwards;
}
.hero-intro-offer strong { color: var(--gold); }
.price-highlight { color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 0.7s ease 1s forwards;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(58,158,255,0.3);
}
.btn-primary:hover {
  background: #5ab0ff;
  box-shadow: 0 0 30px rgba(58,158,255,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-bright);
  background: var(--surface);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; border-radius: 6px; }
.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-blue   { background: var(--blue);   color: #fff; box-shadow: 0 0 15px rgba(58,158,255,0.25); }
.btn-blue:hover   { background: #5ab0ff; transform: translateY(-1px); box-shadow: 0 0 25px rgba(58,158,255,0.4); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 0 15px rgba(255,107,43,0.25); }
.btn-orange:hover { background: #ff8050; transform: translateY(-1px); box-shadow: 0 0 25px rgba(255,107,43,0.4); }
.btn-green  { background: var(--green);  color: #0a0a0f; box-shadow: 0 0 15px rgba(46,204,138,0.25); }
.btn-green:hover  { background: #50ddaa; transform: translateY(-1px); box-shadow: 0 0 25px rgba(46,204,138,0.4); }
.btn-gold   { background: var(--gold);   color: #0a0a0f; box-shadow: 0 0 15px rgba(240,192,64,0.25); }
.btn-gold:hover   { background: #f8d060; transform: translateY(-1px); }

/* =========================================================
   CONTAINERS & LAYOUT
   ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* =========================================================
   PLUGIN CARDS (Home)
   ========================================================= */
.plugins-section {
  padding: 7rem 0;
  background: var(--bg-2);
}
.plugin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.plugin-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.plugin-card:hover { transform: translateY(-4px); }
.card-blue:hover   { border-color: rgba(58,158,255,0.3);  box-shadow: 0 20px 60px rgba(58,158,255,0.12);  }
.card-orange:hover { border-color: rgba(255,107,43,0.3);  box-shadow: 0 20px 60px rgba(255,107,43,0.12); }
.card-green:hover  { border-color: rgba(46,204,138,0.3);  box-shadow: 0 20px 60px rgba(46,204,138,0.12); }

.card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.card-blue  .card-accent { background: var(--blue); box-shadow: 0 0 20px rgba(58,158,255,0.6); }
.card-orange .card-accent { background: var(--orange); box-shadow: 0 0 20px rgba(255,107,43,0.6); }
.card-green .card-accent { background: var(--green); box-shadow: 0 0 20px rgba(46,204,138,0.6); }

.card-img-wrap {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.card-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.plugin-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.card-blue  .card-tag { background: rgba(58,158,255,0.12);  color: var(--blue); }
.card-orange .card-tag { background: rgba(255,107,43,0.12);  color: var(--orange); }
.card-green .card-tag { background: rgba(46,204,138,0.12); color: var(--green); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.card-presets {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.card-price { display: flex; align-items: center; gap: 0.5rem; }
.price-now {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.price-was {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.price-badge {
  font-size: 0.65rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  background: rgba(240,192,64,0.12);
  color: var(--gold);
  border-radius: 4px;
}
.card-actions { display: flex; gap: 0.5rem; align-items: center; }

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section {
  padding: 7rem 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   BUNDLE CTA
   ========================================================= */
.bundle-cta {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.bundle-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(58,158,255,0.05) 0%,
    rgba(46,204,138,0.05) 50%,
    rgba(255,107,43,0.05) 100%);
  pointer-events: none;
}
.bundle-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bundle-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 440px;
}
.bundle-price-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.bundle-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.bundle-saving {
  font-size: 0.82rem;
  color: var(--green);
  background: rgba(46,204,138,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* =========================================================
   PRODUCT PAGE HERO
   ========================================================= */
.product-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.product-hero-bg .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-color, rgba(58,158,255,0.04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color, rgba(58,158,255,0.04)) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 40%, transparent);
}
.product-hero-bg .p-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  width: 700px; height: 500px;
  top: -20%; left: -10%;
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.product-hero-text .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.product-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.product-hero-text .tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.spec-pill {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.product-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-price-block { display: flex; align-items: baseline; gap: 0.6rem; }
.product-price-now {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.product-price-was {
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.product-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.product-hero-img img { width: 100%; height: auto; display: block; }

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.video-section {
  padding: 5rem 0;
  background: var(--bg);
}
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 65%;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   SCREENSHOT GALLERY
   ========================================================= */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-2);
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.screenshot-item:hover {
  transform: scale(1.02);
}
.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}
.screenshot-item:hover img { opacity: 0.85; }
.screenshot-item:hover img { opacity: 0.85; }
.screenshot-caption {
  padding: 0.6rem 0.9rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.lightbox-close:hover { color: var(--text); background: var(--surface-2); }

/* =========================================================
   AUDIO DEMOS
   ========================================================= */
.audio-section {
  padding: 5rem 0;
  background: var(--bg);
}
.audio-demos { display: flex; flex-direction: column; gap: 0.75rem; }

.audio-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color var(--transition);
}
.audio-demo:hover { border-color: var(--border-bright); }
.audio-demo-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--text-dim);
  min-width: 24px;
}
.audio-demo-info { flex: 1; min-width: 0; }
.audio-demo-title {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-demo-presets {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.audio-demo audio {
  min-width: 240px;
  max-width: 380px;
  width: 100%;
  height: 36px;
  accent-color: var(--blue);
}
audio { accent-color: var(--blue); }
.audio-demo-blue audio   { accent-color: var(--blue); }
.audio-demo-orange audio { accent-color: var(--orange); }
.audio-demo-green audio  { accent-color: var(--green); }
.audio-demo-cirrus audio { accent-color: #968FB0; }

@media (max-width: 600px) {
  .audio-demo { flex-direction: column; align-items: flex-start; }
  .audio-demo audio { min-width: 100%; }
}

/* =========================================================
   FEATURES DETAIL (Product pages)
   ========================================================= */
.product-features {
  padding: 5rem 0;
}
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.pf-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.pf-item h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.pf-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   SUPPORT / INFO PAGES
   ========================================================= */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.page-content {
  padding: 4rem 0 6rem;
}
.content-prose {
  max-width: 800px;
}
.content-prose h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.content-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-prose h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.5rem 0 0.5rem;
}
.content-prose p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.content-prose ul, .content-prose ol {
  list-style: initial;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.content-prose li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.content-prose strong { color: var(--text); font-weight: 500; }
.content-prose a { color: var(--blue); }
.content-prose a:hover { text-decoration: underline; }
.content-prose .notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.content-prose .notice.warning {
  border-left-color: var(--orange);
}
.content-prose .notice p { margin: 0; font-size: 0.875rem; }
.content-prose .notice p + p { margin-top: 0.5rem; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.faq-q {
  width: 100%;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--surface-2); }
.faq-q .chevron {
  width: 18px; height: 18px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-q.open .chevron { transform: rotate(-135deg) translateY(-2px); }
.faq-a {
  display: none;
  padding: 1.1rem 1.5rem;
  background: var(--bg-2);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }
.faq-a a { color: var(--blue); }

/* =========================================================
   BUNDLE PAGE
   ========================================================= */
.bundle-plugins {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.bundle-plugin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.bundle-plugin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.bp-blue::before  { background: var(--blue); }
.bp-orange::before { background: var(--orange); }
.bp-green::before  { background: var(--green); }

.bundle-plugin-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.bundle-plugin-card .synth-type {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.bp-blue  .synth-type { color: var(--blue); }
.bp-orange .synth-type { color: var(--orange); }
.bp-green  .synth-type { color: var(--green); }

.bundle-plugin-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bundle-pricing-box {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}
.bundle-pricing-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(58,158,255,0.04) 0%,
    rgba(46,204,138,0.04) 50%,
    rgba(255,107,43,0.04) 100%);
  pointer-events: none;
}
.bundle-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.bundle-price-line:last-of-type { border-bottom: none; }
.bundle-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  margin-top: 0.5rem;
}
.bundle-total-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.bundle-total-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.bundle-note {
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

/* =========================================================
   EULA PAGE
   ========================================================= */
.eula-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.eula-tab {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}
.eula-tab:hover { color: var(--text); }
.eula-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.eula-panel { display: none; }
.eula-panel.active { display: block; }

.eula-section {
  margin-bottom: 2rem;
}
.eula-section h2 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.eula-section p, .eula-section li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.eula-section ul { padding-left: 1.4rem; list-style: initial; }
.eula-section .highlight-box {
  background: rgba(255,107,43,0.07);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.eula-section .highlight-box p { color: var(--text); margin: 0; font-size: 0.875rem; }
.eula-section .highlight-box p + p { margin-top: 0.5rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo-mss {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-links h5 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blue); }
.footer-disclaimer { font-style: italic; }

/* =========================================================
   WINDOWS INSTALL NOTICE
   ========================================================= */
.install-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.install-notice h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.install-notice ol {
  padding-left: 1.4rem;
  list-style: decimal;
}
.install-notice li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.6;
}
.install-notice strong { color: var(--text); }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.nav-logo-img {
  width: 80px;
  height: auto;
  display: block;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

/* Keep old logo-mss style for any remaining references */
.theme-blue  { --accent: var(--blue);  --accent-glow: var(--blue-glow); }
.theme-orange{ --accent: var(--orange); --accent-glow: var(--orange-glow); }
.theme-green { --accent: var(--green); --accent-glow: var(--green-glow); }
