/* MeetFest 2026 Refresh (Index-only for now) */

/*
        2026 patterns applied (keeps brand palette):
        - Bento grids / asymmetrical layouts
        - Glass depth + subtle texture
        - Bold, editorial typography and spacing
        */

        body.mf-2026 {
            background:
                radial-gradient(1100px 650px at 18% 18%, rgba(168, 128, 174, 0.22), transparent 55%),
                radial-gradient(900px 520px at 88% 22%, rgba(105, 181, 227, 0.18), transparent 55%),
                radial-gradient(1000px 700px at 55% 95%, rgba(234, 133, 231, 0.12), transparent 60%),
                var(--background);
        }

        body.mf-2026::after {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.06;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
            z-index: 0;
        }

        .mf-container {
            width: min(1120px, calc(100% - 3rem));
            margin: 0 auto;
        }

        /* Restore animations in case animations.css is not parsed */
        @keyframes mfFadeInUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: mfFadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }

        @media (prefers-reduced-motion: reduce) {
            .fade-in-up {
                animation: none !important;
            }
        }

        /* Header: cleaner glass bar */
        .mf-2026 .header {
            background: rgba(12, 12, 12, 0.62);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
        }

        .mf-2026 .cta-button {
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
        }

        .mf-2026 .cta-button:hover {
            box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
        }

        .mf-2026 a:focus-visible,
        .mf-2026 button:focus-visible {
            outline: 2px solid rgba(105, 181, 227, 0.9);
            outline-offset: 3px;
            border-radius: 14px;
        }

        /* Main content: softer transition from hero */
        .mf-2026 .main-content {
            background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 1) 180px);
            box-shadow: none;
        }

        /* Hero: editorial card + bento panels */
        .mf-2026 .hero-text {
            padding: 0;
            transform: none;
            height: 100vh;
            width: 100%;
            max-width: none;
            display: flex;
            align-items: center;
        }

        .mf-2026 .hero-text h1 {
            font-size: clamp(44px, 5.4vw, 82px);
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
        }

        .mf-2026 .hero-text p {
            font-size: clamp(16px, 1.45vw, 20px);
            margin-bottom: 1.5rem;
            max-width: 52ch;
        }

        .mf-2026 .mf-hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 18px;
            align-items: end;
            padding: 6.5rem 0 3rem;
        }

        .mf-2026 .mf-hero-card {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            backdrop-filter: none;
            box-shadow: none;
        }

        .mf-2026 .mf-hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .mf-2026 .mf-icon-btn {
            width: 46px;
            height: 46px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .mf-2026 .mf-icon-btn:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.085);
        }

        .mf-2026 .mf-hero-panels {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .mf-2026 .mf-panel {
            background: rgba(12, 12, 12, 0.42);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            padding: 18px;
            backdrop-filter: blur(14px);
        }

        .mf-2026 .mf-panel-number {
            font-size: 34px;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .mf-2026 .mf-panel-label {
            color: var(--text-secondary);
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .mf-2026 .mf-panel-feature {
            display: grid;
            grid-template-columns: 40px 1fr;
            gap: 12px;
            align-items: center;
        }

        .mf-2026 .mf-panel-icon {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .mf-2026 .mf-panel-title {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        @media (max-width: 980px) {
            .mf-container {
                width: min(1120px, calc(100% - 2rem));
            }

            .mf-2026 .mf-hero-grid {
                grid-template-columns: 1fr;
                padding: 6.2rem 0 2.5rem;
            }

            .mf-2026 .mf-hero-card {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .mf-2026 .hero-text h1 {
                text-align: center;
            }

            .mf-2026 .hero-text p {
                text-align: center;
            }

            .mf-2026 .mf-hero-actions {
                justify-content: center;
            }
        }

        /* Stats: align title + cards, softer card style */
        .mf-2026 .stats-section {
            padding: 6.5rem 0;
            background-size: cover;
            background-position: center;
        }

        .mf-2026 .stats-container {
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 20px;
            align-items: end;
        }

        .mf-2026 .stats-section h2 {
            padding-bottom: 0;
            text-align: left;
            line-height: 1;
        }

        .mf-2026 .stats-card-container {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .mf-2026 .stat-card {
            background: rgba(12, 12, 12, 0.56);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: none;
        }

        .mf-2026 .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
        }

        @media (max-width: 980px) {
            .mf-2026 .stats-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .mf-2026 .stats-section h2 {
                text-align: center;
            }

            .mf-2026 .stats-card-container {
                justify-content: center;
            }
        }

        @media (max-width: 560px) {
            .mf-2026 .stats-card-container {
                grid-template-columns: 1fr;
            }
        }

        /* Section titles: modern scale + left aligned */
        .mf-2026 .features,
        .mf-2026 .gallery-section,
        .mf-2026 .how-it-works,
        .mf-2026 .faq-section,
        .mf-2026 .cta-section {
            padding: 6.5rem 0;
        }

        .mf-2026 .section-title {
            text-align: left;
            font-size: clamp(28px, 3.2vw, 44px);
            letter-spacing: -0.03em;
            margin-bottom: 1.75rem;
        }

        .mf-2026 .gallery-section,
        .mf-2026 .faq-section {
            background: rgba(255, 255, 255, 0.03);
            background-blend-mode: lighten;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Features: bento grid */
        .mf-2026 .features-grid {
            max-width: none;
            margin: 0;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 14px;
        }

        .mf-2026 .feature-card {
            grid-column: span 6;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 28px;
            padding: 26px;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
        }

        .mf-2026 .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 34px 100px rgba(0, 0, 0, 0.62);
        }

        .mf-2026 .feature-card:nth-child(1) {
            grid-column: span 7;
        }

        .mf-2026 .feature-card:nth-child(2) {
            grid-column: span 5;
        }

        .mf-2026 .feature-card:nth-child(3) {
            grid-column: span 5;
        }

        .mf-2026 .feature-card:nth-child(4) {
            grid-column: span 7;
        }

        .mf-2026 .feature-icon {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 18px;
        }

        @media (max-width: 980px) {
            .mf-2026 .feature-card {
                grid-column: span 12;
            }
        }

        /* Gallery: edge fades + device-like frames */
        .mf-2026 .mf-slider-shell {
            position: relative;
        }

        .mf-2026 .mf-slider-shell::before,
        .mf-2026 .mf-slider-shell::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            pointer-events: none;
            z-index: 2;
        }

        .mf-2026 .screenshots-slider {
            max-width: none;
            margin: 0;
            gap: 16px;
            padding: 18px 8px 32px;
            scroll-padding: 24px;
        }

        .mf-2026 .mf-shot {
            padding: 10px;
            border-radius: 34px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
        }

        .mf-2026 .screenshot-item img {
            border-radius: 24px;
            box-shadow: none;
            margin: 0;
            display: block;
        }

        /* Steps: bento cards */
        .mf-2026 .steps {
            max-width: none;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .mf-2026 .step {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            padding: 22px;
            align-items: flex-start;
        }

        .mf-2026 .step-number {
            min-width: 46px;
            height: 46px;
            border-radius: 16px;
            font-size: 1.05rem;
        }

        @media (max-width: 980px) {
            .mf-2026 .steps {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ: glass list */
        .mf-2026 .faq-container {
            max-width: none;
        }

        .mf-2026 .faq-item {
            background: rgba(12, 12, 12, 0.56);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 22px;
        }

        .mf-2026 .faq-question {
            padding: 1.25rem 1.35rem;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
        }

        .mf-2026 .faq-icon {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        /* CTA: gradient frame card */
        .mf-2026 .cta-section {
            background: transparent;
        }

        .mf-2026 .mf-cta-card {
            background: var(--gradient);
            border-radius: 34px;
            padding: 54px 32px;
            position: relative;
            overflow: hidden;
        }

        .mf-2026 .mf-cta-card::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: 33px;
            background: rgba(12, 12, 12, 0.55);
            backdrop-filter: blur(14px);
        }

        .mf-2026 .mf-cta-card > * {
            position: relative;
        }

        .mf-2026 .cta-section h2 {
            font-size: clamp(30px, 3.4vw, 52px);
            letter-spacing: -0.03em;
        }

/* ========================================
   Detail Pages (About, Mission, Terms, Privacy)
   ======================================== */

body.mf-2026 {
    --mf-glass-bg: rgba(12, 12, 12, 0.56);
    --mf-glass-bg-soft: rgba(255, 255, 255, 0.04);
    --mf-glass-border: rgba(255, 255, 255, 0.12);
    --mf-glass-inset: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    --mf-glass-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.mf-2026 .legal-container {
    width: min(980px, calc(100% - 3rem));
    max-width: none;
    padding: 120px 0 90px;
}

.mf-2026 .legal-header {
    margin: 0 0 26px;
    padding: 34px 24px;
    background: var(--mf-glass-bg);
    border: 1px solid var(--mf-glass-border);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: var(--mf-glass-shadow);
}

.mf-2026 .header-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
    margin: 0 auto 20px;
}

.mf-2026 .legal-title {
    font-size: clamp(32px, 3.2vw, 54px);
    letter-spacing: -0.03em;
}

.mf-2026 .legal-subtitle {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.mf-2026 .hero-section,
.mf-2026 .content-section,
.mf-2026 .team-member-card,
.mf-2026 .mission-box,
.mf-2026 .member-journey,
.mf-2026 .quick-nav,
.mf-2026 .last-updated,
.mf-2026 .important-notice,
.mf-2026 .contact-info,
.mf-2026 .contact-section,
.mf-2026 .value-card,
.mf-2026 .section {
    background: var(--mf-glass-bg);
    border: 1px solid var(--mf-glass-border);
    border-radius: 24px;
    box-shadow: var(--mf-glass-inset);
    backdrop-filter: blur(14px);
}

.mf-2026 .content-section:hover,
.mf-2026 .team-member-card:hover,
.mf-2026 .section:hover,
.mf-2026 .value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--mf-glass-shadow);
}

.mf-2026 .hero-section {
    padding: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.mf-2026 .hero-section h2,
.mf-2026 .hero-section h3 {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.mf-2026 .hero-section p {
    font-size: 1rem;
    max-width: 70ch;
    margin: 0 auto;
}

.mf-2026 .last-updated,
.mf-2026 .important-notice {
    margin-top: 0;
}

.mf-2026 .quick-nav-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.mf-2026 .quick-nav-item:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(255, 255, 255, 0.22);
}

.mf-2026 .section-header {
    background: rgba(255, 255, 255, 0.03);
}

.mf-2026 .section-header h2 {
    letter-spacing: -0.02em;
}

.mf-2026 .section-arrow {
    opacity: 0.9;
}

.mf-2026 .mf-emoji {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
}

.mf-2026 .mf-icon {
    text-align: center;
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
}

.mf-2026 .value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
    margin-bottom: 12px;
}

.mf-2026 .mf-quote-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent);
    margin: 0 auto 16px;
}

.mf-2026 .mf-quote {
    text-align: center;
    margin: 40px 0;
    padding: 30px 22px;
    background: var(--mf-glass-bg);
    border: 1px solid var(--mf-glass-border);
    border-radius: 24px;
    box-shadow: var(--mf-glass-inset);
    backdrop-filter: blur(14px);
}

.mf-2026 .mf-quote-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.mf-2026 .mf-quote-author {
    font-size: 14px;
    opacity: 0.85;
    color: var(--text-secondary);
    margin: 0;
}

.mf-2026 .legal-container a:not(.quick-nav-item) {
    color: var(--accent);
    text-underline-offset: 3px;
}

.mf-2026 .legal-container a:not(.quick-nav-item):hover {
    color: var(--text);
}

.mf-2026 .privacy-principle {
    margin: 26px 0;
    padding: 22px;
    background: var(--mf-glass-bg);
    border: 1px solid var(--mf-glass-border);
    border-radius: 24px;
    box-shadow: var(--mf-glass-inset);
    backdrop-filter: blur(14px);
}

.mf-2026 .privacy-principle h4 {
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.mf-2026 .privacy-principle p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Tables (privacy) */
.mf-2026 .data-table {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.mf-2026 .data-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
}

.mf-2026 .data-table th,
.mf-2026 .data-table td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    vertical-align: top;
}

.mf-2026 .data-table th {
    position: sticky;
    top: 0;
    background: rgba(12, 12, 12, 0.72);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mf-2026 .data-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 980px) {
    .mf-2026 .legal-container {
        width: min(980px, calc(100% - 2rem));
        padding: 110px 0 80px;
    }
}
