* { 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: 1080px; margin: 0 auto; padding: 0 20px; }

a { color: var(--purple); }

/* ═══ 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: 1080px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.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 span { color: var(--purple); text-shadow: 0 0 16px #a855f766; }
.nav-logo svg {
  height: 26px; width: auto; display: block;
  color: var(--text);
  filter: drop-shadow(0 0 10px #a855f755);
}
.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.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)); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 18px; border-radius: 8px;
  width: 40px; height: 40px; cursor: pointer;
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 58px; left: 0; right: 0;
    background: #0d0910f5; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 12px 20px 18px; gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; font-size: 12px; }
  .nav-links a.nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ═══ HERO ═══ */
.hero { text-align: center; padding: 84px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: 0; left: 50%;
  width: min(700px, 100%); height: 380px; transform: translateX(-50%);
  background: radial-gradient(ellipse closest-side, #7c3aed2e, transparent);
  pointer-events: none;
}
.hero .kicker {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 11vw, 108px);
  letter-spacing: 10px; line-height: .95;
}
.hero h1 .first { color: var(--text); text-shadow: 0 0 20px #a855f744, 0 2px 4px #000; }
.hero h1 .last { color: var(--purple); text-shadow: 0 0 34px #a855f788, 0 0 70px #7c3aed44, 0 2px 4px #000; }
.hero h1.hero-logo svg {
  width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto;
  color: var(--text);
  filter: drop-shadow(0 0 26px #a855f766) drop-shadow(0 8px 22px rgba(0,0,0,.40));
}
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.hero .roles {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px;
}
.hero .roles span {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px;
  background: #1a152088;
}
.hero p.lead {
  max-width: 640px; margin: 26px 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: 30px; }
.hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.12fr .88fr; text-align: left; }
  .hero-grid .roles, .hero-grid .hero-cta { justify-content: flex-start; }
  .hero-grid p.lead { margin-left: 0; margin-right: 0; }
}

/* ═══ FOTOS ═══ */
.photo-frame {
  position: relative; overflow: hidden;
  border: 2px solid var(--border); border-radius: 18px;
  background: #0a0710;
  box-shadow: inset 0 1px 0 #4a3a5a44, 0 8px 30px #000000cc, 0 0 60px #7c3aed22;
}
.photo-frame picture, .contact-ava picture { display: contents; }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 10px;
  background: linear-gradient(180deg, transparent, #0d0910ee);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.hero-photo {
  aspect-ratio: 3 / 4; max-width: 360px; width: 100%;
  margin: 14px auto 0;
  transform: rotate(1.5deg);
  transition: transform .25s;
}
.hero-photo:hover { transform: rotate(0deg) scale(1.01); }
.hero-photo img { object-position: 50% 20%; }
@media (min-width: 880px) { .hero-photo { margin: 0 0 0 auto; } }
.bio-photo { aspect-ratio: 4 / 3; margin-top: 24px; }
.bio-photo img { object-position: 50% 30%; }

/* ═══ EQ bars decorativas ═══ */
.eq-bars { display: flex; gap: 5px; justify-content: center; align-items: flex-end; height: 34px; margin-top: 40px; }
.eq-bars i {
  width: 5px; height: 100%; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--purple-deep), var(--purple-glow));
  box-shadow: 0 0 8px #7c3aed55;
  transform-origin: bottom;
  animation: eq 1.1s ease-in-out infinite;
}
@keyframes eq { 0%,100% { transform: scaleY(0.22); } 50% { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .eq-bars i { animation: none; transform: scaleY(0.55); } }

/* ═══ 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: 64px 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: 38px; 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: 40px; letter-spacing: 1px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══ VÍDEOS ═══ */
.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.video-card {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.video-card:hover { transform: translateY(-3px); border-color: #a855f766; box-shadow: 0 10px 30px #00000088, 0 0 24px #7c3aed22; }
.video-thumb {
  position: relative; aspect-ratio: 16 / 9; cursor: pointer;
  background: #0a0710; border: none; padding: 0; width: 100%; display: block;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; }
.video-thumb .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: #0d0910cc; border: 2px solid var(--purple);
  box-shadow: 0 0 26px #7c3aed66;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .15s;
}
.video-thumb:hover .play { transform: translate(-50%, -50%) scale(1.08); background: #7c3aedcc; }
.video-thumb .play::after {
  content: ''; margin-left: 4px;
  border-left: 18px solid var(--text);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-card .vc-title { padding: 12px 16px 14px; font-size: 12px; color: var(--muted); letter-spacing: .5px; }
.video-placeholder {
  aspect-ratio: 16 / 9; display: flex; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  color: var(--dim); font-size: 11px; letter-spacing: 1px; text-align: center; padding: 16px;
  background: repeating-linear-gradient(45deg, #140e18, #140e18 12px, #171020 12px, #171020 24px);
}
.videos-more { text-align: center; margin-top: 28px; }

/* ═══ TRAJETÓRIA ═══ */
.bio-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 860px) { .bio-grid { grid-template-columns: 1.05fr .95fr; } }
.bio-text p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.bio-text strong { color: var(--text); }
.bio-text .hl { color: var(--gold-bright); }

.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--purple-glow), #3a3040);
}
.tl-item { position: relative; padding-bottom: 22px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -26px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e9d5ff, #a855f7);
  box-shadow: 0 0 10px #a855f788;
  border: 3px solid #140e18;
}
.tl-item h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text);
}
.tl-item p { font-size: 12px; color: var(--muted); margin-top: 3px; }
.tl-item.gold::before { background: radial-gradient(circle at 35% 30%, #fde68a, #f59e0b); box-shadow: 0 0 10px #f59e0b88; }
.tl-item.gold h3 { color: var(--gold-bright); }

/* ═══ MÚSICA / SPOTIFY ═══ */
.music-box {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 28px; text-align: center; position: relative;
}
.music-box h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 4px; margin-bottom: 8px;
}
.music-box p { color: var(--muted); font-size: 13px; max-width: 560px; margin: 0 auto 24px; }
.spotify-embed { max-width: 640px; margin: 0 auto 24px; border-radius: 14px; overflow: hidden; }
.spotify-embed iframe { display: block; width: 100%; border: 0; }
.btn-spotify {
  background: linear-gradient(180deg, #1db954, #169c46);
  border-color: #1db954; color: #04140a;
  box-shadow: 0 4px 20px #1db95444, 0 2px 6px #00000088;
}
.btn-spotify:hover {
  background: linear-gradient(180deg, #23d160, #1db954);
  box-shadow: 0 0 24px #1db95466; transform: translateY(-2px);
}

/* ═══ ESTÚDIO IA ═══ */
.ia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ia-card {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ia-card:hover { transform: translateY(-3px); border-color: #a855f766; box-shadow: 0 0 26px #7c3aed22; }
.ia-card .icon { font-size: 26px; margin-bottom: 12px; filter: drop-shadow(0 0 10px #a855f755); }
.ia-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text); margin-bottom: 8px;
}
.ia-card p { font-size: 12px; color: var(--muted); }
.ia-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-deep), transparent);
  opacity: 0; transition: opacity .2s;
}
.ia-card:hover::after { opacity: 1; }

/* ═══ PLUGINS ═══ */
.plugin-hero {
  display: grid; gap: 44px; align-items: center; justify-items: center;
  margin-bottom: 48px;
}
@media (min-width: 880px) {
  .plugin-hero { grid-template-columns: auto 1fr; justify-items: start; }
}
.plugin-hero-copy { text-align: center; }
@media (min-width: 880px) { .plugin-hero-copy { text-align: left; } }
.ph-tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); border: 1px dashed #f59e0b66;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.plugin-hero-copy h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 54px); letter-spacing: 7px; line-height: 1;
}
.plugin-hero-copy h3 .a { color: var(--text); text-shadow: 0 0 16px #a855f744; }
.plugin-hero-copy h3 .b { color: var(--purple); text-shadow: 0 0 24px #a855f788; }
.plugin-hero-copy .type {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dim); margin-top: 8px;
}
.plugin-hero-copy p { font-size: 13px; color: var(--muted); margin: 18px 0; max-width: 460px; }
.plugin-hero-copy p strong { color: var(--text); }
.ph-list { list-style: none; margin: 0 0 24px; font-size: 12px; text-align: left; display: inline-block; }
.ph-list li { padding: 5px 0; color: var(--muted); }
.ph-list li::before { content: '✓  '; color: var(--gold); font-weight: 700; }
.ph-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 880px) { .ph-cta { justify-content: flex-start; } }

/* Hero espelhado (Guitar Honey): texto à esquerda, pedal à direita no desktop */
@media (min-width: 880px) {
  .plugin-hero.flip { grid-template-columns: 1fr auto; }
  .plugin-hero.flip .pm-wrap { order: 2; }
  .plugin-hero.flip .plugin-hero-copy { order: 1; }
}
/* Variante mel (Guitar Honey) dos elementos do hero */
.ph-tag.honey { color: #f5b93e; border-color: #f5b93e66; }
.plugin-hero-copy h3 .b.honey { color: #f5b93e; text-shadow: 0 0 24px #f5b93e88; }
.ph-list.honey li::before { color: #f5b93e; }

/* ═══ PEDAL MOCK — réplica visual do CheckVox ═══ */
.pm-wrap { display: flex; justify-content: center; text-decoration: none; }
.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;
  transition: transform .25s, box-shadow .25s;
  box-shadow:
    inset 0 1px 0 #4a3a5a44, inset 0 -1px 0 #0a0a0a,
    0 8px 30px #000000cc, 0 24px 70px #7c3aed33;
}
.pm-wrap:hover .pm {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 #4a3a5a44, inset 0 -1px 0 #0a0a0a,
    0 14px 40px #000000cc, 0 30px 90px #7c3aed4d;
}
.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; }
.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);
}

/* ═══ CURSOS ═══ */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.course-card {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 24px; position: relative; display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.course-card:hover { transform: translateY(-3px); border-color: #f59e0b55; box-shadow: 0 0 26px #f59e0b14; }
.course-card .icon { font-size: 26px; margin-bottom: 12px; }
.course-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 8px;
}
.course-card p { font-size: 12px; color: var(--muted); flex: 1; margin-bottom: 18px; }
.course-card .btn { font-size: 11px; padding: 11px 18px; text-align: center; }

/* ═══ INSTAGRAM ═══ */
.ig-carousel-wrap { position: relative; }
.ig-carousel {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 16px;
  scrollbar-width: thin; scrollbar-color: #3a3040 transparent;
}
.ig-carousel::-webkit-scrollbar { height: 6px; }
.ig-carousel::-webkit-scrollbar-thumb { background: #3a3040; border-radius: 3px; }
.ig-card {
  flex: 0 0 240px; aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  position: relative; display: block; overflow: hidden;
  border: 2px solid var(--border); border-radius: 14px;
  background: #0a0710; text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.ig-card:hover { transform: translateY(-3px); border-color: #e1306c88; box-shadow: 0 8px 26px #00000088, 0 0 22px #e1306c22; }
.ig-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-card .ig-over {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #0d0910cc; opacity: 0;
  transition: opacity .2s;
}
.ig-card:hover .ig-over { opacity: 1; }
.ig-card .ig-over .si { width: 30px; height: 30px; fill: #e1306c; filter: drop-shadow(0 0 12px #e1306c88); }
.ig-card.ph {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  color: var(--dim); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; padding: 14px;
  background: repeating-linear-gradient(45deg, #140e18, #140e18 12px, #171020 12px, #171020 24px);
}
.ig-card.ph .big { font-size: 26px; }
.ig-card.ph .small { font-size: 8px; color: #4a3a5a; letter-spacing: 1px; }
.ig-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); cursor: pointer;
  background: #0d0910e6; color: var(--purple); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, box-shadow .15s;
  z-index: 2;
}
.ig-nav:hover { border-color: var(--purple); box-shadow: 0 0 14px #a855f744; }
.ig-nav.prev { left: -8px; }
.ig-nav.next { right: -8px; }
@media (max-width: 700px) { .ig-card { flex-basis: 200px; } .ig-nav { display: none; } }
.ig-follow { text-align: center; margin-top: 20px; }

/* ═══ CONTATO ═══ */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-info {
  background: linear-gradient(180deg, #1f1826, var(--panel-2));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 28px;
}
.contact-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; margin-bottom: 10px; }
.contact-info p { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.contact-lines a {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text); font-size: 13px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.contact-lines a:hover { border-color: var(--purple); box-shadow: 0 0 14px #a855f722; }
.contact-lines .ico { font-size: 18px; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px;
  transition: color .15s, border-color .15s, box-shadow .15s;
}
.socials a:hover { color: var(--text); border-color: var(--purple); box-shadow: 0 0 14px #a855f733; }
.si { width: 15px; height: 15px; fill: currentColor; flex: none; }
.btn .si { width: 16px; height: 16px; vertical-align: -3px; margin-right: 7px; }
.socials a.spotify-link:hover { color: #1db954; border-color: #1db95488; box-shadow: 0 0 14px #1db95433; }
.socials a.instagram-link:hover { color: #e1306c; border-color: #e1306c88; box-shadow: 0 0 14px #e1306c33; }
.socials a.youtube-link:hover { color: #ff5252; border-color: #ff525288; box-shadow: 0 0 14px #ff525233; }
.socials a.tiktok-link:hover { color: #25f4ee; border-color: #25f4ee88; box-shadow: 0 0 14px #25f4ee33; }
.contact-lines .si { width: 18px; height: 18px; }
.contact-lines a.whatsapp-link .si { fill: #25d366; }
.contact-ava {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--purple-deep);
  box-shadow: 0 0 24px #7c3aed55, 0 4px 12px #000000aa;
  margin-bottom: 16px;
}
.contact-ava img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

.contact-form {
  position: relative;
  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: 32px 28px;
}
.contact-form .screw-tl { top: 12px; left: 12px; }
.contact-form .screw-tr { top: 12px; right: 12px; }
.contact-form .screw-bl { bottom: 12px; left: 12px; }
.contact-form .screw-br { bottom: 12px; right: 12px; }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; margin-bottom: 18px; text-align: center; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px; font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--text);
  background: #0d0810;
  border: 1px solid #2a1e32; border-radius: 8px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 4px #00000088;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--purple-deep);
  box-shadow: inset 0 1px 4px #00000088, 0 0 12px #7c3aed33;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c084fc'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.form-actions .btn { flex: 1; text-align: center; font-size: 12px; padding: 14px 18px; }
.form-note { margin-top: 14px; font-size: 10px; color: var(--dim); text-align: center; letter-spacing: .5px; }
.form-status { margin-top: 14px; font-size: 12px; text-align: center; display: none; }
.form-status.ok { display: block; color: #4ade80; }
.form-status.err { display: block; color: #f87171; }

/* ═══ WHATSAPP FLUTUANTE ═══ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(180deg, #2ce571, #1daf52);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px #000000aa, 0 0 26px #25d36655;
  transition: transform .15s, box-shadow .15s;
}
.wa-float.on { display: flex; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px #000000aa, 0 0 34px #25d36688; }
.wa-float .si { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 600px) { .wa-float { right: 14px; bottom: 14px; width: 54px; height: 54px; } }

/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 40px; text-align: center;
  font-size: 11px; color: var(--dim); letter-spacing: 1px;
}
footer .foot-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 4px;
  color: var(--text); margin-bottom: 8px;
}
footer .foot-logo span { color: var(--purple); }
footer .foot-logo svg {
  height: 28px; width: auto; display: block; margin: 0 auto;
  color: var(--text);
  filter: drop-shadow(0 0 12px #a855f755);
}
footer a { color: var(--purple); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .foot-links { margin-top: 10px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
footer .foot-links a { display: inline-flex; align-items: center; gap: 6px; }
footer .foot-links .si { width: 13px; height: 13px; }

@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { letter-spacing: 6px; }
  section { padding: 44px 0; }
}

/* ═══ PEDAL MOCK — réplica visual do Guitar Honey (copiada de guitarhoney.css, escopo #ghp) ═══ */
.ghp-scale { width: 310px; height: 462px; }   /* 470×700 escalado em 0.66 */
#ghp {
  width: 470px; height: 700px; flex: none;
  transform: scale(0.66); transform-origin: top left;
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(120% 90% at 50% 0%, #2e1e0d, #1a1108 70%), #1a1108;
  border-radius: 22px;
  border: 1px solid rgba(247,169,44,.35);
  box-shadow: inset 0 1px 0 rgba(255,220,150,.15),
              inset 0 -14px 40px rgba(0,0,0,.55),
              0 18px 60px rgba(0,0,0,.7);
  position: relative; overflow: hidden; user-select: none;
  display: flex; flex-direction: column; padding: 20px 26px 14px;
}
#ghp::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="56" height="97" viewBox="0 0 56 97"><path d="M28 0 56 16v32L28 64 0 48V16zM28 64l28 16v17M28 64 0 80v17" fill="none" stroke="%23f7a92c" stroke-opacity=".06" stroke-width="1.5"/></svg>');
  background-size: 56px 97px;
}
#ghp .screw { position: absolute; width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #7a6a4c, #241a0d 75%);
  box-shadow: inset 0 1px 2px rgba(255,230,170,.4), 0 1px 2px rgba(0,0,0,.8);
  border: none; }
#ghp .screw::after { content: ""; position: absolute; left: 1.5px; right: 1.5px; top: 5.5px;
  height: 1.6px; background: rgba(0,0,0,.65); transform: rotate(38deg); }
#ghp .screw.tl { top: 9px; left: 9px; } #ghp .screw.tr { top: 9px; right: 9px; }
#ghp .screw.bl { bottom: 9px; left: 9px; } #ghp .screw.br { bottom: 9px; right: 9px; }

#ghp header { text-align: center; position: relative; z-index: 1; }
#ghp .gh-logo { display: flex; align-items: center; justify-content: center; gap: 10px; }
#ghp .gh-logo h3 {
  font-size: 27px; letter-spacing: 4.5px; font-weight: 800; color: #f6e9c9;
  text-shadow: 0 0 18px rgba(247,169,44,.35), 0 2px 2px rgba(0,0,0,.8);
}
#ghp .gh-logo h3 b { color: #f7a92c; font-weight: 800; }
#ghp .gh-brand { margin-top: 2px; font-size: 11.5px; letter-spacing: 2px; color: #a68e63; }

#ghp .gh-mode { margin: 14px auto 4px; width: 250px; height: 34px; position: relative;
  background: linear-gradient(180deg,#0f0a05,#1d1409);
  border: 1px solid rgba(247,169,44,.22); border-radius: 17px;
  display: flex; z-index: 1;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.7); }
#ghp .gh-mode .opt { flex: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 2.5px; font-weight: 700; color: #a68e63;
  position: relative; z-index: 2; }
#ghp .gh-mode .opt.on { color: #1a1005; }
#ghp .gh-mode .gh-thumb { position: absolute; top: 3px; left: 3px; width: calc(50% - 3px);
  height: calc(100% - 6px); border-radius: 14px;
  background: linear-gradient(180deg,#ffbe55,#b06e10);
  box-shadow: 0 0 14px rgba(247,169,44,.5), inset 0 1px 0 rgba(255,240,200,.6); }

#ghp .gh-presets { display: flex; align-items: center; justify-content: center;
  gap: 6px; margin: 8px auto 0; z-index: 1; width: 280px; }
#ghp .gh-presets .sel { flex: 1; height: 26px; padding: 0 8px; border-radius: 9px;
  background: linear-gradient(180deg,#0f0a05,#1d1409); color: #a68e63;
  border: 1px solid rgba(247,169,44,.22); font-size: 11px; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: space-between; }
#ghp .gh-presets .pbtn { width: 26px; height: 26px; border-radius: 9px;
  border: 1px solid rgba(247,169,44,.22);
  background: linear-gradient(180deg,#1d1409,#0f0a05); color: #ffbe55;
  font-size: 13px; line-height: 24px; text-align: center; }

#ghp .gh-hero-row { display: flex; align-items: flex-end; justify-content: center;
  gap: 28px; margin: 10px auto 6px; position: relative; z-index: 1; }
#ghp .knob { display: flex; flex-direction: column; align-items: center; gap: 3px;
  position: relative; z-index: 1; }
#ghp .knob .name { font-size: 11px; letter-spacing: 2.4px; font-weight: 700; color: #a68e63; }
#ghp .knob .val { font-size: 11px; color: #ffbe55; min-height: 14px;
  font-variant-numeric: tabular-nums; opacity: .95; }
#ghp .knob svg { display: block; }
#ghp .kn-track { stroke: rgba(0,0,0,.55); }
#ghp .kn-arc { stroke: url(#ghHoneyGrad); stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(247,169,44,.55)); }
#ghp .kn-face { fill: url(#ghFaceGrad); stroke: #0c0803; stroke-width: 1.2; }
#ghp .kn-ring { fill: none; stroke: rgba(255,210,130,.16); stroke-width: 1; }
#ghp .kn-dot { stroke: #f6e9c9; stroke-width: 3.4; stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(255,220,150,.6)); }
#ghp .kn-center { fill: rgba(247,169,44,.14); }
#ghp .gh-hero .name { font-size: 14px; letter-spacing: 5px; color: #ffbe55;
  text-shadow: 0 0 12px rgba(247,169,44,.5); }
#ghp .gh-hero::before { content: ""; position: absolute; top: 16px; left: 50%;
  width: 118px; height: 118px; transform: translateX(-50%); border-radius: 50%;
  pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(247,169,44,.5), transparent 65%);
  opacity: .45; }
#ghp .gh-tuner { display: flex; flex-direction: column; align-items: center; gap: 3px;
  position: relative; z-index: 1; }
#ghp .gh-tuner .name { font-size: 11px; letter-spacing: 2.4px; font-weight: 700; color: #a68e63; }
#ghp .gh-tuner svg { display: block; opacity: .35; filter: grayscale(.7); }
#ghp .gh-tuner .toggle { position: absolute; top: 21px; right: 5px; width: 15px; height: 15px;
  border-radius: 50%; border: 1px solid rgba(247,169,44,.22); background: #241a0d;
  z-index: 3; box-shadow: inset 0 1px 2px rgba(0,0,0,.6); }
#ghp .gh-tuner .toggle::after { content: ""; position: absolute; inset: 3.5px; border-radius: 50%;
  background: #3a2a12; }

#ghp .gh-grid { display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 4px; margin-top: 10px; z-index: 1; }
#ghp .gh-grid .knob { flex: 0 0 calc(33.33% - 4px); }

#ghp .gh-out { margin: 14px auto 2px; width: 340px; z-index: 1; }
#ghp .gh-out-head { display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 5px; }
#ghp .gh-out-head .or-label { font-size: 11px; letter-spacing: 2.4px; font-weight: 700; color: #a68e63; }
#ghp .gh-out-head .or-val { font-size: 11px; color: #ffbe55; font-variant-numeric: tabular-nums; }
#ghp .gh-out-track { position: relative; height: 22px; border-radius: 11px;
  background: linear-gradient(180deg,#0f0a05,#1d1409);
  border: 1px solid rgba(247,169,44,.22);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.7); overflow: hidden; }
#ghp .gh-out-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 66.7%;
  background-image:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="48" viewBox="0 0 28 48"><path d="M14 0 28 8v16L14 32 0 24V8zM14 32l14 8v8M14 32 0 40v8" fill="none" stroke="%23000" stroke-opacity=".28" stroke-width="1.5"/></svg>'),
    linear-gradient(180deg,#ffbe55,#b06e10);
  background-size: 20px 34px, cover;
  box-shadow: inset 0 0 10px rgba(255,220,150,.35); }
#ghp .gh-out-thumb { position: absolute; top: 50%; left: 66.7%; width: 16px; height: 18px;
  transform: translate(-50%,-50%);
  background: linear-gradient(180deg,#ffe4a0,#b06e10);
  clip-path: polygon(50% 0,100% 27%,100% 73%,50% 100%,0 73%,0 27%);
  box-shadow: 0 1px 3px rgba(0,0,0,.7); }
#ghp .gh-ruler { position: relative; height: 16px; margin-top: 2px; }
#ghp .gh-ruler .tk { position: absolute; top: 0; width: 1px; height: 4px;
  background: rgba(255,210,130,.3); transform: translateX(-50%); }
#ghp .gh-ruler .tk.zero { background: #ffbe55; height: 5px; }
#ghp .gh-ruler .tl2 { position: absolute; top: 5px; font-size: 8px; color: #a68e63;
  transform: translateX(-50%); white-space: nowrap; }

#ghp footer { margin-top: auto; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 10.5px; letter-spacing: 1.6px; color: #a68e63; z-index: 1;
  border: none; padding: 0; }
#ghp .gh-led { width: 9px; height: 9px; border-radius: 50%;
  background: #ffbe55; box-shadow: 0 0 10px 2px rgba(247,169,44,.65); }
.pm-wrap:hover #ghp {
  transform: scale(0.66) translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255,220,150,.15),
              inset 0 -14px 40px rgba(0,0,0,.55),
              0 30px 90px rgba(0,0,0,.8), 0 0 60px rgba(247,169,44,.25);
}
#ghp { transition: transform .2s, box-shadow .2s; }

