﻿/* ============================================
   SUGAR MOMMY — Y2K maximalist pink/red
   ============================================ */

:root {
  --cream: #FFF1E6;
  --bubble: #FFC8E6;
  --bubble-deep: #FFA0D2;
  --hot: #FF3D9A;
  --deep: #E0166E;
  --cherry: #E8163C;
  --plum: #6B0F3A;
  --ink: #1A0010;
  --spark: #FFE066;
  --lime: #C8FF6A;
  --sky: #B7E2FF;
  --shadow: 0 6px 0 var(--ink);
  --shadow-sm: 0 3px 0 var(--ink);
  --shadow-lg: 0 10px 0 var(--ink);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(circle at 8% 12%, var(--bubble) 0 1.2vw, transparent 1.3vw),
    radial-gradient(circle at 92% 22%, var(--spark) 0 0.9vw, transparent 1vw),
    radial-gradient(circle at 22% 72%, var(--bubble) 0 1vw, transparent 1.1vw),
    radial-gradient(circle at 78% 88%, var(--cherry) 0 0.8vw, transparent 0.9vw),
    var(--cream);
  background-attachment: fixed;
}

img { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; }

/* ----- TYPE ----- */
.display { font-family: 'Bagel Fat One', system-ui; font-weight: 400; line-height: 0.92; letter-spacing: -0.01em; }
.honk { font-family: 'Honk', system-ui; font-weight: 400; }
.mono { font-family: 'DM Mono', monospace; }

/* ----- DECORATIVE ELEMENTS ----- */
.sparkle {
  position: absolute;
  width: 32px; height: 32px;
  color: var(--spark);
  pointer-events: none;
  animation: spin 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,224,102,0.6));
}
@keyframes spin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  to   { transform: rotate(360deg) scale(1); }
}
@keyframes float-y {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50%     { transform: translateY(-12px) rotate(var(--r,0deg)); }
}

/* Sticker — chunky outlined badge */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.sticker.hot { background: var(--hot); color: white; }
.sticker.spark { background: var(--spark); }
.sticker.lime { background: var(--lime); }
.sticker.sky { background: var(--sky); }
.sticker.cherry { background: var(--cherry); color: white; }
.sticker.deep { background: var(--deep); color: white; }

/* Chunky outlined button */
.chunk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--hot);
  color: white;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 22px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
  text-decoration: none;
}
.chunk-btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.chunk-btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

/* ----- LAYOUT ----- */
section {
  position: relative;
  padding: 120px 6vw;
  overflow: hidden;
}
.wrap { max-width: 1200px; margin: 0 auto; position: relative; }

/* ----- NAV ----- */
.topnav {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin: 0 0 0 0;
}
.topnav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.topnav-brand {
  background: var(--hot);
  color: white;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.topnav a {
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.topnav a:hover { background: var(--spark); color: var(--ink); }

/* ----- HERO ----- */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  background:
    radial-gradient(ellipse at 50% 110%, var(--bubble) 0%, transparent 50%),
    linear-gradient(180deg, var(--bubble) 0%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: clamp(64px, 13vw, 200px);
  margin: 0;
  line-height: 0.85;
  color: var(--hot);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow:
    8px 8px 0 var(--ink),
    8px 8px 0 0 var(--cherry);
}
.hero .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero .name {
  font-family: 'Honk', system-ui;
  font-size: clamp(72px, 16vw, 240px);
  color: var(--cherry);
  -webkit-text-stroke: 3px var(--ink);
  margin: -10px 0 0;
  line-height: 1;
  text-shadow: 0 6px 0 var(--ink);
}
.hero-sub {
  font-size: 18px;
  font-weight: 600;
  max-width: 600px;
  margin: 32px auto 8px;
}
.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 36px;
}
.hero-blob {
  position: absolute;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 14px;
  pointer-events: none;
}

/* Big background banner text */
.marquee {
  position: relative;
  background: var(--cherry);
  color: var(--cream);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 32px;
  letter-spacing: 0.04em;
}
.marquee.spark { background: var(--spark); color: var(--ink); }
.marquee.bubble { background: var(--bubble); color: var(--ink); }
.marquee-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- GALLERY (Mommy Cam) ----- */
.gallery {
  background: var(--bubble);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 18px;
}
.poly {
  position: relative;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 12px 12px 50px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.poly:hover { transform: rotate(0deg) scale(1.04) !important; z-index: 5; }
.poly-img { display: block; width: 100%; flex: 1; min-height: 0; object-fit: cover; }
.poly-img.circle { border-radius: 50%; }
.poly-img.rounded { border-radius: 8px; }
.howl-mommy-img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.poly .caption {
  position: absolute;
  bottom: 8px;
  left: 12px; right: 12px;
  font-family: 'Honk', system-ui;
  font-size: 22px;
  text-align: center;
  color: var(--deep);
}
.poly .reveal {
  position: absolute;
  inset: 12px 12px 50px;
  background: var(--hot);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 28px;
  line-height: 1;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.poly:hover .reveal { opacity: 1; }
.poly .badge {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 6;
}

/* ----- RECEIPTS ----- */
.receipts {
  background: var(--cream);
}
.receipt-paper {
  background: white;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  font-family: 'DM Mono', monospace;
}
.receipt-paper::before, .receipt-paper::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  height: 18px;
  background: 
    radial-gradient(circle at 9px 0, transparent 9px, white 10px) repeat-x;
  background-size: 18px 18px;
}
.receipt-paper::before { top: -18px; transform: scaleY(-1); }
.receipt-paper::after { bottom: -18px; }
.receipt-head {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--ink);
}
.receipt-head h3 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 36px;
  margin: 0;
  color: var(--cherry);
}
.receipt-head .meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 6px;
}
.receipt-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px dotted rgba(26,0,16,0.3);
}
.receipt-line .qty { color: var(--ink); opacity: 0.6; margin-right: 8px; }
.receipt-line .name { flex: 1; }
.receipt-line .amt { font-weight: 700; }
.receipt-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 6px;
  margin-top: 6px;
  border-top: 3px double var(--ink);
  font-family: 'Bagel Fat One', system-ui;
  font-size: 28px;
  color: var(--cherry);
}
.receipt-status {
  text-align: center;
  margin-top: 14px;
  padding: 10px;
  background: var(--spark);
  border: 2px dashed var(--ink);
  font-family: 'Bagel Fat One', system-ui;
  font-size: 18px;
}
.receipt-barcode {
  font-family: 'Libre Barcode 39', monospace;
  font-size: 60px;
  text-align: center;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ----- PS5 ----- */
.ps5 {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bubble) 100%);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.ps5-card {
  background: white;
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  
}
.ps5-mock {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f6f6f6 0%, #d8d8d8 100%);
  border: 3px solid var(--ink);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ps5-mock svg { width: 70%; height: auto; }
.ps5-info h3 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 48px;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 0.9;
}
.ps5-info .price {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 36px;
  color: var(--cherry);
  text-decoration: line-through;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 4px;
}
.ps5-info .free {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 36px;
  color: var(--deep);
}
.qty-row {
  display: flex; align-items: center; gap: 8px;
  margin: 16px 0;
}
.qty-btn {
  width: 36px; height: 36px;
  border: 3px solid var(--ink);
  background: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.qty-val {
  min-width: 36px;
  text-align: center;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 24px;
}
.cart-btn {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--cherry);
  color: white;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 22px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s, background 0.2s;
  text-align: center;
}
.cart-btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.cart-btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.cart-btn.escalated-1 { background: var(--hot); }
.cart-btn.escalated-2 { background: var(--deep); }
.cart-btn.escalated-3 { background: var(--plum); }
.cart-btn.escalated-4 { background: var(--ink); color: var(--spark); }
.cart-btn.escalated-5 { background: var(--spark); color: var(--ink); animation: shake 0.3s infinite; }
@keyframes shake {
  0%,100% { transform: translate(0,0) rotate(0); }
  25% { transform: translate(-3px,2px) rotate(-2deg); }
  75% { transform: translate(3px,-2px) rotate(2deg); }
}
.ps5-toast {
  position: absolute;
  top: -10px; right: -10px;
  transform: rotate(15deg);
  font-family: 'Bagel Fat One', system-ui;
  background: var(--spark);
  border: 3px solid var(--ink);
  padding: 10px 16px;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.ps5-status {
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--cream);
  border: 2px dashed var(--ink);
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  min-height: 38px;
}
.ps5-status .heart { color: var(--cherry); }

/* ----- 5-YEAR PLAN ----- */
.plan {
  background: var(--ink);
  color: var(--cream);
  border-top: 4px solid var(--ink);
}
.plan h2 { color: var(--spark); }
.plan-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
}
.plan-track::before {
  content: '';
  position: absolute;
  top: 60px; left: 0; right: 0;
  height: 6px;
  background: var(--hot);
  border-radius: 3px;
  z-index: 0;
}
.plan-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.plan-bubble {
  position: relative;
  width: 120px;
  height: 120px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--hot);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bagel Fat One', system-ui;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 0 var(--cherry);
  margin-bottom: 18px;
}
.plan-step:nth-child(2) .plan-bubble {
  position: relative; background: var(--cherry); box-shadow: 0 6px 0 var(--hot); }
.plan-step:nth-child(3) .plan-bubble {
  position: relative; background: var(--spark); color: var(--ink); box-shadow: 0 6px 0 var(--deep); }
.plan-step:nth-child(4) .plan-bubble {
  position: relative; background: var(--lime); color: var(--ink); box-shadow: 0 6px 0 var(--cherry); }
.plan-step:nth-child(5) .plan-bubble {
  position: relative; background: var(--bubble); color: var(--ink); box-shadow: 0 6px 0 var(--hot); }
.plan-step h4 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 22px;
  margin: 4px 0;
  color: var(--spark);
}
.plan-step p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 200px;
}
.plan-check {
  position: absolute;
  top: -10px; right: -10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--ink);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

/* ----- MOMMY BUTTON ----- */
.mommy {
  background: linear-gradient(180deg, var(--hot) 0%, var(--cherry) 100%);
  color: white;
  text-align: center;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.mommy h2 { color: var(--spark); }
.mommy-btn {
  font-family: 'Bagel Fat One', system-ui;
  font-size: clamp(40px, 8vw, 96px);
  padding: 32px 56px;
  background: var(--spark);
  color: var(--cherry);
  border: 6px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 0 var(--ink);
  letter-spacing: 0.02em;
  margin: 24px 0;
  transition: transform 0.05s, box-shadow 0.05s;
  text-shadow: 4px 4px 0 var(--hot);
}
.mommy-btn:hover { transform: translate(-3px,-3px); box-shadow: 15px 15px 0 var(--ink); }
.mommy-btn:active { transform: translate(4px,4px); box-shadow: 4px 4px 0 var(--ink); }
.mommy-counter {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.mommy-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Howl stage */
.howl-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  max-width: 880px;
  margin: 40px auto 30px;
  position: relative;
}
.howl-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.howl-mommy-frame {
  position: relative;
  width: 220px;
  height: 240px;
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 10px;
  transform: rotate(-3deg);
}

.howl-heart-deco {
  position: absolute;
  top: -22px; right: -22px;
  width: 52px; height: 52px;
  background: var(--cherry);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Bagel Fat One',system-ui;
  font-size: 32px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(15deg);
}
.howl-label {
  font-family: 'Bagel Fat One',system-ui;
  font-size: 24px;
  color: var(--spark);
  letter-spacing: 0.06em;
  text-shadow: 3px 3px 0 var(--ink);
}
.howl-arrow-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-width: 80px;
}
.howl-arrow {
  font-family: 'Bagel Fat One',system-ui;
  font-size: 70px;
  color: var(--spark);
  text-shadow: 4px 4px 0 var(--ink);
  animation: float-y 2s ease-in-out infinite;
  --r: 0deg;
}
.howl-arrow.pulse { animation: arrow-pop 0.4s ease; color: var(--cherry); }
@keyframes arrow-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4) rotate(-12deg); }
  100% { transform: scale(1); }
}
.sound-bubble {
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  background: var(--spark);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 10px 18px;
  font-family: 'Bagel Fat One',system-ui;
  font-size: 22px;
  color: var(--cherry);
  box-shadow: 4px 4px 0 var(--ink);
  white-space: nowrap;
  animation: bubble-pop 0.45s ease;
}
.sound-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 36%;
  width: 18px; height: 18px;
  background: var(--spark);
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(45deg);
}
@keyframes bubble-pop {
  0% { transform: translateX(-50%) rotate(-6deg) scale(0); }
  60% { transform: translateX(-50%) rotate(-6deg) scale(1.15); }
  100% { transform: translateX(-50%) rotate(-6deg) scale(1); }
}

/* Boy SVG */
.howl-boy-svg {
  width: 220px;
  height: 240px;
  filter: drop-shadow(8px 8px 0 var(--ink));
}
.howl-boy-svg .howl-head {
  transform-origin: 100px 118px;
  transition: transform 0.18s ease;
}
.howl-boy-svg.is-active .howl-head {
  transform: rotate(-22deg) translate(-4px, -4px);
}
.howl-boy-svg .face-active { display: none; }
.howl-boy-svg.is-active .face-active { display: block; }
.howl-boy-svg.is-active .face-calm { display: none; }

/* Mode buttons */
.howl-modes {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}
.howl-mode-btn {
  font-family: 'Bagel Fat One',system-ui;
  font-size: 16px;
  padding: 10px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}
.howl-mode-btn.is-active { background: var(--spark); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }

@media (max-width: 720px) {
  .howl-stage { grid-template-columns: 1fr; gap: 12px; }
  .howl-arrow-wrap { transform: rotate(90deg); height: 60px; }
  .howl-mommy-frame { width: 180px; height: 200px; }
  .howl-boy-svg { width: 180px; height: 200px; }
  .sound-bubble { font-size: 18px; padding: 8px 14px; }
  .howl-mode-btn { font-size: 13px; padding: 8px 14px; }
}

/* ----- CARD ----- */
.card-section {
  background: var(--bubble);
  text-align: center;
  padding-bottom: 160px;
}
.envelope {
  width: min(560px, 90vw);
  margin: 40px auto 0;
  position: relative;
  cursor: pointer;
  perspective: 1200px;
}
.envelope-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 48px 32px;
  border-radius: 6px;
  position: relative;
}
.envelope-card h3 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 40px;
  color: var(--cherry);
  margin: 0 0 16px;
  line-height: 1;
}
.envelope-card p {
  font-size: 17px;
  line-height: 1.5;
  margin: 12px 0;
}
.envelope-card .signoff {
  font-family: 'Honk', system-ui;
  font-size: 38px;
  color: var(--deep);
  margin-top: 24px;
}
.envelope-stamp {
  position: absolute;
  top: -28px; right: -16px;
  transform: rotate(8deg);
  width: 90px; height: 110px;
  background: var(--hot);
  border: 3px dashed var(--cream);
  outline: 3px solid var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Bagel Fat One', system-ui;
  color: white;
  font-size: 11px;
  line-height: 1;
  padding: 6px;
}
.envelope-stamp .big { font-size: 20px; margin: 4px 0; }

/* ----- HEADERS / SECTION ----- */
.section-tag {
  display: inline-flex;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
section h2 {
  font-family: 'Bagel Fat One', system-ui;
  font-size: clamp(44px, 7vw, 96px);
  margin: 0 0 16px;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
section .lede {
  font-size: 18px;
  font-weight: 600;
  max-width: 540px;
  line-height: 1.4;
  margin: 0 0 40px;
}

/* ----- CONFETTI ----- */
.confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 200;
  font-size: 22px;
  animation: confetti-fall 1.6s ease-out forwards;
}
@keyframes confetti-fall {
  0% { transform: translate(0,0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 800px) {
  .ps5-card { grid-template-columns: 1fr; }
  .plan-track { grid-template-columns: 1fr; gap: 32px; }
  .plan-track::before { display: none; }
  .topnav-inner { flex-wrap: wrap; gap: 4px; }
  .topnav a { font-size: 11px; padding: 6px 10px; }
  .topnav { margin-bottom: -40px; }
  section { padding: 80px 5vw; }
  .gallery-grid { grid-auto-rows: 60px; gap: 12px; }
}
