/* ========================================
 * JNSMEET — UPGRADES (illustrations, layout)
 * Purple palette (#8B5CF6)
 * ======================================== */

body { opacity: 1 !important; }

.jnsmeet-content .container { max-width: 1240px; }

/* ----- Hero ----- */
.jnsmeet-hero {
    padding: calc(var(--spacing-xl) + 2rem) var(--spacing-md) var(--spacing-xl);
    text-align: left;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 55%),
        linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--spacing-lg);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.hero-text-col {
    text-align: left;
    max-width: 100%;
    align-self: start;
    padding-top: 0.35rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #A78BFA;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.hero-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A78BFA, #6D28D9);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.4);
}
.hero-eyebrow-icon img { width: 16px; height: 16px; }

.jnsmeet-hero .hero-title {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
    line-height: 1.05;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}

.jnsmeet-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 0.9rem;
}

.jnsmeet-hero .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 0 1.75rem;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-weight: 600; font-size: 0.92rem; text-decoration: none;
    transition: all 0.25s ease;
}
.hero-btn.primary {
    background: linear-gradient(135deg, #A78BFA, #6D28D9);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.hero-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139, 92, 246, 0.55); }
.hero-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.5);
}
.hero-btn.ghost:hover { background: rgba(139, 92, 246, 0.14); }

.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; color: var(--color-text-secondary); font-size: 0.82rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta i { color: #A78BFA; }

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: start;
}
.hero-visual img { width: 100%; height: auto; max-width: 640px; filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)); }

/* ----- Stats strip ----- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto var(--spacing-xl);
    max-width: 1120px;
}
.stat-cell { background: linear-gradient(180deg, #141414, #0f0f0f); padding: 1.3rem 1.2rem; text-align: left; }
.stat-cell .stat-value {
    font-size: 1.8rem; font-weight: 700; color: #A78BFA;
    line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.stat-cell .stat-label { color: var(--color-text-secondary); font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; }

/* ----- Features ----- */
.features-section .section-title { text-align: left; }
.section-kicker {
    display: block; color: #A78BFA;
    font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 8px;
}
.section-sub {
    color: var(--color-text-secondary);
    max-width: 640px; margin-bottom: var(--spacing-lg);
    font-size: 0.98rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: var(--spacing-md);
    gap: 1.5rem;
    max-width: 1120px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.55), rgba(15, 15, 15, 0.55));
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 20px;
    padding: 0;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.feature-card .feature-illus {
    width: 100%;
    aspect-ratio: 280 / 200;
    background: #0f0f0f;
    display: block;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.feature-card .feature-illus img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card .feature-body { padding: 1.25rem 1.4rem 1.5rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.55; color: var(--color-text-secondary); }
.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.55);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.feature-card::before { display: none; }

/* ----- Showcase (Recap) ----- */
.showcase-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1120px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 24px;
}
.showcase-visual img { width: 100%; height: auto; border-radius: 16px; }
.showcase-text h2 {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
    color: #A78BFA; margin-bottom: 0.9rem;
    letter-spacing: -0.01em; line-height: 1.15;
}
.showcase-text p { color: var(--color-text-secondary); margin-bottom: 1rem; line-height: 1.65; }
.showcase-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 10px; }
.showcase-list li { display: flex; align-items: flex-start; gap: 10px; color: #ffffff; font-size: 0.92rem; }
.showcase-list li::before {
    content: ''; flex-shrink: 0; margin-top: 6px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #8B5CF6; box-shadow: 0 0 10px rgba(139, 92, 246, 0.75);
}

/* ----- Benefits ----- */
.benefits-section { background: transparent; padding: var(--spacing-xl) 0; margin: 0 auto; max-width: 1120px;}
.benefits-section .section-title { text-align: left; }
.benefits-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1120px; }
.benefit-item {
    display: block; text-align: left;
    padding: 1.6rem; border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.55), rgba(15, 15, 15, 0.55));
    border: 1px solid rgba(139, 92, 246, 0.22);
    margin: 0;
}
.benefit-icon { margin-bottom: 1rem; border-radius: 14px; width: 48px; height: 48px; font-size: 1.1rem; background: linear-gradient(135deg, #A78BFA, #6D28D9); color: #ffffff; }
.benefit-text h3 { font-size: 1.05rem; }
.benefit-text p { font-size: 0.88rem; }

/* ----- CTA ----- */
.cta-section {
    max-width: 1120px;
    margin: var(--spacing-xxl, 5rem) auto 0;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 24px;
    background:
      radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.28), transparent 60%),
      radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.16), transparent 60%),
      linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(139, 92, 246, 0.35);
    position: relative; overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .showcase-section { grid-template-columns: 1fr; }
    .benefits-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) { .jnsmeet-hero { padding: 2.5rem 1rem; } .hero-visual img { max-width: 100%; } }
@media (max-width: 480px) { .stats-strip { grid-template-columns: 1fr; } .stat-cell { text-align: center; } }
