/* Live Funded hero — ported from v5 prototype, scoped under .lf-hero so the
   dark background and generic class names never leak into the rest of the site.
   Consumes --vith-* and --font-* tokens from vithropic.css. */

.lf-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: var(--vith-cream);
    background:
        radial-gradient(ellipse 58% 50% at 50% 46%,
            rgba(201, 168, 76, 0.20) 0%,
            rgba(201, 168, 76, 0.09) 22%,
            rgba(201, 168, 76, 0.025) 42%,
            transparent 62%),
        linear-gradient(180deg,
            #16294A 0%, #122545 14%, #0B1B33 36%,
            #051129 58%, #02091B 82%, #01050F 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* Constellation — faint */
    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 14% 10%, rgba(247, 244, 238, 0.25) 0.7px, transparent 1.3px),
            radial-gradient(circle at 86% 18%, rgba(247, 244, 238, 0.16) 0.5px, transparent 1.0px),
            radial-gradient(circle at 36% 80%, rgba(247, 244, 238, 0.20) 0.6px, transparent 1.2px),
            radial-gradient(circle at 70% 64%, rgba(247, 244, 238, 0.14) 0.5px, transparent 1.0px),
            radial-gradient(circle at 92% 92%, rgba(201, 168, 76, 0.20) 0.7px, transparent 1.3px),
            radial-gradient(circle at 8% 60%, rgba(201, 168, 76, 0.14) 0.5px, transparent 1.0px);
        background-size: 280px 260px, 340px 320px, 380px 300px, 220px 220px, 380px 360px, 300px 280px;
        background-position: 0 0, 50px 30px, 90px 80px, 130px 70px, 30px 130px, 70px 160px;
        pointer-events: none;
        opacity: 0.85;
        mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 30%, transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 30%, transparent 100%);
    }
    &::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            radial-gradient(ellipse 100% 70% at 50% 50%, transparent 50%, rgba(2, 6, 14, 0.78) 100%),
            linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.42) 100%);
    }

    /* ===== HERO BODY ===== */
    .hero-body {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 64px 56px 48px;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .top-eyebrow {
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        color: var(--vith-gold);
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }
    .top-eyebrow::before, .top-eyebrow::after {
        content: "";
        display: inline-block;
        width: 40px;
        height: 0.5px;
        background: var(--vith-gold);
        opacity: 0.55;
    }

    .top-tagline {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(20px, 2.1vw, 26px);
        letter-spacing: -0.005em;
        color: rgba(247, 244, 238, 0.58);
        text-align: center;
        max-width: 36ch;
        line-height: 1.34;
        margin: 0 0 96px;
        text-wrap: balance;
    }
    .top-tagline em { color: var(--vith-cream); font-style: italic; font-weight: 400; }

    /* ===== FIELD WRAP ===== */
    .field-wrap {
        position: relative;
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ===== SCORE RING ===== */
    .score-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 3;
        transition: opacity 800ms cubic-bezier(0.33, 1, 0.68, 1);
    }
    .score-wrap.yielded { opacity: 0.84; }
    .score-wrap.breathing { opacity: 1 !important; }

    .score-halo {
        position: absolute;
        top: 48%;
        left: 50%;
        width: 1100px;
        height: 1100px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle at center,
            rgba(201, 168, 76, 0.26) 0%,
            rgba(201, 168, 76, 0.11) 15%,
            rgba(201, 168, 76, 0.035) 32%,
            transparent 56%);
        pointer-events: none;
        z-index: -1;
        opacity: 0.85;
        transition: opacity 700ms cubic-bezier(0.33, 1, 0.68, 1),
                    transform 700ms cubic-bezier(0.33, 1, 0.68, 1);
        filter: blur(2px);
    }
    .score-wrap.breathing .score-halo {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }

    .score-ring-wrap {
        position: relative;
        width: clamp(280px, 30vw, 400px);
        aspect-ratio: 1 / 1;
        transition: transform 800ms cubic-bezier(0.33, 1, 0.68, 1);
    }
    .score-wrap.breathing .score-ring-wrap {
        animation: lf-score-breath 800ms cubic-bezier(0.33, 1, 0.68, 1);
    }
    .score-ring { width: 100%; height: 100%; position: absolute; inset: 0; overflow: visible; }

    .score-outer-ring {
        position: absolute;
        inset: -22px;
        border: 0.5px solid rgba(201, 168, 76, 0.10);
        border-radius: 50%;
        animation: lf-slow-rotate 90s linear infinite;
    }
    .score-outer-ring::before {
        content: "";
        position: absolute;
        top: -3px;
        left: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--vith-gold);
        opacity: 0.5;
        transform: translateX(-50%);
        box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
    }

    .score-arc {
        transition: stroke-dasharray 900ms cubic-bezier(0.33, 1, 0.68, 1);
        filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.55));
    }

    .score-number {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .score-display-wrap { position: relative; }
    .score-display {
        position: relative;
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(110px, 12vw, 180px);
        line-height: 1;
        letter-spacing: -0.025em;
        color: var(--vith-cream);
        text-shadow: 0 0 40px rgba(247, 244, 238, 0.20), 0 0 90px rgba(201, 168, 76, 0.18);
        transition: text-shadow 700ms cubic-bezier(0.33, 1, 0.68, 1);
    }
    .score-wrap.breathing .score-display {
        text-shadow: 0 0 52px rgba(247, 244, 238, 0.30), 0 0 120px rgba(201, 168, 76, 0.28);
    }
    .score-denom {
        font-family: var(--font-mono);
        font-style: normal;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.18em;
        color: rgba(247, 244, 238, 0.50);
        margin-top: 14px;
        padding-top: 8px;
        border-top: 0.5px solid rgba(247, 244, 238, 0.18);
        min-width: 80px;
        text-align: center;
    }

    .score-delta {
        position: absolute;
        left: calc(100% + 14px);
        top: 22%;
        font-family: var(--font-body);
        font-style: normal;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: var(--vith-gold);
        opacity: 0;
        transform: translateX(14px);
        transition: opacity 400ms cubic-bezier(0.33, 1, 0.68, 1),
                    transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
        white-space: nowrap;
        pointer-events: none;
    }
    .score-delta.show { opacity: 1; transform: translateX(0); }
    .score-delta.setback { color: rgba(201, 168, 76, 0.62); }

    .score-tagline {
        margin-top: 72px;
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(40px, 4.4vw, 64px);
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: var(--vith-gold);
        text-align: center;
        position: relative;
        z-index: 2;
        text-shadow: 0 0 32px rgba(201, 168, 76, 0.36), 0 0 80px rgba(201, 168, 76, 0.16);
    }

    .score-pin { position: absolute; left: 50%; bottom: -2px; width: 1px; height: 1px; pointer-events: none; }

    /* ===== DOMAIN BAND ===== */
    .domain-band-wrap {
        position: relative;
        width: 100%;
        margin-top: 88px;
        padding: 32px 0 16px;
        z-index: 2;
    }
    .domain-band-wrap::before {
        content: "";
        position: absolute;
        left: 4%;
        right: 4%;
        bottom: 10px;
        height: 0.5px;
        background: linear-gradient(90deg,
            transparent 0%, rgba(201, 168, 76, 0.18) 20%,
            rgba(201, 168, 76, 0.28) 50%, rgba(201, 168, 76, 0.18) 80%, transparent 100%);
    }
    .domain-band {
        display: grid;
        grid-template-columns: repeat(13, minmax(0, 1fr));
        width: 100%;
        align-items: end;
        height: 64px;
    }
    .domain-band .dom { display: flex; justify-content: center; align-items: baseline; position: relative; }

    .dom-name {
        position: relative;
        display: inline-block;
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(14px, 1.15vw, 18px);
        line-height: 1.1;
        letter-spacing: -0.005em;
        color: var(--vith-cream);
        opacity: 0.07;
        white-space: nowrap;
        transition: opacity 1100ms cubic-bezier(0.33, 1, 0.68, 1),
                    font-size 1100ms cubic-bezier(0.33, 1, 0.68, 1),
                    text-shadow 800ms cubic-bezier(0.33, 1, 0.68, 1),
                    color 800ms cubic-bezier(0.33, 1, 0.68, 1);
    }
    .dom.lit .dom-name {
        opacity: 1;
        font-size: clamp(26px, 2.5vw, 36px);
        text-shadow: 0 0 24px rgba(247, 244, 238, 0.40), 0 0 60px rgba(247, 244, 238, 0.20), 0 0 100px rgba(201, 168, 76, 0.18);
    }
    .dom.pulsing .dom-name {
        text-shadow: 0 0 30px rgba(201, 168, 76, 0.55), 0 0 70px rgba(201, 168, 76, 0.30);
    }
    .dom-pin { position: absolute; left: 50%; top: 0; width: 1px; height: 1px; pointer-events: none; }

    /* ===== THREADS ===== */
    .threads-layer {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: visible;
        z-index: 1;
    }
    .thread-static { fill: none; stroke: var(--vith-gold); stroke-linecap: round; }
    .thread-pulse {
        fill: none;
        stroke: var(--vith-gold);
        stroke-width: 1.8;
        stroke-linecap: round;
        filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.75)) drop-shadow(0 0 16px rgba(201, 168, 76, 0.35));
    }
    .thread-head {
        fill: var(--vith-gold);
        filter: drop-shadow(0 0 12px rgba(201, 168, 76, 1.0)) drop-shadow(0 0 22px rgba(201, 168, 76, 0.55));
    }

    /* ===== Below caption + CTAs ===== */
    .below-caption {
        margin-top: 48px;
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 400;
        color: rgba(247, 244, 238, 0.6);
        letter-spacing: 0.01em;
        text-align: center;
        line-height: 1.65;
        max-width: 56ch;
    }
    .below-caption .gold { color: var(--vith-gold); font-weight: 500; }

    .ctas { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
    .lf-cta {
        background: var(--vith-gold);
        color: var(--vith-navy);
        padding: 13px 26px;
        border-radius: 4px;
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 300ms cubic-bezier(0.33, 1, 0.68, 1);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
        box-shadow: 0 4px 18px rgba(201, 168, 76, 0.22);
    }
    .lf-cta:hover { background: #b8983f; color: var(--vith-navy); }
    .lf-cta-ghost {
        background: transparent;
        color: var(--vith-cream);
        padding: 13px 24px;
        border-radius: 4px;
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-decoration: none;
        border: 0.5px solid rgba(247, 244, 238, 0.25);
        cursor: pointer;
        transition: border-color 300ms cubic-bezier(0.33, 1, 0.68, 1), background 300ms cubic-bezier(0.33, 1, 0.68, 1);
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    .lf-cta-ghost:hover { border-color: rgba(247, 244, 238, 0.55); background: rgba(247, 244, 238, 0.04); color: var(--vith-cream); }

    /* ===== Footer strip ===== */
    .footer-strip {
        margin-top: auto;
        padding: 18px 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        border-top: 0.5px solid rgba(247, 244, 238, 0.06);
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(247, 244, 238, 0.5);
        position: relative;
        z-index: 4;
    }
    .live-pip { display: inline-flex; align-items: center; gap: 8px; }
    .live-pip .sep { opacity: 0.5; margin: 0 4px; }
    .live-pip .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--vith-gold);
        box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
        animation: lf-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    .footer-strip .gold { color: var(--vith-gold); }

    /* ===== Mobile ===== */
    @media (max-width: 900px) {
        .hero-body { padding: 64px 24px 24px; }
        .footer-strip { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
        .top-tagline { margin-bottom: 56px; }
        .domain-band-wrap { margin-top: 56px; }
        /* 13 columns can't fit a phone — let the band wrap into rows */
        .domain-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; height: auto; }
        .domain-band .dom { flex: 0 0 auto; }
        .dom-name { font-size: 13px; opacity: 0.16; }
        .dom.lit .dom-name { font-size: 20px; }
        /* threads read poorly over a wrapped band on small screens */
        .threads-layer { display: none; }
    }
}

/* ===== Keyframes (top level, lf- prefixed to avoid collisions) ===== */
@keyframes lf-score-breath {
    0%   { transform: scale(0.992); }
    45%  { transform: scale(1.018); }
    100% { transform: scale(1.0); }
}
@keyframes lf-slow-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes lf-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.7); }
}

@media (prefers-reduced-motion: reduce) {
    .lf-hero .score-outer-ring,
    .lf-hero .live-pip .dot { animation: none; }
    .lf-hero .score-arc { transition: none; }
}

/* =====================================================================
   MOBILE HERO — option B: rotating spotlight domain feeds the ring.
   Shown <= 900px in place of the desktop band/threads hero.
   ===================================================================== */
.m-hero { display: none; }            /* hidden on desktop */
@media (max-width: 900px) {
    .lf-hero { display: none; }
    .m-hero { display: flex; }
}

.m-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: var(--vith-cream);
    background:
        radial-gradient(ellipse 90% 50% at 50% 38%,
            rgba(201, 168, 76, 0.20) 0%, rgba(201, 168, 76, 0.08) 24%,
            rgba(201, 168, 76, 0.02) 46%, transparent 64%),
        linear-gradient(180deg,
            #15294A 0%, #102341 12%, #0B1B33 32%,
            #051129 56%, #02091B 82%, #01050F 100%);
    padding: 72px 22px 36px;          /* top clears the fixed nav */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.m-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 14%, rgba(247, 244, 238, 0.22) 0.6px, transparent 1.2px),
        radial-gradient(circle at 84% 22%, rgba(247, 244, 238, 0.16) 0.5px, transparent 1.0px),
        radial-gradient(circle at 32% 78%, rgba(247, 244, 238, 0.18) 0.6px, transparent 1.2px),
        radial-gradient(circle at 78% 88%, rgba(201, 168, 76, 0.20) 0.6px, transparent 1.2px);
    background-size: 180px 180px, 220px 200px, 260px 220px, 280px 260px;
    background-position: 0 0, 30px 20px, 60px 50px, 20px 80px;
    pointer-events: none;
    opacity: 0.7;
    mask-image: radial-gradient(ellipse 95% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 95% 80% at 50% 50%, black 30%, transparent 100%);
}
.m-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 70% at 50% 50%, transparent 50%, rgba(2, 6, 14, 0.65) 100%),
        linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.38) 100%);
}
.m-hero > * { position: relative; z-index: 2; }

.m-eyebrow {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vith-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    white-space: nowrap;
}
.m-eyebrow::before, .m-eyebrow::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 0.5px;
    background: var(--vith-gold);
    opacity: 0.55;
}

.m-score-wrap { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 3; }
.m-score-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 540px;
    height: 540px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
        rgba(201, 168, 76, 0.30) 0%, rgba(201, 168, 76, 0.13) 14%,
        rgba(201, 168, 76, 0.04) 32%, transparent 56%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.85;
    transition: opacity 700ms cubic-bezier(0.33, 1, 0.68, 1), transform 700ms cubic-bezier(0.33, 1, 0.68, 1);
    filter: blur(2px);
}
.m-score-wrap.breathing .m-score-halo { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
.m-ring-wrap { position: relative; width: 232px; height: 232px; }
.m-score-wrap.breathing .m-ring-wrap { animation: m-breath 800ms cubic-bezier(0.33, 1, 0.68, 1); }
.m-outer-ring {
    position: absolute;
    inset: -14px;
    border: 0.5px solid rgba(201, 168, 76, 0.10);
    border-radius: 50%;
    animation: m-slow-rotate 90s linear infinite;
}
.m-outer-ring::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vith-gold);
    opacity: 0.5;
    transform: translateX(-50%);
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.55);
}
.m-ring { width: 100%; height: 100%; position: absolute; inset: 0; overflow: visible; }
.m-score-arc {
    transition: stroke-dasharray 900ms cubic-bezier(0.33, 1, 0.68, 1);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.55));
}
.m-score-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.m-score-display-wrap { position: relative; }
.m-score-display {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 84px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--vith-cream);
    text-shadow: 0 0 26px rgba(247, 244, 238, 0.20), 0 0 60px rgba(201, 168, 76, 0.18);
    transition: text-shadow 700ms cubic-bezier(0.33, 1, 0.68, 1);
}
.m-score-wrap.breathing .m-score-display {
    text-shadow: 0 0 36px rgba(247, 244, 238, 0.30), 0 0 80px rgba(201, 168, 76, 0.28);
}
.m-score-delta {
    position: absolute;
    left: calc(100% + 10px);
    top: 20%;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--vith-gold);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 400ms cubic-bezier(0.33, 1, 0.68, 1), transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
    white-space: nowrap;
    pointer-events: none;
}
.m-score-delta.show { opacity: 1; transform: translateX(0); }
.m-score-delta.setback { color: rgba(201, 168, 76, 0.62); }
.m-score-denom {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    color: rgba(247, 244, 238, 0.50);
    margin-top: 10px;
    padding-top: 6px;
    border-top: 0.5px solid rgba(247, 244, 238, 0.18);
    min-width: 60px;
    text-align: center;
}

/* Vertical thread */
.m-thread-wrap { position: relative; width: 1px; height: 56px; margin-top: 14px; margin-bottom: 4px; }
.m-thread-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.40) 0%, rgba(201, 168, 76, 0.18) 100%);
}
.m-thread-trail {
    position: absolute;
    display: none;
    width: 1.8px;
    left: -0.4px;
    background: linear-gradient(180deg, var(--vith-gold) 0%, rgba(201, 168, 76, 0.4) 60%, transparent 100%);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.75)) drop-shadow(0 0 12px rgba(201, 168, 76, 0.35));
    border-radius: 2px;
}
.m-thread-head {
    position: absolute;
    display: none;
    left: -2.5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vith-gold);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 1.0)) drop-shadow(0 0 16px rgba(201, 168, 76, 0.55));
}

/* Spotlight domain */
.m-spotlight {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 900ms cubic-bezier(0.33, 1, 0.68, 1);
    margin-top: 6px;
}
.m-spotlight.visible { opacity: 1; }
.m-spotlight-word {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: -0.005em;
    color: var(--vith-cream);
    text-shadow: 0 0 22px rgba(247, 244, 238, 0.30), 0 0 60px rgba(201, 168, 76, 0.22);
}

.m-tagline {
    margin-top: 18px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--vith-gold);
    text-align: center;
    text-shadow: 0 0 26px rgba(201, 168, 76, 0.36), 0 0 60px rgba(201, 168, 76, 0.14);
}

.m-ctas { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 380px; margin-top: 18px; }
.m-btn-primary {
    width: 100%;
    background: var(--vith-gold);
    color: var(--vith-navy);
    padding: 14px 18px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 300ms cubic-bezier(0.33, 1, 0.68, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.22);
}
.m-btn-primary:hover { background: #b8983f; color: var(--vith-navy); }
.m-btn-primary .m-arr { font-weight: 400; }
.m-btn-ghost {
    width: 100%;
    background: transparent;
    color: var(--vith-cream);
    padding: 14px 18px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 0.5px solid rgba(247, 244, 238, 0.25);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 300ms ease, background 300ms ease;
}
.m-btn-ghost:hover { border-color: rgba(247, 244, 238, 0.55); background: rgba(247, 244, 238, 0.04); color: var(--vith-cream); }

.m-caption {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(247, 244, 238, 0.6);
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.55;
    max-width: 30ch;
}
.m-caption .gold { color: var(--vith-gold); font-weight: 500; }

.m-footer {
    margin-top: 32px;
    padding-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 244, 238, 0.5);
    text-align: center;
}
.m-pip { display: inline-flex; align-items: center; gap: 6px; }
.m-pip .sep, .m-pip .m-sep { opacity: 0.5; margin: 0 6px; }
.m-pip .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--vith-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    animation: m-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.m-footer .gold { color: var(--vith-gold); }
.m-footer-row { max-width: 36ch; line-height: 1.55; }

@keyframes m-breath {
    0%   { transform: scale(0.992); }
    45%  { transform: scale(1.018); }
    100% { transform: scale(1.0); }
}
@keyframes m-slow-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes m-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.7); }
}

@media (prefers-reduced-motion: reduce) {
    .m-outer-ring, .m-pip .dot { animation: none; }
    .m-score-arc { transition: none; }
}

/* "Live Today." lead — cream against the gold "Live Funded." */
.lf-hero .score-tagline .lead {
    color: var(--vith-cream);
    text-shadow: 0 0 28px rgba(247, 244, 238, 0.30), 0 0 70px rgba(247, 244, 238, 0.12);
}
.m-tagline .lead {
    color: var(--vith-cream);
    text-shadow: 0 0 22px rgba(247, 244, 238, 0.28), 0 0 50px rgba(247, 244, 238, 0.12);
}
