/* home-v2.css: SPEC-194 homepage redesign ("recorded tour").
 * Productionized from the locked prototype (design-prototypes/home-hybrid.html).
 * EVERY rule is scoped under `.home-redesign` so it can't fight base.css or the
 * old home.css; the global header/nav/footer (outside the wrapper) keep their
 * base.css styling. Design tokens come from base.css (SPEC-156); a couple of
 * prototype aliases are shimmed below. */

.home-redesign {
  --surface-2: var(--surface-elevated);
  --radius-lg: 22px;
  --text: var(--text-primary);
  --bg-2: #0c0d10;
  /* base.css --text-3 (#6a6f7a) is ~3.95:1 on --bg and fails WCAG AA for the
     normal-size muted labels the homepage uses (eyebrows, prices, rail meta).
     Lift it to ~6:1 within the homepage scope only. */
  --text-3: #8b9099;
}
/* Visible keyboard focus on the redesign's interactive controls. */
.home-redesign .depth-toggle button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.home-redesign { position: relative; }
/* Break the redesigned homepage out of base.html's `.container` (max-width
   --maxw, padding 40) so its sections go full-bleed; the inner `.wrap`
   re-constrains content to 1180. `:has()` targets ONLY the homepage's
   container, and home-v2.css is home-only, so other pages are untouched. */
.container:has(> .home-redesign) { max-width: none; padding: 0; }
/* ambient accent washes */
.home-redesign::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% -2%, rgba(var(--accent-rgb), .10), transparent 60%),
    radial-gradient(700px 500px at 8% 6%, rgba(120, 140, 200, .06), transparent 55%);
}

/* ---- layout ---- */
.home-redesign .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.home-redesign .hsec { padding: 96px 0; position: relative; }
.home-redesign .hsec--tight { padding: 64px 0; }
.home-redesign .eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-3); }
.home-redesign .eyebrow--accent { color: var(--accent-2); }
.home-redesign .lede { color: var(--text-2); font-size: 18px; line-height: 1.65; max-width: 48ch; }
.home-redesign h1, .home-redesign h2, .home-redesign h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
.home-redesign h1 { font-size: clamp(44px, 6.2vw, 86px); }
.home-redesign h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.08; }
.home-redesign em, .home-redesign .it { font-style: italic; color: var(--accent); }

/* ---- buttons ---- */
.home-redesign .hbtn { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; border: 0; text-decoration: none;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500; padding: 13px 22px; border-radius: var(--radius-pill);
  transition: all .25s var(--ease); background: var(--surface-2); color: var(--text); border: 1px solid var(--border-2); }
.home-redesign .hbtn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.home-redesign .hbtn-primary { background: var(--accent); color: var(--accent-ink); border-color: transparent; font-weight: 600; box-shadow: 0 8px 30px -10px var(--accent-glow); }
.home-redesign .hbtn-primary:hover { box-shadow: 0 14px 40px -10px var(--accent-glow); filter: brightness(1.05); }
.home-redesign .hbtn-ghost { background: transparent; }
.home-redesign .hbtn-lg { padding: 16px 28px; font-size: 16px; }
.home-redesign .arr { transition: transform .25s var(--ease); }
.home-redesign .hbtn:hover .arr, .home-redesign .sc-link:hover .arr { transform: translateX(3px); }

/* ---- Product Hunt launch banner ---- */
.home-redesign .ph-banner { padding: 18px 0 0; }
.home-redesign .ph-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .13), rgba(255,255,255,.035));
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 20px 70px -48px var(--accent-glow);
}
.home-redesign .ph-banner a:hover {
  border-color: rgba(var(--accent-rgb), .48);
  transform: translateY(-1px);
}
.home-redesign .ph-badge {
  flex: none;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: #da552f;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-redesign .ph-copy {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}

/* ---- chips / pills ---- */
.home-redesign .hchip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); font-size: 13px; text-decoration: none; }
.home-redesign .hpill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .08); border: 1px solid var(--accent-line); color: var(--text-2); font-size: 13px; }
.home-redesign .hpill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

/* ---- scroll reveal (reuses ui.js .reveal -> .in) ---- */
.home-redesign .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.home-redesign .reveal.in { opacity: 1; transform: none; }

/* ============================================================ HERO */
.home-redesign .hhero { padding: 64px 0 36px; }
.home-redesign .hhero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; }
.home-redesign .hhero h1 { margin: 18px 0 22px; }
.home-redesign .hhero .lede { margin-bottom: 30px; font-size: 19px; }
.home-redesign .hhero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.home-redesign .hstats { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.home-redesign .hstats .s b { font-family: var(--font-serif); font-size: 24px; color: var(--text); font-weight: 600; }
.home-redesign .hstats .s span { display: block; font-size: 12.5px; color: var(--text-3); font-family: var(--font-mono); margin-top: 2px; }
.home-redesign .cstage { position: relative; aspect-ratio: 1/.92; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 120% at 70% 20%, rgba(var(--accent-rgb), .07), transparent 60%); }
.home-redesign .cstage canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-redesign .cstage .glow { position: absolute; inset: 0; }

/* ============================================================ TRUST MARQUEE */
.home-redesign .trust { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 30px 0; overflow: hidden; }
.home-redesign .trust .label { text-align: center; color: var(--text-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; }
.home-redesign .hmarquee-mask { -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.home-redesign .hmarquee { display: flex; gap: 14px; width: max-content; animation: hmarquee 46s linear infinite; }
@keyframes hmarquee { to { transform: translateX(-50%); } }
.home-redesign .gtag { display: inline-flex; align-items: center; gap: 11px; padding: 9px 16px 9px 9px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border); white-space: nowrap; font-size: 14.5px; text-decoration: none; color: var(--text); }
.home-redesign .gtag .av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.home-redesign .gtag small { color: var(--text-3); font-family: var(--font-mono); font-size: 11px; }
.home-redesign .av.t1 { background: linear-gradient(135deg, #3a4a8a, #6a4a9a); } .home-redesign .av.t2 { background: linear-gradient(135deg, #7a5a3a, #9a6a4a); }
.home-redesign .av.t3 { background: linear-gradient(135deg, #3a6a5a, #4a8a6a); } .home-redesign .av.t4 { background: linear-gradient(135deg, #5a3a6a, #8a4a7a); }
.home-redesign .av.t5 { background: linear-gradient(135deg, #6a5a2a, #9a8a3a); } .home-redesign .av.t6 { background: linear-gradient(135deg, #7a3a4a, #a64a5a); }

/* ============================================================ SECTION HEADERS */
.home-redesign .shead { max-width: 680px; margin-bottom: 42px; }
.home-redesign .shead.wide { max-width: 800px; }
.home-redesign .shead.center { margin-left: auto; margin-right: auto; text-align: center; }
.home-redesign .shead h2 { margin: 14px 0 14px; }
.home-redesign .shead.center .lede { margin: 0 auto; }

/* ============================================================ SHOWCASE ROWS (depth + chat) */
.home-redesign .showcase-row { display: grid; grid-template-columns: 1fr 1.18fr; gap: 56px; align-items: center; }
.home-redesign .showcase-row.flip { grid-template-columns: 1.18fr 1fr; }
.home-redesign .showcase-row.flip .sc-copy { order: 2; }
.home-redesign .sc-copy .eyebrow { margin-bottom: 14px; display: block; }
.home-redesign .sc-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.home-redesign .sc-copy .lede { margin-bottom: 22px; }
.home-redesign .sc-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 500; font-size: 15px; text-decoration: none; }

/* device frame (screenshot / video) */
.home-redesign .frame { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-2);
  background: var(--surface); box-shadow: var(--shadow-lg); transition: transform .5s var(--ease), box-shadow .5s var(--ease); text-decoration: none; }
.home-redesign .showcase-row:hover .frame { transform: translateY(-6px); box-shadow: 0 50px 110px -30px rgba(0,0,0,.9), 0 0 60px -20px var(--accent-glow); }
.home-redesign .frame .bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(20,22,28,.9); border-bottom: 1px solid var(--border); }
.home-redesign .frame .bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a2e36; display: block; }
.home-redesign .frame .bar .url { margin-left: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); background: var(--bg); padding: 4px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); }
.home-redesign .frame .shot { display: block; width: 100%; height: auto; }

/* ============================================================ BIG RECORDING STAGE */
.home-redesign .rec-stage { max-width: 1060px; margin: 0 auto; }
.home-redesign .rec-stage .frame { box-shadow: 0 50px 110px -30px rgba(0,0,0,.9), 0 0 80px -30px var(--accent-glow); }
.home-redesign .rec-stage .loop { display: block; width: 100%; height: auto; background: var(--bg-2); }
.home-redesign .rec-badge { position: absolute; top: 54px; right: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(8,9,11,.78); border: 1px solid var(--accent-line); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); backdrop-filter: blur(6px); }
.home-redesign .rec-badge .rdot { width: 7px; height: 7px; border-radius: 50%; background: #ff5a5f; animation: hpulse 2s infinite; }
@keyframes hpulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,95,.5); } 70% { box-shadow: 0 0 0 7px rgba(255,90,95,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,95,0); } }

/* ============================================================ PROOF LIST (more than a summary) */
.home-redesign .proof-list { list-style: none; margin: 18px 0 22px; padding: 0; }
.home-redesign .proof-list li { display: flex; gap: 11px; padding: 8px 0; color: var(--text-2); font-size: 14.5px; line-height: 1.5; }
.home-redesign .proof-list li svg { flex: 0 0 17px; margin-top: 3px; color: var(--accent); }
.home-redesign .proof-list b { color: var(--text); }

/* ============================================================ STAT ROW */
.home-redesign .statrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.home-redesign .statrow .cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.home-redesign .statrow .num { font-family: var(--font-serif); font-size: 40px; font-weight: 600; line-height: 1; }
.home-redesign .statrow .num .u { color: var(--accent); font-size: .62em; }
.home-redesign .statrow .lab { color: var(--text-3); font-size: 13.5px; margin-top: 8px; }

/* ============================================================ CTA newsletter band */
.home-redesign .cta-band { text-align: center; padding: 110px 0; }
.home-redesign .cta-band h2 { font-size: clamp(32px, 4.6vw, 58px); margin-bottom: 16px; }
.home-redesign .cta-band p { color: var(--text-2); font-size: 17px; margin-bottom: 30px; }
.home-redesign .sub-form { display: flex; gap: 10px; justify-content: center; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.home-redesign .sub-form input { flex: 1; min-width: 230px; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--radius-pill); padding: 14px 20px; color: var(--text); font-family: var(--font-sans); font-size: 15px; }
.home-redesign .sub-form input:focus { outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .home-redesign .hhero-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-redesign .cstage { order: -1; aspect-ratio: 1/.7; }
  /* minmax(0,1fr), not 1fr: a bare 1fr track floors at the column's min-content,
     so a non-wrapping child (the depth toggle) would push the track past the
     viewport. minmax(0,...) + min-width:0 lets the column shrink to the wrap. */
  .home-redesign .showcase-row, .home-redesign .showcase-row.flip { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .home-redesign .showcase-row.flip .sc-copy { order: 0; }
  .home-redesign .sc-copy { min-width: 0; }
  .home-redesign .depth-toggle { flex-wrap: wrap; }
  .home-redesign .statrow { grid-template-columns: repeat(2, 1fr); }
  .home-redesign .hsec { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-redesign * { animation: none !important; transition: none !important; }
  .home-redesign .reveal { opacity: 1; transform: none; }
}

/* ============================================================ DEPTH WIDGET (Skim/Read/Deep) */
.home-redesign .depth-demo { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 26px 26px; }
.home-redesign .dx-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.home-redesign .depth-toggle { display: inline-flex; gap: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px; }
.home-redesign .depth-toggle button { border: 0; background: transparent; color: var(--text-2); font-family: var(--font-sans); font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-pill); cursor: pointer; transition: all .2s var(--ease); display: inline-flex; align-items: center; gap: 7px; }
.home-redesign .depth-toggle button em { font-style: normal; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); font-weight: 400; }
.home-redesign .depth-toggle button.on { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.home-redesign .depth-toggle button.on em { color: rgba(6,16,31,.62); }
.home-redesign .dx-ep { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.home-redesign .dx-meta { font-family: var(--font-mono); font-size: 11px; color: var(--accent-2); margin: 14px 0 16px; }
.home-redesign .dx-body { transition: opacity .28s var(--ease); }
.home-redesign .dx-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.home-redesign .dx-list { list-style: none; margin: 0; padding: 0; }
.home-redesign .dx-list li { display: flex; flex-direction: column; gap: 4px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 15px; line-height: 1.5; color: var(--text); }
.home-redesign .dx-list:not(.dx-rich) li { flex-direction: row; gap: 11px; }
.home-redesign .dx-list:not(.dx-rich) li::before { content: ""; flex: 0 0 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.home-redesign .dx-t { font-weight: 450; color: var(--text); }
.home-redesign .dx-ts { font-family: var(--font-mono); font-size: 11px; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 1px 7px; border-radius: 5px; white-space: nowrap; }
.home-redesign .dx-w { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.home-redesign .dx-w span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--text-3); margin-right: 5px; }
.home-redesign .dx-sec { padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.home-redesign .dx-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 9px; }
.home-redesign .dx-sec p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }
.home-redesign .dx-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.home-redesign .dx-refs { display: flex; flex-wrap: wrap; gap: 8px; }
.home-redesign .dx-refs span { font-size: 12.5px; color: var(--accent-2); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 10px; border-radius: var(--radius-pill); }
.home-redesign .dx-quote { font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--text); border-left: 2px solid var(--accent-line); padding: 6px 0 6px 18px; margin: 16px 0; }
.home-redesign .dx-quote cite { display: block; font-style: normal; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); margin-top: 8px; }
.home-redesign .dx-tq { font-size: 14px; color: var(--text-2); padding: 7px 0; line-height: 1.5; }
.home-redesign .dx-chat { margin: 6px 0 4px; }
.home-redesign .dx-q { display: inline-block; background: var(--accent); color: var(--accent-ink); font-size: 14px; font-weight: 500; padding: 9px 14px; border-radius: 14px 14px 14px 4px; margin-bottom: 8px; }
.home-redesign .dx-a { background: var(--surface-3); border: 1px solid var(--border); font-size: 14px; color: var(--text); padding: 11px 14px; border-radius: 4px 14px 14px 14px; line-height: 1.55; }
.home-redesign .dx-cite { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); margin-top: 8px; }
.home-redesign .dx-transcript { margin-top: 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--accent-2); background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--radius-sm); padding: 11px 14px; }
.home-redesign .dx-locked { margin-top: 18px; padding: 16px; border: 1px dashed var(--border-2); border-radius: var(--radius); background: repeating-linear-gradient(135deg, rgba(255,255,255,.012), rgba(255,255,255,.012) 8px, transparent 8px, transparent 16px); }
.home-redesign .dx-lh { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.home-redesign .dx-lrow { font-size: 13.5px; color: var(--text-3); padding: 5px 0 5px 18px; position: relative; }
.home-redesign .dx-lrow::before { content: "+"; position: absolute; left: 0; color: var(--text-3); }
.home-redesign .dx-cta { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--accent); text-decoration: none; }

/* ============================================================ CHAT DEMO (more than a summary) */
.home-redesign .cd-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; min-height: 330px; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.home-redesign .cd-head { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); padding-bottom: 14px; border-bottom: 1px solid var(--border-subtle); }
.home-redesign .cd-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.home-redesign .cd-badge { margin-left: auto; text-transform: none; letter-spacing: 0; color: var(--accent-2); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 3px 9px; border-radius: var(--radius-pill); font-size: 10px; }
.home-redesign .cd-stream { flex: 1; padding: 18px 2px; transition: opacity .3s var(--ease); display: flex; flex-direction: column; gap: 12px; justify-content: flex-start; }
.home-redesign .cd-msg { max-width: 90%; font-size: 14.5px; line-height: 1.55; }
.home-redesign .cd-q { align-self: flex-end; background: var(--accent); color: var(--accent-ink); font-weight: 500; padding: 10px 14px; border-radius: 14px 14px 4px 14px; }
.home-redesign .cd-a { align-self: flex-start; background: var(--surface-3); border: 1px solid var(--border); color: var(--text); padding: 12px 15px; border-radius: 14px 14px 14px 4px; }
.home-redesign .cd-cite { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--accent-2); margin-top: 9px; }
.home-redesign .cd-think { display: inline-flex; gap: 5px; }
.home-redesign .cd-think i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); animation: cdbounce 1.2s infinite; }
.home-redesign .cd-think i:nth-child(2) { animation-delay: .18s; } .home-redesign .cd-think i:nth-child(3) { animation-delay: .36s; }
@keyframes cdbounce { 0%,80%,100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.home-redesign .cd-bar { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-2); border-radius: var(--radius-pill); padding: 10px 10px 10px 16px; margin-top: 6px; }
.home-redesign .cd-input { flex: 1; color: var(--text-3); font-size: 13.5px; }
.home-redesign .cd-input.typing { color: var(--text); }
.home-redesign .cd-send { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-weight: 700; }

/* ============================================================ PRICING TEASER */
.home-redesign .tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; max-width: 920px; margin: 0 auto; }
.home-redesign .tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; }
.home-redesign .tier.feat { border-color: var(--accent-line); box-shadow: 0 30px 80px -40px var(--accent-glow); background: linear-gradient(180deg, rgba(var(--accent-rgb), .06), var(--surface) 40%); }
.home-redesign .tier .tname { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); }
.home-redesign .tier.feat .tname { color: var(--accent-2); }
.home-redesign .tier .flag { position: absolute; top: -11px; left: 24px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--accent); color: var(--accent-ink); padding: 4px 11px; border-radius: var(--radius-pill); font-weight: 700; }
.home-redesign .tier .price { font-family: var(--font-serif); font-size: 46px; font-weight: 600; margin: 14px 0 2px; }
.home-redesign .tier .price small { font-size: 15px; color: var(--text-3); font-family: var(--font-sans); font-weight: 400; }
.home-redesign .tier .tag { color: var(--text-2); font-size: 14px; }

/* ============================================================ LATEST EPISODES (grid) */
.home-redesign #episodes .ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
@media (max-width: 900px) {
  .home-redesign .tiers { grid-template-columns: 1fr; }
}

/* ============================================================ POPULAR TOPICS (SPEC-209) */
.home-redesign .home-topics { max-width: 920px; margin: 40px auto 8px; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.home-redesign .home-topics-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); width: 100%; text-align: center; margin-bottom: 4px; }
.home-redesign .home-topics a { font-size: 13.5px; color: var(--text-2); text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 6px 13px; transition: color .2s var(--ease), border-color .2s var(--ease); }
.home-redesign .home-topics a:hover { color: var(--accent-2); border-color: var(--accent-line); }
.home-redesign .home-topics .home-topics-all { color: var(--accent-2); border-color: var(--accent-line); }
