/* visualizers.css — extends black.css */
/* Depends on: /css/black.css (--bg, --fg, --muted, --panel, --ring, --accent) */

/* ── Gold extension ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.12);
}

/* ── Utility ── */
.text-gold { color: var(--gold) !important; }

.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: var(--gold);
  color: #000;
}
.btn-outline-gold.disabled,
.btn-outline-gold:disabled {
  color: var(--muted);
  border-color: var(--ring);
  pointer-events: none;
}

.kicker-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
}

/* ── Navbar ── */
#siteNav {
  border-bottom: 1px solid var(--ring);
  backdrop-filter: blur(10px);
  z-index: 1030;
}
.brand-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1em;
  color: var(--fg);
  text-decoration: none;
}
.navbar-brand { text-decoration: none; }

/* ── Section headings ── */
.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .03em;
  line-height: 1;
  color: var(--fg);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.min-vh-75 { min-height: 75vh; }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--fg);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-stat .stat-num {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2rem;
  color: var(--fg);
  line-height: 1;
}

/* ── Demo canvas ── */
.demo-canvas-wrap {
  position: relative;
  border: 1px solid var(--ring);
  border-radius: .5rem;
  overflow: hidden;
  background: #050505;
}

#demoCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.75);
  transition: opacity .4s;
}
.demo-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.demo-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  padding-left: 3px; /* optical center for play icon */
}
.demo-play-btn:hover {
  background: var(--gold-dim);
  transform: scale(1.06);
}

.btn-demo-tab {
  background: transparent;
  border: 1px solid var(--ring);
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-demo-tab:hover { color: var(--fg); border-color: rgba(255,255,255,.15); }
.btn-demo-tab.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Steps ── */
.step-card { position: relative; overflow: hidden; transition: border-color .2s; }
.step-card:hover { border-color: rgba(201,168,76,.3); }

.step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201,168,76,.1);
  user-select: none;
}

.step-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── Pricing ── */
.price-card {
  position: relative;
  transition: border-color .25s, transform .2s;
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,.25); }

.price-card--featured {
  border-color: var(--gold) !important;
  background: linear-gradient(160deg, rgba(201,168,76,.07) 0%, transparent 60%) !important;
}

.price-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .25rem .75rem;
}

.price-amount {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--fg);
}
.price-amount sup {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: .6rem;
  display: inline-block;
  color: var(--gold);
}

.price-features li {
  font-size: .875rem;
  color: var(--muted);
  padding: .3rem 0;
}

/* ── Testimonials ── */
.testimonial-card { transition: border-color .2s; }
.testimonial-card:hover { border-color: rgba(201,168,76,.2); }

.testimonial-quote {
  font-size: .9rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: 1.2rem; }
.testimonial-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.2rem; }

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: .85rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-section { position: relative; overflow: hidden; }
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .95;
  letter-spacing: .02em;
}

/* ── Footer ── */
.footer-brand { font-size: 1rem; }
