/* ============================================================
   ADDITIONAL HOME SECTIONS — as-seen, tired, books, live reel
   ============================================================ */

/* —— AS SEEN IN —— */
.as-seen {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
}
.as-seen-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.as-seen-label { white-space: nowrap; }
.bi-link {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  transition: all 0.2s var(--ease);
}
.bi-link:hover { border-color: var(--ink-3); background: var(--bg-3); }
.bi-mark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: oklch(98% 0.005 240);
  background: oklch(60% 0.22 25);
  padding: 8px 10px;
  border-radius: 2px;
  text-align: center;
  flex-shrink: 0;
}
.bi-headline {
  flex: 1;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink-1);
}
.bi-cta { color: var(--acc); white-space: nowrap; flex-shrink: 0; }
.partner-block {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
@media (max-width: 980px) {
  .as-seen-row { grid-template-columns: 1fr; gap: 24px; }
  .partner-block { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .bi-link { flex-wrap: wrap; }
}

/* —— TIRED —— */
.tired { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tired-week {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  max-width: 720px;
}
.tired-week ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; gap: 12px;
}
.tired-week li {
  display: flex; gap: 12px;
  font-size: 16px; color: var(--ink-1);
}
.tired-week li::before { content: "✓"; font-family: var(--font-mono); color: var(--acc); flex-shrink: 0; }

/* —— PREMIUM GROUP —— */
.premium-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.premium-offer {}
.premium-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.premium-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-1);
  line-height: 1.4;
}
.premium-check {
  color: var(--acc);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
}
.premium-comparison {
  position: relative;
}
.premium-comparison img {
  box-shadow: 0 24px 60px -20px oklch(0% 0 0 / 0.6);
}
@media (max-width: 960px) {
  .premium-grid { grid-template-columns: 1fr; gap: 48px; }
  .premium-comparison { max-width: 480px; margin-inline: auto; }
}

/* —— BOOKS —— */
.books { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.book-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.book-card { display: block; }
.book-cover {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  box-shadow: -4px 8px 24px -8px oklch(0% 0 0 / 0.6);
  transition: transform 0.2s var(--ease);
}
.book-card:hover .book-cover { transform: translateY(-6px) rotate(-1deg); }
@media (max-width: 900px) { .books-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px) { .book-list { grid-template-columns: 1fr; } }

/* —— LIVE VIDEO REEL —— */
.live-reel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.live-reel-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--r-2);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
  background: var(--bg-2);
}
.live-reel-item:hover { border-color: var(--acc-line); transform: scale(1.02); }
.live-reel-item.active { border-color: var(--acc); box-shadow: 0 0 0 2px var(--acc-line); }
.live-reel-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0% 0 0 / 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.live-reel-item:hover .live-reel-overlay { background: oklch(0% 0 0 / 0.25); }
.live-reel-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: oklch(0% 0 0 / 0.55);
  border: 1.5px solid oklch(100% 0 0 / 0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink-0);
  backdrop-filter: blur(6px);
}
.live-reel-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; align-items: center;
  background: oklch(0% 0 0 / 0.55);
  backdrop-filter: blur(6px);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid oklch(100% 0 0 / 0.12);
}
@media (max-width: 900px) { .live-reel { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .live-reel { grid-template-columns: repeat(2, 1fr); } }
