/* ============================================================================
   Trial CTA band — the reusable cream conversion band that sits as the first
   block after every page's hero, generalised from the homepage's .hu-cta-band
   so the four-week trial is always one click away as visitors read down a page.
   Page-specific framing via ViewData["TrialBandLead"]; the button opens Cole in
   place (data-cole-open) grounded on the trial intent. Mobile-first; layered on
   vithropic.css tokens. Markup: Pages/Shared/_TrialCtaBand.cshtml.
   ========================================================================== */
.trial-band {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--vith-cream);
    padding: clamp(2.75rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
    border-bottom: 0.5px solid rgba(15, 36, 68, 0.08);
}
.trial-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 75% at 50% 45%, rgba(201, 168, 76, 0.10), transparent 65%);
}
.trial-band-inner { position: relative; max-width: 680px; margin-inline: auto; }
.trial-band-lead {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.8vw, 2.05rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: var(--vith-navy);
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    text-wrap: balance;
}
.trial-band-lead em { font-style: italic; font-weight: 400; color: var(--vith-gold); }
.trial-band-note {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--vith-neutral);
    margin: clamp(1rem, 2vw, 1.25rem) 0 0;
}
