/* =====================================================
   TRAPSNACKZ FLAVOR LAB — TRAP HOUSE STREETWEAR VIBES
   Neon Hot Pink #FF10F0 | Electric Lime #39FF14 | Black #000
   ===================================================== */

:root {
  --neon-pink: #FF10F0;
  --neon-lime: #39FF14;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #777;
  --gray-dark: #444;
}

/* ---- GLOBAL GRIME + SCANLINES ---- */
body {
  position: relative;
}

/* Gritty noise texture — more aggressive */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9998;
}

/* CRT scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.12) 2px,
    rgba(0,0,0,0.12) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ---- GLITCH TEXT ---- */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch::before {
  animation: glitch-top 3s infinite;
  color: #39FF14;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch::after {
  animation: glitch-bot 2.5s infinite;
  color: #FF10F0;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitch-top {
  0%, 94%, 100% { transform: none; opacity: 0; }
  95% { transform: translate(-3px, -1px); opacity: 0.7; }
  96% { transform: translate(3px, 1px); opacity: 0.5; }
  97% { transform: translate(-2px, 0); opacity: 0.8; }
}

@keyframes glitch-bot {
  0%, 90%, 100% { transform: none; opacity: 0; }
  91% { transform: translate(3px, 1px); opacity: 0.6; }
  92% { transform: translate(-3px, -1px); opacity: 0.5; }
  93% { transform: translate(2px, 0); opacity: 0.7; }
}

/* ---- SMOKE / MIST ANIMATION ---- */
.smoke-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,16,240,0.15) 0%, transparent 70%);
  animation: smoke-rise linear infinite;
  opacity: 0;
}

.smoke--1 { width: 300px; height: 300px; left: -5%; bottom: -10%; animation-duration: 8s; animation-delay: 0s; }
.smoke--2 { width: 250px; height: 250px; left: 25%; bottom: -5%; animation-duration: 10s; animation-delay: 2s; background: radial-gradient(circle, rgba(57,255,20,0.1) 0%, transparent 70%); }
.smoke--3 { width: 400px; height: 400px; right: -10%; bottom: -15%; animation-duration: 12s; animation-delay: 4s; }
.smoke--4 { width: 200px; height: 200px; left: 50%; bottom: -8%; animation-duration: 9s; animation-delay: 1s; background: radial-gradient(circle, rgba(57,255,20,0.12) 0%, transparent 70%); }
.smoke--5 { width: 350px; height: 350px; right: 20%; bottom: -12%; animation-duration: 11s; animation-delay: 3s; }

@keyframes smoke-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.6; }
  50% { opacity: 0.4; }
  85% { opacity: 0.1; }
  100% { transform: translateY(-120vh) scale(2.5); opacity: 0; }
}

/* ---- FLASH BORDER on hover ---- */
.flash-border {
  position: relative;
}

.flash-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  pointer-events: none;
}

.flash-border:hover::before {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255,16,240,0.5), inset 0 0 20px rgba(255,16,240,0.1);
  animation: border-flash 0.6s ease-out;
}

@keyframes border-flash {
  0% { opacity: 0; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.01); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a0015 0%, #000 70%);
}

/* Paint drips from top */
.hero__paint-drips {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
}

.paint-drip {
  position: absolute;
  top: 0;
  border-radius: 0 0 6px 6px;
}

.paint-drip--1 { left: 8%; width: 12px; height: 90px; background: var(--neon-pink); opacity: 0.25; }
.paint-drip--2 { left: 22%; width: 8px; height: 55px; background: var(--neon-lime); opacity: 0.2; }
.paint-drip--3 { right: 18%; width: 10px; height: 70px; background: var(--neon-pink); opacity: 0.2; }
.paint-drip--4 { right: 5%; width: 14px; height: 110px; background: var(--neon-lime); opacity: 0.15; }
.paint-drip--5 { left: 45%; width: 6px; height: 40px; background: var(--neon-pink); opacity: 0.35; animation: drip-anim 3s ease-in-out infinite; }

@keyframes drip-anim {
  0%, 100% { height: 40px; opacity: 0.35; }
  50% { height: 60px; opacity: 0.5; }
}

.hero__crown-wrap {
  position: relative;
  margin-bottom: 20px;
  width: 120px;
}

.hero__crown-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,16,240,0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: crown-pulse 2.5s ease-in-out infinite;
}

@keyframes crown-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero__crown {
  position: relative;
  width: 120px;
  height: 80px;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(255,16,240,0.8));
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-pink);
  animation: glow-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes glow-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(64px, 17vw, 130px);
  line-height: 0.85;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255,16,240,0.3), 0 4px 0 rgba(255,16,240,0.15);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.neon-pink { color: var(--neon-pink); text-shadow: 0 0 40px rgba(255,16,240,0.6); }
.neon-lime { color: var(--neon-lime); text-shadow: 0 0 40px rgba(57,255,20,0.6); }

.hero__title-sub {
  display: block;
  font-size: clamp(18px, 4vw, 36px);
  letter-spacing: 0.5em;
  color: var(--gray);
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(14px, 3vw, 22px);
  letter-spacing: 0.5em;
  color: var(--neon-lime);
  margin-bottom: 28px;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}

.hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bbb;
  max-width: 440px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.hero__meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__cta {
  display: inline-block;
  background: var(--neon-pink);
  color: #fff;
  text-decoration: none;
  padding: 18px 60px;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  box-shadow: 0 0 20px rgba(255,16,240,0.3), 0 0 40px rgba(255,16,240,0.1);
}

.hero__cta:hover {
  background: #ff32ff;
  box-shadow: 0 0 40px rgba(255,16,240,0.7), 0 0 80px rgba(255,16,240,0.3);
  transform: translateY(-3px) scale(1.03);
}

.hero__badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__badge {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  border: 1px solid #1e1e1e;
  padding: 6px 14px;
  border-radius: 2px;
}

/* Drip accents */
.hero__drip {
  position: absolute;
  width: 10px;
  bottom: 0;
  border-radius: 0 0 5px 5px;
}
.hero__drip--pink { left: 12%; height: 140px; background: var(--neon-pink); opacity: 0.35; clip-path: polygon(0 0, 100% 0, 80% 100%, 60% 60%, 40% 100%, 20% 50%, 0 100%); }
.hero__drip--lime  { right: 18%; height: 90px; background: var(--neon-lime); opacity: 0.3; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%); }
.hero__drip--pink2 { right: 6%; height: 60px; width: 6px; background: var(--neon-pink); opacity: 0.25; border-radius: 3px; }

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gray);
  text-align: center;
  margin-bottom: 40px;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: #080808;
  position: relative;
  overflow: hidden;
}

/* Giant graffiti watermark behind cards */
.features__graffiti-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: clamp(6rem, 20vw, 14rem);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,16,240,0.12);
  text-stroke: 1px rgba(255,16,240,0.12);
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
  animation: stamp-pulse 4s ease-in-out infinite;
}

@keyframes stamp-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) rotate(-12deg) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) rotate(-10deg) scale(1.03); }
}

.features .container { position: relative; z-index: 1; }

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-lime), transparent);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feat-card {
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--neon-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feat-card:hover {
  border-color: rgba(255,16,240,0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255,16,240,0.1);
}
.feat-card:hover::after { transform: scaleX(1); }

.feat-card__icon svg { width: 48px; height: 48px; margin-bottom: 16px; }

.feat-card__title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.feat-card__desc {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 0;
  background: #000;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.pricing__headline {
  font-size: clamp(48px, 10vw, 80px);
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,16,240,0.2);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.price-card {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.price-card:hover {
  border-color: rgba(255,16,240,0.5);
  box-shadow: 0 0 30px rgba(255,16,240,0.1);
  transform: translateY(-3px);
}

.price-card--featured {
  border-color: var(--neon-pink);
  box-shadow: 0 0 40px rgba(255,16,240,0.2), inset 0 0 30px rgba(255,16,240,0.03);
}

.price-card__count {
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card__label {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-card__price {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}

.price-card__note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 8px;
  font-weight: 300;
}

.price-card__tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 15px rgba(255,16,240,0.5);
}

.pricing__premium-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.pricing__cta {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gray);
}

/* ---- MENU ---- */
.menu {
  padding: 100px 0;
  background: #0E0E16;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 48px;
  margin-bottom: 32px;
}

.menu-col__title {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-list li {
  font-size: 0.95rem;
  color: #aaa;
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid #1e1e2a;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.menu-list li:last-child { border-bottom: none; }
.menu-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--pink);
  border-radius: 50%;
}
.menu-list li:hover { color: var(--white); }

.menu__footnote {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gray);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, #1a0015 0%, #000 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255,16,240,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(57,255,20,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.closing__crown {
  margin: 0 auto 32px;
  width: 200px;
  filter: drop-shadow(0 0 24px rgba(255,16,240,0.5));
}

.closing__headline {
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing__sub {
  font-size: 1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.closing__slogan {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gray);
}

.closing__btn {
  display: inline-block;
  background: var(--neon-pink);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  margin-bottom: 40px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,16,240,0.3);
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.closing__btn:hover {
  background: #ff32ff;
  box-shadow: 0 0 40px rgba(255,16,240,0.6);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 0;
  background: #000;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,16,240,0.4), transparent);
}

.footer__logo {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #555;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer__copy {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #333;
}

/* ---- SNACK FACT ---- */
.snack-fact {
  padding: 60px 0;
  background: #0A0A0F;
  border-top: 1px solid #1e1e2a;
  border-bottom: 1px solid #1e1e2a;
}

.snack-fact__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.snack-fact__icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.snack-fact__label {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: #B4FF00;
  margin-bottom: 8px;
}

.snack-fact__body {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.7;
  font-weight: 300;
}

.snack-fact__body em {
  font-style: normal;
  color: #FF2D7B;
}

/* ---- NO REFUNDS ---- */
.no-refunds {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.15em;
  color: #FF2D7B;
  margin-bottom: 48px;
  text-shadow: 0 0 20px rgba(255,45,123,0.4), 0 0 60px rgba(255,45,123,0.2);
  border: 3px solid #FF2D7B;
  display: inline-block;
  padding: 12px 40px;
  background: rgba(255,45,123,0.06);
  box-shadow: 0 0 30px rgba(255,45,123,0.3), inset 0 0 30px rgba(255,45,123,0.05);
  animation: no-refunds-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes no-refunds-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255,45,123,0.3), inset 0 0 30px rgba(255,45,123,0.05); }
  50% { box-shadow: 0 0 60px rgba(255,45,123,0.6), inset 0 0 40px rgba(255,45,123,0.1); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; gap: 8px; }
  .closing__headline { font-size: 2.5rem; }
}