* { 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; }

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; }

/* ═══ 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-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img { height: 22px; width: auto; display: block; filter: drop-shadow(0 0 10px #a855f755); }
.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; } }

/* ═══ HERO ═══ */
.hero { padding: 64px 0 48px; }
.hero-grid { display: grid; gap: 44px; align-items: center; text-align: center; }
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr auto; text-align: left; }
}
.hero .kicker {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.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: 560px; margin: 24px auto 0;
  color: var(--muted); font-size: 15px;
}
@media (min-width: 880px) { .hero p.lead { margin-left: 0; } }
.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-cta { justify-content: flex-start; } }
.hero-note { margin-top: 14px; font-size: 10px; letter-spacing: 1px; color: var(--dim); text-transform: uppercase; text-align: center; }
@media (min-width: 880px) { .hero-note { text-align: left; } }

/* ═══ BOTÕES ═══ */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 32px; border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .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-purple {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
  border-color: #8b5cf6; color: #fff;
  box-shadow: 0 4px 20px #7c3aed44, 0 2px 6px #00000088;
}
.btn-purple:hover {
  background: linear-gradient(180deg, #8b5cf6, #6d28d9);
  box-shadow: 0 0 24px #7c3aed77, 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; }

/* ═══ SEÇÕES ═══ */
section { padding: 52px 0; }
.section-kicker {
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.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); }

/* ═══ DEMO ═══ */
.demo-box { max-width: 760px; margin: 0 auto; }
.demo-video {
  position: relative; aspect-ratio: 16 / 9;
  background: #0a0710;
  border: 2px solid var(--border); border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px #000000cc, 0 0 60px #7c3aed22;
}
.demo-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.demo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center;
  color: var(--dim); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  background: repeating-linear-gradient(45deg, #140e18, #140e18 14px, #171020 14px, #171020 28px);
}
.demo-placeholder .ico { font-size: 34px; }
.demo-placeholder .small { font-size: 9px; color: #4a3a5a; letter-spacing: 1px; }

/* ═══ 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); }

/* ═══ CTA FINAL / PREÇO ═══ */
.cta-box {
  position: relative; text-align: center;
  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: 40px 28px 36px;
  box-shadow: inset 0 1px 0 #4a3a5a44, 0 8px 30px #000000cc, 0 0 60px #7c3aed22;
}
.cta-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 4px; }
.cta-box h2 .gold { color: var(--gold-bright); }
.cta-box p { color: var(--muted); font-size: 13px; max-width: 540px; margin: 10px auto 24px; }
.cta-box p strong { color: var(--text); }
.cta-box .price {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1;
  color: var(--text); text-shadow: 0 0 30px #a855f744; margin-bottom: 4px;
}
.cta-box .price sup { font-size: 20px; color: var(--muted); }
.cta-box .price-note { font-size: 10px; color: var(--dim); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dl-notice {
  max-width: 560px; margin: 26px auto 0;
  text-align: left; font-size: 11px; line-height: 1.7;
  color: var(--muted);
  background: #14101a;
  border: 1px dashed #f59e0b55; border-radius: 10px;
  padding: 14px 18px;
}
.dl-notice strong { color: var(--gold-bright); }
.dl-notice em { color: var(--text); font-style: normal; }
.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; }

/* ═══ PEDAL MOCK ═══ */
.pm-wrap { display: flex; justify-content: center; }
.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; }

/* ═══ 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; }
}
