/* ========================================
   BROKEN PLAYBOOK — PODCAST HERO
   ======================================== */
.bp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.bp-hero__bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 165, 92, 0.06), transparent 60%);
  pointer-events: none;
}

.bp-hero__badge {
  display: inline-block;
  background: rgba(200, 165, 92, 0.1);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(200, 165, 92, 0.3);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.bp-hero__artwork {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(200, 165, 92, 0.08);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.bp-hero__artwork img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.bp-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.bp-hero__form-wrap {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.bp-hero__form-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bp-hero__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.bp-hero__form input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.bp-hero__form input::placeholder {
  color: var(--text-muted);
}

.bp-hero__form input:focus {
  border-color: var(--accent-gold-dim);
}

.bp-hero__form button {
  padding: 16px 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.bp-hero__form button:hover {
  background: var(--accent-gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 165, 92, 0.2);
}

@media (max-width: 600px) {
  .bp-hero__form {
    flex-direction: column;
  }
  .bp-hero__artwork {
    max-width: 280px;
  }
}

/* ========================================
   BROKEN PLAYBOOK — WHAT THE SHOW IS
   ======================================== */
.bp-what {
  background: var(--bg-surface);
  position: relative;
}

.bp-what::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold-dim), transparent);
  opacity: 0.3;
}

.bp-what__body {
  max-width: 760px;
}

.bp-what__body .headline-lg {
  margin-bottom: 28px;
}

.bp-what__body .body-lg {
  margin-bottom: 48px;
}

.bp-is-isnot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

.bp-is-isnot__col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.bp-is-isnot__col--is h3 {
  color: var(--accent-gold);
}

.bp-is-isnot__col--isnot h3 {
  color: var(--text-muted);
}

.bp-is-isnot__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp-is-isnot__col li {
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.bp-is-isnot__col--is li {
  color: var(--text-primary);
}

.bp-is-isnot__col--is li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.bp-is-isnot__col--isnot li {
  color: var(--text-muted);
}

.bp-is-isnot__col--isnot li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--text-muted);
}

@media (max-width: 768px) {
  .bp-is-isnot { grid-template-columns: 1fr; }
}

/* ========================================
   BROKEN PLAYBOOK — EPISODES LIST
   ======================================== */
.bp-episodes__header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.bp-episodes__header .headline-lg {
  margin-bottom: 12px;
}

.bp-episodes__header .body-lg {
  max-width: 640px;
}

.bp-episode {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s;
}

.bp-episode:first-of-type {
  border-top: 1px solid var(--border-subtle);
}

.bp-episode:hover {
  padding-left: 12px;
}

.bp-episode__number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent-gold-dim);
  padding-top: 2px;
}

.bp-episode__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.bp-episode:hover .bp-episode__title {
  color: var(--accent-gold);
}

.bp-episode__teaser {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   BROKEN PLAYBOOK — WHO THIS IS FOR
   ======================================== */
.bp-audience {
  background: var(--bg-surface);
  position: relative;
}

.bp-audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold-dim), transparent);
  opacity: 0.3;
}

.bp-audience__inner {
  max-width: 760px;
}

.bp-audience__inner .headline-lg {
  margin-bottom: 28px;
}

.bp-audience__inner .body-lg + .body-lg {
  margin-top: 20px;
}

/* ========================================
   BROKEN PLAYBOOK — SUBSCRIBE
   ======================================== */
.bp-subscribe {
  text-align: center;
  position: relative;
}

.bp-subscribe__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 165, 92, 0.05), transparent 70%);
  pointer-events: none;
}

.bp-subscribe__content {
  position: relative;
  z-index: 2;
}

.bp-subscribe .headline-lg {
  margin-bottom: 12px;
}

.bp-subscribe .body-lg {
  margin-bottom: 36px;
}

.bp-subscribe__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.bp-subscribe__form input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.bp-subscribe__form input::placeholder {
  color: var(--text-muted);
}

.bp-subscribe__form input:focus {
  border-color: var(--accent-gold-dim);
}

.bp-subscribe__form button {
  padding: 16px 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.bp-subscribe__form button:hover {
  background: var(--accent-gold-bright);
  transform: translateY(-1px);
}

.bp-subscribe__platforms {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 600px) {
  .bp-subscribe__form {
    flex-direction: column;
  }
}

/* ========================================
   BROKEN PLAYBOOK — BRIDGE SECTION
   ======================================== */
.bp-bridge {
  background: var(--bg-surface);
  position: relative;
}

.bp-bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold-dim), transparent);
  opacity: 0.3;
}

.bp-bridge__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.bp-bridge__inner .headline-md {
  margin-bottom: 20px;
}

.bp-bridge__inner .body-lg {
  margin-bottom: 40px;
}

.bp-bridge__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .bp-bridge__ctas { flex-direction: column; align-items: center; }
}
