/* ============================================================
   NO2AOC — SHARED STYLES
   Real Spray Paint Graffiti on a Brick Wall
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Root Variables ---- */
:root {
  --bg: #0A0A0A;
  --bg-card: #0f0e0e;
  --bg-section-alt: #0D0D0D;
  --neon-pink: #FF00CC;
  --neon-green: #AAFF00;
  --neon-cyan: #00FFFF;
  --neon-orange: #FF6600;
  --white: #FFFFFF;
  --gray-light: #CCCCCC;
  --gray: #888888;
  --gray-dark: #333333;
  --ff-graffiti: 'Permanent Marker', cursive;
  --ff-bold: 'Bebas Neue', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ease: 0.3s ease;
  --radius: 4px;
  --max-w: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ---- Brick Wall Body ---- */
body {
  background-color: #0D0D0D;
  color: var(--white);
  font-family: var(--ff-body);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
  /* Rough brick mortar lines — offset rows like real brickwork */
  background-image:
    /* Horizontal mortar */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(20,10,5,0.82) 28px,
      rgba(20,10,5,0.82) 32px
    ),
    /* Vertical mortar offset */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 58px,
      rgba(20,10,5,0.62) 58px,
      rgba(20,10,5,0.62) 62px
    ),
    /* Brick tone variation */
    repeating-linear-gradient(
      0deg,
      rgba(60,20,10,0.15),
      rgba(40,15,8,0.1) 30px,
      rgba(50,18,9,0.12) 32px,
      rgba(60,20,10,0.15) 60px
    );
  position: relative;
}

/* ---- Grain / Noise overlay — makes everything feel gritty ---- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }
input, textarea, select { font-family: var(--ff-body); }

/* ---- Spray Paint Color Utilities ---- */
/* Multiple shadow layers at varying opacity/offset = overspray, not LED tube */
.neon-pink {
  color: var(--neon-pink);
  text-shadow:
    0 0 3px rgba(255,0,204,0.95),
    0 0 8px rgba(255,0,204,0.65),
    0 0 18px rgba(255,0,204,0.35),
    2px 3px 7px rgba(255,0,204,0.45),
    -1px -2px 5px rgba(255,0,204,0.3),
    0 0 1px rgba(255,255,255,0.4);
  filter: url(#spray) drop-shadow(0 0 4px rgba(255,0,204,0.5));
}
.neon-green {
  color: var(--neon-green);
  text-shadow:
    0 0 3px rgba(170,255,0,0.95),
    0 0 8px rgba(170,255,0,0.65),
    0 0 18px rgba(170,255,0,0.35),
    2px 3px 7px rgba(170,255,0,0.45),
    -1px -2px 5px rgba(170,255,0,0.3),
    0 0 1px rgba(255,255,255,0.4);
  filter: url(#spray) drop-shadow(0 0 4px rgba(170,255,0,0.5));
}
.neon-cyan {
  color: var(--neon-cyan);
  text-shadow:
    0 0 3px rgba(0,255,255,0.95),
    0 0 8px rgba(0,255,255,0.65),
    0 0 18px rgba(0,255,255,0.35),
    2px 3px 7px rgba(0,255,255,0.45),
    -1px -2px 5px rgba(0,255,255,0.3),
    0 0 1px rgba(255,255,255,0.4);
  filter: url(#spray) drop-shadow(0 0 4px rgba(0,255,255,0.5));
}

/* Borders: rough jagged box-shadow stacking instead of clean ring */
.neon-border-pink {
  border: 2px solid var(--neon-pink);
  box-shadow:
    0 0 4px rgba(255,0,204,0.5),
    0 0 10px rgba(255,0,204,0.2),
    2px 2px 6px rgba(255,0,204,0.15),
    inset 0 0 8px rgba(255,0,204,0.05);
}
.neon-border-green {
  border: 2px solid var(--neon-green);
  box-shadow:
    0 0 4px rgba(170,255,0,0.5),
    0 0 10px rgba(170,255,0,0.2),
    2px 2px 6px rgba(170,255,0,0.15),
    inset 0 0 8px rgba(170,255,0,0.05);
}
.neon-border-cyan {
  border: 2px solid var(--neon-cyan);
  box-shadow:
    0 0 4px rgba(0,255,255,0.5),
    0 0 10px rgba(0,255,255,0.2),
    2px 2px 6px rgba(0,255,255,0.15),
    inset 0 0 8px rgba(0,255,255,0.05);
}

/* Spray pulse — flicker + overspray drift instead of even ring expansion */
.neon-pulse-pink  { animation: sprayPink  2.4s ease-in-out infinite; }
.neon-pulse-green { animation: sprayGreen 2.8s ease-in-out infinite; }
.neon-pulse-cyan  { animation: sprayCyan  3.1s ease-in-out infinite; }

/* ---- Typography ---- */
.t-graffiti {
  font-family: var(--ff-graffiti);
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 1.1;
  letter-spacing: 2px;
}
.t-bebas {
  font-family: var(--ff-bold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---- Buttons — spray-stencil cut, not LED panel ---- */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: var(--ff-bold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 3px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn-pink {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 8px rgba(255,0,204,0.4),
    0 0 2px rgba(255,0,204,0.8),
    inset 0 0 10px rgba(255,0,204,0.04);
  text-shadow:
    0 0 6px rgba(255,0,204,0.9),
    1px 1px 3px rgba(255,0,204,0.5);
  filter: url(#roughen);
}
.btn-pink:hover {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 20px var(--neon-pink), 0 0 40px rgba(255,0,204,0.35);
  transform: scale(1.03) rotate(-0.6deg);
  filter: none;
  text-shadow: none;
}

.btn-green {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 8px rgba(170,255,0,0.4),
    0 0 2px rgba(170,255,0,0.8),
    inset 0 0 10px rgba(170,255,0,0.04);
  text-shadow:
    0 0 6px rgba(170,255,0,0.9),
    1px 1px 3px rgba(170,255,0,0.5);
  filter: url(#roughen);
}
.btn-green:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 20px var(--neon-green), 0 0 40px rgba(170,255,0,0.35);
  transform: scale(1.03) rotate(0.4deg);
  filter: none;
  text-shadow: none;
}

.btn-cyan {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 8px rgba(0,255,255,0.4),
    0 0 2px rgba(0,255,255,0.8),
    inset 0 0 10px rgba(0,255,255,0.04);
  text-shadow:
    0 0 6px rgba(0,255,255,0.9),
    1px 1px 3px rgba(0,255,255,0.5);
  filter: url(#roughen);
}
.btn-cyan:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0,255,255,0.35);
  transform: scale(1.03) rotate(-0.3deg);
  filter: none;
  text-shadow: none;
}

.btn-solid-pink {
  background: var(--neon-pink);
  color: #000;
  border-color: var(--neon-pink);
  font-weight: 800;
  box-shadow:
    0 0 12px rgba(255,0,204,0.7),
    3px 3px 8px rgba(255,0,204,0.3),
    -1px -1px 4px rgba(255,0,204,0.25);
}
.btn-solid-pink:hover {
  box-shadow: 0 0 30px var(--neon-pink), 0 0 60px rgba(255,0,204,0.45);
  transform: scale(1.03) rotate(-0.5deg);
}

.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.2rem; }
.btn-sm { padding: .55rem 1.4rem; font-size: .9rem; letter-spacing: 2px; }

/* ---- Navigation — spray-tagged look, not clean pill bar ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Dirty semi-transparent wall, not clean glass */
  background: rgba(6,5,5,0.9);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid rgba(255,0,204,0.2);
  box-shadow:
    0 2px 12px rgba(255,0,204,0.15),
    0 4px 30px rgba(0,0,0,0.6);
  padding: 0 2rem;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--ff-graffiti);
  font-size: 1.75rem;
  color: var(--neon-pink);
  /* Spray overspray on the logo text */
  text-shadow:
    0 0 4px rgba(255,0,204,1),
    0 0 10px rgba(255,0,204,0.6),
    2px 2px 5px rgba(255,0,204,0.35),
    -1px -1px 3px rgba(255,0,204,0.25);
  letter-spacing: 2px;
  filter: url(#spray);
  transition: filter .3s, text-shadow .3s;
}
.nav-logo:hover {
  text-shadow:
    0 0 6px rgba(255,0,204,1),
    0 0 18px rgba(255,0,204,0.7),
    3px 3px 8px rgba(255,0,204,0.4),
    -2px -2px 5px rgba(255,0,204,0.3);
  filter: none;
}
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  font-family: var(--ff-graffiti);
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: all .2s ease;
  position: relative;
  /* Slight irregular spacing like real tags */
  margin: 0 1px;
}
/* Spray splash underline on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 30%;
  transform: none;
  width: 0; height: 2px;
  background: radial-gradient(ellipse, var(--neon-pink) 0%, transparent 100%);
  box-shadow: 0 0 6px var(--neon-pink);
  transition: width .25s ease, left .25s ease;
}
.nav-links a:hover {
  color: var(--neon-pink);
  text-shadow:
    0 0 5px rgba(255,0,204,0.9),
    1px 2px 4px rgba(255,0,204,0.4);
}
.nav-links a:hover::after { width: 40%; left: 20%; }

.nav-links .nav-cta {
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  box-shadow:
    0 0 6px rgba(255,0,204,0.3),
    inset 0 0 6px rgba(255,0,204,0.03);
  margin-left: .4rem;
  filter: url(#roughen);
}
.nav-links .nav-cta:hover {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 16px var(--neon-pink);
  filter: none;
  transform: rotate(-0.5deg) scale(1.02);
}
.nav-links .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  font-size: 1.4rem;
  padding: .3rem .7rem;
  border-radius: var(--radius);
  box-shadow: 0 0 8px rgba(255,0,204,0.35);
  transition: var(--ease);
}
.nav-toggle:hover { background: var(--neon-pink); color: #000; box-shadow: 0 0 18px var(--neon-pink); }

/* ---- Footer ---- */
.footer {
  background: rgba(4,3,3,0.95);
  border-top: 2px solid rgba(255,0,204,0.2);
  box-shadow: 0 -4px 24px rgba(255,0,204,0.08);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo {
  font-family: var(--ff-graffiti);
  font-size: 2.6rem;
  color: var(--neon-pink);
  text-shadow:
    0 0 4px rgba(255,0,204,0.95),
    0 0 12px rgba(255,0,204,0.5),
    3px 4px 8px rgba(255,0,204,0.35),
    -1px -2px 5px rgba(255,0,204,0.25);
  filter: url(#spray);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.4rem;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  font-family: var(--ff-bold);
  letter-spacing: 2px;
  font-size: .85rem;
  color: var(--gray);
  transition: var(--ease);
}
.footer-nav a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 6px rgba(255,0,204,0.7), 1px 1px 3px rgba(255,0,204,0.4);
}
.footer-social { display: flex; justify-content: center; gap: .8rem; margin-bottom: 1.5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  color: var(--neon-cyan);
  font-size: .8rem; font-weight: 700;
  box-shadow: 0 0 6px rgba(0,255,255,0.2), 2px 2px 4px rgba(0,255,255,0.1);
  transition: var(--ease);
  filter: url(#roughen);
}
.footer-social a:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 16px var(--neon-cyan);
  filter: none;
  transform: rotate(-1deg) scale(1.08);
}
.footer-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,0,204,0.6), transparent);
  box-shadow: 0 0 8px rgba(255,0,204,0.4);
  margin: 1.5rem 0;
}
.footer-disclaimer { font-size: .78rem; color: var(--gray); letter-spacing: 1px; }

/* ---- Layout Helpers ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 2rem; max-width: var(--max-w); margin: 0 auto; }
.section-wide { padding: 5rem 2rem; }
.section-dark { background: rgba(5,5,5,.85); }
.pt-nav { padding-top: 70px; }

/* Slight rotation to break the too-clean grid — real graffiti isn't perfectly aligned */
section:nth-child(even) > .container,
section:nth-child(even) > .section {
  transform: rotate(0.15deg);
}
section:nth-child(3n) > .container {
  transform: rotate(-0.1deg);
}

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- Section Headers — paint splatter pseudo-elements ---- */
.s-label {
  font-family: var(--ff-bold);
  font-size: .85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow:
    0 0 5px rgba(255,0,204,0.7),
    1px 1px 3px rgba(255,0,204,0.4);
  display: block;
  margin-bottom: .5rem;
}
.s-title {
  font-family: var(--ff-graffiti);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: .6rem;
  position: relative;
  display: inline-block;
  filter: url(#roughen);
}
/* Paint splatter dots above section titles */
.s-title::before {
  content: '•  •    • •  •';
  position: absolute;
  top: -14px;
  left: -8px;
  font-size: 7px;
  letter-spacing: 5px;
  opacity: 0.35;
  color: inherit;
  font-family: sans-serif;
  pointer-events: none;
}
.s-sub {
  font-family: var(--ff-bold);
  font-size: clamp(.95rem, 2vw, 1.25rem);
  letter-spacing: 2px;
  color: var(--gray-light);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
/* Section divider line — rough spray edge instead of clean glow */
.s-line {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--neon-pink) 60%, transparent 100%);
  box-shadow:
    0 0 8px rgba(255,0,204,0.5),
    2px 1px 4px rgba(255,0,204,0.3);
  border-radius: 1px;
  margin: 1rem auto 3rem;
  transform: rotate(-0.5deg);
}
.s-line-green {
  background: linear-gradient(90deg, var(--neon-green) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(170,255,0,0.5), 2px 1px 4px rgba(170,255,0,0.3);
}
.s-line-cyan {
  background: linear-gradient(90deg, var(--neon-cyan) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(0,255,255,0.5), 2px 1px 4px rgba(0,255,255,0.3);
}

/* ---- Cards — tagged/stickered surfaces, not clean panels ---- */
.card {
  background: rgba(255,255,255,0.025);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  /* Barely-there wall surface */
  border: 1px solid rgba(255,255,255,0.08);
}
/* Color tint bleed on card corner — like spray leaked under the stencil */
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,0,204,0.08), transparent 50%, rgba(0,255,255,0.03));
  z-index: -1;
  pointer-events: none;
}

.card-pink {
  border: 1px solid rgba(255,0,204,0.25);
  box-shadow:
    0 0 8px rgba(255,0,204,0.15),
    3px 3px 12px rgba(255,0,204,0.08),
    inset 0 0 10px rgba(255,0,204,0.03);
}
.card-pink::before {
  background: linear-gradient(135deg, rgba(255,0,204,0.12), transparent 50%, rgba(0,0,0,0));
}
.card-green {
  border: 1px solid rgba(170,255,0,0.25);
  box-shadow:
    0 0 8px rgba(170,255,0,0.15),
    3px 3px 12px rgba(170,255,0,0.08),
    inset 0 0 10px rgba(170,255,0,0.03);
}
.card-green::before {
  background: linear-gradient(135deg, rgba(170,255,0,0.1), transparent 50%, rgba(0,0,0,0));
}
.card-cyan {
  border: 1px solid rgba(0,255,255,0.25);
  box-shadow:
    0 0 8px rgba(0,255,255,0.15),
    3px 3px 12px rgba(0,255,255,0.08),
    inset 0 0 10px rgba(0,255,255,0.03);
}
.card-cyan::before {
  background: linear-gradient(135deg, rgba(0,255,255,0.1), transparent 50%, rgba(0,0,0,0));
}

/* Hover: sticker lifting off the wall, slight tilt */
.card-pink:hover {
  box-shadow:
    0 0 20px rgba(255,0,204,0.4),
    4px 6px 18px rgba(255,0,204,0.12),
    inset 0 0 16px rgba(255,0,204,0.06);
  transform: translateY(-4px) rotate(0.4deg);
}
.card-green:hover {
  box-shadow:
    0 0 20px rgba(170,255,0,0.4),
    4px 6px 18px rgba(170,255,0,0.12),
    inset 0 0 16px rgba(170,255,0,0.06);
  transform: translateY(-4px) rotate(-0.5deg);
}
.card-cyan:hover {
  box-shadow:
    0 0 20px rgba(0,255,255,0.4),
    4px 6px 18px rgba(0,255,255,0.12),
    inset 0 0 16px rgba(0,255,255,0.06);
  transform: translateY(-4px) rotate(0.3deg);
}

.card-icon { font-size: 2.8rem; display: block; margin-bottom: 1rem; line-height: 1; }
.card-title { font-family: var(--ff-bold); font-size: 1.3rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: .75rem; }
.card-body { color: var(--gray-light); font-size: .95rem; line-height: 1.7; }
.card-stat {
  font-family: var(--ff-graffiti);
  font-size: 2.8rem;
  display: block;
  margin-bottom: .4rem;
  filter: url(#roughen);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 2rem 3rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,0,204,.1) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(0,255,255,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(170,255,0,.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroBg 6s ease-in-out infinite alternate;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-logo-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: -30px;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(255,0,204,.25) 0%, transparent 70%);
  animation: heroPulse 3s ease-in-out infinite;
  z-index: -1;
}
.hero-logo-wrap img {
  width: 100%;
  border-radius: 8px;
  /* Rough spray glow — uneven, not uniform ring */
  filter: drop-shadow(0 0 18px rgba(255,0,204,.75)) drop-shadow(3px 4px 8px rgba(255,0,204,.35));
  animation: logoGlow 3s ease-in-out infinite;
}

/* ---- Paint Drip Elements ---- */
.drip-wrap { width: 100%; overflow: hidden; line-height: 0; display: block; }
.drip-wrap svg { display: block; width: 100%; }

/* Spray can drips — placed near major headings */
.drip {
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, currentColor, rgba(255,255,255,0));
  border-radius: 0 0 50% 50%;
  animation: dripFall 3.5s ease-in infinite;
  pointer-events: none;
}
.drip-pink  { color: var(--neon-pink); }
.drip-green { color: var(--neon-green); }
.drip-cyan  { color: var(--neon-cyan); }

@keyframes dripFall {
  0%   { height: 0;   opacity: 1; }
  70%  { height: 40px; opacity: 0.8; }
  100% { height: 62px; opacity: 0; }
}

/* ---- Counters ---- */
.counter-box { text-align: center; }
.counter-val {
  font-family: var(--ff-graffiti);
  font-size: clamp(2.8rem, 6vw, 5rem);
  display: block;
  line-height: 1;
  filter: url(#roughen);
}
.counter-lbl {
  font-family: var(--ff-bold);
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: .6rem;
  display: block;
}

/* ---- Forms ---- */
.form-row { margin-bottom: 1.4rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-family: var(--ff-bold);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: .45rem;
}
.form-input {
  width: 100%;
  padding: .85rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: all .3s ease;
}
.form-input:focus {
  border-color: rgba(255,0,204,0.6);
  box-shadow:
    0 0 10px rgba(255,0,204,0.25),
    2px 2px 6px rgba(255,0,204,0.12);
  background: rgba(255,0,204,.03);
}
.form-input::placeholder { color: rgba(255,255,255,.2); }
textarea.form-input { resize: vertical; min-height: 110px; }

/* ---- Donation Amount Buttons ---- */
.donation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.d-btn {
  padding: 1.2rem .5rem;
  font-family: var(--ff-graffiti);
  font-size: 1.8rem;
  background: transparent;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  box-shadow:
    0 0 6px rgba(255,0,204,0.25),
    2px 2px 5px rgba(255,0,204,0.12);
  text-align: center;
  line-height: 1;
  filter: url(#roughen);
  text-shadow:
    0 0 5px rgba(255,0,204,0.8),
    1px 1px 3px rgba(255,0,204,0.4);
}
.d-btn:hover, .d-btn.active {
  background: var(--neon-pink);
  color: #000;
  box-shadow: 0 0 24px var(--neon-pink);
  transform: scale(1.04) rotate(-0.4deg);
  filter: none;
  text-shadow: none;
}

/* ---- Badge / Tag ---- */
.badge {
  display: inline-block;
  padding: .2rem .7rem;
  font-family: var(--ff-bold);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: .85rem;
}
.badge-pink  {
  background: rgba(255,0,204,.08);
  border: 1px solid rgba(255,0,204,0.4);
  color: var(--neon-pink);
  box-shadow: 0 0 5px rgba(255,0,204,0.2);
}
.badge-green {
  background: rgba(170,255,0,.06);
  border: 1px solid rgba(170,255,0,0.4);
  color: var(--neon-green);
  box-shadow: 0 0 5px rgba(170,255,0,0.2);
}
.badge-cyan  {
  background: rgba(0,255,255,.06);
  border: 1px solid rgba(0,255,255,0.4);
  color: var(--neon-cyan);
  box-shadow: 0 0 5px rgba(0,255,255,0.2);
}

/* ---- HR dividers — rough spray streak ---- */
.hr-neon {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,0,204,0.6) 30%, rgba(255,0,204,0.8) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(255,0,204,0.35), 0 1px 3px rgba(255,0,204,0.2);
  border: none;
  margin: 3rem 0;
  transform: rotate(-0.2deg);
}
.hr-neon-cyan {
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,255,0.6) 30%, rgba(0,255,255,0.8) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(0,255,255,0.35), 0 1px 3px rgba(0,255,255,0.2);
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-pink) 0%, var(--neon-cyan) 100%);
  box-shadow: 0 0 8px rgba(255,0,204,0.4);
  /* Slight wobble on the line — spray line isn't perfectly straight */
  filter: url(#roughen);
}
.tl-item { position: relative; padding: 1.5rem 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.tl-item:last-child { border-bottom: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: 2.2rem;
  width: 13px; height: 13px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,0,204,0.7), 2px 2px 4px rgba(255,0,204,0.3);
  transform: translateX(50%);
}
.tl-date { font-family: var(--ff-bold); font-size: .82rem; letter-spacing: 3px; color: var(--neon-cyan); margin-bottom: .3rem; text-transform: uppercase; }
.tl-title { font-family: var(--ff-bold); font-size: 1.15rem; letter-spacing: 1px; margin-bottom: .4rem; }
.tl-body { color: var(--gray-light); font-size: .92rem; }

/* ---- Press card ---- */
.press-meta { font-family: var(--ff-bold); font-size: .8rem; letter-spacing: 3px; color: var(--neon-pink); margin-bottom: .45rem; text-transform: uppercase; }
.press-card-title { font-family: var(--ff-bold); font-size: 1.15rem; letter-spacing: 1px; margin-bottom: .65rem; }
.press-card-body { color: var(--gray-light); font-size: .9rem; line-height: 1.75; }

/* ---- Event row ---- */
.event-row { display: flex; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.event-row:last-child { border-bottom: none; }
.event-date-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 58px; height: 58px;
  background: var(--neon-pink); color: #000;
  border-radius: var(--radius);
  box-shadow:
    0 0 12px rgba(255,0,204,.55),
    3px 3px 8px rgba(255,0,204,0.25);
  margin-right: 1.4rem;
  flex-shrink: 0;
  transform: rotate(-0.8deg);
}
.event-month { font-family: var(--ff-bold); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; }
.event-day   { font-family: var(--ff-graffiti); font-size: 1.5rem; line-height: 1; }
.event-info  { flex: 1; }
.event-title { font-family: var(--ff-bold); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: .25rem; }
.event-loc   { font-size: .88rem; color: var(--gray-light); }

/* ---- Fade-in animation ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ---- Keyframes ---- */

/* Spray paint pulse — uneven flicker + overspray drift, not clean LED ring */
@keyframes sprayPink {
  0%   { text-shadow: 0 0 3px rgba(255,0,204,.9),  0 0 8px rgba(255,0,204,.55),  2px 3px 6px rgba(255,0,204,.35); }
  35%  { text-shadow: 0 0 5px rgba(255,0,204,1),   0 0 16px rgba(255,0,204,.7),  3px 4px 10px rgba(255,0,204,.45), -2px -1px 8px rgba(255,0,204,.3); }
  65%  { text-shadow: 0 0 2px rgba(255,0,204,.85), 0 0 6px rgba(255,0,204,.5),   1px 2px 4px rgba(255,0,204,.3); }
  100% { text-shadow: 0 0 3px rgba(255,0,204,.9),  0 0 8px rgba(255,0,204,.55),  2px 3px 6px rgba(255,0,204,.35); }
}
@keyframes sprayGreen {
  0%   { text-shadow: 0 0 3px rgba(170,255,0,.9),  0 0 8px rgba(170,255,0,.55),  2px 3px 6px rgba(170,255,0,.35); }
  40%  { text-shadow: 0 0 5px rgba(170,255,0,1),   0 0 16px rgba(170,255,0,.7),  3px 4px 10px rgba(170,255,0,.45), -2px -1px 8px rgba(170,255,0,.3); }
  70%  { text-shadow: 0 0 2px rgba(170,255,0,.85), 0 0 6px rgba(170,255,0,.5),   1px 2px 4px rgba(170,255,0,.3); }
  100% { text-shadow: 0 0 3px rgba(170,255,0,.9),  0 0 8px rgba(170,255,0,.55),  2px 3px 6px rgba(170,255,0,.35); }
}
@keyframes sprayCyan {
  0%   { text-shadow: 0 0 3px rgba(0,255,255,.9),  0 0 8px rgba(0,255,255,.55),  2px 3px 6px rgba(0,255,255,.35); }
  45%  { text-shadow: 0 0 5px rgba(0,255,255,1),   0 0 16px rgba(0,255,255,.7),  3px 4px 10px rgba(0,255,255,.45), -2px -1px 8px rgba(0,255,255,.3); }
  72%  { text-shadow: 0 0 2px rgba(0,255,255,.85), 0 0 6px rgba(0,255,255,.5),   1px 2px 4px rgba(0,255,255,.3); }
  100% { text-shadow: 0 0 3px rgba(0,255,255,.9),  0 0 8px rgba(0,255,255,.55),  2px 3px 6px rgba(0,255,255,.35); }
}

@keyframes heroBg {
  from { opacity: .65; }
  to   { opacity: 1; }
}
@keyframes heroPulse {
  0%,100% { opacity: .45; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.04); }
}
@keyframes logoGlow {
  0%,100% { filter: drop-shadow(0 0 16px rgba(255,0,204,.65)) drop-shadow(2px 3px 6px rgba(255,0,204,.3)); }
  50%      { filter: drop-shadow(0 0 35px rgba(255,0,204,.9)) drop-shadow(4px 5px 12px rgba(255,0,204,.45)); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(6,5,5,.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: .4rem;
    border-bottom: 1px solid rgba(255,0,204,.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .donation-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 3.5rem 1.5rem; }
  .section-wide { padding: 3.5rem 1.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero { padding: 80px 1.5rem 2.5rem; }
  /* Disable subtle section rotations on mobile — can cause horizontal scroll */
  section:nth-child(even) > .container,
  section:nth-child(even) > .section,
  section:nth-child(3n) > .container { transform: none; }
}
@media (max-width: 480px) {
  .donation-grid { grid-template-columns: repeat(2,1fr); }
  .btn { padding: .7rem 1.5rem; font-size: .95rem; }
  .btn-lg { padding: .9rem 2rem; font-size: 1rem; }
  .hero { padding: 80px 1rem 2rem; }
  .container, .section { padding-left: 1rem; padding-right: 1rem; }
}
