/* ── Base Variables & Reset ── */
:root {
    /* Renegade Tools Dark Space Theme */
    --bg-dark: #07050f;
    --bg-panel: rgba(28, 20, 45, 0.60);
    --bg-card: rgba(18, 12, 30, 0.70);
    --border-color: rgba(139, 92, 246, 0.20);
    --glass-edge: inset 1px 1px 1px rgba(255, 255, 255, 0.1), inset -1px -1px 1px rgba(255, 255, 255, 0.05);
    
    --text-main: #f8f6fb;
    --text-muted: #a79cba;
    
    /* Neon Accents */
    --primary: #8b5cf6;
    --accent-gold: #fbbf24;
    --primary-hover: #c084fc;
    --secondary: rgba(139, 92, 246, 0.1);
    --secondary-hover: rgba(139, 92, 246, 0.2);
    
    --accent-purple: #a855f7;
    --accent-cyan: #22d3ee;
    --accent-green: #22c55e;
    --accent-magenta: #f15bb5;
    
    --glow-spread: 0 0 60px rgba(139, 92, 246, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --ease-fluid: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes meshMove {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, -5%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05) 0%, var(--bg-dark) 40%, #050308 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.gradient-text {
    background: linear-gradient(90deg, #c084fc 0%, #e879f9 50%, #c084fc 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: textShine 4s linear infinite;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid), background-color 0.4s var(--ease-fluid), border-color 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid), color 0.4s var(--ease-fluid);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #7c3aed; /* Darker purple for better contrast with white text */
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: #6d28d9;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-main);
    border-color: var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.w-full {
    width: 100%;
}

/* ── Navigation ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 11, 13, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── Hero Section ── */
.hero-section {
    padding: 120px 24px 80px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.liquid-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vh;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
    animation: meshMove 15s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(40px, 40px, 0); }
}

@keyframes gridMoveMobile {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(24px, 24px, 0); }
}

@keyframes lightSweep {
    0% { 
        mask-position: -150% -150%; 
        -webkit-mask-position: -150% -150%; 
    }
    100% { 
        mask-position: 150% 150%; 
        -webkit-mask-position: 150% 150%; 
    }
}

.hero-grid-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    inset: -40px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

.hero-grid-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(139, 92, 246, 0.6) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.6) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(135deg, transparent 45%, black 50%, transparent 55%);
    -webkit-mask-image: linear-gradient(135deg, transparent 45%, black 50%, transparent 55%);
    mask-size: 300% 300%;
    -webkit-mask-size: 300% 300%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    animation: lightSweep 20s infinite linear;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.platform-islands {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
}

.platform-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: -0.3px;
}

.ae-icon {
    background-color: #00005b;
    color: #9999ff;
}

.pr-icon {
    background-color: #2b005b;
    color: #ea77ff;
}

.hero-title {
    font-size: 88px;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 32px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-trial-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #e9d5ff;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-green { background-color: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }
.dot-mid { background-color: var(--text-muted); }

/* Hero Demo Shell */
.hero-video-shell {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 120px rgba(139, 92, 246, 0.15);
    margin-top: 40px;
}

.hero-video-topline {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-video-topline span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-video-topline strong {
    font-size: 18px;
    color: var(--text-main);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-edge), 0 24px 60px rgba(0,0,0,0.8);
}

.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    z-index: 1;
}

.video-placeholder-inner i {
    font-size: 32px;
    color: white;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(8px);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid), background-color 0.4s var(--ease-fluid), border-color 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid), color 0.4s var(--ease-fluid);
}

.video-placeholder:hover .video-placeholder-inner i {
    background: rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.hero-video-controls {
    display: flex;
    padding: 12px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    gap: 8px;
    overflow-x: auto;
}

.hero-video-controls button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
    white-space: nowrap;
}

.hero-video-controls button:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

.hero-video-controls button.is-active {
    background: var(--secondary);
    color: var(--text-main);
    border-color: var(--border-color);
}

/* ── Social Proof ── */
.social-proof {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-text {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-muted);
}

.social-text strong {
    color: var(--text-main);
}

.social-stars {
    font-size: 14px;
    font-weight: 600;
}

.social-stars span {
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-left: 0;
    margin-top: 4px;
}

.proof-quote {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-quote span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.proof-quote strong {
    font-size: 16px;
    line-height: 1.5;
}

/* ── Sections Common ── */
.features-section, .testimonials-section, .purchase-steps-section, .pricing-section, .faq-section {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.compact {
    max-width: 600px;
    margin: 0 auto 64px;
}

.badge-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Bento Grid (Features) ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--bg-card);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid), border-color 0.4s var(--ease-fluid);
    box-shadow: var(--glass-edge), 0 12px 32px rgba(0,0,0,0.4);
    scale: var(--proximity-scale, 1);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 300px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(139, 92, 246, 0.15), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card > * {
    position: relative;
    z-index: 1;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--glass-edge), 0 24px 60px rgba(139, 92, 246, 0.15);
}

.tool-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.purple-glow, .cyan-glow, .green-glow { color: var(--primary); box-shadow: 0 0 20px rgba(255,97,0,0.15); }

.tool-meta h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.tag-premiere, .tag-ae, .tag-both { background: rgba(139, 92, 246, 0.15); color: #e879f9; border: 1px solid rgba(139, 92, 246, 0.3); }
.tool-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-edge), 0 12px 32px rgba(0,0,0,0.4);
}

.testimonial-stars {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
    font-style: italic;
    color: #e5e7eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Purchase Steps ── */
.purchase-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.purchase-steps-grid article {
    background: var(--bg-card);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: var(--glass-edge), 0 12px 32px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purchase-steps-grid article:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-edge), 0 20px 40px rgba(0,0,0,0.6);
}

.purchase-steps-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #8B5CF6 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.purchase-steps-grid article strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.purchase-steps-grid article p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ── Pricing ── */
.trial-clarity-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0 auto 48px;
    font-size: 14px;
    padding: 16px 32px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: var(--glass-edge), 0 8px 32px rgba(0,0,0,0.3);
    max-width: fit-content;
}

@media (max-width: 768px) {
    .trial-clarity-row {
        border-radius: 24px;
        flex-direction: column;
        gap: 12px;
        padding: 20px 32px;
    }
}

.trial-clarity-row strong {
    color: var(--text-main);
}

.trial-clarity-row span {
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 860px;
    margin: 40px auto 0;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 11, 15, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 30px 60px rgba(0,0,0,0.6), 0 0 80px rgba(139, 92, 246, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease;
    backface-visibility: hidden;
    will-change: transform;
    isolation: isolate;
    outline: 1px solid transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    z-index: -1;
    pointer-events: auto;
}

.pricing-card .card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(139, 92, 246, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 40px 80px rgba(0,0,0,0.8), 0 0 120px rgba(139, 92, 246, 0.15);
}

.pro-card {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(10, 11, 15, 0.6) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-top: 1px solid rgba(139, 92, 246, 0.6);
    border-left: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: inset 0 1px 1px rgba(139, 92, 246, 0.5), 0 30px 60px rgba(0,0,0,0.6), 0 0 100px rgba(139, 92, 246, 0.2);
}

.pro-card:hover {
    box-shadow: inset 0 1px 1px rgba(168, 85, 247, 0.7), 0 40px 80px rgba(0,0,0,0.8), 0 0 140px rgba(139, 92, 246, 0.4);
}

.trial-badge, .founder-badge, .badge-wrapper {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    line-height: 1.2;
    z-index: 5;
}

.trial-badge {
    background: #0f1015;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.15), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.founder-badge, .badge-wrapper {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.5);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.15;
    background: linear-gradient(90deg, #ffffff 0%, #9ca3af 33%, #6b7280 66%, #ffffff 100%);
    background-size: 300% 100%;
    animation: shimmerTextAnim 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-card .card-title {
    background: linear-gradient(90deg, #ffffff 0%, #d8b4fe 33%, #8b5cf6 66%, #ffffff 100%);
    background-size: 300% 100%;
    animation: shimmerTextAnim 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid.creator-pack-active .pro-card .card-title {
    background: linear-gradient(90deg, #ffffff 0%, #ffd700 33%, #ffaa00 66%, #ffffff 100%);
    background-size: 300% 100%;
    animation: shimmerTextAnim 4s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmerTextAnim {
    0% { background-position: 100% 50%; }
    100% { background-position: -200% 50%; }
}

.plan-fit {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 42px;
}

.price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-left: 8px;
}

.flash-price {
    color: #fff;
}

.pricing-grid.creator-pack-active .flash-price {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.price-compare {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.price-compare s {
    color: #94a3b8;
    font-size: 18px;
    text-decoration: line-through;
}

.price-compare .save-tag,
.save-tag {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.flash-price-stack {
    margin: 16px 0 12px;
}

.trial-note, .lifetime-comparison {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.trial-note i, .lifetime-comparison i {
    margin-top: 2px;
    flex-shrink: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}

.features-list li i {
    color: #4ade80;
    font-size: 0.95rem;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

.features-list li strong {
    color: #fff;
    font-weight: 600;
}

.pricing-card .btn {
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card .btn-secondary {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ── FAQ ── */
.faq-section {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}
/* ── Final CTA Section ── */
.final-cta-section {
    position: relative;
    padding: 120px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    text-align: center;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-inner h2 {
    font-size: 48px;
    margin: 16px 0;
    line-height: 1.1;
}

.final-cta-inner p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ── Footer ── */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 100px 24px 40px;
    background: var(--bg-dark);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 64px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 32px;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 12px var(--accent-green);
}

.footer-links-group {
    display: flex;
    gap: 96px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h3,
.footer-links h4,
.footer-heading {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-transform: none;
}

@media (min-width: 769px) {
    .footer-links {
        display: flex !important;
    }
    .accordion-icon {
        display: none !important;
    }
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-main);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: var(--accent-cyan);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    font-size: 18px;
    color: var(--text-muted);
}

.footer-socials a:hover {
    color: var(--text-main);
}

.footer-bottom p {
    font-size: 16px; /* Adjust this value to make the text bigger or smaller (default was 14px) */
    letter-spacing: 0.02em; /* Optional: adjusts spacing between letters */
}

/* ── Animations ── */
.fade-up {
    /* GSAP will handle the animation entirely. We only set opacity: 0 to prevent FOUC initially */
    opacity: 0;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .purchase-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 36px; }
    .hero-section { padding-top: 120px; }
    .social-proof { grid-template-columns: 1fr; gap: 24px; }
    .bento-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .purchase-steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .site-footer {
        display: block;
        width: 100%;
    }
    .footer-top { flex-direction: column; }
    .footer-links-group { flex-direction: column; gap: 40px; }
    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    .footer-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }
    .trial-clarity-row { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Plugin Interactive Showcase ── */
.plugin-showcase {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.plugin-tabs-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 6px;
    display: inline-flex;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.plugin-tabs {
    display: flex;
    gap: 8px;
}

.plugin-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
}

.plugin-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.plugin-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.plugin-window-shell {
    width: 100%;
    background: #0f1115; /* Dark panel background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 1px 1px 1px rgba(255, 255, 255, 0.05);
}

.plugin-window-header {
    background: #181a20;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.win-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.win-red { background: #ff5f56; }
.win-yellow { background: #ffbd2e; }
.win-green { background: #27c93f; }

.window-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-title span {
    font-size: 10px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.plugin-window-content {
    min-height: 400px;
    padding: 24px;
    position: relative;
}

.plugin-view {
    display: none;
}

.plugin-view.active {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.mock-ui-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 350px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.mock-ui-placeholder h3 {
    margin-bottom: 8px;
}

.mock-ui-placeholder p {
    color: var(--text-muted);
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Creator Pack Premium Styles ── */
.pricing-grid.single-card-active {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 40px auto 0;
}

.pricing-grid.single-card-active .pricing-card:not(.pro-card) {
    display: none;
}

.pricing-grid.creator-pack-active .pro-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.05);
    background: 
        radial-gradient(
            800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 215, 0, 0.15),
            transparent 40%
        ),
        linear-gradient(145deg, rgba(18, 12, 30, 0.7) 0%, rgba(30, 25, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    will-change: transform;
    isolation: isolate;
}

.pricing-grid.creator-pack-active .pro-card .card-glow {
    display: none;
}

.pricing-grid.creator-pack-active .pro-card:hover {
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2), inset 0 0 40px rgba(255, 215, 0, 0.1);
}

.pricing-grid.creator-pack-active .pro-card > * {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-grid.creator-pack-active .pro-card:hover > *:not(.card-glow):not(.founder-badge):not(.trial-badge) {
    transform: translateZ(20px);
}

.pricing-grid.creator-pack-active .pro-card:hover > .founder-badge,
.pricing-grid.creator-pack-active .pro-card:hover > .trial-badge {
    transform: translateX(-50%) translateZ(20px);
}

.pricing-grid.creator-pack-active .pro-card .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #ffdf00 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #111;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    animation: goldShine 3s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-grid.creator-pack-active .pro-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.pricing-grid.creator-pack-active .pro-card .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: buttonSweep 5s ease-in-out infinite;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes buttonSweep {
    0% { left: -60%; }
    40% { left: 120%; }
    100% { left: 120%; }
}

.save-badge {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 5px rgba(138, 43, 226, 0.3); }
    to { box-shadow: 0 0 15px rgba(138, 43, 226, 0.6); }
}

/* Update pulseGlow for creator pack badge */
.pricing-grid.creator-pack-active .save-badge, .pricing-grid.creator-pack-active .founder-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid #ffd700;
    animation: pulseGoldGlow 2s infinite alternate;
}

.pricing-grid.creator-pack-active .features-list i {
    color: #ffd700 !important;
}

@keyframes pulseGoldGlow {
    from { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
}

/* ── User Profile Dropdown ── */
.user-profile-container {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px 6px 6px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: rgba(18, 12, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), color 0.3s var(--ease-fluid);
    z-index: 200;
}

.profile-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.profile-dropdown a i {
    width: 16px;
    text-align: center;
    font-size: 16px;
    color: var(--primary);
}

.profile-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.profile-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* ── Professional Dashboard ── */
.dashboard-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.plugin-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid), border-color 0.4s var(--ease-fluid);
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-edge), 0 12px 32px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.plugin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 300px at center, rgba(139, 92, 246, 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.plugin-card:hover::before {
    opacity: 1;
}

.plugin-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--glass-edge), 0 24px 60px rgba(139, 92, 246, 0.15);
}

.plugin-card > * {
    position: relative;
    z-index: 1;
}

.plugin-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.plugin-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.plugin-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.plugin-status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: inline-block;
    text-transform: uppercase;
}

.plugin-status.inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.license-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.license-section label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.license-key-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s;
}

.license-key-display:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.license-key-text {
    font-family: monospace;
    font-size: 16px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: var(--primary);
}

.hardware-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: auto;
}

.hardware-info i {
    margin-right: 8px;
    color: var(--primary);
}

.plugin-card-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: var(--glass-edge), 0 12px 32px rgba(0,0,0,0.4);
}

.dashboard-empty i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dashboard-empty p {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 24px;
}

/* Premium Empty State */
.premium-empty {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.premium-empty::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.empty-icon-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    position: relative;
}

.empty-icon-glow::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: pulseGlow 2s infinite alternate;
}

.empty-icon-glow i {
    font-size: 32px;
    color: #e879f9;
    margin: 0;
}

.premium-empty h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    background: linear-gradient(90deg, #fff 0%, #a79cba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-empty p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ── Extracted from index.html ── */
        /* Override parent constraint to unlock the full width */
        .plugin-showcase { max-width: 100% !important; }
        .plugin-showcase-split {
            display: flex;
            flex-wrap: nowrap;
            gap: 40px;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 4%;
            box-sizing: border-box;
        }
        @media (max-width: 1100px) {
            .plugin-showcase-split {
                flex-wrap: wrap;
            }
        }
        .plugin-showcase-split .plugin-window-shell {
            flex: 1 1 50%;
            width: 100%;
            max-width: 650px;
            margin: 0;
            /* Antigravity Weightless Shadow (Subtle) */
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
            transform-style: preserve-3d;
            will-change: transform;
        }
        .plugin-info-panel {
            flex: 1 1 50%;
            width: 100%;
            max-width: 550px;
            text-align: left;
            background: rgba(18, 12, 30, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 50px;
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            /* Antigravity Deep Glass Shadow (Subtle) */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            will-change: transform;
        }
        .plugin-info-content {
            display: none;
        }
        .plugin-info-content.active {
            display: block;
        }
        .plugin-info-content h3 {
            font-size: 32px;
            color: #FFF;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .plugin-features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
        }
        .plugin-features-list li {
            font-size: 15px;
            color: #A0A0A0;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            line-height: 1.6;
        }
        .plugin-features-list li .feat-icon {
            color: var(--primary);
            background: rgba(139, 92, 246, 0.1);
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }
        .plugin-features-list li .feat-text strong {
            color: #E5E5E5;
            display: block;
            margin-bottom: 2px;
            font-size: 16px;
        }
        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #FFF;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
            text-decoration: none;
        }
        .learn-more-btn:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: #8b5cf6;
            color: #8b5cf6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
        }

/* ── Mobile Menu & Enhanced Responsiveness ── */
/* ── Mobile-Only Elements (Hidden on Desktop) ── */
.mobile-menu-btn,
.mobile-menu-backdrop,
.mobile-menu-overlay,
.mobile-product-card-hero,
.mobile-btn {
    display: none !important;
}

@media (max-width: 768px) {
    /* ── Header & Navigation ── */
    .site-header {
        position: fixed !important;
        top: 12px !important;
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        margin: 0 auto !important;
        border-radius: 22px !important;
        /* Dashboard Glass Reference */
        background: rgba(20, 20, 25, 0.55) !important;
        backdrop-filter: blur(28px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
        box-shadow:
            0 0 0 0.5px rgba(139, 92, 246, 0.25),
            0 8px 32px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 1000 !important;
    }

    .site-header.scrolled {
        background: rgba(14, 14, 20, 0.78) !important;
        border-color: rgba(255, 255, 255, 0.13) !important;
        box-shadow:
            0 0 0 0.5px rgba(139, 92, 246, 0.35),
            0 12px 40px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        /* Glass button matching dashboard card aesthetic */
        background: rgba(139, 92, 246, 0.08);
        border: 1px solid rgba(139, 92, 246, 0.22);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: var(--text-main);
        font-size: 17px;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .mobile-menu-btn:active,
    .mobile-menu-btn:hover {
        background: rgba(139, 92, 246, 0.18);
        border-color: rgba(139, 92, 246, 0.45);
        box-shadow: 0 0 12px rgba(139, 92, 246, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Floating Overlay Sheet */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        max-height: calc(85vh - 76px);
        background: rgba(15, 17, 24, 0.94);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        z-index: 999;
        flex-direction: column;
        overflow: hidden;
        transform: translateY(-12px) scale(0.98);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.3s;
    }

    .mobile-menu-overlay.active {
        display: flex !important;
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        padding: 24px 20px 12px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-group-label {
        font-family: var(--font-heading, sans-serif);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 6px;
        padding-left: 12px;
    }

    .mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--font-body, sans-serif);
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        padding: 12px 14px;
        border-radius: 14px;
        background: transparent;
        transition: all 0.2s ease;
    }

    .mobile-nav-item i {
        font-size: 15px;
        color: var(--primary);
        width: 20px;
        text-align: center;
    }

    .mobile-nav-item:active,
    .mobile-nav-item:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .mobile-menu-footer {
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(10, 11, 15, 0.5);
        flex-shrink: 0;
    }

    .mobile-menu-footer .auth-nav-btn,
    .mobile-menu-footer .user-profile-container,
    .mobile-menu-footer .profile-trigger {
        width: 100%;
    }

    .mobile-menu-footer .profile-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-footer .profile-dropdown {
        top: auto;
        bottom: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        transform: translateY(10px);
    }

    .mobile-menu-footer .profile-dropdown.active {
        transform: translateY(0);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Enable premium scaled-down background grid lines and purple light sweep on mobile view */
    .hero-grid-wrapper,
    .hero-grid-overlay {
        display: block !important;
    }

    .hero-grid-wrapper {
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        mask-image: radial-gradient(ellipse at center, black 50%, transparent 95%) !important;
        -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 95%) !important;
    }

    .hero-grid-overlay {
        background-size: 24px 24px !important;
        animation: gridMoveMobile 20s linear infinite !important;
    }

    .hero-grid-overlay::before {
        background-size: 24px 24px !important;
    }

    /* ── Unified Section Spacing & Layout Fit ── */
    .hero-section {
        padding: 124px 16px 36px !important;
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .features-section {
        padding: 28px 16px 32px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .testimonials-section,
    .purchase-steps-section,
    .pricing-section,
    .faq-section {
        padding: 32px 16px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .social-proof {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px !important;
        padding: 0 16px !important;
    }

    .social-text {
        font-size: 15.5px !important;
        line-height: 1.5 !important;
    }

    .proof-quote {
        padding: 14px 16px !important;
        gap: 5px !important;
        border-radius: 12px !important;
    }

    .proof-quote span {
        font-size: 10.5px !important;
        letter-spacing: 0.06em !important;
    }

    .proof-quote strong {
        font-size: 13.5px !important;
        line-height: 1.45 !important;
    }

    .final-cta-section {
        padding: 32px 16px !important; /* Reduced from 56px */
        box-sizing: border-box;
    }

    .final-cta-inner h2 {
        font-size: 24px !important; /* Reduced from 32px */
        line-height: 1.2 !important;
        margin-top: 8px !important; /* Reduced from 16px */
    }

    .final-cta-inner p {
        font-size: 13px !important; /* Reduced from 15px */
        margin-bottom: 20px !important; /* Reduced from 24px */
        padding: 0 10px !important;
    }

    .final-cta-actions {
        flex-direction: column !important;
        gap: 10px !important; /* Reduced gap between buttons */
        width: 100% !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
    
    .final-cta-actions .btn {
        width: 100% !important;
    }

    .section-header {
        margin-bottom: 24px !important; /* Reduced from 32px */
        text-align: center;
    }

    .section-header .badge-pill {
        font-size: 10px !important; 
        padding: 3px 10px !important;
        margin-bottom: 12px !important;
    }

    .section-header h2 {
        font-size: 22px !important; /* Reduced from 26px */
        line-height: 1.2 !important;
        margin-bottom: 8px !important; /* Reduced from 10px */
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 13px !important; /* Reduced from 15px */
        line-height: 1.4 !important;
        padding: 0 10px !important; /* Adds a bit of breathing room on the edges */
    }

    /* Allow hero title break for proper 2-line arrangement */
    .hero-title br {
        display: block !important;
    }
    .hero-subtitle br,
    .section-header br {
        display: none !important;
    }

    /* ── Hero Section Scaling & Fit Adjustment ── */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Platform Bar (Scaled Down) */
    .platform-islands {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        position: relative !important;
        z-index: 2 !important;
        flex-shrink: 0 !important;
    }

    .platform-pill {
        padding: 2px 8px 2px 3px !important;
        border-radius: 100px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }

    .platform-pill span {
        font-size: 10px !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        white-space: nowrap !important;
    }

    .platform-icon {
        width: 15px !important;
        height: 15px !important;
        font-size: 8.5px !important;
        border-radius: 4px !important;
    }

    /* Hero Title: Scaled Up Massive Headline */
    .hero-title {
        font-size: clamp(38px, 11vw, 48px) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.04em !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Hero Subtitle */
    .hero-subtitle {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        color: rgba(220, 220, 235, 0.82) !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        padding: 0 4px !important;
        max-width: 360px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-trial-line {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #e9d5ff !important;
        background: rgba(139, 92, 246, 0.16) !important;
        border: 1px solid rgba(139, 92, 246, 0.35) !important;
        border-radius: 100px !important;
        padding: 6px 16px !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        letter-spacing: 0.01em !important;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2) !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 24px auto !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .hero-buttons .btn {
        width: 100% !important;
        min-height: 48px !important;
        height: 48px !important;
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
        flex: none !important;
    }

    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }

    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    }

    /* Hero Trust Line with Sleek Glass Badges */
    .hero-trust {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px 10px !important;
        font-size: 12px !important;
        width: 100% !important;
        max-width: 360px !important;
        padding: 0 !important;
        box-sizing: border-box;
        margin: 0 auto 32px auto !important;
    }

    .trust-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
        color: rgba(255, 255, 255, 0.8) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 5px 10px !important;
        border-radius: 8px !important;
        font-size: 11.5px !important;
        font-weight: 500 !important;
    }

    .trust-item .dot {
        display: inline-block !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background-color: #22c55e !important;
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.8) !important;
        flex-shrink: 0 !important;
    }

    /* ── Hero Video Shell ── */
    .hero-video-shell {
        height: auto !important;
        margin: 28px 0 0 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 16px;
    }

    .hero-video-topline {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hero-video-topline strong {
        font-size: 13px;
        line-height: 1.35;
    }

    .hero-video-controls {
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 6px !important;
        position: relative !important;
        bottom: 0 !important;
        margin-top: 0 !important;
        padding: 8px !important;
    }

    .hero-video-controls button {
        font-size: 12px !important;
        padding: 8px 12px !important;
        white-space: nowrap;
        border-radius: 8px;
        flex: 1 1 auto;
        text-align: center;
    }

    /* ── Grids & Cards ── */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .testimonials-grid,
    .purchase-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .tool-card {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        box-sizing: border-box;
    }

    /* ── Compact Scaled-Down How It Works Section ── */
    .purchase-steps-grid article {
        padding: 12px 14px !important; /* Reduced inner padding */
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .purchase-steps-grid article span {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
        border-radius: 5px !important;
        margin-bottom: 8px !important;
    }

    .purchase-steps-grid article strong {
        font-size: 13.5px !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }

    .purchase-steps-grid article p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        color: rgba(200, 200, 215, 0.75) !important;
    }

    /* ── Compact Scaled-Down Testimonial Cards ── */
    .testimonial-card {
        padding: 12px 14px 10px 14px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .testimonial-stars {
        font-size: 9.5px !important;
        padding: 3px 8px !important;
        margin-bottom: 10px !important;
        border-radius: 6px !important;
        align-self: flex-start !important;
    }

    .testimonial-quote {
        font-size: 12.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 14px !important;
        color: rgba(225, 225, 235, 0.9) !important;
    }

    .testimonial-author {
        gap: 8px !important;
    }

    .testimonial-author img {
        width: 28px !important;
        height: 28px !important;
    }

    .testimonial-author strong {
        font-size: 12.5px !important;
        line-height: 1.2 !important;
    }

    .testimonial-author span {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    /* ── Mobile Product Card Showcase ── */
    .plugin-window-shell {
        display: none !important;
    }

    .plugin-showcase-split {
        flex-direction: column !important;
        padding: 0 !important;
    }

    .mobile-product-card-hero {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 18px !important;
        border-radius: 20px !important;
        margin-bottom: 16px !important;
        gap: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-sizing: border-box;
    }

    .mobile-product-card-hero h4 {
        font-size: 24px !important;
        color: white;
        margin: 0;
        font-weight: 800;
    }

    .mobile-product-card-hero p {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
        line-height: 1.5;
    }

    .hero-plugin-icon {
        font-size: 40px !important;
        margin-bottom: 8px;
    }

    /* ── Compact Plugin Info Card for Mobile ── */
    .plugin-info-panel {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .plugin-info-content h3 {
        font-size: 20px !important;
        margin-bottom: 14px !important;
        line-height: 1.25 !important;
    }

    .plugin-features-list {
        margin-bottom: 16px !important;
    }

    .plugin-features-list li {
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin-bottom: 18px !important;
        gap: 12px !important;
    }

    .plugin-features-list li .feat-icon {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
        flex-shrink: 0;
    }

    .plugin-features-list li .feat-text strong {
        font-size: 13.5px !important;
        margin-bottom: 1px !important;
        line-height: 1.3 !important;
    }

    .learn-more-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 12px !important;
        padding: 10px 16px !important;
        font-size: 13.5px !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
    }

    /* ── Sleek Compact Currency Toggle Switch ── */
    .currency-toggle-container {
        display: flex !important;
        width: auto !important;
        max-width: fit-content !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        gap: 10px !important;
        font-size: 13px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .currency-toggle-container label.switch {
        position: relative !important;
        display: inline-block !important;
        width: 44px !important;
        height: 24px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .currency-toggle-container label.switch #slider-knob {
        position: absolute !important;
        height: 18px !important;
        width: 18px !important;
        left: 3px !important;
        bottom: 3px !important;
        border-radius: 50% !important;
        background-color: #ffffff !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
    }

    .currency-toggle-container span#currency-usd,
    .currency-toggle-container span#currency-inr {
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }

    /* Home Page Currency Toggle (Compact Glass Pill Container) */
    .currency-toggle-container.home-currency-toggle {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 24px auto !important;
        padding: 6px 18px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 100px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
        width: fit-content !important;
        max-width: fit-content !important;
        gap: 10px !important;
    }

    .currency-toggle-btn {
        padding: 6px 14px !important;
        font-size: 13px !important;
    }

    .plugin-tabs-container {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 4px !important;
        padding: 4px !important;
        border-radius: 100px !important;
        box-sizing: border-box !important;
        margin-bottom: 10px !important; /* Reduced from 24px to tighten the gap */
    }

    .plugin-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 4px !important;
        width: 100% !important;
    }

    .plugin-tab {
        flex: 1 1 0px !important;
        padding: 8px 4px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        border-radius: 100px !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
        min-width: 0 !important;
    }

    /* ── Compact Pricing Cards ── */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important; /* Added padding to keep it off the screen edges */
        margin: 0 !important;
        gap: 24px !important;
        box-sizing: border-box;
    }

    .pricing-card {
        margin: 0 auto !important; /* Center the card */
        width: 100% !important;
        max-width: 340px !important; /* Prevents the card from stretching too wide */
        box-sizing: border-box !important;
        padding: 20px 16px !important; /* Reduced inner padding */
        border-radius: 16px !important;
        position: relative !important;
    }

    .pricing-card .card-title {
        font-size: 36px !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 6px !important;
    }

    .pricing-card .plan-fit {
        font-size: 13.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .pricing-card .price {
        font-size: 48px !important;
        font-weight: 800 !important;
        margin-bottom: 6px !important;
    }

    .pricing-card #dynamic-price-header s,
    .pricing-card .flash-price-stack s,
    .pricing-card .price-anchor,
    .pricing-card s {
        font-size: 16px !important;
    }

    .pricing-card #dynamic-price-header span,
    .pricing-card .flash-price-stack > div > span {
        font-size: 12px !important;
        padding: 3px 8px !important;
    }

    .pricing-card .price span {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .pricing-card .features-list li {
        font-size: 13px !important;
        line-height: 1.4 !important;
        padding: 3px 0 !important;
        margin-bottom: 3px !important;
    }

    .pricing-grid.single-card-active {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .pricing-card {
        margin: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 28px 20px !important;
        border-radius: 20px !important;
    }

    .pricing-card .card-title {
        font-size: 36px !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 8px !important;
    }

    .pricing-card .pricing-features {
        margin: 20px 0 !important;
        gap: 10px !important;
    }

    .pricing-card .pricing-features li {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .pricing-card .btn:not([style*="display: none"]):not([style*="display:none"]) {
        width: 100% !important;
        min-height: 40px !important;
        height: 40px !important;
        padding: 8px 16px !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .pricing-card .btn[style*="display: none"],
    .pricing-card .btn[style*="display:none"] {
        display: none !important;
    }

    /* ── FAQ Section ── */
    .faq-container {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .faq-question {
        padding: 16px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
    }

    .faq-answer {
        padding: 0 16px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: var(--text-muted);
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 14px !important;
    }

    /* Scale down the System Status pill on mobile */
    .system-status {
        font-size: 11px !important;
        padding: 4px 10px !important;
        gap: 5px !important;
        margin-bottom: 14px !important;
    }
    
    .system-status .status-dot {
        width: 5px !important;
        height: 5px !important;
        box-shadow: 0 0 6px var(--accent-green) !important;
    }

    /* ── Site Footer ── */
    .site-footer {
        padding: 40px 20px 16px !important; 
        box-sizing: border-box;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 32px !important;
        margin-bottom: 24px !important;
    }

    .footer-brand {
        max-width: 100% !important;
        margin-bottom: 0;
    }

    .footer-brand p {
        margin-top: 12px !important;
        margin-bottom: 16px !important;
        font-size: 13px !important; 
    }

    /* Force the parent container to stack vertically */
    .footer-links-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }

    /* Force each dropdown section to span the entire width */
    .footer-section {
        width: 100% !important; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 0 !important;
    }

    /* Flexbox formats the accordion headers */
    .footer-heading {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important; 
        padding: 14px 0 !important;
        margin: 0 !important;
        cursor: pointer;
        font-size: 0.95rem !important; 
    }

    /* Push the icon to the far right */
    .accordion-icon {
        font-size: 0.85rem !important;
        margin-left: auto !important; 
        transition: transform 0.3s ease !important;
        color: var(--text-muted);
    }

    /* Hide links by default on mobile */
    .footer-links {
        display: none !important; 
        flex-direction: column !important;
        padding-bottom: 16px !important;
        gap: 12px !important;
    }

    .footer-links a {
        font-size: 0.9rem !important; 
        padding: 4px 0 !important;
    }

    /* Active State (Dropdown open) */
    .footer-section.is-active .footer-links {
        display: flex !important;
    }
    .footer-section.is-active .accordion-icon {
        transform: rotate(45deg) !important; 
        color: var(--primary) !important; 
    }

    /* Hide links by default on mobile */
    .footer-links {
        display: none !important; 
        flex-direction: column !important;
        gap: 12px !important;
        min-width: 100px !important;
        padding-bottom: 16px !important;
    }

    /* Active State (Dropdown open) */
    .footer-section.is-active .footer-links {
        display: flex !important;
    }
    
    /* Rotate the plus icon to an X when open */
    .footer-section.is-active .accordion-icon {
        transform: rotate(45deg) !important; 
        color: var(--primary) !important; 
    }

    .footer-links h3,
    .footer-links h4,
    .footer-heading {
        font-family: var(--font-heading) !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        color: var(--text-main) !important;
        margin-bottom: 14px !important;
        text-transform: none !important;
    }

    .footer-links a {
        font-size: 14px !important;
        color: var(--text-muted) !important;
        padding: 2px 0 !important;
        display: block !important;
    }

    .footer-bottom {
        flex-direction: column-reverse !important;
        text-align: center !important;
        gap: 12px !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom p {
        font-size: 12px !important; 
    }

    .footer-socials {
        justify-content: center !important;
    }
}


/* ==========================================================================
   Premium Toast Notifications
   ========================================================================== */
.mk-toast-container {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.mk-toast {
    background: rgba(24, 24, 27, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.mk-toast.mk-toast-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mk-toast.mk-toast-hiding {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-toast-icon {
    font-size: 20px;
}

.mk-toast-error .mk-toast-icon { color: #f87171; text-shadow: 0 0 12px rgba(248, 113, 113, 0.4); }
.mk-toast-success .mk-toast-icon { color: #4ade80; text-shadow: 0 0 12px rgba(74, 222, 128, 0.4); }
.mk-toast-info .mk-toast-icon { color: #60a5fa; text-shadow: 0 0 12px rgba(96, 165, 250, 0.4); }

.mk-toast-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 6px 16px; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 600; font-family: inherit; margin-left: 10px; transition: all 0.2s; }
.mk-toast-btn:hover { background: rgba(255,255,255,0.25); }

/* ==========================================================================
   Pricing Currency Toggle
   ========================================================================== */
.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-switch .slider-knob {
    position: absolute;
    content: '';
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pricing-switch input:checked + .slider {
    background-color: #9061f9;
}

.pricing-switch input:checked + .slider .slider-knob {
    transform: translateX(28px);
}

@media (max-width: 768px) {
    .pricing-switch {
        width: 44px;
        height: 24px;
    }
    .pricing-switch .slider-knob {
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
    }
    .pricing-switch input:checked + .slider .slider-knob {
        transform: translateX(20px);
    }
}
