/* ============================================================
   CINDER TV — HOMEPAGE (.cinder-homepage / .ch-*)
   Extracted verbatim from homepage.tpl's inline <style> (Phase B),
   then tokenized to the canonical --cinder-site-* / --r-* scale.
   Loaded globally in head.tpl (version-busted) but wrapper-scoped
   to .cinder-homepage, so it is inert on every other page.
   The page's <script> (scroll-reveal + stat count-up) stays inline.
   ============================================================ */
/* ============================================================
   CINDER TV HOMEPAGE — self-contained, no CSS variables
   ============================================================ */
.cinder-homepage {
    /* Break out of the Bootstrap .container so dark sections reach the
       viewport edges (fixes the left/right background bleed). */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Pull up so the top glow tucks under the translucent/blurred sticky
       header instead of leaving a dark strip between them. The hero's 72px
       top padding keeps the headline well clear of the header. */
    margin-top: -32px;
    overflow-x: hidden;
    /* One continuous gradient from the very top — brightest band sits at the
       top edge so it reads continuous with the header above it. */
    background:
        radial-gradient(1100px 540px at 50% 0%, rgba(var(--cinder-site-glow-rgb), 0.08), transparent 60%),
        linear-gradient(180deg, #0a0d12, #090c11);
    color: #eef2f7;
    font-family: "Hanken Grotesk", "Open Sans", -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.cinder-homepage * { box-sizing: border-box; }

.cinder-homepage .ch-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cool-blue gradient on the accent words — bright signal core fading into
   deep blue. Falls back to a solid soft-blue. */
.cinder-homepage .ch-accent {
    color: var(--cinder-site-accent-soft);
    background: linear-gradient(118deg, #dce8ff 0%, #8fb6ff 46%, #4f8cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Buttons (hardcoded) ─────────────────────────────────── */
.cinder-homepage .ch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cinder-homepage .ch-btn-primary {
    background: linear-gradient(135deg, var(--cinder-site-accent) 0%, var(--cinder-site-accent-dark) 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(var(--cinder-site-glow-rgb), 0.25);
}
.cinder-homepage .ch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(var(--cinder-site-glow-rgb), 0.38);
    color: #ffffff !important;
    text-decoration: none;
}
.cinder-homepage .ch-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
    color: #eef2f7;
}
.cinder-homepage .ch-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    text-decoration: none;
}
.cinder-homepage .ch-btn-block { width: 100%; margin-top: auto; }

/* ── Hero ────────────────────────────────────────────────── */
.cinder-homepage .ch-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    padding: clamp(88px, 11vh, 132px) 0 100px;
    background: transparent;
}
/* Pure-CSS depth wash — guarantees a sense of depth even when the canvas
   never lights (no-JS, slow GPU, or reduced-motion). Sits behind content. */
.cinder-homepage .ch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(620px 420px at 30% 20%, rgba(var(--cinder-site-glow-rgb), 0.10), transparent 60%),
        radial-gradient(560px 400px at 72% 68%, rgba(var(--cinder-site-glow-rgb), 0.06), transparent 62%);
    filter: blur(8px);
    opacity: 0.9;
}
/* The hero glow — a breathing radial glow behind the headline, and the full
   hero visual. The animated signal canvas was removed to de-emphasise the
   "tech product" feel and keep the hero calm. */
.cinder-homepage .ch-hero-glow {
    position: absolute;
    left: 50%;
    top: 40%;
    z-index: 0;
    width: min(720px, 92vw);
    height: 500px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(50% 50% at 50% 50%,
        rgba(var(--cinder-site-glow-rgb), 0.16),
        rgba(var(--cinder-site-glow-rgb), 0.05) 46%,
        transparent 72%);
    filter: blur(6px);
    animation: chHeroBreathe 7s ease-in-out infinite;
}
@keyframes chHeroBreathe {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
    .cinder-homepage .ch-hero-glow { animation: none; }
    .cinder-homepage .ch-hero-inner > .ch-trial-badge,
    .cinder-homepage .ch-hero-inner > .ch-hero-title,
    .cinder-homepage .ch-hero-inner > .ch-hero-lead,
    .cinder-homepage .ch-hero-inner > .ch-hero-actions,
    .cinder-homepage .ch-hero-inner > .ch-trust {
        animation: none;
    }
}
.cinder-homepage .ch-hero-inner { position: relative; z-index: 2; max-width: 760px; }

.cinder-homepage .ch-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(var(--cinder-site-glow-rgb), 0.16);
    border: 1px solid rgba(var(--cinder-site-glow-rgb), 0.42);
    color: #cfe0ff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cinder-homepage .ch-trial-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cinder-site-accent);
    box-shadow: 0 0 10px rgba(var(--cinder-site-glow-rgb), 0.9);
}

.cinder-homepage .ch-hero-title {
    margin: 0;
    font-size: clamp(38px, 6.4vw, 66px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

/* ── Hero entrance — opacity + transform only (zero CLS) ── */
@keyframes chHeroIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
.cinder-homepage .ch-hero-inner > .ch-trial-badge,
.cinder-homepage .ch-hero-inner > .ch-hero-title,
.cinder-homepage .ch-hero-inner > .ch-hero-lead,
.cinder-homepage .ch-hero-inner > .ch-hero-actions,
.cinder-homepage .ch-hero-inner > .ch-trust {
    animation: chHeroIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.cinder-homepage .ch-hero-inner > .ch-trial-badge  { animation-delay: 0s;    }
.cinder-homepage .ch-hero-inner > .ch-hero-title   { animation-delay: 0.07s; }
.cinder-homepage .ch-hero-inner > .ch-hero-lead    { animation-delay: 0.14s; }
.cinder-homepage .ch-hero-inner > .ch-hero-actions { animation-delay: 0.21s; }
.cinder-homepage .ch-hero-inner > .ch-trust        { animation-delay: 0.28s; }
.cinder-homepage .ch-hero-lead {
    max-width: 560px;
    margin: 22px auto 0;
    color: rgba(237, 241, 246, 0.68);
    font-size: 18px;
    line-height: 1.65;
}
.cinder-homepage .ch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}
.cinder-homepage .ch-trust {
    margin: 26px 0 0;
    color: rgba(237, 241, 246, 0.62);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Hero is a clean text-only block — the unified glow carries the visual. */

/* ── Trial band ──────────────────────────────────────────── */
.cinder-homepage .ch-trial-band {
    padding: 22px 0;
    background: linear-gradient(180deg, rgba(190, 205, 225, 0.05), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cinder-homepage .ch-trial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cinder-homepage .ch-trial-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
}
.cinder-homepage .ch-trial-points span {
    position: relative;
    color: rgba(237, 241, 246, 0.66);
    font-size: 14px;
    padding-left: 20px;
}
.cinder-homepage .ch-trial-points span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cinder-site-accent);
    font-weight: 800;
}
.cinder-homepage .ch-trial-points strong { color: #fff; font-weight: 700; }
.cinder-homepage .ch-trial-band .ch-btn { height: 44px; padding: 0 22px; font-size: 14px; }

/* ── Sections ────────────────────────────────────────────── */
.cinder-homepage .ch-section { padding: 88px 0; }

.cinder-homepage .ch-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}
.cinder-homepage .ch-h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}
.cinder-homepage .ch-sub {
    max-width: 520px;
    margin: 16px auto 0;
    color: rgba(237, 241, 246, 0.66);
    font-size: 16px;
    line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────────────────── */
/* Pricing cards live in includes/cinder-plan-selector.tpl (.cps-* classes).
   The legacy .ch-plan* styles were unused and have been removed. */

/* ── How it works (connected step timeline) ──────────────── */
.cinder-homepage .ch-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
/* Connector threaded behind the opaque numbered nodes (their gradient discs
   cover it where they cross), faded at both ends — reads as one step line. */
.cinder-homepage .ch-timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--cinder-site-glow-rgb), 0.30) 14%, rgba(var(--cinder-site-glow-rgb), 0.30) 86%, transparent);
}
.cinder-homepage .ch-step {
    position: relative;
    z-index: 1;
    padding: 0 16px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}
.cinder-homepage .ch-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--cinder-site-accent), var(--cinder-site-accent-dark));
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}
.cinder-homepage .ch-step-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}
.cinder-homepage .ch-step-text {
    margin: 0;
    color: rgba(237, 241, 246, 0.66);
    font-size: 14px;
    line-height: 1.65;
}
/* ── FAQ ─────────────────────────────────────────────────── */
.cinder-homepage .ch-faq-wrap { max-width: 760px; }
.cinder-homepage .ch-faq { display: flex; flex-direction: column; gap: 14px; }
.cinder-homepage .ch-faq-item {
    background: #12161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    overflow: hidden;
}
.cinder-homepage .ch-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cinder-homepage .ch-faq-item summary::-webkit-details-marker { display: none; }
.cinder-homepage .ch-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: var(--cinder-site-accent);
    transition: transform 0.2s ease;
}
.cinder-homepage .ch-faq-item[open] summary::after { transform: rotate(45deg); }
.cinder-homepage .ch-faq-item summary::after { transition: transform 0.25s ease; }
.cinder-homepage .ch-faq-body {
    padding: 0 24px 20px;
    color: rgba(237, 241, 246, 0.66);
    font-size: 15px;
    line-height: 1.7;
}
@keyframes chFaqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cinder-homepage .ch-faq-item[open] .ch-faq-body {
    animation: chFaqOpen 0.26s ease;
}

/* ── Final CTA ───────────────────────────────────────────── */
.cinder-homepage .ch-cta {
    padding: 80px 0;
    background:
        radial-gradient(700px 320px at 50% 130%, rgba(var(--cinder-site-glow-rgb), 0.06), rgba(10, 13, 18, 0) 70%),
        #0a0d12;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cinder-homepage .ch-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
.cinder-homepage .ch-cta-title {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}
.cinder-homepage .ch-cta-text {
    margin: 8px 0 0;
    color: rgba(237, 241, 246, 0.66);
    font-size: 16px;
}

/* ── Why Cinder benefit grid — four equal, calm cards (2-up).
   Icons and the asymmetric "bento" emphasis were removed so this reads as
   a TV-service benefits block, not a SaaS feature matrix. */
.cinder-homepage .ch-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.cinder-homepage .ch-why-card {
    position: relative;
    background: #11151b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 26px 24px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Thin blue top-accent that fills in on hover */
.cinder-homepage .ch-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cinder-site-accent), var(--cinder-site-accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.cinder-homepage .ch-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--cinder-site-glow-rgb), 0.32);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}
.cinder-homepage .ch-why-card:hover::before {
    transform: scaleX(1);
}
.cinder-homepage .ch-why-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.cinder-homepage .ch-why-text {
    margin: 0;
    color: rgba(237, 241, 246, 0.66);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ── Supported-apps strip ── */
.cinder-homepage .ch-apps { margin: 44px auto 0; text-align: center; }
.cinder-homepage .ch-apps-label {
    display: block; margin-bottom: 18px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237, 241, 246, 0.62);
}
.cinder-homepage .ch-apps-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cinder-homepage .ch-app {
    display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(237, 241, 246, 0.78); font-size: 14px; font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cinder-homepage .ch-app::before {
    content: ""; width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--cinder-site-accent), var(--cinder-site-accent-dark));
}
.cinder-homepage .ch-app:hover { color: #fff; border-color: rgba(var(--cinder-site-glow-rgb), 0.32); background: rgba(var(--cinder-site-glow-rgb), 0.06); }

/* ── Testimonials ── */
.cinder-homepage .ch-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cinder-homepage .ch-testi-card {
    display: flex; flex-direction: column; gap: 14px; padding: 26px 24px; border-radius: var(--r-md);
    background: #11151b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
/* Rating stars use amber — the one sanctioned warm accent (gold = universal "rating" cue). */
.cinder-homepage .ch-stars { color: var(--cinder-site-warning); font-size: 15px; letter-spacing: 3px; }
.cinder-homepage .ch-testi-card blockquote { margin: 0; color: rgba(237, 241, 246, 0.84); font-size: 15px; line-height: 1.6; }
.cinder-homepage .ch-testi-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.cinder-homepage .ch-testi-avatar {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--cinder-site-accent), var(--cinder-site-accent-dark));
    color: #fff; font-weight: 800; font-size: 15px;
}
.cinder-homepage .ch-testi-who { display: flex; flex-direction: column; }
.cinder-homepage .ch-testi-who strong { color: #fff; font-size: 14px; }
.cinder-homepage .ch-testi-who small { color: rgba(237, 241, 246, 0.62); font-size: 12px; }

/* Value-proposition cards ("Why people stay" trio) — plainly framed benefits, not testimonials. */
.cinder-homepage .ch-value-card {
    display: flex; flex-direction: column; gap: 10px; padding: 26px 24px; border-radius: var(--r-md);
    background: #11151b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cinder-homepage .ch-value-title { margin: 0; color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.cinder-homepage .ch-value-text { margin: 0; color: rgba(237, 241, 246, 0.66); font-size: 14.5px; line-height: 1.65; }
.cinder-homepage .ch-value-tag {
    margin-top: auto;
    align-self: flex-start;
    color: var(--cinder-site-accent-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Guarantee / trust row (under pricing) ── */
.cinder-homepage .ch-guarantee { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-top: 34px; }
.cinder-homepage .ch-guarantee-item { display: inline-flex; align-items: center; gap: 9px; color: rgba(237, 241, 246, 0.66); font-size: 13.5px; font-weight: 600; }
.cinder-homepage .ch-guarantee-item svg { width: 18px; height: 18px; color: var(--cinder-site-accent-strong); flex-shrink: 0; }

/* Payment marks removed from the homepage (no card-brand marks, per the footer decision). */

/* ── Scroll reveal (class added by JS; no-JS keeps content visible) ── */
.cinder-homepage .cinder-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.cinder-homepage .cinder-reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .cinder-homepage .cinder-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    /* Timeline stacks; the horizontal connector is a desktop-only flourish. */
    .cinder-homepage .ch-timeline { grid-template-columns: 1fr; gap: 22px; }
    .cinder-homepage .ch-timeline::before { display: none; }
    .cinder-homepage .ch-timeline .ch-step { padding: 0; }
    /* Benefit cards stay 2-up on tablet (matches the desktop grid). */
    .cinder-homepage .ch-why-grid { grid-template-columns: 1fr 1fr; }
    /* Split → single column (sticky head only applied at >=901px). */
    .cinder-homepage .ch-split { grid-template-columns: 1fr; gap: 32px; }
    .cinder-homepage .ch-testi-grid { grid-template-columns: 1fr; }
    .cinder-homepage .ch-section { padding: 64px 0; }
    .cinder-homepage .ch-hero { padding: 72px 0 56px; }
}
@media (max-width: 560px) {
    .cinder-homepage .ch-hero-lead { font-size: 16px; }
    .cinder-homepage .ch-hero-actions { flex-direction: column; }
    .cinder-homepage .ch-hero-actions .ch-btn { width: 100%; }
    .cinder-homepage .ch-trial-inner { flex-direction: column; align-items: center; text-align: center; }
    .cinder-homepage .ch-trial-band .ch-btn { width: 100%; }
    .cinder-homepage .ch-cta-inner { flex-direction: column; text-align: center; }
    .cinder-homepage .ch-cta-inner .ch-btn { width: 100%; }
    .cinder-homepage .ch-why-grid { grid-template-columns: 1fr; }
    .cinder-homepage .ch-trust li { font-size: 12px; padding: 6px 11px; }
}

/* ── Extra micro-interactions. The existing scroll-reveal handles entrance; these
   add a staggered cascade to the cards/steps that already reveal individually, plus
   hover life on the app chips and feature icons. Reduced-motion neutralises them. ── */
.cinder-homepage .ch-why-card:nth-child(2),
.cinder-homepage .ch-step:nth-child(2) { transition-delay: 0.07s; }
.cinder-homepage .ch-why-card:nth-child(3),
.cinder-homepage .ch-step:nth-child(3) { transition-delay: 0.14s; }
.cinder-homepage .ch-why-card:nth-child(4) { transition-delay: 0.21s; }

.cinder-homepage .ch-app { transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease; }
.cinder-homepage .ch-app:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
    .cinder-homepage .ch-why-card,
    .cinder-homepage .ch-step { transition-delay: 0s !important; }
    .cinder-homepage .ch-app:hover { transform: none; }
}

/* ============================================================
   EDITORIAL PASS — break the centred-grid sameness so the page
   reads hand-designed, not generated: brand display type on
   headlines, left-aligned section heads, an elevated band, and a
   two-column split (FAQ / "why people stay"). All scoped to
   .cinder-homepage; reuses the existing reveal + card system.
   ============================================================ */

/* Brand display type on headlines (they were inheriting body Hanken Grotesk). */
.cinder-homepage .ch-hero-title,
.cinder-homepage .ch-h2,
.cinder-homepage .ch-step-title,
.cinder-homepage .ch-why-title,
.cinder-homepage .ch-value-title,
.cinder-homepage .ch-cta-title {
    font-family: var(--font-heading);
}

/* Left-aligned editorial head (most sections; Pricing + Hero stay centred for
   deliberate contrast). */
.cinder-homepage .ch-head--left {
    max-width: 760px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}
.cinder-homepage .ch-head--left .ch-sub { margin-left: 0; }

/* Optional lead paragraph inside an editorial head. */
.cinder-homepage .ch-head-lead {
    max-width: 46ch;
    margin: 16px 0 0;
    color: rgba(237, 241, 246, 0.66);
    font-size: 16px;
    line-height: 1.7;
}

/* Intentional elevated band so a content section reads distinct from its
   neighbours rather than as one uniform stack. */
.cinder-homepage .ch-section--alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Two-column editorial split (FAQ, "why people stay"): head on the left,
   content on the right. Head sticks on desktop so it anchors the scroll. */
.cinder-homepage .ch-split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.25fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.cinder-homepage .ch-split > .ch-head { margin-bottom: 0; }
@media (min-width: 901px) {
    .cinder-homepage .ch-split > .ch-head { position: sticky; top: 100px; }
}

/* "Why people stay" — editorial promise list (NOT another card grid):
   borderless rows with hairline separators, reusing .ch-value-* type. */
.cinder-homepage .ch-promise {
    display: flex;
    flex-direction: column;
}
.cinder-homepage .ch-promise .ch-value-card {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    padding: 22px 0;
    gap: 8px;
}
.cinder-homepage .ch-promise .ch-value-card:first-child {
    border-top: 0;
    padding-top: 0;
}
.cinder-homepage .ch-promise .ch-value-tag { margin-top: 4px; }

/* ============================================================
   SIGNATURE — "On now" live programme guide. Grounds the page in
   its subject (the EPG is the iconic live-TV artifact) instead of
   generic dark-SaaS. Pure CSS, on-brand (dark + blue), honest
   (real category rows + illustrative blocks — no fabricated show
   titles / channel logos), broadcast-style monospace ruler, a
   single LIVE pulse. This is the page's one memorable element.
   ============================================================ */
.cinder-homepage .ch-guide {
    position: relative;
    z-index: 3;
    margin-top: -36px;          /* tuck the panel up into the hero's lower glow */
    padding: 0 0 4px;
}
.cinder-homepage .ch-guide-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cinder-site-border);
    border-radius: var(--r-lg);
    background:
        radial-gradient(130% 150% at 0% 0%, rgba(var(--cinder-site-glow-rgb), 0.07), transparent 55%),
        #0c1016;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.38);
}
.cinder-homepage .ch-guide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--cinder-site-border);
}
.cinder-homepage .ch-guide-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
/* LIVE indicator — broadcast vernacular: monospace + a pulsing dot. */
.cinder-homepage .ch-guide-live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--cinder-site-accent-soft);
}
.cinder-homepage .ch-guide-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cinder-site-accent);
    animation: chGuidePulse 2.4s ease-out infinite;
}
@keyframes chGuidePulse {
    0%   { box-shadow: 0 0 0 0 rgba(var(--cinder-site-glow-rgb), 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(var(--cinder-site-glow-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--cinder-site-glow-rgb), 0); }
}
/* Time ruler — monospace, tabular; illustrative, not a real schedule. */
.cinder-homepage .ch-guide-ruler {
    display: grid;
    grid-template-columns: 132px repeat(4, 1fr);
    align-items: center;
    padding: 9px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(237, 241, 246, 0.5);
}
.cinder-homepage .ch-guide-ruler span:nth-child(2) {
    color: var(--cinder-site-accent-soft);
    font-weight: 700;
}
/* Channel rows. */
.cinder-homepage .ch-guide-row {
    display: grid;
    grid-template-columns: 132px repeat(4, 1fr);
    align-items: center;
    height: 52px;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.cinder-homepage .ch-guide-chan {
    padding-right: 12px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(237, 241, 246, 0.82);
}
.cinder-homepage .ch-guide-progs {
    grid-column: 2 / -1;
    display: flex;
    gap: 6px;
    height: 30px;
}
.cinder-homepage .ch-guide-prog {
    flex: 1 1 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.cinder-homepage .ch-guide-prog[data-w="2"] { flex: 2; }
.cinder-homepage .ch-guide-prog[data-w="3"] { flex: 3; }
.cinder-homepage .ch-guide-prog[data-w="4"] { flex: 4; }
.cinder-homepage .ch-guide-prog.is-live {
    background: linear-gradient(135deg, rgba(var(--cinder-site-glow-rgb), 0.32), rgba(var(--cinder-site-glow-rgb), 0.12));
    border-color: rgba(var(--cinder-site-glow-rgb), 0.5);
    box-shadow: inset 0 0 0 1px rgba(var(--cinder-site-glow-rgb), 0.22);
}
.cinder-homepage .ch-guide-foot {
    padding: 14px 20px 16px;
    border-top: 1px solid var(--cinder-site-border);
    color: rgba(237, 241, 246, 0.6);
    font-size: 13px;
    line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
    .cinder-homepage .ch-guide-live::before { animation: none; }
}
@media (max-width: 900px) {
    .cinder-homepage .ch-guide { margin-top: 0; }
}
@media (max-width: 640px) {
    .cinder-homepage .ch-guide-ruler,
    .cinder-homepage .ch-guide-row { grid-template-columns: 92px repeat(4, 1fr); padding-left: 14px; padding-right: 14px; }
    .cinder-homepage .ch-guide-ruler { font-size: 10px; letter-spacing: 0.04em; }
    .cinder-homepage .ch-guide-chan { font-size: 12px; }
}
