/* ==================================================================
   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;
    /* Deep black base with two soft amber radial pools — one upper-left,
       one lower-right — to give the page warmth without lighting the
       whole canvas. All other atmosphere comes from the .nv-atmos
       layer below so the body stays a single dark plane. */
    background:
        radial-gradient(900px 700px at 18% -8%, rgba(245, 158, 11, .12), transparent 60%),
        radial-gradient(800px 600px at 100% 108%, rgba(252, 211, 77, .07), transparent 65%),
        #050507;
    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;
}

/* ---- Atmospheric background layers --------------------------------- */
.nv-atmos {
    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(245, 158, 11, .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(202, 138, 4, .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(252, 211, 77, .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(252, 211, 77, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(252, 211, 77, .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(252, 211, 77, .12), rgba(245, 158, 11, .06)),
        rgba(14, 10, 6, .65);
    border: 1px solid rgba(252, 211, 77, .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: center;
    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(252, 211, 77, .42) 0%,
            rgba(245, 158, 11, .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(252, 211, 77, .8) 28deg,
            transparent 80deg,
            transparent 200deg,
            rgba(245, 158, 11, .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(245, 158, 11, .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%, #fff7d6 0%, #fcd34d 50%, transparent 100%);
    filter: drop-shadow(0 0 8px rgba(252, 211, 77, .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(252, 211, 77, .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(252, 211, 77, .55) 0%, #fde68a 50%, rgba(252, 211, 77, .55) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    text-shadow: 0 0 16px rgba(252, 211, 77, .25);
}
.nv-eyebrow::before,
.nv-eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 211, 77, .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;
}
.nv-title-brand {
    /* Small "CCA" mark — gold gradient now, matches the plinth + nav. */
    color: transparent;
    background: linear-gradient(180deg, #fff 0%, #fde68a 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(252, 211, 77, .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%,
        #fde68a 30%,
        #f59e0b 60%,
        #fde68a 80%,
        #b45309 100%);
    background-size: 100% 220%;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    filter:
        drop-shadow(0 4px 18px rgba(245, 158, 11, .35))
        drop-shadow(0 12px 40px rgba(252, 211, 77, .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: 640px;
    margin: 0 auto 40px;
    color: rgba(232, 232, 240, .62);
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    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: #2a1604;
    background: linear-gradient(135deg, #fff4d6 0%, #fde68a 35%, #f59e0b 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(245, 158, 11, .42),
        0 0 36px rgba(252, 211, 77, .32);
}
.nv-cta-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fff8e2 0%, #fde68a 30%, #f97316 100%);
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .55) inset,
        0 14px 36px rgba(245, 158, 11, .55),
        0 0 48px rgba(252, 211, 77, .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(252, 211, 77, .04);
    border-color: rgba(252, 211, 77, .18);
    backdrop-filter: blur(8px);
}
.nv-cta-ghost:hover {
    color: #fff;
    background: rgba(252, 211, 77, .10);
    border-color: rgba(252, 211, 77, .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(252, 211, 77, .18) !important;
    background:
        linear-gradient(135deg, rgba(252, 211, 77, .06), rgba(245, 158, 11, .03)),
        rgba(10, 8, 4, .65) !important;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, .35),
        0 0 24px rgba(245, 158, 11, .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(252, 211, 77, .55) !important;
    box-shadow:
        0 0 0 2px rgba(252, 211, 77, .15),
        0 0 6px rgba(252, 211, 77, .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(252, 211, 77, .35) !important;
    background: rgba(252, 211, 77, .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(252, 211, 77, .14), rgba(245, 158, 11, .06)),
        rgba(14, 10, 6, .65);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(252, 211, 77, .28);
    border-radius: 14px;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, .45),
        0 0 36px rgba(245, 158, 11, .12);
}
.nv-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fcd34d;
    box-shadow: 0 0 12px rgba(252, 211, 77, .85);
    animation: nv-dot-pulse 2s ease-in-out infinite;
}
@keyframes nv-dot-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(252, 211, 77, .8); }
    50%      { box-shadow: 0 0 18px rgba(252, 211, 77, 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%, #fde68a 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 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.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(252, 211, 77, .07), rgba(245, 158, 11, .03) 60%, rgba(255, 255, 255, .015)),
        rgba(10, 8, 4, .65);
    border: 1px solid rgba(252, 211, 77, .12);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(252, 211, 77, .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(252, 211, 77, .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(252, 211, 77, .42);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(252, 211, 77, .28) inset,
        0 0 36px rgba(245, 158, 11, .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(252, 211, 77, .22), rgba(245, 158, 11, .10)),
        rgba(10, 8, 4, .8);
    border: 1px solid rgba(252, 211, 77, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fde68a;
    margin-bottom: 18px;
    box-shadow:
        0 0 18px rgba(245, 158, 11, .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: #fcd34d;
    filter: drop-shadow(0 0 6px rgba(252, 211, 77, .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(160deg, rgba(252, 211, 77, .06), rgba(255, 255, 255, .015)),
        rgba(10, 8, 4, .72);
    backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(252, 211, 77, .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(252, 211, 77, .42);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 28px rgba(245, 158, 11, .18);
}
.nv-plan.is-highlight {
    border-color: rgba(252, 211, 77, .55);
    background:
        linear-gradient(160deg, rgba(252, 211, 77, .16), rgba(245, 158, 11, .06)),
        rgba(14, 10, 6, .8);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(252, 211, 77, .32) inset,
        0 0 56px rgba(245, 158, 11, .26);
}
.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(245, 158, 11, .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(252, 211, 77, .35);
    background: rgba(252, 211, 77, .08);
    color: #fde68a;
    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(252, 211, 77, .18);
    border-color: rgba(252, 211, 77, .6);
    color: #fff;
}
.nv-plan.is-highlight .nv-plan-cta {
    /* Featured Annual tier — solid gold button, dark amber text. The
       same "premium card" look as nv-cta-primary in the hero. */
    background: linear-gradient(135deg, #fff4d6 0%, #fde68a 35%, #f59e0b 100%);
    color: #2a1604;
    border-color: transparent;
    text-shadow: 0 1px 0 rgba(255, 244, 214, .35);
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .35) inset,
        0 8px 22px rgba(245, 158, 11, .42),
        0 0 28px rgba(252, 211, 77, .25);
}
.nv-plan.is-highlight .nv-plan-cta:hover {
    background: linear-gradient(135deg, #fff8e2 0%, #fde68a 30%, #f97316 100%);
    box-shadow:
        0 0 0 1px rgba(255, 244, 214, .55) inset,
        0 12px 28px rgba(245, 158, 11, .55),
        0 0 36px rgba(252, 211, 77, .35);
}
.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(252, 211, 77, .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(252, 211, 77, .85);
    filter: drop-shadow(0 0 4px rgba(252, 211, 77, .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: #fde68a;
    text-decoration: underline;
    text-decoration-color: rgba(252, 211, 77, .4);
    text-underline-offset: 3px;
}
.nv-pricing-note a:hover { color: #fff; text-decoration-color: #fcd34d; }

/* ---- 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(252, 211, 77, .08);
    backdrop-filter: blur(8px);
    transition: border-color .2s ease-out, background .2s ease-out;
}
.nv-faq-item:hover { border-color: rgba(252, 211, 77, .3); background: rgba(14, 10, 6, .68); }
.nv-faq-item[open] { border-color: rgba(252, 211, 77, .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(252, 211, 77, .85);
    font-size: 20px;
    font-weight: 300;
    transition: transform .2s ease-out, color .2s ease-out;
    filter: drop-shadow(0 0 6px rgba(252, 211, 77, .3));
}
.nv-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: #fcd34d; }
.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: #fde68a; 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(252, 211, 77, .14);
    color: #fde68a;
}

/* ---- 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(252, 211, 77, .08);
    color: rgba(232, 232, 240, .4);
    font-size: 12.5px;
    letter-spacing: .02em;
}
.nv-foot a {
    color: rgba(252, 211, 77, .75);
    text-decoration: none;
}
.nv-foot a:hover { color: #fde68a; }

/* ---- 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; }
}
