/* ==================================================================
   CCA Nova landing page — nv-* namespace (nova.php)
   Cinematic dark-purple/blue palette, matches the reader's atmosphere
   so Nova feels like a continuation of CCA, not a separate product.
   ================================================================== */

body.nv-body {
    margin: 0;
    background: #000;          /* pure black base */
    color: #e8e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}
/* Cinematic background — slanted CCA icon collage, darkened with a left
   scrim (hero text), a vignette, and a fade to pure black toward the
   bottom/edges so it melts into the page like the Netflix / Crunchyroll
   pay pages. Fixed so it stays put as the page scrolls. */
body.nv-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(135% 110% at 72% 8%, transparent 0%, rgba(5,4,9,.4) 52%, rgba(5,4,9,.96) 100%),
        linear-gradient(90deg, rgba(5,4,9,.96) 0%, rgba(5,4,9,.72) 40%, rgba(5,4,9,.34) 74%, rgba(5,4,9,.55) 100%),
        linear-gradient(180deg, rgba(5,4,9,.10) 0%, rgba(5,4,9,.46) 46%, rgba(5,4,9,.9) 88%, #000 100%),
        url('uploads/nova-bg-fit.png') no-repeat center top / cover,
        #000;
}

/* ---- Atmospheric background layers (off — page is pure black) ------- */
.nv-atmos {
    display: none;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.nv-atmos-glow {
    position: absolute;
    width: 80vmax;
    height: 80vmax;
    border-radius: 50%;
    filter: blur(96px);
    opacity: .35;
    will-change: transform;
}
/* Atmosphere recolour for the black + gold concept. Three large amber
   pools at different corners (warm, sparse) plus one small desaturated
   violet accent in the lower-middle so the page doesn't read as a flat
   sepia. Lower per-glow opacity than before — on pure black, less goes
   further. */
.nv-atmos-glow-a {
    /* Upper-left — primary amber wash, sits behind the hero logo. */
    top: -28vmax;
    left: -18vmax;
    background: radial-gradient(circle at 50% 50%, rgba(90, 61, 240, .55), transparent 62%);
    opacity: .42;
    animation: nv-drift-a 32s ease-in-out infinite alternate;
}
.nv-atmos-glow-b {
    /* Lower-right — deeper amber, anchors the page from underneath. */
    bottom: -34vmax;
    right: -22vmax;
    background: radial-gradient(circle at 50% 50%, rgba(76, 47, 189, .50), transparent 60%);
    opacity: .38;
    animation: nv-drift-b 40s ease-in-out infinite alternate;
}
.nv-atmos-glow-c {
    /* Mid-page violet accent — a quiet cool contrast so the gold
       doesn't tip into sepia. Smaller + dimmer than the gold pools. */
    top: 42vmax;
    left: 48vmax;
    width: 36vmax;
    height: 36vmax;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, .28), transparent 60%);
    opacity: .28;
    animation: nv-drift-c 48s ease-in-out infinite alternate;
}
/* Bright gold spark behind the hero plinth — the warm halo the logo
   sits in. Tightest + brightest of the four, intentionally over the
   upper-third. */
.nv-atmos-glow-d {
    top: -16vmax;
    left: 28vmax;
    width: 56vmax;
    height: 56vmax;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, .35), transparent 65%);
    filter: blur(110px);
    opacity: .48;
    animation: nv-drift-d 56s ease-in-out infinite alternate;
}
@keyframes nv-drift-d { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-3vw, 4vh, 0) scale(1.08); } }
@keyframes nv-drift-a { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(4vw, 3vh, 0) scale(1.05); } }
@keyframes nv-drift-b { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-3vw, -4vh, 0) scale(1.07); } }
@keyframes nv-drift-c { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-6vw, 2vh, 0) scale(.94); } }
.nv-atmos-grid {
    position: absolute;
    inset: 0;
    /* Faint gold lattice — replaces the old violet one so the grid
       reads as warm rather than cool. Very low alpha so it barely
       registers; the radial mask trims it back to the centre third. */
    background-image:
        linear-gradient(rgba(124, 58, 237, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    opacity: .55;
}
.nv-atmos-vignette {
    position: absolute;
    inset: 0;
    /* Pure-black vignette now (was navy-tinted) — matches the new body
       base so the page edges deepen into true black. */
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, .65) 80%, rgba(0, 0, 0, .9) 100%);
    mix-blend-mode: multiply;
}
.nv-atmos-grain {
    position: absolute;
    inset: -50%;
    opacity: .035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
}

/* ---- Soft banner (cancelled-checkout return) ---------------------- */
.nv-banner {
    position: relative;
    z-index: 3;
    margin: 18px auto 0;
    max-width: 760px;
    padding: 14px 18px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(90, 61, 240, .06)),
        rgba(14, 10, 6, .65);
    border: 1px solid rgba(124, 58, 237, .25);
    backdrop-filter: blur(14px) saturate(160%);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
    color: rgba(232, 232, 240, .82);
    animation: nv-banner-slip .55s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes nv-banner-slip {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nv-banner strong { color: #fff; font-weight: 700; }
.nv-banner-cancel { /* placeholder for variant-specific tweaks */ }

/* ---- Shell ---------------------------------------------------------- */
.nv-shell {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 24px 96px;
}

/* ---- Hero ---------------------------------------------------------- */
.nv-hero {
    position: relative;
    text-align: left;
    max-width: 560px;
    padding: 64px 12px 96px;
}
.nv-back {
    position: absolute;
    top: 18px;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(232, 232, 240, .55);
    font-size: 13px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s ease-out, color .2s ease-out;
}
.nv-back:hover { background: rgba(255,255,255,.05); color: #fff; }

/* ---- Official Nova logo plinth -------------------------------------
   The logo artwork (images/nova-logo.png) already carries its own
   black disc, gold ring and inner glow. So this CSS doesn't wrap it
   in a second disc — that would clash with the logo's own rim. We
   only add:
     .nv-logo-halo   — soft amber radial wash bleeding into the page
     .nv-logo-orbit  — two faint gradient rings rotating around the logo
     .nv-logo-spark  — four amber pin-prick sparkles at N/E/S/W
   The image itself breathes (5.4s in/out) to feel alive.
   --------------------------------------------------------------- */
.nv-logo-plinth {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 26px;
    isolation: isolate;
}
.nv-logo-halo {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%,
            rgba(124, 58, 237, .42) 0%,
            rgba(90, 61, 240, .22) 24%,
            rgba(124, 58, 237, .12) 50%,
            transparent 70%);
    filter: blur(22px);
    z-index: -2;
    animation: nv-logo-halo-breathe 5.4s ease-in-out infinite;
}
@keyframes nv-logo-halo-breathe {
    0%, 100% { opacity: .78; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.07); }
}

/* Orbital rings — sit just outside the logo's own gold ring so they
   read as "satellite orbits" rather than a second border. Two rings,
   opposite rotation directions, very thin gold gradients. */
.nv-logo-orbit {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid transparent;
    background:
        conic-gradient(from 0deg,
            transparent 0deg,
            rgba(124, 58, 237, .8) 28deg,
            transparent 80deg,
            transparent 200deg,
            rgba(90, 61, 240, .55) 240deg,
            transparent 290deg) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.nv-logo-orbit-a { animation: nv-logo-orbit-spin 22s linear infinite; }
.nv-logo-orbit-b {
    inset: -30px;
    background:
        conic-gradient(from 90deg,
            transparent 0deg,
            rgba(253, 230, 138, .6) 40deg,
            transparent 110deg,
            transparent 240deg,
            rgba(90, 61, 240, .65) 280deg,
            transparent 340deg) border-box;
    animation: nv-logo-orbit-spin 34s linear infinite reverse;
    opacity: .8;
}
@keyframes nv-logo-orbit-spin { to { transform: rotate(360deg); } }

/* Corner sparkles — staggered amber twinkles. The vertical pair uses
   translateY in its keyframes (the horizontal pair uses translateX)
   so the centring doesn't fight the twinkle. */
.nv-logo-spark {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #efeaff 0%, #c79bff 50%, transparent 100%);
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, .9));
    opacity: 0;
    animation: nv-logo-spark-twinkle 4.6s ease-in-out infinite;
}
.nv-logo-spark-1 { top:    -20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.nv-logo-spark-2 { right:  -18px; top:  50%; transform: translateY(-50%); animation-delay: 1.15s; }
.nv-logo-spark-3 { bottom: -20px; left: 50%; transform: translateX(-50%); animation-delay: 2.3s; }
.nv-logo-spark-4 { left:   -18px; top:  50%; transform: translateY(-50%); animation-delay: 3.45s; }
@keyframes nv-logo-spark-twinkle {
    0%, 35%, 100% { opacity: 0; transform: scale(.6) translateX(-50%); }
    8%            { opacity: 1; transform: scale(1.4) translateX(-50%); }
    18%           { opacity: .55; transform: scale(1) translateX(-50%); }
}
.nv-logo-spark-2, .nv-logo-spark-4 { animation-name: nv-logo-spark-twinkle-v; }
@keyframes nv-logo-spark-twinkle-v {
    0%, 35%, 100% { opacity: 0; transform: scale(.6) translateY(-50%); }
    8%            { opacity: 1; transform: scale(1.4) translateY(-50%); }
    18%           { opacity: .55; transform: scale(1) translateY(-50%); }
}

/* The logo itself — fills the plinth, with a soft amber drop-shadow
   so it sits on top of the page atmosphere instead of looking pasted
   on. Subtle 5.4s breathe matches the halo's cadence. */
.nv-logo-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 12px 32px rgba(0, 0, 0, .55))
        drop-shadow(0 0 28px rgba(124, 58, 237, .35));
    animation: nv-logo-img-breathe 5.4s ease-in-out infinite;
}
@keyframes nv-logo-img-breathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.022); }
}

.nv-glyph {
    /* The original starburst is now a secondary mark — keep it but
       smaller, sitting on top of the gold plinth like a Nova "halo". */
    display: none;
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    filter:
        drop-shadow(0 0 24px rgba(167, 139, 250, .55))
        drop-shadow(0 0 48px rgba(124, 58, 237, .35));
    animation: nv-glyph-pulse 4.2s ease-in-out infinite;
}
.nv-glyph svg { width: 100%; height: 100%; }
.nv-glyph-rays { transform-origin: 32px 32px; animation: nv-glyph-spin 60s linear infinite; }
@keyframes nv-glyph-spin  { to { transform: rotate(360deg); } }
@keyframes nv-glyph-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.nv-eyebrow {
    margin: 0 0 14px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    /* Gold gradient on the eyebrow ties it to the plinth above. The
       two-stop horizontal sweep keeps the centre brightest, so the
       optical weight pulls toward the title below. */
    background: linear-gradient(90deg, rgba(124, 58, 237, .55) 0%, #dcc8ff 50%, rgba(124, 58, 237, .55) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    text-shadow: 0 0 16px rgba(124, 58, 237, .25);
}
.nv-eyebrow::before,
.nv-eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .6), transparent);
    vertical-align: middle;
    margin: 0 14px;
    transform: translateY(-1px);
}
.nv-title {
    margin: 0 0 12px;
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 1;
    letter-spacing: -.03em;
    text-wrap: balance;
}
/* New hero heading (logo removed) — small, left-aligned, Nova-purple */
.nv-title-big {
    margin: 4px 0 12px;
    text-align: left;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    line-height: 1.25;
    letter-spacing: -.01em;
    color: #fff;
}
/* "Try Nova free for 7 days" CTA under the heading */
/* Compound selector (.nv-try-btn.nv-plan-cta) so it beats the .nv-plan-cta
   rule the button also carries for the checkout JS. */
.nv-try-btn.nv-plan-cta {
    display: block; width: fit-content; margin: 0 0 18px;
    background: linear-gradient(120deg, #3f367f 0%, #4f4093 42%, #a07c30 108%); color: #fff;
    font-family: 'Space Grotesk', system-ui, sans-serif; font-size: .98rem; font-weight: 600;
    padding: 12px 26px; border: 0; border-radius: 999px; cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 30px -10px rgba(90,61,240,.7);
    transition: filter .15s ease, transform .12s ease;
}
.nv-try-btn.nv-plan-cta:hover { filter: brightness(1.08); transform: translateY(-1px); background: linear-gradient(120deg, #3f367f 0%, #4f4093 42%, #a07c30 108%); border: 0; }
.nv-try-btn.nv-plan-cta:active { transform: translateY(0); }
.nv-compare {
    display: inline-flex; align-items: center; gap: 5px;
    color: #dcc8ff; text-decoration: none;
    font-family: 'Space Grotesk', system-ui, sans-serif; font-size: .92rem; font-weight: 500;
    transition: color .15s ease, gap .15s ease;
}
.nv-compare svg { width: 15px; height: 15px; }
.nv-compare:hover { color: #fff; gap: 8px; }
.nv-manage { max-width: 720px; margin: 8px auto 0; padding: 28px 24px 8px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
.nv-manage .nv-cta-row { justify-content: center; }
.nv-manage .nv-step-down-note { max-width: 560px; margin: 14px auto 0; }

/* Monthly / Yearly billing toggle */
.nv-billing {
    display: flex; width: fit-content; gap: 4px; margin: 0 auto 26px;
    padding: 5px; border-radius: 999px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
}
.nv-bt-opt {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; background: transparent; cursor: pointer;
    padding: 9px 20px; border-radius: 999px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: .95rem; font-weight: 500; color: var(--text-muted, #b0b0cc);
    transition: background .16s ease, color .16s ease;
}
.nv-bt-opt:hover { color: #fff; }
.nv-bt-opt.is-on { background: #7a4fd6; color: #fff; }
.nv-bt-save {
    font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 999px;
    background: rgba(252,211,77,.18); color: #fcd34d;
}
.nv-bt-opt.is-on .nv-bt-save { background: rgba(255,255,255,.2); color: #fff; }
.nv-title-brand {
    /* Small "CCA" mark — gold gradient now, matches the plinth + nav. */
    color: transparent;
    background: linear-gradient(180deg, #fff 0%, #dcc8ff 55%, #d97706 100%);
    -webkit-background-clip: text;
            background-clip: text;
    font-size: .55em;
    letter-spacing: .06em;
    font-weight: 700;
    vertical-align: middle;
    margin-right: .35em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    text-shadow: 0 0 18px rgba(124, 58, 237, .25);
}
.nv-title-mark {
    /* "Nova" wordmark — duotone gold sweep with a brighter centre so it
       reads as a polished metal mark, not a flat gradient. The slow
       background-position animation gives it a faint shimmer. */
    background: linear-gradient(180deg,
        #fff 0%,
        #dcc8ff 30%,
        #6a4ff5 60%,
        #dcc8ff 80%,
        #b45309 100%);
    background-size: 100% 220%;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    filter:
        drop-shadow(0 4px 18px rgba(90, 61, 240, .35))
        drop-shadow(0 12px 40px rgba(124, 58, 237, .18));
    display: inline-block;
    animation: nv-title-shimmer 7.5s ease-in-out infinite;
}
@keyframes nv-title-shimmer {
    0%, 100% { background-position: 0% 0%; }
    50%      { background-position: 0% 100%; }
}
.nv-tagline {
    margin: 0 0 22px;
    font-family: Georgia, "Iowan Old Style", serif;
    font-style: italic;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    color: rgba(232, 232, 240, .85);
    letter-spacing: .005em;
}
.nv-sub {
    max-width: 560px;
    margin: 0 0 28px;
    color: rgba(232, 232, 240, .62);
    font-size: clamp(.85rem, 1.1vw, .95rem);
    line-height: 1.7;
}

.nv-cta-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.nv-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .005em;
    transition:
        transform .25s cubic-bezier(.16,1,.3,1),
        background .25s ease-out,
        border-color .25s ease-out,
        box-shadow .25s ease-out;
    cursor: pointer;
    border: 1px solid transparent;
}
.nv-cta-primary {
    /* Gold-on-black primary — matches the plinth + nav for one
       cohesive premium story. Darker text-on-gold keeps WCAG. */
    color: #ffffff;
    background: linear-gradient(135deg, #efeaff 0%, #dcc8ff 35%, #6a4ff5 100%);
    border-color: rgba(255, 255, 255, .3);
    text-shadow: 0 1px 0 rgba(255, 244, 214, .35);
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .35) inset,
        0 10px 28px rgba(90, 61, 240, .42),
        0 0 36px rgba(124, 58, 237, .32);
}
.nv-cta-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #efeaff 0%, #dcc8ff 30%, #7c5cf5 100%);
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .55) inset,
        0 14px 36px rgba(90, 61, 240, .55),
        0 0 48px rgba(124, 58, 237, .42);
}
.nv-cta-ghost {
    /* Ghost button — quieter neighbour to the gold primary CTA. Hover
       reveals a thin gold edge so it still belongs to the palette. */
    color: rgba(232, 232, 240, .82);
    background: rgba(124, 58, 237, .04);
    border-color: rgba(124, 58, 237, .18);
    backdrop-filter: blur(8px);
}
.nv-cta-ghost:hover {
    color: #fff;
    background: rgba(124, 58, 237, .10);
    border-color: rgba(124, 58, 237, .5);
}
.nv-trial {
    margin: 18px 0 0;
    font-size: 12.5px;
    color: rgba(232, 232, 240, .45);
    letter-spacing: .04em;
}

/* Paused-member status pill — same shape as the active one but a
   quieter palette: muted amber border, no pulse, "ready to wake up"
   feel rather than "currently live". */
.nv-status-paused {
    flex-direction: column;
    text-align: center;
    border-color: rgba(124, 58, 237, .18) !important;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .06), rgba(90, 61, 240, .03)),
        rgba(10, 8, 4, .65) !important;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, .35),
        0 0 24px rgba(90, 61, 240, .06) !important;
    max-width: 460px;
}
.nv-status-paused strong { color: rgba(253, 230, 138, .9); }
.nv-status-paused small  { color: rgba(232, 232, 240, .55); }
.nv-status-dot-paused {
    background: rgba(124, 58, 237, .55) !important;
    box-shadow:
        0 0 0 2px rgba(124, 58, 237, .15),
        0 0 6px rgba(124, 58, 237, .3) !important;
    animation: none !important;
}

/* Soft explanatory line under the active-member action row — explains
   what "Return to basic" / "Manage or cancel" actually does so the
   button doesn't feel scary or hidden. Reads as a quiet footnote. */
.nv-step-down-note {
    max-width: 460px;
    margin: 14px auto 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(232, 232, 240, .42);
    letter-spacing: .01em;
}

/* Step-down button — quieter ghost variant so it doesn't compete with
   "Explore your perks" but is still discoverable. Muted edge until
   hover, then a calmer (non-celebratory) warm sweep. */
.nv-cta-step-down {
    color: rgba(232, 232, 240, .55) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}
.nv-cta-step-down:hover {
    color: #fff !important;
    border-color: rgba(124, 58, 237, .35) !important;
    background: rgba(124, 58, 237, .06) !important;
}
.nv-cta-step-down.is-busy { opacity: .65; cursor: progress; }

/* ---- Active member status ---- */
.nv-status {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    margin: 0 auto 24px;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(90, 61, 240, .06)),
        rgba(14, 10, 6, .65);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(124, 58, 237, .28);
    border-radius: 14px;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, .45),
        0 0 36px rgba(90, 61, 240, .12);
}
.nv-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c79bff;
    box-shadow: 0 0 12px rgba(124, 58, 237, .85);
    animation: nv-dot-pulse 2s ease-in-out infinite;
}
@keyframes nv-dot-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(124, 58, 237, .8); }
    50%      { box-shadow: 0 0 18px rgba(124, 58, 237, 1); }
}
.nv-status strong {
    display: block;
    color: #fff;
    font-size: 14.5px;
    letter-spacing: .01em;
}
.nv-status small {
    color: rgba(232, 232, 240, .65);
    font-size: 12px;
}

/* ---- Section heads ------------------------------------------------- */
.nv-section-head {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 680px;
}
.nv-section-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    /* Gold eyebrow text — ties section openers back to the hero. */
    background: linear-gradient(90deg, #fde68a 0%, #fcd34d 50%, #f59e0b 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    text-shadow: 0 0 14px rgba(252,211,77, .25);
}
.nv-section-title {
    margin: 0 0 12px;
    font-family: Georgia, "Iowan Old Style", serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.018em;
    line-height: 1.18;
    color: #f5f5fa;
    text-wrap: balance;
    /* Section titles fade from white into a soft cream-gold so they
       read as warm/premium without competing with the hero title. */
    background: linear-gradient(180deg, #ffffff 0%, #dcc8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nv-section-sub {
    margin: 0;
    color: rgba(232, 232, 240, .6);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---- Pillars grid -------------------------------------------------- */
.nv-perks { margin: 56px 0 88px; }
.nv-grid-head { text-align: center; margin: 46px 0 22px; font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; color: #fff; }
.nv-card-feats .nv-tick { color: #fcd34d; }
.nv-grid {
    display: flex; gap: 18px; margin: 0; padding: 4px 2px 16px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.nv-grid::-webkit-scrollbar { height: 7px; }
.nv-grid::-webkit-scrollbar-track { background: transparent; }
.nv-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 999px; }
.nv-grid > .nv-card { flex: 0 0 auto; width: 300px; scroll-snap-align: start; }

/* "Get more with Nova" — clean two-column benefits list */
/* Horizontal-scrolling benefit cards */
.nv-benefits {
    display: flex; gap: 14px; margin: 0; padding: 4px 2px 16px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.nv-benefits::-webkit-scrollbar { height: 7px; }
.nv-benefits::-webkit-scrollbar-track { background: transparent; }
.nv-benefits::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 999px; }
.nv-benefit {
    flex: 0 0 auto; width: 216px; scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 13px;
    padding: 18px 16px; border-radius: 16px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.nv-benefit-ic {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(124,58,237,.18); color: #fcd34d;
}
.nv-benefit-ic svg { width: 22px; height: 22px; }
.nv-benefit-txt { font-size: .9rem; line-height: 1.45; color: var(--text-heading, #e9e6f5); }

.nv-benefits-wrap { position: relative; }
.nv-scroll-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(20,18,30,.92); border: 1px solid rgba(255,255,255,.16);
    color: #fff; box-shadow: 0 8px 22px -8px rgba(0,0,0,.8);
    transition: background .15s ease, opacity .15s ease, transform .12s ease;
}
.nv-scroll-btn svg { width: 18px; height: 18px; }
.nv-scroll-btn:hover { background: #7a4fd6; }
.nv-scroll-prev { left: 6px; }
.nv-scroll-next { right: 6px; }
.nv-scroll-btn.is-hidden { opacity: 0; pointer-events: none; }
@media (max-width: 640px) { .nv-scroll-btn { display: none; } }
.nv-benefits-note { text-align: center; margin: 8px auto 0; font-size: .82rem; color: var(--text-faint, #8b8b9c); }
.nv-card {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: 18px;
    /* Pillar card — black glass with a faint gold sheen. The gradient
       gives the upper-left a warm amber lift so each card reads as its
       own membership tile. */
    background:
        linear-gradient(140deg, rgba(124, 58, 237, .07), rgba(90, 61, 240, .03) 60%, rgba(255, 255, 255, .015)),
        rgba(10, 8, 4, .65);
    border: 1px solid rgba(124, 58, 237, .12);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(124, 58, 237, .04) inset;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.16,1,.3,1),
                border-color .35s ease-out,
                box-shadow .35s ease-out;
    animation: nv-card-rise .8s cubic-bezier(.16,1,.3,1) both;
    animation-delay: calc(var(--nv-card-i, 0) * 80ms);
}
@keyframes nv-card-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nv-card::before {
    /* Hover-only amber wash at the top of the card. */
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, .18), transparent 65%);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease-out;
}
.nv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, .42);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(124, 58, 237, .28) inset,
        0 0 36px rgba(90, 61, 240, .22);
}
.nv-card:hover::before { opacity: 1; }

.nv-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    /* Icon chip — small gold-lit square that anchors each card's
       identity in the same warm palette as the hero plinth. */
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .22), rgba(90, 61, 240, .10)),
        rgba(10, 8, 4, .8);
    border: 1px solid rgba(124, 58, 237, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dcc8ff;
    margin-bottom: 18px;
    box-shadow:
        0 0 18px rgba(90, 61, 240, .22),
        0 1px 0 rgba(255, 244, 214, .12) inset;
}
.nv-card-icon svg { width: 22px; height: 22px; }

.nv-card-title {
    margin: 0 0 8px;
    font-family: Georgia, "Iowan Old Style", serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f5fa;
    letter-spacing: -.015em;
}
.nv-card-lede {
    margin: 0 0 18px;
    color: rgba(232, 232, 240, .65);
    font-size: 13.5px;
    line-height: 1.55;
}
.nv-card-feats {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nv-card-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(232, 232, 240, .82);
}
.nv-tick {
    flex-shrink: 0;
    margin-top: 4px;
    color: #c79bff;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, .65));
}

/* ---- Pricing ------------------------------------------------------- */
.nv-pricing { margin: 88px 0 72px; }
.nv-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
}
.nv-plan {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: 20px;
    /* Plan card — black glass with a soft amber upper-left wash so each
       tier sits in the same gold register as the hero. Hover deepens
       the border into gold. The highlighted (Annual) plan ups the amber
       saturation + adds a warm halo. */
    background: linear-gradient(150deg, #3f367f 0%, #4f4093 55%, #a07c30 125%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .5);
    transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease-out, box-shadow .3s ease-out;
}
.nv-plan:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, .42);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 28px rgba(90, 61, 240, .18);
}
.nv-plan.is-highlight {
    border-color: rgba(255, 255, 255, .30);
    background: linear-gradient(150deg, #3f367f 0%, #4f4093 55%, #a07c30 125%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 255, 255, .16) inset,
        0 0 56px rgba(124, 58, 237, .3);
}
.nv-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 12px;
    /* Gold pill — same gradient family as the lifetime badge, so the
       "Save 35%" / "Founder · first 100" tag reads as the premium
       marker on the page. */
    background: linear-gradient(135deg, #fff4d6 0%, #fde68a 35%, #f59e0b 100%);
    color: #2a1604;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .35) inset,
        0 6px 18px rgba(90, 61, 240, .42);
    text-shadow: 0 1px 0 rgba(255, 244, 214, .35);
}
.nv-plan-name {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(232, 232, 240, .55);
}
.nv-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 6px;
}
.nv-plan-amount {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
}
.nv-plan-cadence {
    color: rgba(232, 232, 240, .5);
    font-size: 14px;
}
.nv-plan-note {
    margin: 0 0 22px;
    color: rgba(232, 232, 240, .55);
    font-size: 13px;
}
.nv-plan-cta {
    width: 100%;
    padding: 12px 18px;
    /* Ghost variant — gold-stroked outline button. Hover deepens the
       fill into a soft amber wash. Used by Monthly + Lifetime tiers. */
    border: 1px solid rgba(167, 139, 250, .4);
    background: rgba(124, 58, 237, .10);
    color: #dcc8ff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 22px;
    transition:
        background .25s ease-out,
        border-color .25s ease-out,
        color .25s ease-out,
        transform .15s ease-out,
        box-shadow .25s ease-out;
}
.nv-plan-cta:hover {
    transform: translateY(-1px);
    background: rgba(124, 58, 237, .22);
    border-color: rgba(167, 139, 250, .65);
    color: #fff;
}
.nv-plan.is-highlight .nv-plan-cta {
    /* Featured tier — solid Nova-purple button. */
    background: #7a4fd6;
    color: #fff;
    border-color: transparent;
    text-shadow: none;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .15) inset,
        0 8px 22px rgba(90, 61, 240, .5),
        0 0 28px rgba(124, 58, 237, .3);
}
.nv-plan.is-highlight .nv-plan-cta:hover {
    background: #6a4ff5;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .25) inset,
        0 12px 28px rgba(90, 61, 240, .6),
        0 0 36px rgba(124, 58, 237, .4);
}
.nv-plan-cta:active { transform: translateY(0); }
.nv-plan-cta.is-busy { opacity: .65; cursor: progress; }

.nv-plan-inc {
    list-style: none;
    margin: 0;
    padding: 18px 0 0;
    /* Soft amber divider line replaces the cool white one. */
    border-top: 1px solid rgba(124, 58, 237, .12);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nv-plan-inc li {
    font-size: 12.5px;
    color: rgba(232, 232, 240, .68);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.nv-plan-inc li::before {
    /* Gold sparkle bullet — anchors the bullet list to the gold story. */
    content: "✦";
    position: absolute;
    left: 0;
    color: rgba(124, 58, 237, .85);
    filter: drop-shadow(0 0 4px rgba(124, 58, 237, .4));
}

.nv-pricing-note {
    margin: 32px auto 0;
    max-width: 540px;
    text-align: center;
    color: rgba(232, 232, 240, .55);
    font-size: 13px;
    line-height: 1.6;
}
.nv-pricing-note a {
    color: #dcc8ff;
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, .4);
    text-underline-offset: 3px;
}
.nv-pricing-note a:hover { color: #fff; text-decoration-color: #c79bff; }

/* ---- FAQ ----------------------------------------------------------- */
.nv-faq {
    max-width: 760px;
    margin: 72px auto 56px;
}
.nv-faq-item {
    padding: 18px 22px;
    margin-bottom: 10px;
    border-radius: 14px;
    /* FAQ tile — same black glass as the cards, just lighter alpha so
       the answers feel quieter than the marketing surface above. */
    background: rgba(10, 8, 4, .55);
    border: 1px solid rgba(124, 58, 237, .08);
    backdrop-filter: blur(8px);
    transition: border-color .2s ease-out, background .2s ease-out;
}
.nv-faq-item:hover { border-color: rgba(124, 58, 237, .3); background: rgba(14, 10, 6, .68); }
.nv-faq-item[open] { border-color: rgba(124, 58, 237, .28); background: rgba(14, 10, 6, .7); }
.nv-faq-item summary {
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: #f5f5fa;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.nv-faq-item summary::-webkit-details-marker { display: none; }
.nv-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(124, 58, 237, .85);
    font-size: 20px;
    font-weight: 300;
    transition: transform .2s ease-out, color .2s ease-out;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, .3));
}
.nv-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: #c79bff; }
.nv-faq-item p {
    margin: 12px 0 0;
    color: rgba(232, 232, 240, .68);
    font-size: 13.5px;
    line-height: 1.65;
}
.nv-faq-item p strong { color: #dcc8ff; font-weight: 600; }
.nv-faq-item code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(124, 58, 237, .14);
    color: #dcc8ff;
}

/* ---- Footer ------------------------------------------------------- */
.nv-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 0;
    /* Soft gold divider replaces the cool white separator above. */
    border-top: 1px solid rgba(124, 58, 237, .08);
    color: rgba(232, 232, 240, .4);
    font-size: 12.5px;
    letter-spacing: .02em;
}
.nv-foot a {
    color: rgba(124, 58, 237, .75);
    text-decoration: none;
}
.nv-foot a:hover { color: #dcc8ff; }

/* ---- Reduced motion + mobile ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .nv-atmos-glow,
    .nv-glyph,
    .nv-glyph-rays,
    .nv-status-dot,
    .nv-card,
    .nv-logo-halo,
    .nv-logo-orbit,
    .nv-logo-spark,
    .nv-logo-img,
    .nv-title-mark { animation: none !important; }
}
@media (max-width: 720px) {
    .nv-shell { padding: 16px 16px 64px; }
    .nv-hero  { padding: 48px 0 72px; }
    .nv-back  { position: relative; top: auto; left: auto; margin-bottom: 12px; }
    .nv-glyph { width: 76px; height: 76px; margin-bottom: 18px; }
    .nv-logo-plinth { width: 168px; height: 168px; margin-bottom: 20px; }
    .nv-logo-halo   { inset: -38px; }
    .nv-logo-orbit   { inset: -12px; }
    .nv-logo-orbit-b { inset: -22px; }
    .nv-logo-spark-1 { top:    -14px; }
    .nv-logo-spark-2 { right:  -12px; }
    .nv-logo-spark-3 { bottom: -14px; }
    .nv-logo-spark-4 { left:   -12px; }
    .nv-eyebrow::before,
    .nv-eyebrow::after { width: 16px; margin: 0 10px; }
    .nv-perks, .nv-pricing { margin: 56px 0; }
    .nv-cta-row { flex-direction: column; align-items: stretch; }
    .nv-cta { justify-content: center; }
}

/* ==================================================================
   In-page Stripe Embedded Checkout popup (#nv-checkout-modal)
   Stripe.js mounts its own (light) iframe into .nv-checkout-mount, so
   we keep our chrome to a dark frame + close affordance around it.
   ================================================================== */
.nv-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
}
.nv-checkout-modal.is-open { display: flex; }
.nv-checkout-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 3, 8, .78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.nv-checkout-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: auto;
    background: linear-gradient(180deg, #141019 0%, #0d0a12 100%);
    border: 1px solid rgba(168, 132, 255, .28);
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(124, 58, 237, .06);
    padding: 22px 20px 20px;
    animation: nvCkIn .26s cubic-bezier(.2, .8, .25, 1);
}
@keyframes nvCkIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.nv-checkout-x {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    color: #cfc8e6;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.nv-checkout-x:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.nv-checkout-head { text-align: center; margin: 4px 0 16px; }
.nv-checkout-glyph {
    display: block;
    font-size: 22px;
    color: #c79bff;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, .4));
    margin-bottom: 6px;
}
.nv-checkout-head strong { display: block; font-size: 18px; color: #f5f5fa; letter-spacing: .2px; }
.nv-checkout-sub { margin: 6px 0 0; font-size: 12.5px; color: rgba(232, 232, 240, .6); }
.nv-checkout-mount { min-height: 220px; }
.nv-checkout-loading {
    text-align: center;
    color: rgba(232, 232, 240, .6);
    font-size: 13px;
    padding: 40px 0;
}
@media (max-width: 520px) {
    .nv-checkout-modal { padding: 16px 8px; }
    .nv-checkout-card { padding: 20px 14px 16px; }
}

/* Simplified questions block */
.nv-faq { text-align: center; padding: 16px 24px 8px; }
.nv-faq-q { margin: 0 0 8px; font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.5rem; font-weight: 600; color: #fff; }
.nv-faq-help { margin: 0; font-size: 1rem; color: var(--text-muted, #b0b0cc); }
.nv-faq-help a { color: #dcc8ff; text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(196,181,253,.4); transition: color .15s ease, border-color .15s ease; }
.nv-faq-help a:hover { color: #fff; border-color: #fff; }

/* Legal links now render site-wide via .legal-bar in footer.php — the
   page-specific .nv-legal row was removed to avoid a duplicate legal row. */
