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

:root {
  --bg: #0d0910;
  --panel: #1a1520;
  --panel-2: #140e18;
  --border: #3a3040;
  --purple: #c084fc;
  --purple-deep: #a855f7;
  --purple-glow: #7c3aed;
  --gold: #f59e0b;
  --gold-bright: #fbbf24;
  --gold-dark: #d97706;
  --text: #e8d8f0;
  --muted: #9a8aaa;
  --dim: #6a5a7a;
}

html { scroll-behavior: smooth; }

/* ═══ NAV ═══ */
nav {
  position: sticky; top: 0; z-index: 50;
  background: #0d0910dd;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #3a304066;
}
.nav-inner {
  max-width: 980px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; gap: 10px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 4px; text-decoration: none;
  color: var(--text); white-space: nowrap;
}
.nav-logo .vox { color: var(--purple); text-shadow: 0 0 16px #a855f766; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  padding: 6px 10px; border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: #a855f71a; }
.nav-links a.nav-cta {
  color: #000; font-weight: 700;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  margin-left: 6px;
}
.nav-links a.nav-cta:hover { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); }
@media (max-width: 700px) { .nav-links a.nav-hide { display: none; } }

body {
  font-family: 'JetBrains Mono', monospace;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, #1a1a1a11 2px, #1a1a1a11 4px),
    linear-gradient(180deg, #2a2233 0%, #1a1520 25%, #140e18 60%, #0d0910 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* ═══ HERO ═══ */
.hero { text-align: center; padding: 64px 0 40px; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 80px);
  letter-spacing: 12px; line-height: 1;
}
.hero .check { color: var(--text); text-shadow: 0 0 20px #a855f744, 0 2px 4px #000; }
.hero .vox { color: var(--purple); text-shadow: 0 0 30px #a855f788, 0 0 60px #7c3aed44, 0 2px 4px #000; }
.hero .sub {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--dim); margin-top: 8px;
}
.hero p.lead {
  max-width: 620px; margin: 24px auto 0;
  color: var(--muted); font-size: 15px;
}
.hero p.lead strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

@media (min-width: 880px) {
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr auto;
    gap: 48px; align-items: center; text-align: left;
  }
  .hero-grid p.lead { margin-left: 0; }
  .hero-grid .hero-cta { justify-content: flex-start; }
}

/* ═══ PEDAL MOCK — réplica visual do plugin ═══ */
.pm-wrap { display: flex; justify-content: center; margin-top: 36px; }
@media (min-width: 880px) { .pm-wrap { margin-top: 0; } }
.pm {
  width: 320px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, #1a1a1a11 2px, #1a1a1a11 4px),
    linear-gradient(180deg, #2a2233 0%, #1a1520 30%, #140e18 70%, #0d0910 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px 10px;
  position: relative;
  user-select: none;
  box-shadow:
    inset 0 1px 0 #4a3a5a44, inset 0 -1px 0 #0a0a0a,
    0 8px 30px #000000cc, 0 24px 70px #7c3aed33;
}
.pm .screw { width: 8px; height: 8px; }
.pm .screw-tl { top: 8px; left: 8px; }
.pm .screw-tr { top: 8px; right: 8px; }
.pm .screw-bl { bottom: 8px; left: 8px; }
.pm .screw-br { bottom: 8px; right: 8px; }

.pm-brand { text-align: center; margin-bottom: 8px; }
.pm-brand .t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px; letter-spacing: 5px; line-height: 1;
}
.pm-brand .t .check { color: var(--text); text-shadow: 0 0 12px #a855f744, 0 1px 2px #000; }
.pm-brand .t .vox { color: var(--purple); text-shadow: 0 0 18px #a855f788, 0 1px 2px #000; }
.pm-brand .s {
  font-family: 'Archivo Black', sans-serif;
  font-size: 6.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--dim);
}

.pm-main { display: flex; gap: 10px; }
.pm-content { flex: 1; }

.pm-cols { display: flex; gap: 8px; margin-bottom: 10px; }
.pm-col { flex: 1; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.pm-col-label {
  font-size: 7px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #716083; font-weight: 700;
}
.pm-col-knobs { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.pm-col-divider {
  width: 1px; align-self: stretch;
  background: linear-gradient(180deg, transparent, #3a2a4a 20%, #3a2a4a 80%, transparent);
}

.pm-knob { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pm-knob-outer {
  width: 58px; height: 58px; position: relative;
  filter: drop-shadow(0 4px 8px #000000cc);
}
.pm-knob-outer svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pm-knob-inner { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; border-radius: 50%; }
.pm-needle {
  width: 2.5px; height: 9px;
  background: linear-gradient(180deg, #e9d5ff, #a855f7);
  border-radius: 2px;
  position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 5px #c084fcaa;
}
.pm-knob-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 7px; color: #8a7a9a; letter-spacing: 1.5px; text-transform: uppercase;
  text-shadow: 0 1px 2px #000;
}
.pm-knob-val {
  font-size: 6.5px; color: var(--purple);
  background: #0d0810; border: 1px solid #2a1e32;
  padding: 0 5px; border-radius: 3px; letter-spacing: .5px;
  box-shadow: inset 0 1px 3px #00000088;
}

.pm-pro {
  background: linear-gradient(180deg, #1a1420, #140e18);
  border: 1px solid #2a2030; border-radius: 8px;
  padding: 10px 10px 9px; position: relative;
}
.pm-pro-label {
  position: absolute; top: -6px; left: 10px;
  background: #170f1c; padding: 0 6px;
  font-size: 7px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}
.pm-row { display: flex; justify-content: space-between; align-items: center; }
.pm-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 7px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple);
  background: linear-gradient(180deg, #2a1a44, #1a0e2e);
  border: 1px solid #6d28d9; border-radius: 4px;
  padding: 4px 9px;
  box-shadow: 0 0 10px #7c3aed33;
}
.pm-led {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 0 5px var(--purple-deep);
}
.pm-hint { font-size: 5.5px; color: #5a4a6a; letter-spacing: 1.5px; text-transform: uppercase; }
.pm-pro-divider {
  height: 1px; margin: 8px 0;
  background: linear-gradient(90deg, transparent, #2a2030 12%, #2a2030 88%, transparent);
}
.pm-pitch-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.pm-sel { flex: 1; }
.pm-sel .l { font-size: 5px; color: #9a8aaa; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.pm-sel .b {
  background: linear-gradient(180deg, #100c14, #0c0810);
  border: 1px solid #2a1e32; border-radius: 4px;
  padding: 3px 6px; font-size: 8px; font-weight: 700; color: #9a8aaa;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: inset 0 1px 3px #00000055;
}
.pm-sel .b .arr { font-size: 6px; color: #4a3a5a; }
.pm-int-head { display: flex; justify-content: space-between; font-size: 6px; letter-spacing: 1.5px; text-transform: uppercase; color: #9a8aaa; margin-bottom: 3px; }
.pm-int-head .pct { color: var(--purple); }
.pm-int-track {
  height: 5px; border-radius: 3px; background: #0d0810;
  border: 1px solid #2a1e32; position: relative;
  box-shadow: inset 0 1px 3px #00000088;
}
.pm-int-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 3px; box-shadow: 0 0 8px #7c3aed66;
}
.pm-int-thumb {
  position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 30%, #e9d5ff, #a855f7);
  box-shadow: 0 0 6px #a855f7aa, 0 1px 3px #000;
}
.pm-int-ends { display: flex; justify-content: space-between; font-size: 5px; color: #5a4a6a; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

.pm-rail {
  width: 40px; display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: linear-gradient(180deg, #1a1420, #140e18);
  border: 1px solid #2a2030; border-radius: 8px;
  padding: 8px 4px 6px;
}
.pm-rail .l { font-size: 5.5px; letter-spacing: 1.5px; text-transform: uppercase; color: #716083; font-weight: 700; }
.pm-fader { flex: 1; width: 7px; border-radius: 4px; background: #0d0810; border: 1px solid #2a1e32; position: relative; box-shadow: inset 0 1px 3px #00000088; min-height: 120px; }
.pm-fader-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 71%;
  background: linear-gradient(180deg, #a855f7, #7c3aed);
  border-radius: 4px; box-shadow: 0 0 8px #7c3aed55;
}
.pm-fader-thumb {
  position: absolute; left: 50%; bottom: 71%;
  width: 18px; height: 10px; border-radius: 3px;
  transform: translate(-50%, 50%);
  background: linear-gradient(180deg, #3a3a42, #1d1d22);
  border: 1px solid #0d0a14;
  box-shadow: inset 0 1px 0 #66666644, 0 2px 5px #000000cc;
}
.pm-fader-thumb::after {
  content: ''; position: absolute; left: 3px; right: 3px; top: 50%; height: 1px;
  background: var(--purple); box-shadow: 0 0 4px #a855f7;
}
.pm-rail .db { font-size: 6px; color: var(--purple); }

.pm-footer { text-align: center; font-size: 6px; letter-spacing: 1px; color: #5a4a6a; margin-top: 8px; }
.pm-footer strong { color: #8a7a9a; }

/* ═══ BOTÕES ═══ */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-color: var(--gold); color: #000;
  box-shadow: 0 4px 20px #f59e0b44, 0 2px 6px #00000088;
}
.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 24px #f59e0b66, 0 2px 6px #00000088;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--purple);
  border-color: var(--border); font-size: 12px; padding: 12px 24px;
}
.btn-ghost:hover { border-color: var(--purple); box-shadow: 0 0 16px #a855f733; }

/* ═══ CARD DE PREÇO (estilo pedal) ═══ */
.price-card {
  position: relative;
  max-width: 460px; margin: 40px auto;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, #1a1a1a11 2px, #1a1a1a11 4px),
    linear-gradient(180deg, #2a2233 0%, #1a1520 30%, #140e18 70%, #0d0910 100%);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 #4a3a5a44, inset 0 -1px 0 #0a0a0a,
    0 8px 30px #000000cc, 0 0 60px #7c3aed22;
}
.screw {
  position: absolute; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #555, #222);
  border: 1px solid #1a1a1a;
  box-shadow: inset 0 1px 1px #66666644, 0 1px 3px #000000aa;
}
.screw::after {
  content: ''; position: absolute; top: 50%; left: 20%; right: 20%; height: 1px;
  background: #111; transform: rotate(45deg);
}
.screw-tl { top: 12px; left: 12px; }
.screw-tr { top: 12px; right: 12px; }
.screw-bl { bottom: 12px; left: 12px; }
.screw-br { bottom: 12px; right: 12px; }

.pro-tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; padding: 4px 14px; border-radius: 6px;
  box-shadow: 0 2px 6px #f59e0b44;
}
.price-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; letter-spacing: 4px; margin-top: 14px;
}
.price-card .lifetime { color: var(--gold-bright); }
.price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: var(--text); line-height: 1; margin: 18px 0 2px;
  text-shadow: 0 0 30px #a855f744;
}
.price-value sup { font-size: 24px; color: var(--muted); }
.price-note { font-size: 11px; color: var(--dim); margin-bottom: 22px; }
.price-card ul { list-style: none; text-align: left; margin: 0 auto 26px; max-width: 320px; font-size: 13px; }
.price-card li { padding: 7px 0; border-bottom: 1px dashed #3a304066; color: var(--muted); }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓  '; color: var(--gold); font-weight: 700; }
.secure-note { margin-top: 14px; font-size: 10px; letter-spacing: 1px; color: var(--dim); text-transform: uppercase; }

/* ═══ SEÇÕES ═══ */
section { padding: 48px 0; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 5px; text-align: center;
  color: var(--text); margin-bottom: 8px;
}
.section-sub { text-align: center; color: var(--dim); font-size: 12px; margin-bottom: 36px; letter-spacing: 1px; }

/* ═══ FEATURES ═══ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.feat {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; position: relative;
}
.feat h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text); margin-bottom: 6px;
}
.feat p { font-size: 12px; color: var(--muted); }

/* ═══ PASSOS ═══ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.step {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 22px; text-align: center;
}
.step .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 40px;
  color: var(--purple); text-shadow: 0 0 20px #a855f755;
}
.step h3 { font-size: 13px; letter-spacing: 1px; margin: 8px 0 6px; color: var(--text); }
.step p { font-size: 12px; color: var(--muted); }

/* ═══ TRIAL / DOWNLOAD ═══ */
.trial-box {
  text-align: center;
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 24px;
}
.trial-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 4px; margin-bottom: 8px; }
.trial-box p { color: var(--muted); font-size: 13px; max-width: 560px; margin: 0 auto 22px; }

/* ═══ FAQ ═══ */
.faq details {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 10px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 20px;
  font-size: 13px; font-weight: 700; color: var(--text);
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); color: var(--purple); font-size: 18px;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 20px 16px; font-size: 12px; color: var(--muted); }

/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 36px; text-align: center;
  font-size: 11px; color: var(--dim); letter-spacing: 1px;
}
footer a { color: var(--purple); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .hero { padding: 44px 0 28px; }
  .hero h1 { letter-spacing: 8px; }
  section { padding: 36px 0; }
}
