/* ============================================================
   Mafias Studioz Records — Pure CSS Design System
   Palette: Deep Black #0D0D0D | Charcoal #1A1000
            Orange #FF6B00 | Amber #FF9A3C | Red #FF4500
   Fonts: Bebas Neue | Montserrat | Poppins | Space Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */

:root {
  --purple:     #FF6B00;
  --blue:       #FF9A3C;
  --pink:       #FF7A00;
  --black:      #0D0D0D;
  --charcoal:   #1A1000;
  --surface:    #141000;
  --surface-lg: #1E1600;
  --white:      #FFFFFF;
  --gray:       #B0A090;
  --subtle:     #6B5A40;
  --gradient:   linear-gradient(135deg, #FF6B00 0%, #FF9A3C 100%);
  --glow-p:     0 0 20px rgba(255,107,0,0.5), 0 0 60px rgba(255,107,0,0.2);
  --glow-b:     0 0 20px rgba(255,154,60,0.4), 0 0 60px rgba(255,154,60,0.15);
  --glow-pk:    0 0 20px rgba(255,122,0,0.4),  0 0 60px rgba(255,122,0,0.15);
  --nav-h:      72px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
ul[role="list"] { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 400; /* Bebas Neue is display — weight 400 is bold */
}
h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

/* ─── Gradient text utility ──────────────────────────────────── */

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */

/* Primary — gradient fill */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: var(--gradient);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-p);
  filter: brightness(1.08);
}
.btn-gradient:active { transform: translateY(0); }

/* Secondary — outline / ghost */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,107,0,0.45);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: var(--glow-p);
}
.btn-outline:active { transform: translateY(0); }

/* White solid CTA */
.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.btn-blue:hover { transform: translateY(-2px); background: #f0f0f0; box-shadow: 0 0 30px rgba(255,255,255,0.25); }

/* ─── Section utilities ───────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.section-divider {
  width: 4rem;
  height: 4px;
  background: var(--gradient);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

/* ─── Service cards ───────────────────────────────────────────── */

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255,107,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(255,107,0,0.2);
  border-color: rgba(255,107,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.2);
  flex-shrink: 0;
}

/* ─── Nav links ────────────────────────────────────────────────── */

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 9999px;
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ─── Form fields ─────────────────────────────────────────────── */

.form-field {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,0,0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field::placeholder { color: var(--subtle); }
.form-field:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-field option { background: var(--surface); color: var(--white); }

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

/* ─── Social icons ────────────────────────────────────────────── */

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--gray);
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-icon:hover {
  background: rgba(255,107,0,0.2);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: var(--glow-p);
}

/* ─── Testimonial cards ───────────────────────────────────────── */

.testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid rgba(255,107,0,0.15);
  height: 100%;
}

/* ─── Portfolio cards ─────────────────────────────────────────── */

.portfolio-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(2px);
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }

/* ─── Filter buttons ───────────────────────────────────────────── */

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,0,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(255,107,0,0.15);
  border-color: var(--purple);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   PROCESS SECTION  (.ps-*)
   ══════════════════════════════════════════════════════════════ */

/* Section shell */
.ps-section {
  position: relative;
  padding: 7rem 0;
  background: #080808;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.ps-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,107,0,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Ambient glow blobs */
.ps-section::before,
.ps-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.ps-section::before {
  width: 500px; height: 500px;
  top: -160px; left: -120px;
  background: rgba(255,107,0,0.07);
}
.ps-section::after {
  width: 400px; height: 400px;
  bottom: -120px; right: -80px;
  background: rgba(255,154,60,0.06);
}

/* Content wrapper */
.ps-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.ps-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* Steps grid */
.ps-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .ps-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

/* ── Connector line (desktop only) ─────────────────────────── */

.ps-line {
  display: none;
}

@media (min-width: 1024px) {
  .ps-line {
    display: block;
    position: absolute;
    top: 1.875rem;           /* vertically centred on the dot */
    left: calc(10% + 0.75rem);
    right: calc(10% + 0.75rem);
    height: 2px;
    background: rgba(255,107,0,0.12);
    border-radius: 2px;
    z-index: 0;
    overflow: visible;
  }

  .ps-line-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, #FF6B00, #FF9A3C, #FF6B00);
    background-size: 200% 100%;
    box-shadow: 0 0 12px rgba(255,107,0,0.5);
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmer-line 3s linear infinite;
  }

  .ps-line-fill.ps-line-active {
    width: 100%;
  }
}

@keyframes shimmer-line {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Individual step item ───────────────────────────────────── */

.ps-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Mobile: horizontal row layout */
@media (max-width: 1023px) {
  .ps-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ── Dot on connector (desktop) ─────────────────────────────── */

.ps-dot {
  display: none;
}

@media (min-width: 1024px) {
  .ps-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #080808;
    border: 2px solid rgba(255,107,0,0.35);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
  }

  .ps-dot span {
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(255,107,0,0.5);
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }

  .ps-item:hover .ps-dot {
    border-color: #FF6B00;
    box-shadow: 0 0 14px rgba(255,107,0,0.5);
  }

  .ps-item:hover .ps-dot span {
    background: #FF9A3C;
    box-shadow: 0 0 8px rgba(255,154,60,0.8);
  }
}

/* ── Card ───────────────────────────────────────────────────── */

.ps-card {
  position: relative;
  width: 100%;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 1.125rem;
  background: linear-gradient(145deg, #111008, #0c0c0c);
  border: 1px solid rgba(255,107,0,0.12);
  text-align: center;
  overflow: hidden;
  transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
  cursor: default;
}

/* Mobile: left-align */
@media (max-width: 1023px) {
  .ps-card { text-align: left; padding: 1.5rem; }
}

/* Top-edge accent bar */
.ps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.38s ease;
}

/* Radial glow inside card on hover */
.ps-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.ps-item:hover .ps-card {
  transform: translateY(-8px);
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.12), 0 4px 24px rgba(255,107,0,0.15);
}

.ps-item:hover .ps-card::before { opacity: 1; }
.ps-item:hover .ps-card::after  { opacity: 1; }

/* Ghost number watermark */
.ps-num {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,154,60,0.06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  transition: background 0.38s ease;
}

.ps-item:hover .ps-num {
  background: linear-gradient(135deg, rgba(255,107,0,0.28) 0%, rgba(255,154,60,0.16) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Icon */
.ps-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  color: #FF6B00;
  transition: color 0.38s ease, filter 0.38s ease, transform 0.38s ease;
  filter: drop-shadow(0 0 6px rgba(255,107,0,0.3));
}

@media (max-width: 1023px) {
  .ps-icon { margin: 0 0 0.75rem; }
}

.ps-item:hover .ps-icon {
  color: #FF9A3C;
  filter: drop-shadow(0 0 14px rgba(255,154,60,0.55));
  transform: scale(1.1) translateY(-2px);
}

/* Title */
.ps-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
  position: relative;
}

/* Description */
.ps-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--gray);
  position: relative;
}

/* Last card highlight (Delivery) */
.ps-card--last {
  border-color: rgba(255,107,0,0.2);
}
.ps-card--last::before { opacity: 0.6; }

/* ── CTA strip ──────────────────────────────────────────────── */

.ps-cta {
  margin-top: 4.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ps-cta p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--gray);
  letter-spacing: 0.03em;
}

/* ─── Equalizer bars ───────────────────────────────────────────── */

.eq-bar {
  width: 6px;
  border-radius: 9999px;
  background: var(--gradient);
  flex-shrink: 0;
}
.eq-bar:nth-child(1) { animation: eq1 0.8s ease-in-out infinite alternate; }
.eq-bar:nth-child(2) { animation: eq2 0.6s ease-in-out infinite alternate; }
.eq-bar:nth-child(3) { animation: eq3 1.0s ease-in-out infinite alternate; }
.eq-bar:nth-child(4) { animation: eq4 0.7s ease-in-out infinite alternate; }
.eq-bar:nth-child(5) { animation: eq5 0.9s ease-in-out infinite alternate; }
.eq-bar:nth-child(6) { animation: eq1 0.5s ease-in-out infinite alternate; }
.eq-bar:nth-child(7) { animation: eq3 0.75s ease-in-out infinite alternate; }
.eq-bar:nth-child(8) { animation: eq2 0.65s ease-in-out infinite alternate; }

/* ─── Back to top button ──────────────────────────────────────── */

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  box-shadow: var(--glow-p);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }

/* ─── Toast notification ──────────────────────────────────────── */

.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  background: var(--gradient);
  transform: translateX(150%);
  transition: transform 0.4s var(--ease);
  max-width: 340px;
}
.toast.show { transform: translateX(0); }

/* ─── Nav drawer ──────────────────────────────────────────────── */

.nav-drawer {
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-drawer.open { transform: translateX(0); }

/* ─── Instagram grid ──────────────────────────────────────────── */

.insta-item { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,0,0.7);
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* ─── YouTube modal ───────────────────────────────────────────── */

#yt-modal { display: none; }
#yt-modal.active { display: flex; }
#yt-modal iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 0.5rem; }

/* ─── Form states ─────────────────────────────────────────────── */

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}
.form-group.has-error .form-field { border-color: var(--pink); }
.form-error { display: none; font-size: 0.72rem; color: var(--pink); margin-top: 0.25rem; }
.form-group.has-error .form-error { display: block; }

.alert { display: none; padding: 1rem; border-radius: 0.5rem; font-size: 0.875rem; margin-bottom: 1rem; }
.alert--success { background: rgba(255,154,60,0.08); border: 1px solid var(--blue); color: var(--blue); }
.alert--error   { background: rgba(255,122,0,0.08); border: 1px solid var(--pink); color: var(--pink); }
.alert.visible  { display: block; }

/* Submit button loading state */
.btn-submit.loading { opacity: 0.7; pointer-events: none; }
.btn-submit.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ─── Stars ───────────────────────────────────────────────────── */

.stars { color: #FFD700; letter-spacing: 2px; }

/* ─── Neon divider lines ──────────────────────────────────────── */

.neon-line-h {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.4), rgba(255,154,60,0.4), transparent);
  border: none;
}

/* ─── Custom scrollbar ────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ─── Text selection ──────────────────────────────────────────── */

::selection { background: rgba(255,107,0,0.3); color: #fff; }

/* ─── Scroll reveal ───────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ─── Swiper overrides ────────────────────────────────────────── */

.swiper-pagination-bullet { background: rgba(255,107,0,0.4) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--purple) !important; box-shadow: 0 0 8px rgba(255,107,0,0.6) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--purple) !important; }

/* ─── Particle canvas ─────────────────────────────────────────── */

#particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ─── Keyframes ───────────────────────────────────────────────── */

@keyframes neonFlicker {
  0%,19%,21%,23%,25%,54%,56%,100% { opacity: 1; }
  20%,24%,55% { opacity: 0.85; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}
@keyframes gradientX {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes eq1  { from { height: 20%; } to { height: 80%; } }
@keyframes eq2  { from { height: 40%; } to { height: 100%; } }
@keyframes eq3  { from { height: 60%; } to { height: 35%; } }
@keyframes eq4  { from { height: 30%; } to { height: 90%; } }
@keyframes eq5  { from { height: 50%; } to { height: 70%; } }

/* ─── Reduced motion ──────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
