/* ============================================
   BASELINE SPONSORSHIP ADS
   Leaderboard (728×90), Mobile Leaderboard (320×50),
   Full Ad (728×350), Mobile Full Ad (stacked)
   ============================================ */

/* ── SHARED ──────────────────────────────────── */

.baseline-ad-wrapper {
  display: flex;
  justify-content: center;
  padding: var(--space-8) 0;
}

.baseline-ad-wrapper a {
  text-decoration: none;
  color: inherit;
}

/* ── AD VARIABLES (BASELINE design system) ───── */

.baseline-ad-wrapper {
  --ba-bg: #0A0A0A;
  --ba-text: #F5F0EB;
  --ba-text-secondary: #8A8478;
  --ba-text-tertiary: #5C5549;
  --ba-gold: #C4A962;
  --ba-border: #3A3630;
  --ba-success: #4A6741;
  --ba-font: -apple-system, 'Helvetica Neue', 'Arial', sans-serif;
  --ba-mono: 'Menlo', 'Monaco', 'Courier New', monospace;
}

/* ── RESPONSIVE VISIBILITY ───────────────────── */

.baseline-ad--desktop { display: flex !important; }
.baseline-ad--mobile  { display: none !important; }

@media (max-width: 767px) {
  .baseline-ad--desktop { display: none !important; }
  .baseline-ad--mobile  { display: flex !important; }
}

/* ── SCAN LINE TEXTURE (shared) ──────────────── */

.baseline-ad--desktop::before,
.baseline-ad--mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* ── GOLD ACCENT LINE (shared) ───────────────── */

.baseline-ad--desktop::after,
.baseline-ad--mobile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ba-gold) 50%, transparent 100%);
  z-index: 3;
  transform: translateX(-100%);
  opacity: 0;
}

.baseline-ad--desktop.ba-visible::after,
.baseline-ad--mobile.ba-visible::after {
  animation: ba-sweepLine 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes ba-sweepLine {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* ── ENTRANCE ANIMATIONS ─────────────────────── */

.baseline-ad--desktop .ba-score,
.baseline-ad--mobile .ba-score {
  opacity: 0;
}

.baseline-ad--desktop.ba-visible .ba-score,
.baseline-ad--mobile.ba-visible .ba-score {
  animation: ba-fadeIn 0.3s ease forwards;
  animation-delay: 0.2s;
}

.baseline-ad--desktop .ba-divider,
.baseline-ad--mobile .ba-divider {
  opacity: 0;
}

.baseline-ad--desktop.ba-visible .ba-divider,
.baseline-ad--mobile.ba-visible .ba-divider {
  animation: ba-fadeIn 0.3s ease forwards;
  animation-delay: 0.3s;
}

.baseline-ad--desktop .ba-headline,
.baseline-ad--mobile .ba-headline {
  opacity: 0;
  transform: translateY(6px);
}

.baseline-ad--desktop.ba-visible .ba-headline,
.baseline-ad--mobile.ba-visible .ba-headline {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.baseline-ad--desktop .ba-sub,
.baseline-ad--mobile .ba-sub {
  opacity: 0;
  transform: translateY(6px);
}

.baseline-ad--desktop.ba-visible .ba-sub,
.baseline-ad--mobile.ba-visible .ba-sub {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.baseline-ad--desktop .ba-logo,
.baseline-ad--mobile .ba-logo {
  opacity: 0;
}

.baseline-ad--desktop.ba-visible .ba-logo,
.baseline-ad--mobile.ba-visible .ba-logo {
  animation: ba-logoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

.baseline-ad--desktop .ba-cta,
.baseline-ad--mobile .ba-cta {
  opacity: 0;
}

.baseline-ad--desktop.ba-visible .ba-cta,
.baseline-ad--mobile.ba-visible .ba-cta {
  animation: ba-fadeIn 0.4s ease forwards;
  animation-delay: 1.5s;
}

@keyframes ba-fadeIn {
  to { opacity: 1; }
}

@keyframes ba-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ba-logoReveal {
  0%   { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── SCORE GLOW ──────────────────────────────── */

.ba-score.ba-score--final {
  text-shadow: 0 0 8px rgba(74, 103, 65, 0.12);
}


/* ═══════════════════════════════════════════════
   LEADERBOARD — 728×90
   ═══════════════════════════════════════════════ */

.ba-leaderboard {
  width: 728px;
  height: 90px;
  max-width: 100%;
  background: var(--ba-bg);
  border: 1px solid var(--ba-border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.ba-leaderboard:hover {
  border-color: var(--ba-gold);
}

.ba-leaderboard .ba-score {
  font-family: var(--ba-mono);
  font-variant-numeric: tabular-nums;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  text-align: right;
  min-width: 80px;
  flex-shrink: 0;
  transition: text-shadow 0.5s ease;
}

.ba-leaderboard .ba-divider {
  width: 1px;
  height: 44px;
  background: var(--ba-border);
  flex-shrink: 0;
}

.ba-leaderboard .ba-copy {
  flex: 1;
  min-width: 0;
}

.ba-leaderboard .ba-headline {
  font-family: var(--ba-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ba-text);
  white-space: nowrap;
}

.ba-leaderboard .ba-sub {
  font-family: var(--ba-font);
  font-size: 12px;
  color: var(--ba-text-secondary);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

.ba-leaderboard .ba-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ba-leaderboard .ba-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ba-leaderboard .ba-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ba-leaderboard .ba-cta {
  flex-shrink: 0;
  font-family: var(--ba-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-bg);
  background: var(--ba-text);
  border: 1px solid var(--ba-border);
  padding: 8px 16px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ba-leaderboard:hover .ba-cta {
  background: var(--ba-gold);
  border-color: var(--ba-gold);
}


/* ═══════════════════════════════════════════════
   MOBILE LEADERBOARD — 320×50
   ═══════════════════════════════════════════════ */

.ba-mobile-leaderboard {
  width: 320px;
  height: 50px;
  max-width: 100%;
  background: var(--ba-bg);
  border: 1px solid var(--ba-border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.ba-mobile-leaderboard:hover {
  border-color: var(--ba-gold);
}

.ba-mobile-leaderboard .ba-score {
  font-family: var(--ba-mono);
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-align: right;
  min-width: 44px;
  flex-shrink: 0;
  transition: text-shadow 0.5s ease;
}

.ba-mobile-leaderboard .ba-divider {
  width: 1px;
  height: 28px;
  background: var(--ba-border);
  flex-shrink: 0;
}

.ba-mobile-leaderboard .ba-copy {
  flex: 1;
  min-width: 0;
}

.ba-mobile-leaderboard .ba-headline {
  font-family: var(--ba-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--ba-text);
  white-space: nowrap;
}

.ba-mobile-leaderboard .ba-sub {
  font-family: var(--ba-font);
  font-size: 9px;
  color: var(--ba-text-secondary);
  letter-spacing: 0.1px;
  margin-top: 1px;
}

.ba-mobile-leaderboard .ba-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ba-mobile-leaderboard .ba-logo {
  display: none;
}

.ba-mobile-leaderboard .ba-cta {
  flex-shrink: 0;
  font-family: var(--ba-mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ba-bg);
  background: var(--ba-text);
  border: 1px solid var(--ba-border);
  padding: 6px 10px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ba-mobile-leaderboard:hover .ba-cta {
  background: var(--ba-gold);
  border-color: var(--ba-gold);
}


/* ═══════════════════════════════════════════════
   FULL AD — 728×350 (Desktop)
   ═══════════════════════════════════════════════ */

.ba-full {
  width: 728px;
  height: 350px;
  max-width: 100%;
  background: var(--ba-bg);
  border: 1px solid var(--ba-border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.ba-full:hover {
  border-color: var(--ba-gold);
}

/* Phone Panel */
.ba-full .ba-phone-panel {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0 20px 28px;
}

/* Phone Frame */
.ba-full .ba-phone {
  width: 148px;
  height: 310px;
  background: #000;
  border: 2px solid #2A2620;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.6),
    0 1px 3px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.ba-full.ba-visible .ba-phone {
  animation: ba-phoneEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.ba-full .ba-phone {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes ba-phoneEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* Dynamic Island */
.ba-full .ba-phone__island {
  width: 58px;
  height: 16px;
  background: #000;
  border-radius: 10px;
  margin: 6px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Screen */
.ba-full .ba-phone__screen {
  padding: 4px 10px 0;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 22px);
}

/* Date line */
.ba-full .ba-phone__date {
  font-family: var(--ba-font);
  font-size: 8px;
  color: var(--ba-text-secondary);
  text-align: left;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.ba-full .ba-phone__date-streak {
  color: var(--ba-gold);
  font-family: var(--ba-mono);
  font-size: 7px;
}

/* Score */
.ba-full .ba-phone__score {
  font-family: var(--ba-mono);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin: 12px 0 2px;
  color: var(--ba-success);
  transition: text-shadow 0.5s ease;
}

.ba-full .ba-phone__score-sub {
  font-family: var(--ba-mono);
  font-size: 8px;
  color: var(--ba-text-tertiary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Checklist items */
.ba-full .ba-phone__items {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.ba-full .ba-phone__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  border: 1px solid var(--ba-border);
  font-family: var(--ba-font);
  font-size: 8px;
  color: var(--ba-text-secondary);
}

.ba-full .ba-phone__item-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ba-full .ba-phone__item-check {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ba-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 6px;
}

.ba-full .ba-phone__item-check--done {
  background: var(--ba-success);
  border-color: var(--ba-success);
  color: var(--ba-text);
}

.ba-full .ba-phone__item-status {
  font-size: 7px;
  color: var(--ba-success);
  font-family: var(--ba-mono);
}

.ba-full .ba-phone__item-status--pending {
  color: var(--ba-text-tertiary);
}

/* Tab bar */
.ba-full .ba-phone__tabs {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 6px;
  margin-top: auto;
  border-top: 1px solid var(--ba-border);
}

.ba-full .ba-phone__tab {
  font-family: var(--ba-mono);
  font-size: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ba-text-tertiary);
}

.ba-full .ba-phone__tab--active {
  color: var(--ba-text);
  font-weight: 600;
}

/* Content Panel */
.ba-full .ba-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px 20px;
  position: relative;
  z-index: 2;
}

/* Logo row — top-right corner */
.ba-full .ba-logo-row {
  position: absolute;
  top: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 3;
}

.ba-full.ba-visible .ba-logo-row {
  animation: ba-fadeIn 0.4s ease forwards;
  animation-delay: 0.3s;
}

.ba-full .ba-brand {
  font-family: var(--ba-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ba-text-secondary);
}

.ba-full .ba-logo-row .ba-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ba-full .ba-logo-row .ba-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Headline */
.ba-full .ba-full-headline {
  font-family: var(--ba-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--ba-text);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
}

.ba-full.ba-visible .ba-full-headline {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.ba-full .ba-full-sub {
  font-family: var(--ba-font);
  font-size: 14px;
  color: var(--ba-text-secondary);
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(6px);
}

.ba-full.ba-visible .ba-full-sub {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.7s;
}

/* Feature pills */
.ba-full .ba-features {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  opacity: 0;
}

.ba-full.ba-visible .ba-features {
  animation: ba-fadeIn 0.5s ease forwards;
  animation-delay: 0.9s;
}

.ba-full .ba-feature {
  font-family: var(--ba-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ba-text-secondary);
  padding: 5px 10px;
  border: 1px solid var(--ba-border);
  white-space: nowrap;
}

/* CTA row */
.ba-full .ba-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
}

.ba-full.ba-visible .ba-cta-row {
  animation: ba-fadeIn 0.4s ease forwards;
  animation-delay: 1.2s;
}

.ba-full .ba-full-cta {
  font-family: var(--ba-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-bg);
  background: var(--ba-text);
  border: 1px solid var(--ba-border);
  padding: 10px 22px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.ba-full:hover .ba-full-cta {
  background: var(--ba-gold);
  border-color: var(--ba-gold);
}

.ba-full .ba-store-note {
  font-family: var(--ba-font);
  font-size: 11px;
  color: var(--ba-text-tertiary);
}

.ba-full .ba-store-note span {
  color: var(--ba-text-secondary);
}

/* Phone score final state */
.ba-full .ba-phone__score.ba-score--final {
  text-shadow: 0 0 8px rgba(74, 103, 65, 0.12);
}


/* ═══════════════════════════════════════════════
   MOBILE FULL AD — Compact layout
   Brand top-right, phone left + headline right, CTA bottom
   ═══════════════════════════════════════════════ */

.ba-mobile-full {
  width: 320px;
  max-width: 100%;
  background: var(--ba-bg);
  border: 1px solid var(--ba-border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.ba-mobile-full:hover {
  border-color: var(--ba-gold);
}

/* ── Brand row — top-right corner ── */

.ba-mobile-full__brand {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 3;
}

.ba-mobile-full.ba-visible .ba-mobile-full__brand {
  animation: ba-fadeIn 0.4s ease forwards;
  animation-delay: 0.2s;
}

.ba-mobile-full .ba-brand {
  font-family: var(--ba-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ba-text-secondary);
}

.ba-mobile-full .ba-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ba-mobile-full .ba-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Main row — phone left, headline right ── */

.ba-mobile-full__main {
  display: flex;
  align-items: center;
  padding: 20px 20px 24px;
  gap: 20px;
}

/* Phone panel — left side */
.ba-mobile-full .ba-phone-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Phone Frame */
.ba-mobile-full .ba-phone {
  width: 110px;
  height: 230px;
  background: #000;
  border: 2px solid #2A2620;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.6),
    0 1px 3px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  opacity: 0;
  transform: translateY(10px);
}

.ba-mobile-full.ba-visible .ba-phone {
  animation: ba-phoneEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

/* Dynamic Island */
.ba-mobile-full .ba-phone__island {
  width: 44px;
  height: 12px;
  background: #000;
  border-radius: 8px;
  margin: 5px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Screen */
.ba-mobile-full .ba-phone__screen {
  padding: 3px 7px 0;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 17px);
}

/* Date line */
.ba-mobile-full .ba-phone__date {
  font-family: var(--ba-font);
  font-size: 5.5px;
  color: var(--ba-text-secondary);
  text-align: left;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.ba-mobile-full .ba-phone__date-streak {
  color: var(--ba-gold);
  font-family: var(--ba-mono);
  font-size: 5.5px;
}

/* Score */
.ba-mobile-full .ba-phone__score {
  font-family: var(--ba-mono);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin: 6px 0 2px;
  color: var(--ba-success);
  transition: text-shadow 0.5s ease;
}

.ba-mobile-full .ba-phone__score-sub {
  font-family: var(--ba-mono);
  font-size: 6px;
  color: var(--ba-text-tertiary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Checklist items */
.ba-mobile-full .ba-phone__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.ba-mobile-full .ba-phone__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
  border: 1px solid var(--ba-border);
  font-family: var(--ba-font);
  font-size: 6px;
  color: var(--ba-text-secondary);
}

.ba-mobile-full .ba-phone__item-left {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ba-mobile-full .ba-phone__item-check {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ba-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 4px;
}

.ba-mobile-full .ba-phone__item-check--done {
  background: var(--ba-success);
  border-color: var(--ba-success);
  color: var(--ba-text);
}

.ba-mobile-full .ba-phone__item-status {
  font-size: 5px;
  color: var(--ba-success);
  font-family: var(--ba-mono);
}

.ba-mobile-full .ba-phone__item-status--pending {
  color: var(--ba-text-tertiary);
}

/* Tab bar */
.ba-mobile-full .ba-phone__tabs {
  display: flex;
  justify-content: space-around;
  padding: 5px 0 3px;
  margin-top: auto;
  border-top: 1px solid var(--ba-border);
}

.ba-mobile-full .ba-phone__tab {
  font-family: var(--ba-mono);
  font-size: 4.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ba-text-tertiary);
}

.ba-mobile-full .ba-phone__tab--active {
  color: var(--ba-text);
  font-weight: 600;
}

/* Headline — right of phone */
.ba-mobile-full__headline {
  font-family: var(--ba-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--ba-text);
  opacity: 0;
  transform: translateY(6px);
}

.ba-mobile-full.ba-visible .ba-mobile-full__headline {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

/* ── Bottom — subtitle, features, CTA ── */

.ba-mobile-full__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 24px;
  position: relative;
  z-index: 2;
}

.ba-mobile-full .ba-full-sub {
  font-family: var(--ba-font);
  font-size: 11px;
  color: var(--ba-text-secondary);
  line-height: 1.4;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(6px);
}

.ba-mobile-full.ba-visible .ba-full-sub {
  animation: ba-fadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* Feature pills */
.ba-mobile-full .ba-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
  opacity: 0;
}

.ba-mobile-full.ba-visible .ba-features {
  animation: ba-fadeIn 0.5s ease forwards;
  animation-delay: 0.8s;
}

.ba-mobile-full .ba-feature {
  font-family: var(--ba-mono);
  font-size: 7px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ba-text-secondary);
  padding: 4px 8px;
  border: 1px solid var(--ba-border);
  white-space: nowrap;
}

/* CTA row */
.ba-mobile-full__cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
}

.ba-mobile-full.ba-visible .ba-mobile-full__cta-row {
  animation: ba-fadeIn 0.4s ease forwards;
  animation-delay: 1s;
}

.ba-mobile-full .ba-full-cta {
  font-family: var(--ba-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-bg);
  background: var(--ba-text);
  border: 1px solid var(--ba-border);
  padding: 10px 24px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ba-mobile-full:hover .ba-full-cta {
  background: var(--ba-gold);
  border-color: var(--ba-gold);
}

.ba-mobile-full .ba-store-note {
  font-family: var(--ba-font);
  font-size: 10px;
  color: var(--ba-text-tertiary);
}

/* Phone score final state */
.ba-mobile-full .ba-phone__score.ba-score--final {
  text-shadow: 0 0 8px rgba(74, 103, 65, 0.12);
}

/* ── Tablet scale-up (wider mobile screens) ── */
@media (min-width: 480px) and (max-width: 767px) {
  .ba-mobile-full {
    width: 480px;
  }

  .ba-mobile-full__main {
    padding: 28px 28px 28px;
    gap: 28px;
  }

  .ba-mobile-full__brand {
    top: 24px;
    right: 24px;
  }

  .ba-mobile-full .ba-brand {
    font-size: 10px;
  }

  .ba-mobile-full .ba-logo {
    width: 26px;
    height: 26px;
  }

  .ba-mobile-full .ba-phone {
    width: 130px;
    height: 272px;
    border-radius: 18px;
  }

  .ba-mobile-full .ba-phone__island {
    width: 50px;
    height: 14px;
  }

  .ba-mobile-full .ba-phone__score {
    font-size: 44px;
  }

  .ba-mobile-full__headline {
    font-size: 26px;
  }

  .ba-mobile-full__bottom {
    padding: 0 28px 28px;
  }

  .ba-mobile-full .ba-full-sub {
    font-size: 12px;
  }

  .ba-mobile-full .ba-feature {
    font-size: 8px;
    padding: 5px 10px;
  }

  .ba-mobile-full .ba-full-cta {
    font-size: 11px;
    padding: 12px 28px;
  }
}


/* ═══════════════════════════════════════════════
   EPISODES — SHOW MORE BUTTON
   ═══════════════════════════════════════════════ */

.episodes-show-more {
  display: flex;
  justify-content: center;
  padding: var(--space-8) 0 0;
}

.episodes-show-more .btn {
  min-width: 200px;
}

.episodes-show-more.hidden {
  display: none;
}
