:root {
  --bg: #090606;
  --bg-soft: #141010;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.1);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f5f1f1;
  --muted: #c8bebe;
  --red: #2563eb;
  --red-strong: #001aff;
  --red-soft: rgba(48, 162, 255, 0.16);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --container: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(51, 48, 255, 0.16), transparent 0 25%),
    radial-gradient(circle at 85% 20%, rgba(48, 162, 255, 0.16), transparent 0 18%),
    linear-gradient(180deg, #0b0707 0%, #070404 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
h1, h2, h3, h4 { margin: 0; line-height: 1; }

.noise,
.bg-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.noise {
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}
.bg-gradient.bg-1 {
  background: radial-gradient(circle, rgba(48, 162, 255, 0.16), transparent 58%);
  width: 520px;
  height: 520px;
  left: -140px;
  top: -60px;
  position: fixed;
  filter: blur(70px);
  opacity: 0.8;
}
.bg-gradient.bg-2 {
  background: radial-gradient(circle, rgba(48, 162, 255, 0.163), transparent 58%);
  width: 460px;
  height: 460px;
  right: -100px;
  top: 240px;
  position: fixed;
  filter: blur(70px);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(9, 6, 6, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #001aff);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 18px 30px rgba(48, 162, 255, 0.16);
}
.brand-copy strong { display: block; font-weight: 800; }
.brand-copy small { color: var(--muted); }

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  transition: color 0.25s ease;
}
.nav a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), #2563eb);
  color: white;
  box-shadow: 0 18px 30px rgba(51, 48, 255, 0.24);
}
.btn-primary:hover { box-shadow: 0 24px 42px rgba(48, 86, 255, 0.24); }
.btn-secondary,
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--white);
}
.btn-lg { padding: 16px 24px; }

.hero {
  padding-top: 54px;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: #e7dede;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.hero-copy h1,
.section-heading h2,
.workshop-copy h2,
.faq-copy h2,
.cta-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.hero-copy h1 {
  font-size: clamp(3.6rem, 9vw, 7rem);
  margin-bottom: 16px;
}
.outline-text {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.48);
}
.highlight { color: var(--red); }
.hero-copy p { max-width: 60ch; font-size: 1.04rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.metric-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}
.metric-card span, .metric-card small { display: block; color: var(--muted); }

.dashboard-shell {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48, 231, 255, 0.24), transparent 30%, transparent 68%, rgba(48, 145, 255, 0.24));
  pointer-events: none;
}
.dashboard-top,
.dashboard-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.status-pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(48, 189, 255, 0.24);
  border: 1px solid var(--line);
  color: #ece0e0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.status-pill.live { color: #3f15fa; }
.dashboard-main {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  position: relative;
  z-index: 1;
}
.engine-card {
  aspect-ratio: 1;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(48, 189, 255, 0.24), rgba(48, 79, 255, 0.24));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.engine-ring {
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.3);
  animation: spin 14s linear infinite;
}
.engine-card::before,
.engine-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.engine-card::before { inset: 18%; }
.engine-card::after { inset: 30%; }
.engine-center img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(48, 79, 255, 0.82), rgba(36, 18, 115, 0.9));
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(51, 48, 255, 0.25);
}
.engine-center span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.14em;
}
.engine-center small { color: rgba(255,255,255,0.88); }
.signal-column { display: grid; gap: 14px; }
.signal-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.signal-card span, .dashboard-bottom span, .service-kicker, .stage-label, .footer-title {
  display: block;
  color: #efc8c8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.signal-card strong,
.dashboard-bottom strong,
.footer-grid h3 { font-size: 1.06rem; }
.signal-card small { color: var(--muted); }
.signal-card.signal-red {
  background: linear-gradient(135deg, rgba(79, 48, 255, 0.18), rgba(255,255,255,0.05));
  box-shadow: inset 0 0 0 1px rgba(69, 48, 255, 0.15);
}
.dashboard-bottom > div {
  flex: 1 1 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.strip-banner {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(90deg, rgba(93, 48, 255, 0.12), rgba(255,255,255,0.02), rgba(48, 120, 255, 0.12));
}
.strip-track {
  display: flex;
  gap: 34px;
  min-width: max-content;
  padding: 18px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  animation: marquee 22s linear infinite;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2,
.workshop-copy h2,
.faq-copy h2,
.cta-box h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-panel,
.stage-card,
.testimonial-card,
.faq-item,
.cta-box {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-panel {
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-panel::before,
.stage-card::before,
.testimonial-card::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(48, 145, 255, 0.16), transparent 66%);
  pointer-events: none;
}
.service-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 48, 255, 0.28);
  box-shadow: 0 28px 48px rgba(0,0,0,0.4);
}
.featured-panel {
  background: linear-gradient(180deg, rgba(51, 48, 255, 0.18), rgba(255, 255, 255, 0.05));
}
.service-panel h3 { font-size: 1.45rem; margin-bottom: 10px; }
.service-panel ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 20px;
}
.inline-link {
  font-weight: 800;
  color: #baaeff;
}
.inline-link:hover { color: white; }

.workshop-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}
.feature-list { margin-top: 24px; display: grid; gap: 14px; }
.feature-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.feature-row strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #11138d);
}
.workshop-stage { display: grid; gap: 16px; }
.stage-large { min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.stage-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stage-card { padding: 24px; overflow: hidden; }
.stage-card h3, .stage-card h4 { margin-bottom: 10px; }

.instagram-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.insta-card {
  aspect-ratio: 1 / 1.15;
  border-radius: 28px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.72)),
    radial-gradient(circle at top left, rgba(79, 48, 255, 0.24), transparent 35%),
    linear-gradient(135deg, #16112a, #0e0d13 55%, #0d0a1c);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.insta-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.insta-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(62, 48, 255, 0.25);
}
.insta-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card p {
  color: #eee7e7;
  font-size: 1.02rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 22px; }
.faq-item h3 { margin-bottom: 10px; font-size: 1.1rem; }

.cta-section { padding: 16px 0 84px; }
.cta-box {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(86, 48, 255, 0.16), rgba(255,255,255,0.04));
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 34px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer-link,
.footer-text {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.footer-link:hover { color: white; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #151fb3);
  color: white;
  box-shadow: 0 16px 32px rgba(48, 114, 255, 0.36);
  animation: pulse 2.2s infinite;
}
.wa-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  font-size: 1.3rem;
}
.whatsapp-float strong { display: block; }
.whatsapp-float small { color: rgba(255,255,255,0.82); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right { transform: translateX(26px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

.location-data p {
  margin: 10px 0;
  color: #ccc;
}

.btn-location {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: bold;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 20px;
}

@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.02); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .workshop-grid,
  .faq-grid,
  .footer-grid,
  .services-grid,
  .testimonials-grid,
@media (max-width: 768px) {
  .instagram-grid {
    flex-direction: column;
    align-items: center;
   } 
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(15,10,10,0.98);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-actions .btn-ghost { display: none; }
  .hero-copy h1 { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-metrics,
  .dashboard-main,
  .services-grid,
  .instagram-grid,
  .testimonials-grid,
  .stage-split,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .nav-actions .btn-primary { display: none; }
  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
  .brand-copy small { display: none; }
}
