/* CJP — Simple clean theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg: #f6f6f4;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #ddd;
  --accent: #2d6a4f;
  --accent-soft: #e8f2ec;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* Marquee */
.marquee-bar {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
}

.marquee-inner {
  display: flex;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
}

.marquee-inner span { padding: 0.6rem 2rem; flex-shrink: 0; }
.marquee-inner span::after { content: ' · '; opacity: 0.7; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.top-bar .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand img { width: 48px; height: 48px; }

.brand-title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-title small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: 0.15s;
}

.nav-links a:hover { background: var(--accent-soft); color: var(--accent); }

.nav-links a.active {
  background: var(--accent);
  color: #fff;
}

.menu-btn {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .menu-btn { display: block; }
  .nav-wrap { display: none; width: 100%; }
  .nav-wrap.open { display: block; }
  .nav-links { flex-direction: column; }
}

/* Hero — attractive but simple colors */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--accent-soft) 0%, var(--white) 45%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 3.5rem;
}

.hero-bg-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-top-meta, .hero-tags, .hero-actions, .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
}

.hero-top-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.12);
}

.pill-live .live-dot {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-symbol {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title .title-line { display: block; }

.hero-title .title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-quote {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
  max-width: 32rem;
}

@media (max-width: 900px) {
  .hero-quote { margin-left: auto; margin-right: auto; text-align: left; }
}

.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 30rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  transition: 0.2s;
}

.tag-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn-glow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.25);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: 0.15s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 28rem;
}

@media (max-width: 900px) { .hero-stats { max-width: 100%; } }
@media (max-width: 480px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hero visual / DJ image */
.hero-visual {
  position: relative;
}

.hero-card-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(45, 106, 79, 0.12);
  text-align: center;
  position: relative;
  transform: rotate(1deg);
  transition: transform 0.3s;
}

.hero-card-visual:hover { transform: rotate(0deg) scale(1.01); }

.sticker-trend {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #fff3cd;
  color: #856404;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 2px solid #ffc107;
  transform: rotate(8deg);
  z-index: 2;
}

.meme-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-img-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--accent-soft);
  margin-bottom: 1rem;
  background: var(--accent-soft);
}

.hero-meme-img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s;
}

.hero-meme-img:hover { transform: scale(1.03); }

.hero-quote-box {
  text-align: left;
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
}

.hero-quote-box .quote-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.float-emoji {
  position: absolute;
  font-size: 1.75rem;
  opacity: 0.85;
  animation: floatY 3s ease-in-out infinite;
  pointer-events: none;
}

.float-emoji.e1 { top: 5%; left: -8px; animation-delay: 0s; }
.float-emoji.e2 { bottom: 20%; right: -12px; animation-delay: 0.8s; font-size: 1.5rem; }
.float-emoji.e3 { top: 40%; left: -16px; animation-delay: 1.5s; font-size: 1.4rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.quote-bubble {
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* Legacy mascot (other pages) */
.mascot-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.mascot-panel img.main-art {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
  display: block;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.stat-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.stat-cell .big { font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.stat-cell .tiny { font-size: 0.7rem; color: var(--muted); font-weight: 600; }

/* Sections */
.block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.block h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.block .sub {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.funny-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.funny-card:hover { border-color: var(--accent); }

.funny-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }

.funny-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.funny-card .slogan {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Tag wall */
.tag-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tag-wall .item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.tag-wall .item:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Manifesto */
.demand-stack { list-style: none; }

.demand-stack li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.demand-num {
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  min-width: 3rem;
  line-height: 1;
}

.demand-stack h3 { font-size: 1.1rem; margin-bottom: 0.35rem; font-weight: 700; }

.demand-stack .one-liner {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Page top */
.page-top {
  text-align: center;
  padding: 2.5rem 1.25rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-top h1 {
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.page-top .hook {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Meme grid */
.meme-zone {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.meme-tile {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
}

.meme-tile:hover { border-color: var(--accent); background: var(--accent-soft); }

.meme-tile .big-emoji { font-size: 2.2rem; margin-bottom: 0.5rem; }
.meme-tile p { font-size: 0.8rem; font-weight: 600; color: var(--muted); }

/* Eligibility */
.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.check-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.check-box .rule { font-size: 0.7rem; color: var(--accent); font-weight: 700; margin-bottom: 0.35rem; }
.check-box h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.check-box .pass { float: right; color: var(--accent); }

.check-tagline {
  color: var(--muted) !important;
  font-size: 0.8rem !important;
  margin-top: 0.5rem;
  font-weight: 600 !important;
}

/* CTA */
.cta-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem;
  text-align: center;
}

.cta-band h2 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cta-band p { color: var(--muted); margin-bottom: 1.25rem; }

/* Mid-page social banner (comedy) */
.social-mid-banner {
  padding: 3rem 1.25rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-mid-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.social-mid-card {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.12);
  position: relative;
  overflow: hidden;
}

.social-mid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #4a9e6f, var(--accent));
}

.social-mid-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.social-mid-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
}

.social-mid-emoji {
  font-size: 2.2rem;
  line-height: 1;
  animation: socialWiggle 2s ease-in-out infinite;
}

@keyframes socialWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.social-mid-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.25;
}

.social-mid-text {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.social-mid-highlight {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.65rem 1rem;
  background: var(--accent-soft);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  text-align: left;
}

.social-mid-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.social-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-btn-text { text-align: left; }

.social-fb { background: #1877f2; }
.social-insta {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-mid-fine {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

/* Entry meme overlay (index only) */
.entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.entry-overlay.entry-show {
  opacity: 1;
  visibility: visible;
}

.entry-overlay.entry-hide {
  opacity: 0;
  visibility: hidden;
}

.entry-box {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.entry-line {
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: scale(0.8);
}

.entry-show .entry-line-1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  animation: entryPop 0.5s ease 0.2s forwards;
}

.entry-show .entry-line-2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  animation: entryPop 0.5s ease 0.7s forwards;
}

.entry-show .entry-line-3 {
  font-size: clamp(2rem, 7vw, 3rem);
  color: #7dcea0;
  animation: entryPop 0.6s ease 1.2s forwards;
}

@keyframes entryPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.entry-sub {
  color: #aaa;
  font-size: 0.9rem;
  margin: 1.5rem 0 1rem;
  opacity: 0;
  animation: entryFade 0.4s ease 1.8s forwards;
}

@keyframes entryFade {
  to { opacity: 1; }
}

.entry-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 0.75rem;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(45, 106, 79, 0.5);
  opacity: 0;
  animation: entryFade 0.4s ease 2s forwards;
}

.entry-btn:hover { filter: brightness(1.1); }

.entry-skip {
  background: none;
  border: none;
  color: #888;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0;
  animation: entryFade 0.4s ease 2.2s forwards;
}

.entry-skip:hover { color: #bbb; }

/* Footer */
.site-foot {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 2rem;
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
  margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
  .foot-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .foot-brand, .foot-follow { align-items: center; }
  .foot-social { justify-content: center; }
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foot-tagline {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.foot-follow-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.25rem;
}

.foot-follow-title {
  font-weight: 800;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.foot-joke {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  font-style: italic;
}

.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.foot-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s;
}

.foot-social-link:hover { opacity: 0.9; }

.foot-fb { background: #1877f2; }
.foot-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.foot-icon {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.site-foot .foot-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.site-foot .foot-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.foot-copy {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

/* Toast */
#roach-tip {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 300px;
  background: var(--text);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 300;
}

#roach-tip.show { transform: translateX(0); }

/* Alt section */
.alt-bg {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.alt-bg .block { padding-top: 3rem; padding-bottom: 3rem; }
