/* DAWGZ NATION — Cinematic Design System */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black:      #050505;
  --carbon:     #0d0d0d;
  --panel:      #111111;
  --border:     rgba(255,255,255,0.06);
  --border-glow:rgba(139,92,246,0.35);
  --purple:     #8b5cf6;
  --violet:     #6d28d9;
  --cyan:       #06b6d4;
  --cyan-dim:   #0891b2;
  --white:      #f5f5f5;
  --gray:       #888;
  --gray-dim:   #444;
  --gradient:   linear-gradient(135deg, #8b5cf6, #06b6d4);
  --gradient-r: linear-gradient(135deg, #06b6d4, #8b5cf6);
  --glow-purple: 0 0 30px rgba(139,92,246,0.4);
  --glow-cyan:   0 0 30px rgba(6,182,212,0.4);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius:    8px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 30px; height: 30px;
  border: 1px solid rgba(139,92,246,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
}
.cursor.hover { transform: scale(2.5); background: var(--cyan); }

/* Typography */
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1.1; }
.label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glow-text { text-shadow: 0 0 40px rgba(139,92,246,0.6); }

/* Layout */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 24px rgba(139,92,246,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(139,92,246,0.6); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--purple); box-shadow: var(--glow-purple); }

.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(139,92,246,0.1); border-color: var(--border-glow); }

/* Cards */
.card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-purple), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

/* Navbar */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
#navbar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.15em;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gradient); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-family: var(--font-mono); font-size: 0.72rem; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(139,92,246,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(6,182,212,0.08) 0%, transparent 50%),
              var(--black);
}
#hero-canvas { position: absolute; inset: 0; opacity: 0.6; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 2rem;
}
.hero-label::before, .hero-label::after {
  content: ''; width: 40px; height: 1px; background: var(--cyan); opacity: 0.5;
}
.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub {
  font-size: 1.1rem; color: var(--gray); max-width: 500px; margin: 0 auto 3rem;
  font-weight: 300; letter-spacing: 0.05em;
}
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gray);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Section headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1rem; }
.section-sub { color: var(--gray); max-width: 500px; margin: 0 auto; font-weight: 300; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--carbon); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); cursor: pointer; position: relative;
  transform-style: preserve-3d;
}
.service-card:hover { border-color: var(--border-glow); box-shadow: var(--glow-purple), 0 20px 60px rgba(0,0,0,0.5); transform: translateY(-6px) rotateX(2deg); }
.service-card-img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #0d0d0d, #1a1a2e);
}
.service-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0.08;
}
.service-card-img .icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 3rem; opacity: 0.3;
}
.service-img-loaded { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 1.75rem; }
.service-card-cat { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--cyan); text-transform: uppercase; margin-bottom: 0.5rem; }
.service-card-title { font-size: 1.6rem; margin-bottom: 0.75rem; }
.service-card-desc { color: var(--gray); font-size: 0.9rem; font-weight: 300; margin-bottom: 1.25rem; line-height: 1.7; }
.service-price { font-family: var(--font-mono); font-size: 1rem; color: var(--purple); font-weight: 700; margin-bottom: 1.25rem; }
.service-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.feature-tag { font-family: var(--font-mono); font-size: 0.65rem; padding: 0.25rem 0.6rem; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); border-radius: 4px; color: var(--purple); }
.service-card-hover {
  position: absolute; inset: 0; background: rgba(139,92,246,0.04);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover .service-card-hover { opacity: 1; }

/* Portfolio grid */
.portfolio-filters {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem; border-radius: 999px;
  background: transparent; border: 1px solid var(--border); color: var(--gray);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(139,92,246,0.1); border-color: var(--purple); color: var(--white);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.portfolio-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--panel);
  transition: var(--transition);
}
.portfolio-item:hover { transform: scale(1.02); }
.portfolio-item-bg {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.3;
}
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-cat { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--cyan); text-transform: uppercase; margin-bottom: 0.4rem; }
.portfolio-title { font-size: 1.3rem; }

/* Creator cards */
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.creator-card {
  background: var(--carbon); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.creator-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); transform: scaleX(0); transition: transform 0.3s;
}
.creator-card:hover::before { transform: scaleX(1); }
.creator-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.creator-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
  border: 2px solid transparent; background-clip: padding-box;
  box-shadow: 0 0 0 2px var(--purple);
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-name { font-size: 1.6rem; margin-bottom: 0.25rem; }
.creator-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; color: var(--cyan); text-transform: uppercase; margin-bottom: 0.75rem; }
.creator-bio { color: var(--gray); font-size: 0.85rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.25rem; }
.creator-skills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; margin-bottom: 1.25rem; }
.skill-tag { font-family: var(--font-mono); font-size: 0.62rem; padding: 0.2rem 0.55rem; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); border-radius: 4px; color: var(--cyan); }
.creator-socials { display: flex; justify-content: center; gap: 0.75rem; }
.creator-social { width: 34px; height: 34px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
.creator-social:hover { border-color: var(--purple); color: var(--purple); box-shadow: var(--glow-purple); }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { padding: 2.5rem 2rem; text-align: center; background: var(--carbon); }
.stat-num { font-family: var(--font-display); font-size: 3rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gray); text-transform: uppercase; margin-top: 0.25rem; }

/* Booking form */
.booking-form { background: var(--carbon); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
input, select, textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.9rem 1rem; color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
select option { background: var(--carbon); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }

/* Glitch animation */
@keyframes glitch {
  0%,100%{text-shadow:0.05em 0 0 rgba(255,0,0,0.75),−0.025em −0.05em 0 rgba(0,255,0,0.75),0.025em 0.05em 0 rgba(0,0,255,0.75)}
  14%{text-shadow:0.05em 0 0 rgba(255,0,0,0.75),−0.025em −0.05em 0 rgba(0,255,0,0.75),0.025em 0.05em 0 rgba(0,0,255,0.75)}
  15%{text-shadow:−0.05em −0.025em 0 rgba(255,0,0,0.75),0.025em 0.025em 0 rgba(0,255,0,0.75),−0.05em −0.05em 0 rgba(0,0,255,0.75)}
  49%{text-shadow:−0.05em −0.025em 0 rgba(255,0,0,0.75),0.025em 0.025em 0 rgba(0,255,0,0.75),−0.05em −0.05em 0 rgba(0,0,255,0.75)}
  50%{text-shadow:0.025em 0.05em 0 rgba(255,0,0,0.75),0.05em 0 0 rgba(0,255,0,0.75),0 −0.05em 0 rgba(0,0,255,0.75)}
  99%{text-shadow:0.025em 0.05em 0 rgba(255,0,0,0.75),0.05em 0 0 rgba(0,255,0,0.75),0 −0.05em 0 rgba(0,0,255,0.75)}
}

/* Parallax */
.parallax { transform: translateZ(0); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Loading overlay */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9997;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; }
.loading-logo { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.3em; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Particles canvas */
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.4; }

/* Glassmorphism panels */
.glass {
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Footer */
footer {
  background: var(--carbon); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.15em; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 0.75rem; }
.footer-desc { color: var(--gray); font-size: 0.85rem; font-weight: 300; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em; }
.footer-socials { display: flex; gap: 1rem; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.9rem; transition: var(--transition); text-decoration: none; }
.footer-social:hover { border-color: var(--purple); color: var(--purple); box-shadow: var(--glow-purple); }

/* Toast notifications */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 10000;
  background: var(--carbon); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1rem 1.5rem; min-width: 280px; max-width: 400px;
  display: flex; align-items: center; gap: 0.75rem;
  transform: translateY(100px); opacity: 0; transition: all 0.35s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid #22c55e; }
.toast.error { border-left: 3px solid #ef4444; }
.toast-msg { font-size: 0.88rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-lg); }
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray); cursor: pointer;
  background: none; border: none; letter-spacing: 0.2em;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }

/* Noise texture overlay */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.15;
}

/* Horizontal divider */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.divider-gradient { height: 1px; background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent); margin: 2rem 0; }

/* Alert / message boxes */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1rem; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 60px; background: rgba(5,5,5,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-bar { grid-template-columns: 1fr; }
}
