/**
 * ═══════════════════════════════════════════════════════════
 * THEME: NOVA  —  Modern SaaS / Startup Launch Page
 * ═══════════════════════════════════════════════════════════
 * Vibe:    Clean, tech-forward, gradient-heavy, pill-shaped
 * Layout:  Centered hero stack → floating showcase image
 *          → Features grid → CTA band → How it works
 *          → Catalog → Testimonials → FAQ
 * Fonts:   Sora (headings, bold modern) + DM Sans (body)
 * Shapes:  Extra-large pill radii (999px buttons, 28px cards)
 * Detail:  Animated floating gradient orbs, glass-morphism,
 *          gradient text, glow shadows, smooth hover lifts
 *
 * NOTE: All class/ID selectors below are unchanged from the
 * original — this file only refines visual treatment. Nothing
 * here requires HTML or JS changes, so admin-edited content
 * keeps rendering exactly the same way.
 * ═══════════════════════════════════════════════════════════
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    --font-heading: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --bg-light: #f3f6fb;
    --nova-ink: #0b1120;
    --nova-border: rgba(148, 163, 184, 0.16);
    --nova-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --nova-shadow-lift: 0 22px 45px rgba(15, 23, 42, 0.1);
}

body.theme-nova {
    background:
        radial-gradient(ellipse 55% 40% at 8% 0%, rgba(var(--primary-rgb), 0.20), transparent 55%),
        radial-gradient(ellipse 45% 35% at 100% 8%, rgba(56, 189, 248, 0.13), transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(236, 72, 153, 0.06), transparent 60%),
        var(--bg-light);
}
body.theme-nova .theme-chrome-nova { display: block !important; }
body.theme-nova .theme-chrome-bazaar,
body.theme-nova .theme-chrome-luxe { display: none !important; }
body.theme-nova .hero-bg-orb { display: block !important; }

body.theme-nova .hero-bg-orb-a,
body.theme-nova .hero-bg-orb-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: blobPulse 14s ease-in-out infinite;
}
body.theme-nova .hero-bg-orb-a {
    width: 360px; height: 360px; top: -120px; left: -80px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.35), transparent 70%);
}
body.theme-nova .hero-bg-orb-b {
    width: 300px; height: 300px; top: 40px; right: -100px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
    animation-delay: -6s;
}

body.theme-nova #main-header {
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--nova-border);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
body.theme-nova .nav-links a {
    font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    padding: 6px 4px; position: relative; transition: var(--transition-fast);
}
body.theme-nova .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #8b5cf6);
    border-radius: 2px; transition: right 0.25s ease;
}
body.theme-nova .nav-links a:hover { color: var(--text-dark); }
body.theme-nova .nav-links a:hover::after,
body.theme-nova .nav-links a.active::after { right: 0; }
body.theme-nova .nav-links a.active { color: var(--text-dark); }

/* ═══ HERO: Asymmetric Split ═══ */
body.theme-nova .hero-section {
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 30px;
    padding: 76px 48px 90px;
    max-width: 1240px; margin: 0 auto;
    min-height: auto;
    position: relative;
    text-align: left;
}
body.theme-nova .hero-section::before,
body.theme-nova .hero-section::after { display: none !important; }
body.theme-nova .hero-content { position: relative; z-index: 1; }
body.theme-nova .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px; border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.22);
    padding: 7px 18px 7px 14px; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-color);
    box-shadow: var(--nova-shadow-soft);
}
body.theme-nova .hero-eyebrow svg { color: var(--accent-color); animation: announcePulse 2.2s ease-in-out infinite; }
body.theme-nova .hero-brand-kicker { display: none; }
body.theme-nova #hero-heading {
    font-size: clamp(2.35rem, 4.4vw, 3.4rem); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.08; max-width: 13ch; margin: 18px 0 0;
    color: var(--nova-ink);
}
body.theme-nova .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    background-size: 200% auto;
}
body.theme-nova #hero-subtitle {
    max-width: 40ch; margin: 18px 0 0; font-size: 1.05rem; line-height: 1.7;
    color: var(--text-muted);
}
body.theme-nova .hero-buttons { justify-content: flex-start; margin-top: 30px; gap: 12px; }
body.theme-nova .hero-buttons .btn {
    border-radius: 999px; padding: 15px 30px; font-size: 0.9rem;
}
body.theme-nova .hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6 65%, #a855f7);
    box-shadow: 0 10px 26px rgba(var(--primary-rgb), 0.38);
}
/* Stats sit as a left-aligned row under the buttons, not a separate glass bar */
body.theme-nova .hero-stats {
    display: flex !important; justify-content: flex-start; gap: 30px;
    margin-top: 40px; padding: 0; background: none; border: none;
    border-top: 1px solid var(--nova-border); padding-top: 22px;
    max-width: 440px;
}
body.theme-nova .hero-stat-item { text-align: left; }
body.theme-nova .hero-stat-item h4 {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--nova-ink), var(--primary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
body.theme-nova .hero-stat-item p { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* Image: offset/rotated frame with an overlapping floating card, not a plain centered box */
body.theme-nova .hero-image-wrapper {
    display: block !important; position: relative; z-index: 1;
    width: 100%; margin: 0;
    justify-self: end;
}
body.theme-nova .hero-image-frame {
    border-radius: 26px; overflow: hidden;
    box-shadow: 0 30px 75px rgba(15, 23, 42, 0.18), 0 4px 0 rgba(255,255,255,0.5) inset;
    border: 1px solid rgba(255,255,255,0.7);
    position: relative;
    transform: rotate(2deg);
    margin-left: auto;
    width: 92%;
}
body.theme-nova .hero-image-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
    pointer-events: none;
}
body.theme-nova .hero-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
body.theme-nova .hero-image-frame::before { display: none; }
body.theme-nova .hero-float-card {
    box-shadow: var(--nova-shadow-lift);
    border: 1px solid var(--nova-border);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
    margin-top: -60px;
    margin-right: 24px;
}

@media (max-width: 1024px) {
    body.theme-nova .hero-section {
        grid-template-columns: 1fr; text-align: center; padding: 60px 24px;
    }
    body.theme-nova .hero-content { text-align: center; }
    body.theme-nova #hero-heading,
    body.theme-nova #hero-subtitle { margin-left: auto; margin-right: auto; }
    body.theme-nova .hero-buttons,
    body.theme-nova .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
    body.theme-nova .hero-image-wrapper { justify-self: center; margin-top: 40px; }
    body.theme-nova .hero-image-frame { margin: 0 auto; transform: none; width: 100%; max-width: 480px; }
}

/* ═══ FEATURES ═══ */
body.theme-nova .features-section { padding: 88px 24px; max-width: 1100px; margin: 0 auto; }
body.theme-nova .features-section .section-eyebrow,
body.theme-nova .features-section h2 { text-align: center; margin-left: auto; margin-right: auto; }
body.theme-nova .features-grid { grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
body.theme-nova .feature-card {
    border-radius: 22px; padding: 30px 26px; background: #fff;
    border: 1px solid var(--nova-border);
    box-shadow: var(--nova-shadow-soft);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
body.theme-nova .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(var(--primary-rgb),0.14);
    border-color: rgba(var(--primary-rgb), 0.25);
}
body.theme-nova .feature-icon {
    width: 54px; height: 54px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(139,92,246,0.12));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 16px; color: var(--primary-color);
}
body.theme-nova .feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
body.theme-nova .feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ═══ CTA BAND ═══ */
body.theme-nova .nova-cta-band { margin: 24px 24px 48px; }
body.theme-nova .nova-cta-inner {
    max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 40px 44px; border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed 55%, #0ea5e9); color: #fff;
    box-shadow: 0 24px 55px rgba(var(--primary-rgb), 0.32);
    position: relative; overflow: hidden;
}
body.theme-nova .nova-cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.16), transparent 55%);
}
body.theme-nova .nova-cta-inner h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; margin: 0 0 6px; color: #fff; position: relative; }
body.theme-nova .nova-cta-inner p { margin: 0; opacity: .92; max-width: 42ch; position: relative; }
body.theme-nova .nova-cta-inner .btn {
    border-radius: 999px; background: #fff; color: var(--primary-color); position: relative;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
body.theme-nova .nova-cta-inner .btn:hover { transform: translateY(-2px); }

/* ═══ HOW IT WORKS ═══ */
body.theme-nova .how-it-works-section { padding: 84px 24px; background: rgba(255,255,255,.5); }
body.theme-nova .how-it-works-section h2 { text-align: center; }
body.theme-nova .how-step {
    background: #fff; border-radius: 22px; padding: 32px 22px;
    border: 1px solid var(--nova-border); box-shadow: var(--nova-shadow-soft);
    transition: transform .25s, box-shadow .25s;
}
body.theme-nova .how-step:hover { transform: translateY(-4px); box-shadow: var(--nova-shadow-lift); }

/* ═══ SUBSCRIPTIONS ═══ */
body.theme-nova .subscriptions-section { padding: 84px 24px; max-width: 1100px; margin: 0 auto; }
body.theme-nova .subscriptions-section h2 { text-align: center; }
body.theme-nova .subscriptions-grid { gap: 22px; margin-top: 40px; }
body.theme-nova .sub-card-plan {
    border-radius: 22px; padding: 30px 26px; background: #fff;
    border: 1px solid var(--nova-border); box-shadow: var(--nova-shadow-soft);
    transition: transform .25s, box-shadow .25s;
}
body.theme-nova .sub-card-plan:hover { transform: translateY(-5px); box-shadow: var(--nova-shadow-lift); }
body.theme-nova .sub-card-plan.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), 0 20px 45px rgba(var(--primary-rgb),0.18);
}

/* ═══ CATALOG ═══ */
body.theme-nova .catalog-section { padding: 88px 24px 108px; max-width: 1200px; margin: 0 auto; }
body.theme-nova .catalog-section h2 { text-align: center; }
body.theme-nova .products-grid { gap: 26px; margin-top: 40px; }
body.theme-nova .product-card {
    border-radius: 22px; overflow: hidden; border: 1px solid var(--nova-border);
    background: #fff; box-shadow: var(--nova-shadow-soft);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
body.theme-nova .product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(15,23,42,.12); }
body.theme-nova .btn,
body.theme-nova .add-to-cart-btn,
body.theme-nova .category-btn { border-radius: 999px; }
body.theme-nova .category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: #fff; border-color: transparent;
}

/* ═══ TESTIMONIALS / FAQ / TRACKING ═══ */
body.theme-nova .testimonials-section,
body.theme-nova .faq-section,
body.theme-nova .tracking-section { padding: 88px 24px; }
body.theme-nova .testimonials-section h2,
body.theme-nova .faq-section h2,
body.theme-nova .tracking-section h2 { text-align: center; }
body.theme-nova .faq-item {
    border-radius: 16px; border: 1px solid var(--nova-border);
    background: #fff; box-shadow: var(--nova-shadow-soft);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    body.theme-nova .features-grid { grid-template-columns: 1fr 1fr; }
    body.theme-nova .nova-cta-inner { flex-direction: column; text-align: center; padding: 30px 26px; }
}
@media (max-width: 600px) {
    body.theme-nova .features-grid { grid-template-columns: 1fr; }
    body.theme-nova .hero-stats { gap: 18px; flex-wrap: wrap; padding: 18px 22px; }
    body.theme-nova #hero-heading { max-width: 100%; }
    body.theme-nova .hero-bg-orb-a,
    body.theme-nova .hero-bg-orb-b { width: 220px; height: 220px; }
}