/* ============================================================
   HOME PAGE — Edler Hub palette only.
   Pulls navy / yellow / teal / white. No Google quartet here.
   ============================================================ */

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(0,137,123,0.10), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(245,183,0,0.10), transparent 60%),
    var(--ts-paper);
}
.hero .top-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  color: var(--ts-text-muted); font-size: 13px;
}
.hero .top-meta .sep { width: 24px; height: 1px; background: var(--ts-line-2); }
.hero h1 {
  font-family: var(--ts-display);
  font-size: clamp(44px, 6.6vw, 96px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ts-ink);
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 1100px;
}
.hero h1 em {
  font-family: var(--ts-script);
  font-weight: 700;
  font-style: italic;
  color: var(--ts-primary);
  padding: 0 4px;
}
.hero h1 .spark {
  font-family: var(--ts-script);
  font-weight: 700;
  font-style: italic;
  color: var(--ts-accent);
}
.hero .lead {
  font-size: 19px;
  color: var(--ts-text-muted);
  max-width: 680px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero .cta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero .below {
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--ts-line);
}
.hero .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero .stat .n {
  font-family: var(--ts-display);
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ts-ink);
  line-height: 1;
}
.hero .stat .n.teal { color: var(--ts-primary); }
.hero .stat .n.yellow { color: var(--eh-yellow-600); }
.hero .stat .l { font-size: 12px; color: var(--ts-text-muted); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.hero .next { text-align: right; }
.hero .next .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ts-text-muted); font-weight: 700; }
.hero .next .title { font-family: var(--ts-display); font-size: 20px; font-weight: 700; color: var(--ts-ink); margin: 6px 0 0; line-height: 1.2; }
.hero .next .when { font-size: 13px; color: var(--ts-text-muted); margin-top: 4px; }

@media (max-width: 720px) {
  .hero .below { grid-template-columns: 1fr; }
  .hero .next { text-align: left; }
  .hero .stat-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FORMAT STRIPE — the three things people actually want to know
   ========================================================= */
.format-stripe {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ts-line);
  border-bottom: 1px solid var(--ts-line);
  background: var(--ts-paper-2);
}
.format-stripe .cell {
  padding: 28px var(--ts-page-pad);
  border-right: 1px solid var(--ts-line);
  display: flex; flex-direction: column; gap: 6px;
}
.format-stripe .cell:last-child { border-right: none; }
.format-stripe .cell .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ts-text-muted); font-weight: 700; }
.format-stripe .cell .v { font-family: var(--ts-display); font-size: 20px; font-weight: 700; color: var(--ts-ink); letter-spacing: -0.01em; }
.format-stripe .cell .d { font-size: 13px; color: var(--ts-text-muted); }

@media (max-width: 760px) {
  .format-stripe { grid-template-columns: 1fr; }
  .format-stripe .cell { border-right: none; border-bottom: 1px solid var(--ts-line); }
  .format-stripe .cell:last-child { border-bottom: none; }
}

/* =========================================================
   PAST RECORDINGS LIST
   ========================================================= */
.past-list { display: flex; flex-direction: column; gap: 14px; }
.past { display: grid; grid-template-columns: 240px 1fr auto; gap: 20px; align-items: center; padding: 16px; border-radius: 14px; background: #fff; border: 1px solid var(--ts-line); transition: all 180ms; }
.past:hover { box-shadow: 0 6px 18px rgba(10,22,40,0.06); cursor: pointer; }
.past .thumb { aspect-ratio: 16/9; background: var(--ts-ink); border-radius: 10px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.past .thumb::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,137,123,0.18), rgba(245,183,0,0.18));
}
.past .thumb .play { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; }
.past .thumb .play::after { content: ''; border-left: 14px solid var(--ts-ink); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.past .thumb .dur { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-family: var(--ts-mono); z-index: 1; }
.past .body h5 { font-family: var(--ts-display); font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--ts-ink); }
.past .body .meta-row { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--ts-text-muted); }
.past .body .meta-row .dot { color: var(--ts-text-subtle); }
@media (max-width: 720px) {
  .past { grid-template-columns: 1fr; }
}

/* =========================================================
   NEWSLETTER CTA — navy block with yellow accent
   ========================================================= */
.cta-card {
  background: var(--ts-ink); color: #fff; border-radius: 20px; padding: 56px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,137,123,0.28) 0%, transparent 70%);
}
.cta-card::after {
  content: ''; position: absolute; bottom: -120px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,183,0,0.16) 0%, transparent 70%);
}
.cta-card h2 { font-family: var(--ts-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: #fff; margin: 0 0 14px; position: relative; z-index: 1; text-wrap: balance; }
.cta-card h2 em { font-family: var(--ts-script); color: var(--ts-accent); font-style: italic; font-weight: 700; }
.cta-card p { color: rgba(255,255,255,0.74); font-size: 16px; line-height: 1.55; margin: 0; position: relative; z-index: 1; max-width: 480px; }
.cta-card .form { position: relative; z-index: 1; }
.cta-card .form .row { display: flex; gap: 8px; }
.cta-card .form input { flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; color: #fff; font-family: inherit; font-size: 15px; outline: none; transition: border-color 160ms; }
.cta-card .form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-card .form input:focus { border-color: var(--ts-accent); }
.cta-card .form .note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.cta-card .form .note b { color: var(--ts-accent); font-weight: 600; }
@media (max-width: 820px) {
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
}
