/* ============================================================
   SOTIB SITE — STYLESHEET
   Design Agent territory. Don't edit for content updates.
   ============================================================ */

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

:root {
  --pink:   #FF2D78;
  --lime:   #C8FF00;
  --black:  #0A0A0A;
  --cream:  #FFF5E4;
  --yellow: #FFE000;
  --blue:   #0057FF;
  --white:  #FFFFFF;
  --nav-h:  58px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Cabin', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 3px solid var(--pink);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 36px; width: auto;
  filter: brightness(0) invert(1); /* white version on dark nav */
  transition: filter .2s;
}
.nav-logo-img:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(20) hue-rotate(310deg); /* pink tint on hover */
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Cabin', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--pink); transition: width .2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-ghost {
  position: absolute; inset: 0;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(90px, 16vw, 220px);
  color: rgba(255,255,255,.025);
  letter-spacing: -6px; user-select: none;
  white-space: nowrap; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem; color: var(--pink);
  margin-bottom: 18px;
  display: inline-block; transform: rotate(-2deg);
}
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(58px, 8.5vw, 128px);
  line-height: .88; color: var(--white); letter-spacing: 2px;
}
.hero-title .label { font-size: .35em; color: var(--lime); letter-spacing: 10px; display: block; margin-bottom: 6px; }
.hero-title .bad   { color: var(--pink); display: block; }
.hero-hosts {
  margin-top: 22px; font-size: .95rem;
  color: rgba(255,255,255,.45); letter-spacing: 1px;
}
.hero-hosts strong { color: var(--yellow); }
.hero-hosts .temp-badge {
  display: inline-block; margin-left: 6px;
  font-family: 'Permanent Marker', cursive;
  font-size: .75rem; color: var(--lime);
  background: rgba(200,255,0,.1);
  padding: 2px 8px; border: 1px solid rgba(200,255,0,.25);
}
.hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* buttons */
.btn {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem; letter-spacing: 2px;
  padding: 14px 32px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translate(-3px,-3px); }
.btn-pink   { background: var(--pink); color: var(--white); box-shadow: 5px 5px 0 var(--lime); }
.btn-pink:hover { box-shadow: 8px 8px 0 var(--lime); }
.btn-ghost  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); box-shadow: 5px 5px 0 rgba(255,255,255,.1); }
.btn-ghost:hover { box-shadow: 8px 8px 0 rgba(255,255,255,.15); }

.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255,45,120,.3) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(0,87,255,.18) 0%, transparent 50%);
}

/* Hero logo image (replaces spinning badge) */
.hero-logo-img {
  position: relative; z-index: 2;
  max-width: 380px; width: 80%;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(255,45,120,.35));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.sticker {
  position: absolute;
  font-family: 'Permanent Marker', cursive;
  font-size: .85rem; padding: 9px 16px;
  background: var(--yellow); color: var(--black);
  box-shadow: 3px 3px 0 var(--black);
  z-index: 3;
}
.sticker-1 { top: 22%; right: 8%; transform: rotate(10deg); }
.sticker-2 { bottom: 22%; left: 6%; transform: rotate(-7deg); background: var(--lime); }

/* ── TICKER ── */
.ticker {
  background: var(--pink); color: var(--white);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--black); border-bottom: 3px solid var(--black);
}
.ticker-track {
  display: inline-block;
  animation: tickerAnim 22s linear infinite;
  font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 3px;
}
@keyframes tickerAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 96px 60px; }

.s-label {
  font-family: 'Permanent Marker', cursive;
  font-size: .95rem; color: var(--pink);
  margin-bottom: 8px; display: block;
}
.s-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1; letter-spacing: 1px; margin-bottom: 48px;
}

/* ── LISTEN ── */
#listen { background: var(--cream); }
.platform-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 18px; max-width: 860px;
}
.platform-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; border: 3px solid var(--black);
  background: var(--white); text-decoration: none; color: var(--black);
  font-family: 'Cabin', sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: 5px 5px 0 var(--black);
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.platform-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--black); }
.platform-card.spotify:hover { background: #1DB954; color: var(--white); }
.platform-card.apple:hover   { background: #FC3C44; color: var(--white); }
.platform-card.youtube:hover { background: #FF0000; color: var(--white); }
.platform-card.rss:hover     { background: var(--pink); color: var(--white); }
.p-icon { font-size: 1.7rem; line-height: 1; }

/* libsyn player */
.libsyn-wrap {
  max-width: 860px; margin-top: 40px;
  border: 3px solid var(--black);
  overflow: hidden; background: var(--black);
}
.libsyn-label {
  background: var(--black); color: rgba(255,255,255,.35);
  font-family: 'Cabin', sans-serif; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px;
}

/* ── TOUR ── */
#tour { background: var(--black); color: var(--white); }
#tour .s-title { color: var(--white); }
#tour .s-title span { color: var(--pink); }
.tour-list { max-width: 820px; }
.tour-row {
  display: grid; grid-template-columns: 96px 1fr 150px 130px;
  align-items: center; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: padding-left .2s, border-color .2s;
}
.tour-row:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.tour-row:hover { padding-left: 10px; border-bottom-color: var(--pink); }
.tour-date { font-family: 'Bebas Neue', cursive; font-size: 1.35rem; color: var(--pink); line-height: 1.1; }
.tour-date small { display: block; font-family: 'Cabin', sans-serif; font-size: .7rem; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.tour-venue { font-weight: 700; font-size: 1rem; }
.tour-city  { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.tour-tag {
  font-family: 'Cabin', sans-serif; font-size: .68rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.45); width: fit-content;
}
.tour-tag.sold-out { border-color: rgba(255,45,120,.4); color: var(--pink); }
.btn-tix {
  font-family: 'Bebas Neue', cursive; font-size: .95rem;
  letter-spacing: 2px; padding: 10px 20px;
  background: var(--pink); color: var(--white);
  text-decoration: none; border: 2px solid var(--pink);
  text-align: center;
  box-shadow: 3px 3px 0 rgba(255,45,120,.4);
  transition: background .15s, color .15s, transform .15s;
}
.btn-tix:hover { background: transparent; color: var(--pink); transform: translate(-2px,-2px); }
.btn-tix.sold { background: transparent; color: rgba(255,255,255,.2); border-color: rgba(255,255,255,.1); pointer-events: none; }
.no-shows { font-family: 'Permanent Marker', cursive; color: rgba(255,255,255,.2); font-size: 1.1rem; padding: 40px 0; }

/* ── MERCH ── */
#merch { background: var(--pink); color: var(--white); position: relative; overflow: hidden; }
#merch::before {
  content: 'MERCH MERCH MERCH MERCH';
  position: absolute; bottom: -18px; left: 0;
  font-family: 'Bebas Neue', cursive; font-size: 110px;
  color: rgba(255,255,255,.05); white-space: nowrap; letter-spacing: 10px; pointer-events: none;
}
#merch .s-label { color: var(--lime); }
.merch-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 22px; max-width: 880px; position: relative; z-index: 2;
}
.merch-card {
  background: var(--white); color: var(--black);
  border: 3px solid var(--black); padding: 30px 22px;
  text-align: center; text-decoration: none; display: block;
  box-shadow: 6px 6px 0 var(--black);
  transition: transform .15s, box-shadow .15s;
}
.merch-card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 var(--black); }
.merch-emoji { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.merch-name  { font-family: 'Bebas Neue', cursive; font-size: 1.45rem; letter-spacing: 2px; margin-bottom: 6px; }
.merch-price { font-family: 'Cabin', sans-serif; font-size: .88rem; color: var(--pink); font-weight: 700; }
.merch-note  { margin-top: 44px; font-family: 'Permanent Marker', cursive; font-size: .95rem; color: rgba(255,255,255,.65); position: relative; z-index: 2; }

/* ── INSTAGRAM ── */
#instagram { background: var(--cream); }
.ig-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 36px;
}
.ig-handle-line { font-family: 'Permanent Marker', cursive; font-size: 1rem; color: rgba(0,0,0,.35); margin-top: 4px; }
.btn-ig-follow {
  font-family: 'Bebas Neue', cursive; font-size: .95rem; letter-spacing: 2px;
  padding: 12px 26px; background: var(--black); color: var(--white);
  text-decoration: none; border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--pink);
  transition: transform .15s, box-shadow .15s;
}
.btn-ig-follow:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--pink); }

.ig-placeholder-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
}
.ig-cell {
  aspect-ratio: 1; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.ig-cell:nth-child(2n) { background: #111; }
.ig-cell:nth-child(3n) { background: #161616; }
.ig-cell-label { font-family: 'Bebas Neue', cursive; font-size: .7rem; color: rgba(255,255,255,.1); letter-spacing: 2px; text-align: center; }
.ig-note { margin-top: 18px; font-family: 'Cabin', sans-serif; font-size: .82rem; color: rgba(0,0,0,.35); font-style: italic; }

/* ── ABOUT ── */
#about { background: var(--lime); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; max-width: 980px; }
.about-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 14px; }
.about-hosts { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.host-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--black); color: var(--white);
  border: 2px solid var(--black); text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 4px 4px 0 var(--black);
}
.host-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 rgba(0,0,0,.4); }
.host-name { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 1px; }
.host-role { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.host-badge { font-family: 'Permanent Marker', cursive; font-size: .7rem; color: var(--lime); margin-top: 3px; }
.host-ig-icon { margin-left: auto; font-size: 1.3rem; opacity: .5; }

.about-contact {
  margin-top: 28px; padding: 20px 22px;
  background: var(--black); color: var(--white);
  border: 3px solid var(--black);
}
.contact-label { font-family: 'Permanent Marker', cursive; font-size: .85rem; color: var(--pink); display: block; margin-bottom: 6px; }
.about-contact a { font-family: 'Bebas Neue', cursive; font-size: 1.25rem; color: var(--lime); text-decoration: none; letter-spacing: 1px; }

.about-quote {
  background: var(--black); color: var(--white);
  padding: 52px 44px; border: 3px solid var(--black); position: relative;
}
.about-quote::before {
  content: '"'; font-family: 'Bebas Neue', cursive; font-size: 140px;
  color: var(--pink); position: absolute; top: -28px; left: 22px; line-height: 1;
}
.about-quote blockquote { font-family: 'Permanent Marker', cursive; font-size: 1.55rem; line-height: 1.55; position: relative; z-index: 1; }
.about-quote cite { display: block; margin-top: 18px; font-family: 'Cabin', sans-serif; font-size: .8rem; color: rgba(255,255,255,.4); font-style: normal; letter-spacing: 2px; text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,.35);
  padding: 44px 60px; border-top: 3px solid var(--pink);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Bebas Neue', cursive; font-size: 1.9rem; color: var(--white); letter-spacing: 2px; }
.footer-logo span { color: var(--pink); }
.footer-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: 'Cabin', sans-serif; font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: .72rem; letter-spacing: 1px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--black); flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 2px solid var(--pink); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: .85rem; }
  .nav-hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 52px 24px 36px; }
  .hero-right { min-height: 300px; }
  .hero-logo-img { max-width: 240px; }

  section { padding: 64px 24px; }

  .tour-row { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
  .tour-tag { display: none; }
  .btn-tix { grid-column: 2; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .ig-placeholder-grid { grid-template-columns: repeat(2,1fr); }
  footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
}
