/* ═══════════════════════════════════════════════════════════
   SCOUTING BTL — La Calle · Street Culture Zine
   Editorial · Condensed street typography · Marker highlight
   Polaroid tilt · Sticker collage · Liquid Glass CTAs
   ═══════════════════════════════════════════════════════════ */

:root {
  --bt-bg:          #060606;
  --bt-text:        #f0f0f5;
  --bt-muted:       rgba(240, 240, 245, 0.62);
  --bt-dim:         rgba(240, 240, 245, 0.4);
  --bt-accent:      #a855f7;
  --bt-accent-2:    #38bdf8;
  --bt-gradient:    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  --bt-highlight:   #fde047;
  --bt-sticker:     #f0abfc;
  --bt-paper:       #f3ecd8;
  --bt-paper-dim:   #d8d1bd;
  --bt-tape:        rgba(253, 224, 71, 0.55);
  --bt-live:        #4ade80;
  --bt-mono:        'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  --bt-display:     'Unbounded', sans-serif;
  --bt-street:      'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --bt-body:        'Urbanist', sans-serif;
  --bt-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --bt-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════════════
   COVER — Hero
   ═══════════════════════════════════════════════════════════ */

.bt-cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #060606;
  padding: 72px 40px 84px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

/* Animated color blobs */
.bt-cover__blobs {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.5;
}
.bt-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.bt-blob--1 {
  width: 54vw;
  height: 54vw;
  left: -8vw;
  top: -6vw;
  background: radial-gradient(circle, rgba(168,85,247,0.7) 0%, transparent 70%);
  animation: bt-drift-1 22s ease-in-out infinite alternate;
}
.bt-blob--2 {
  width: 48vw;
  height: 48vw;
  right: -10vw;
  top: 8vw;
  background: radial-gradient(circle, rgba(56,189,248,0.55) 0%, transparent 70%);
  animation: bt-drift-2 26s ease-in-out infinite alternate;
}
.bt-blob--3 {
  width: 40vw;
  height: 40vw;
  left: 28vw;
  bottom: -14vw;
  background: radial-gradient(circle, rgba(240,171,252,0.5) 0%, transparent 70%);
  animation: bt-drift-3 30s ease-in-out infinite alternate;
}
.bt-blob--4 {
  width: 28vw;
  height: 28vw;
  right: 18vw;
  bottom: 4vw;
  background: radial-gradient(circle, rgba(253,224,71,0.3) 0%, transparent 70%);
  animation: bt-drift-4 18s ease-in-out infinite alternate;
}
@keyframes bt-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(12vw, 8vw) scale(1.15); }
}
@keyframes bt-drift-2 {
  0% { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(-10vw, 12vw) scale(0.9); }
}
@keyframes bt-drift-3 {
  0% { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(-14vw, -10vw) scale(1.1); }
}
@keyframes bt-drift-4 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6vw, -8vw) scale(1.2); }
}

/* Paper grain overlay */
.bt-cover__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Darkening veil on top */
.bt-cover__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.65) 0%, rgba(6,6,6,0.28) 22%, rgba(6,6,6,0.2) 55%, rgba(6,6,6,0.7) 100%);
}

/* Masthead (top) */
.bt-masthead {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 4px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-family: var(--bt-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(-8px);
  animation: bt-fade-down 0.8s var(--bt-ease) 0.3s forwards;
}
@keyframes bt-fade-down {
  to { opacity: 1; transform: translateY(0); }
}
.bt-masthead__issue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bt-masthead__issue strong {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--bt-text);
  line-height: 1;
}
.bt-masthead__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bt-live);
  box-shadow: 0 0 8px var(--bt-live);
  animation: bt-live-pulse 1.5s ease-in-out infinite;
}
@keyframes bt-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.bt-masthead__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bt-live);
  font-weight: 600;
}
.bt-masthead__section { display: none; }
@media (min-width: 900px) { .bt-masthead__section { display: inline-flex; align-items: center; gap: 12px; } }
.bt-masthead__sep { color: var(--bt-highlight); opacity: 0.75; font-size: 9px; }

/* Cover grid — heading left, manifesto right */
.bt-cover__grid {
  position: relative;
  z-index: 4;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 380px);
  gap: 56px;
  align-items: center;
  padding: 32px 0 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.bt-cover__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bt-cover__kicker {
  font-family: var(--bt-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bt-highlight);
  margin: 0;
  opacity: 0;
  animation: bt-fade-in 0.7s var(--bt-ease) 0.9s forwards;
}
.bt-cover__kicker span {
  color: rgba(255,255,255,0.55);
  margin: 0 8px;
}

/* Big title — street condensed, 2 lines */
.bt-cover-title {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--bt-text);
  margin: 0;
  text-transform: uppercase;
}
.bt-cover-title__row {
  display: block;
  overflow: hidden;
}
.bt-cover-title__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: bt-word-up 0.9s var(--bt-ease) forwards;
}
.bt-cover-title__word--1 { animation-delay: 1.0s; }
.bt-cover-title__word--2 { animation-delay: 1.15s; }
.bt-cover-title__word--3 { animation-delay: 1.3s; }
@keyframes bt-word-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Marker highlight — yellow swipe behind text */
.bt-mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--bt-text);
}
.bt-mark::before {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 18%;
  bottom: 14%;
  background: var(--bt-highlight);
  transform: skew(-4deg) scaleX(0);
  transform-origin: left center;
  z-index: -1;
  animation: bt-mark-swipe 1.1s var(--bt-ease) 2.0s forwards;
  border-radius: 2px;
  filter: blur(0.3px);
}
.bt-mark--slow::before { animation-duration: 1.4s; animation-delay: 2.2s; }
@keyframes bt-mark-swipe {
  to { transform: skew(-4deg) scaleX(1); }
}
.bt-mark__text {
  position: relative;
  z-index: 1;
  color: #0a0a0a;
  font-style: italic;
}

@keyframes bt-slide-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bt-fade-in { to { opacity: 1; } }

/* ───────── Manifesto card (El Brief) ───────── */
.bt-manifesto {
  position: relative;
  padding: 38px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.015) 100%),
    rgba(12,12,18,0.58);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.14),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 28px 60px -14px rgba(0,0,0,0.62),
    0 12px 32px -6px rgba(168,85,247,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: rotate(1.6deg) translateY(24px) scale(0.94);
  animation: bt-manifesto-in 0.9s var(--bt-spring) 1.5s forwards;
  justify-self: end;
  width: 100%;
  max-width: 400px;
}
@keyframes bt-manifesto-in {
  to { opacity: 1; transform: rotate(1.6deg) translateY(0) scale(1); }
}
.bt-manifesto:hover {
  transform: rotate(0.6deg) translateY(-3px) scale(1.005);
  transition: transform 0.5s var(--bt-spring);
}

/* Tape at top */
.bt-manifesto__tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 96px;
  height: 22px;
  background: var(--bt-tape);
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.45);
  pointer-events: none;
}
.bt-manifesto__tape::before,
.bt-manifesto__tape::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.14), transparent);
}
.bt-manifesto__tape::before { left: 0; }
.bt-manifesto__tape::after { right: 0; transform: scaleX(-1); }

.bt-manifesto__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bt-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--bt-highlight);
  text-transform: uppercase;
  align-self: flex-start;
}
.bt-manifesto__tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--bt-highlight);
}

.bt-manifesto__text {
  font-family: var(--bt-body);
  font-size: 15.5px;
  line-height: 1.58;
  color: rgba(255,255,255,0.88);
  margin: 0;
  font-weight: 400;
}
.bt-manifesto__text mark {
  background: var(--bt-highlight);
  color: #0c0c0c;
  padding: 1px 6px 2px;
  margin: 0 -2px;
  font-weight: 600;
  font-style: italic;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.bt-manifesto__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0 2px;
  border-top: 1px dashed rgba(255,255,255,0.18);
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  margin: 4px 0;
  padding-bottom: 14px;
}
.bt-manifesto__meta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bt-manifesto__meta span {
  font-family: var(--bt-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.52);
  text-transform: uppercase;
}
.bt-manifesto__meta strong {
  font-family: var(--bt-street);
  font-size: 28px;
  font-weight: 400;
  color: var(--bt-text);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.bt-manifesto__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.bt-manifesto__ctas .bt-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
}

/* CTAs — liquid glass */
.bt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--bt-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: transform 0.25s var(--bt-ease), box-shadow 0.3s ease;
}
.bt-cta--primary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
}
.bt-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 0 rgba(255,255,255,0.14),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7),
    0 6px 20px -4px rgba(56,189,248,0.35);
}
.bt-cta--ghost {
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(18,18,22,0.48);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.08),
    0 4px 16px -4px rgba(0,0,0,0.5);
}
.bt-cta--ghost:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(255,255,255,0.14),
    0 8px 24px -4px rgba(0,0,0,0.55);
}
.bt-cta svg { transition: transform 0.25s var(--bt-ease); }
.bt-cta:hover svg { transform: translateX(3px); }

/* Decorative stickers — positioned at corners (never over heading/manifesto) */
.bt-sticker {
  position: absolute;
  z-index: 7;
  font-family: var(--bt-street);
  font-weight: 400;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: bt-sticker-pop 0.6s var(--bt-spring) forwards;
  will-change: transform;
}
@keyframes bt-sticker-pop {
  0% { opacity: 0; transform: scale(0.2) rotate(var(--rot, 0deg)); }
  60% { transform: scale(1.12) rotate(var(--rot, 0deg)); }
  100% { opacity: 1; transform: scale(1) rotate(var(--rot, 0deg)); }
}

/* Green "LIVE" bottom-left — away from heading & manifesto */
.bt-sticker--live {
  --rot: -7deg;
  left: 40px;
  bottom: 92px;
  padding: 6px 14px;
  background: var(--bt-live);
  color: #0a0a0a;
  font-size: 18px;
  letter-spacing: 0.06em;
  border-radius: 3px;
  box-shadow: 0 8px 20px -4px rgba(74,222,128,0.45);
  animation-delay: 2.3s;
}

/* "NO AGENCY BULLSHIT" stamp — near manifesto top-left, tilted slightly */
.bt-sticker--stamp {
  --rot: -6deg;
  top: 120px;
  right: 28%;
  padding: 9px 16px;
  border: 2px solid var(--bt-highlight);
  color: var(--bt-highlight);
  font-size: 16px;
  letter-spacing: 0.08em;
  background: rgba(253,224,71,0.08);
  border-radius: 3px;
  animation-delay: 2.5s;
}
/* Marquee at bottom of cover */
.bt-cover__marquee {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 4;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  opacity: 0;
  animation: bt-fade-in 0.7s var(--bt-ease) 2.6s forwards;
}
.bt-marquee-track {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  animation: bt-marquee 32s linear infinite;
  font-family: var(--bt-street);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.14);
  text-transform: uppercase;
}
.bt-marquee-track span { display: inline-flex; align-items: center; gap: 44px; }
.bt-marquee-track em {
  font-style: normal;
  color: var(--bt-highlight);
  font-size: 16px;
  vertical-align: middle;
}
@keyframes bt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ZINE SECTION — generic page container
   ═══════════════════════════════════════════════════════════ */

.bt-page {
  position: relative;
  padding: 96px 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.bt-page--dark {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 50%, transparent 100%);
}

/* Running header (page label top strip) */
.bt-running {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bt-running__pg {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--bt-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.bt-running__pg strong {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--bt-highlight);
  line-height: 1;
}
.bt-running__side {
  font-family: var(--bt-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Section title block */
.bt-page__title-block { margin-bottom: 64px; max-width: 1000px; }
.bt-page__title-block--right { margin-left: auto; text-align: right; }
.bt-page__title-block--center { margin: 0 auto 64px; text-align: center; max-width: 860px; }

.bt-display {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--bt-text);
  margin: 0;
  text-transform: uppercase;
}
.bt-display em {
  font-style: italic;
  font-weight: 400;
  background: var(--bt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bt-page__lede {
  font-family: var(--bt-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  max-width: 560px;
  margin: 20px 0 0;
  font-weight: 400;
}
.bt-page__title-block--center .bt-page__lede { margin-left: auto; margin-right: auto; }
.bt-page__title-block--right .bt-page__lede { margin-left: auto; }

/* ═══════════════════════════════════════════════════════════
   PG.01 — Servicios (polaroid grid)
   ═══════════════════════════════════════════════════════════ */

.bt-drops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  padding-top: 12px;
}
.bt-drop {
  position: relative;
  padding: 22px 22px 28px;
  background: var(--bt-paper);
  border-radius: 4px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.1),
    0 18px 40px -12px rgba(0,0,0,0.65),
    0 6px 16px -4px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--bt-spring), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #0a0a0a;
}
.bt-drop:nth-child(6n+1) { transform: rotate(-1.8deg); }
.bt-drop:nth-child(6n+2) { transform: rotate(1.2deg); }
.bt-drop:nth-child(6n+3) { transform: rotate(-0.8deg); }
.bt-drop:nth-child(6n+4) { transform: rotate(2.1deg); }
.bt-drop:nth-child(6n+5) { transform: rotate(-1.4deg); }
.bt-drop:nth-child(6n+6) { transform: rotate(0.9deg); }
.bt-drop:hover {
  transform: rotate(0) translateY(-6px) scale(1.02);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.14),
    0 28px 60px -14px rgba(168,85,247,0.35),
    0 10px 24px -6px rgba(0,0,0,0.55);
  z-index: 2;
}
/* tape corners */
.bt-drop::before,
.bt-drop::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 18px;
  background: var(--bt-tape);
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
}
.bt-drop::before {
  top: -7px;
  left: 28%;
  transform: rotate(-4deg);
}
.bt-drop::after {
  display: none;
}
.bt-drop--tape-br::after {
  display: block;
  bottom: -7px;
  right: 24%;
  transform: rotate(3deg);
}

.bt-drop__code {
  font-family: var(--bt-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7a38;
  padding: 4px 10px;
  background: var(--bt-highlight);
  border-radius: 2px;
  align-self: flex-start;
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.2);
}
.bt-drop__name {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin: 0;
  color: #0c0c0c;
  text-transform: uppercase;
}
.bt-drop__desc {
  font-family: var(--bt-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(12,12,12,0.72);
  margin: 0;
  flex: 1;
}
.bt-drop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1.5px dashed rgba(12,12,12,0.2);
}
.bt-drop__tags span {
  font-family: var(--bt-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(12,12,12,0.7);
  text-transform: uppercase;
}
.bt-drop__icon {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0c0c0c;
  color: var(--bt-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--bt-spring);
}
.bt-drop:hover .bt-drop__icon {
  transform: rotate(18deg) scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   PG.02 — Shows (cases polaroid grid with rotations)
   ═══════════════════════════════════════════════════════════ */

.bt-shows {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 40px;
  padding: 12px 0 0;
}
.bt-show {
  position: relative;
  padding: 14px 14px 22px;
  background: var(--bt-paper);
  border-radius: 3px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.1),
    0 20px 44px -12px rgba(0,0,0,0.7),
    0 6px 16px -4px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--bt-spring), box-shadow 0.3s;
  cursor: pointer;
  color: #0a0a0a;
}
.bt-show:nth-child(4n+1) { transform: rotate(-2.2deg); }
.bt-show:nth-child(4n+2) { transform: rotate(1.4deg); margin-top: 24px; }
.bt-show:nth-child(4n+3) { transform: rotate(-0.6deg); margin-top: -12px; }
.bt-show:nth-child(4n+4) { transform: rotate(2.8deg); margin-top: 18px; }
.bt-show--feature { grid-column: span 2; }
.bt-show--feature:nth-child(4n+1) { transform: rotate(-1.4deg); }
.bt-show:hover {
  transform: rotate(0) translateY(-8px) scale(1.015);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.14),
    0 32px 64px -16px rgba(240,171,252,0.3),
    0 12px 28px -6px rgba(0,0,0,0.6);
  z-index: 2;
}

.bt-show__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.bt-show--feature .bt-show__photo { aspect-ratio: 16 / 10; }
.bt-show__photo video,
.bt-show__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(0.92);
  transition: transform 0.8s var(--bt-ease), filter 0.4s;
}
.bt-show:hover .bt-show__photo video,
.bt-show:hover .bt-show__photo img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.12) brightness(1);
}

/* Tape corners on photo */
.bt-show__photo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 10%;
  width: 58px;
  height: 18px;
  background: var(--bt-tape);
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
  transform: rotate(-5deg);
  z-index: 3;
}
.bt-show__photo::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 10%;
  width: 58px;
  height: 18px;
  background: var(--bt-tape);
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
  transform: rotate(5deg);
  z-index: 3;
}
.bt-show--feature .bt-show__photo::before { width: 72px; }
.bt-show--feature .bt-show__photo::after { width: 72px; }

.bt-show__caption {
  padding: 16px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bt-show__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bt-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6a5a1e;
  text-transform: uppercase;
}
.bt-show__tag::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--bt-highlight);
}
.bt-show__title {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  margin: 0;
  color: #0c0c0c;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.bt-show__meta {
  font-family: var(--bt-mono);
  font-size: 11px;
  color: rgba(12,12,12,0.55);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.bt-show__stamp {
  position: absolute;
  top: -14px;
  right: -12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bt-sticker);
  color: #0a0a0a;
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-14deg);
  box-shadow: 0 10px 24px -6px rgba(240,171,252,0.5);
  line-height: 1;
  text-align: center;
}
.bt-show__stamp--live { background: var(--bt-live); }

/* ═══════════════════════════════════════════════════════════
   PG.03 — Crowd (live metrics)
   ═══════════════════════════════════════════════════════════ */

.bt-crowd {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px 24px;
  padding-top: 20px;
}
.bt-count {
  position: relative;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.bt-count__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bt-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bt-live);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bt-count__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bt-live);
  box-shadow: 0 0 8px var(--bt-live);
  animation: bt-live-pulse 1.5s ease-in-out infinite;
}
.bt-count__num {
  display: block;
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--bt-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.bt-count--xl .bt-count__num {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  background: var(--bt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bt-count__label {
  display: block;
  font-family: var(--bt-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bt-highlight);
  margin-bottom: 10px;
}
.bt-count__desc {
  font-family: var(--bt-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PG.04 — Process (3 phases w/ arrows)
   ═══════════════════════════════════════════════════════════ */

.bt-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  padding-top: 20px;
}
.bt-step {
  position: relative;
  padding: 32px 28px 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%),
    rgba(14,14,18,0.7);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.1),
    inset 0 0 0 0.5px rgba(255,255,255,0.06),
    0 6px 24px -8px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(-0.6deg);
  transition: transform 0.4s var(--bt-spring);
}
.bt-step:nth-child(3) { transform: rotate(0.4deg); margin-top: 16px; }
.bt-step:nth-child(5) { transform: rotate(-0.4deg); margin-top: -8px; }
.bt-step:hover { transform: rotate(0) translateY(-4px); }

.bt-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bt-highlight);
  color: #0a0a0a;
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 8px 20px -4px rgba(253,224,71,0.5);
  transform: rotate(-6deg);
}
.bt-step__kicker {
  font-family: var(--bt-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
}
.bt-step__title {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 0.92;
  margin: 0;
  color: var(--bt-text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.bt-step__desc {
  font-family: var(--bt-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.bt-step__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.14);
  font-family: var(--bt-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--bt-highlight);
  text-transform: uppercase;
}

.bt-arrow {
  align-self: center;
  color: var(--bt-highlight);
  opacity: 0.75;
}
.bt-arrow svg { width: 42px; height: 42px; }

/* ═══════════════════════════════════════════════════════════
   PG.05 — Drops / Packages (ticket stubs)
   ═══════════════════════════════════════════════════════════ */

.bt-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 12px;
}
.bt-ticket {
  position: relative;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%),
    rgba(14,14,18,0.74);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.1),
    inset 0 0 0 0.5px rgba(255,255,255,0.06),
    0 10px 28px -8px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--bt-spring), box-shadow 0.3s;
  overflow: hidden;
}
.bt-ticket:hover { transform: translateY(-6px); }
.bt-ticket--featured {
  background:
    linear-gradient(180deg, rgba(253,224,71,0.1) 0%, rgba(253,224,71,0.02) 100%),
    rgba(14,14,18,0.82);
  box-shadow:
    inset 0 1px 0 0 rgba(253,224,71,0.32),
    inset 0 0 0 0.5px rgba(253,224,71,0.22),
    0 16px 44px -10px rgba(253,224,71,0.28),
    0 6px 20px -4px rgba(168,85,247,0.2);
}

.bt-ticket__stub {
  padding: 22px 26px;
  border-bottom: 2px dashed rgba(255,255,255,0.14);
  position: relative;
}
.bt-ticket__stub::before,
.bt-ticket__stub::after {
  content: '';
  position: absolute;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #060606;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.06);
}
.bt-ticket__stub::before { left: -12px; }
.bt-ticket__stub::after { right: -12px; }
.bt-ticket__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 4px 10px;
  background: var(--bt-highlight);
  color: #0a0a0a;
  font-family: var(--bt-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 6px 14px -2px rgba(253,224,71,0.5);
  transform: rotate(-3deg);
}
.bt-ticket__tier {
  font-family: var(--bt-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bt-highlight);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bt-ticket__name {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--bt-text);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.bt-ticket__scope {
  font-family: var(--bt-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}
.bt-ticket__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.14);
}
.bt-ticket__from {
  font-family: var(--bt-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.bt-ticket__amount {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: var(--bt-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.bt-ticket__currency {
  font-family: var(--bt-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bt-ticket__body {
  padding: 24px 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bt-ticket__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bt-ticket__features li {
  position: relative;
  padding-left: 22px;
  font-family: var(--bt-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.bt-ticket__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 2px;
  background: var(--bt-highlight);
}
.bt-ticket__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: var(--bt-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--bt-ease), box-shadow 0.3s;
}
.bt-ticket:not(.bt-ticket--featured) .bt-ticket__cta {
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(18,18,22,0.5);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.08);
}
.bt-ticket:not(.bt-ticket--featured) .bt-ticket__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.2),
    inset 0 0 0 0.5px rgba(255,255,255,0.14);
}
.bt-ticket--featured .bt-ticket__cta {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
}
.bt-ticket--featured .bt-ticket__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}

/* ═══════════════════════════════════════════════════════════
   PG.06 — Guest List (Form)
   ═══════════════════════════════════════════════════════════ */

.bt-page--guestlist { padding-bottom: 120px; }

.bt-guestlist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.bt-guestlist__intro { padding-top: 8px; }
.bt-guestlist__lede {
  font-family: var(--bt-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 20px 0 24px;
}
.bt-guestlist__lede strong {
  color: var(--bt-highlight);
  font-weight: 600;
}
.bt-guestlist__rules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bt-guestlist__rules li {
  font-family: var(--bt-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  padding-left: 22px;
  position: relative;
}
.bt-guestlist__rules li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--bt-highlight);
  font-family: var(--bt-mono);
  font-size: 10px;
  letter-spacing: 0;
}
.bt-guestlist__rules li.is-yes::before {
  content: '✓';
  color: var(--bt-live);
}

.bt-guestlist__form {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%),
    rgba(14,14,18,0.76);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    inset 0 0 0 0.5px rgba(255,255,255,0.06),
    0 10px 32px -8px rgba(0,0,0,0.55);
  overflow: hidden;
}
.bt-guestlist__stub {
  padding: 20px 26px;
  background: linear-gradient(180deg, rgba(253,224,71,0.1) 0%, rgba(253,224,71,0) 100%);
  border-bottom: 2px dashed rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
}
.bt-guestlist__stub::before,
.bt-guestlist__stub::after {
  content: '';
  position: absolute;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #060606;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.06);
}
.bt-guestlist__stub::before { left: -12px; }
.bt-guestlist__stub::after { right: -12px; }
.bt-guestlist__stub-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bt-guestlist__stub-kicker {
  font-family: var(--bt-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bt-highlight);
  font-weight: 700;
}
.bt-guestlist__stub-name {
  font-family: var(--bt-street);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--bt-text);
  text-transform: uppercase;
  line-height: 1;
}
.bt-guestlist__stub-code {
  font-family: var(--bt-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bt-guestlist__body {
  padding: 28px 26px 26px;
}

.bt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.bt-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.bt-field-row > .bt-field { margin-bottom: 0; }
.bt-field label {
  font-family: var(--bt-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-weight: 600;
}
.bt-field input,
.bt-field select,
.bt-field textarea {
  width: 100%;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 100%),
    rgba(8,8,12,0.55);
  border: none;
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 0 rgba(0,0,0,0.4),
    inset 0 0 0 0.5px rgba(255,255,255,0.08);
  color: var(--bt-text);
  font-family: var(--bt-body);
  font-size: 14px;
  outline: none;
  transition: box-shadow 0.25s;
}
.bt-field input:focus,
.bt-field select:focus,
.bt-field textarea:focus {
  box-shadow:
    inset 0 1px 0 0 rgba(0,0,0,0.4),
    inset 0 0 0 1px var(--bt-highlight),
    0 0 0 4px rgba(253,224,71,0.1);
}
.bt-field textarea { resize: vertical; min-height: 96px; }
.bt-field input::placeholder,
.bt-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.bt-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.6)' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 100%),
    rgba(8,8,12,0.55);
  background-repeat: no-repeat;
  background-position: right 14px center, 0 0, 0 0;
}
.bt-field select option { background: #0a0a0e; color: var(--bt-text); }

.bt-submit {
  width: 100%;
  margin-top: 14px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--bt-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
  transition: transform 0.25s var(--bt-ease), box-shadow 0.3s;
}
.bt-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7);
}
.bt-submit.is-sent {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  pointer-events: none;
}
.bt-submit svg { transition: transform 0.25s var(--bt-ease); }
.bt-submit:hover svg { transform: translateX(4px); }

.bt-guestlist__disclaimer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-family: var(--bt-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   COLOFÓN — back cover
   ═══════════════════════════════════════════════════════════ */

.bt-colofon {
  padding: 56px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.bt-colofon__line {
  font-family: var(--bt-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.bt-colofon__big {
  font-family: var(--bt-street);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--bt-text);
  text-transform: uppercase;
  margin: 0;
}
.bt-colofon__big em {
  font-style: italic;
  font-weight: 400;
  background: var(--bt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bt-colofon__dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 6px;
  color: var(--bt-highlight);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CTA — Liquid glass, scroll-to-form
   ═══════════════════════════════════════════════════════════ */

.bt-float-cta {
  position: fixed;
  right: 32px;
  bottom: 56px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  font-family: var(--bt-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%),
    linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 0 rgba(255,255,255,0.12),
    inset 0 0 0 0.5px rgba(255,255,255,0.22),
    0 10px 32px -6px rgba(168,85,247,0.55),
    0 4px 16px -4px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.5s var(--bt-ease),
    transform 0.5s var(--bt-ease),
    box-shadow 0.3s ease;
  pointer-events: none;
  will-change: transform, opacity;
}
.bt-float-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.bt-float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 0 rgba(255,255,255,0.14),
    inset 0 0 0 0.5px rgba(255,255,255,0.28),
    0 16px 40px -6px rgba(168,85,247,0.7),
    0 6px 20px -4px rgba(56,189,248,0.35);
}
.bt-float-cta:active {
  transform: translateY(-1px) scale(0.99);
}
.bt-float-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bt-highlight);
  box-shadow: 0 0 8px var(--bt-highlight);
  animation: bt-live-pulse 1.6s ease-in-out infinite;
}
.bt-float-cta__arrow { transition: transform 0.3s var(--bt-ease); }
.bt-float-cta:hover .bt-float-cta__arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--bt-ease),
    transform 0.7s var(--bt-spring);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal].bt-drop.is-in,
[data-reveal].bt-show.is-in,
[data-reveal].bt-step.is-in,
[data-reveal].bt-ticket.is-in {
  /* Keep rotations after reveal — combined via transform can't be merged easily,
     so we preserve transform rotation from nth-child rules, translateY just resets */
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .bt-page { padding: 88px 32px; }
  .bt-cover__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
  .bt-manifesto {
    justify-self: start;
    max-width: 480px;
    transform: rotate(1.2deg);
  }
  @keyframes bt-manifesto-in {
    to { opacity: 1; transform: rotate(1.2deg) translateY(0) scale(1); }
  }
  .bt-sticker--stamp { right: 6%; top: 96px; }

  .bt-drops { grid-template-columns: 1fr 1fr; }
  .bt-shows { grid-template-columns: 1fr 1fr; }
  .bt-show--feature { grid-column: 1 / span 2; }
  .bt-crowd { grid-template-columns: 1fr 1fr; }
  .bt-tickets { grid-template-columns: 1fr; }
  .bt-process { grid-template-columns: 1fr; gap: 16px; }
  .bt-arrow { transform: rotate(90deg); justify-self: center; }
  .bt-guestlist { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .bt-cover { padding: 52px 20px 88px; }
  .bt-masthead { font-size: 10px; gap: 10px; }
  .bt-masthead__issue strong { font-size: 18px; }
  .bt-cover__grid { padding-top: 16px; gap: 28px; }
  .bt-cover__main { gap: 18px; }
  .bt-cover-title { font-size: 15vw; line-height: 0.88; }
  .bt-cover__kicker { font-size: 10.5px; }

  .bt-manifesto {
    padding: 30px 22px 22px;
    transform: rotate(0.6deg);
    max-width: 100%;
  }
  @keyframes bt-manifesto-in {
    to { opacity: 1; transform: rotate(0.6deg) translateY(0) scale(1); }
  }
  .bt-manifesto__text { font-size: 14.5px; }
  .bt-manifesto__meta strong { font-size: 22px; }
  .bt-manifesto__ctas .bt-cta { padding: 12px 18px; font-size: 12px; }

  .bt-cover__marquee { bottom: 16px; }
  .bt-marquee-track { font-size: 22px; gap: 28px; }
  .bt-sticker--stamp { display: none; }
  .bt-sticker--live {
    left: auto;
    right: 16px;
    bottom: auto;
    top: 80px;
    font-size: 14px;
    padding: 5px 11px;
  }

  .bt-page { padding: 68px 20px; }
  .bt-running { flex-wrap: wrap; gap: 10px; padding-bottom: 12px; margin-bottom: 36px; }
  .bt-page__title-block { margin-bottom: 44px; }

  .bt-drops { grid-template-columns: 1fr; gap: 28px; }
  .bt-shows { grid-template-columns: 1fr; gap: 36px; }
  .bt-show--feature { grid-column: 1; }
  .bt-show:nth-child(4n+2),
  .bt-show:nth-child(4n+3),
  .bt-show:nth-child(4n+4) { margin-top: 0; }
  .bt-show__title { font-size: 1.6rem; }

  .bt-crowd { grid-template-columns: 1fr; gap: 24px; }

  .bt-process { grid-template-columns: 1fr; gap: 16px; }
  .bt-step, .bt-step:nth-child(3), .bt-step:nth-child(5) {
    transform: rotate(0);
    margin-top: 0;
  }

  .bt-tickets { grid-template-columns: 1fr; gap: 20px; }
  .bt-ticket__name { font-size: 28px; }
  .bt-ticket__amount { font-size: 32px; }

  .bt-guestlist__body { padding: 24px 22px 22px; }
  .bt-field-row { grid-template-columns: 1fr; gap: 14px; }
  .bt-field input, .bt-field textarea, .bt-field select { font-size: 16px; }

  .bt-colofon { padding: 40px 20px; }

  .bt-float-cta {
    right: 16px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 12px);
    padding: 12px 18px 12px 16px;
    font-size: 12px;
    gap: 9px;
  }
  .bt-float-cta__dot { width: 6px; height: 6px; }
}

/* Ultra-compact phones */
@media (max-width: 480px) {
  .bt-cover { padding: 40px 16px 72px; }
  .bt-masthead { font-size: 9px; gap: 8px; }
  .bt-masthead__section:not(:first-child):not(:nth-child(2)) { display: none; }

  .bt-cover-title { font-size: 18vw; }
  .bt-cover__grid { gap: 20px; padding-top: 8px; }

  .bt-manifesto { padding: 24px 18px 18px; }
  .bt-manifesto__text { font-size: 13.5px; }
  .bt-manifesto__meta { gap: 14px; }
  .bt-manifesto__meta strong { font-size: 18px; }
  .bt-manifesto__ctas { flex-direction: column; }
  .bt-manifesto__ctas .bt-cta { width: 100%; min-height: 46px; padding: 12px 16px; }

  .bt-cover__marquee { bottom: 10px; }
  .bt-marquee-track { font-size: 18px; gap: 20px; }
  .bt-sticker--live { top: 64px; right: 12px; font-size: 12px; padding: 4px 9px; }

  .bt-page { padding: 52px 16px; }
  .bt-running { font-size: 10px; gap: 8px; }
  .bt-page__title-block { margin-bottom: 32px; }

  .bt-show__title { font-size: 1.35rem; }
  .bt-ticket__name { font-size: 22px; }
  .bt-ticket__amount { font-size: 26px; }

  .bt-guestlist__body { padding: 18px 16px 16px; }
  .bt-colofon { padding: 32px 16px; }

  .bt-float-cta {
    right: 12px;
    left: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 10px);
    padding: 11px 16px;
    font-size: 11.5px;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bt-cover-title__word { opacity: 1; transform: none; animation: none; }
  .bt-masthead, .bt-cover__kicker, .bt-cover__marquee { opacity: 1; transform: none; animation: none; }
  .bt-manifesto { opacity: 1; transform: rotate(1.6deg); animation: none; }
  .bt-blob { animation: none; }
  .bt-mark::before { transform: skew(-4deg) scaleX(1); animation: none; }
  .bt-sticker { opacity: 1; animation: none; transform: rotate(var(--rot, 0deg)); }
  .bt-masthead__dot, .bt-count__dot, .bt-float-cta__dot { animation: none; }
  .bt-marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .bt-float-cta { transition: opacity 0.3s ease; }
  .bt-float-cta:hover { transform: translateY(0) scale(1); }
  .bt-drop, .bt-show, .bt-step, .bt-ticket { transform: none !important; }
}
