/* CoreX × MUUUH! Partnership Microsite */
:root {
    --bg-cream: #FAF7F5;
    --bg-white: #FFFFFF;
    --purple: #6B21A8;
    --purple-light: #F3E8FF;
    --purple-dark: #4C1D95;
    --muuuh-dark: #1A0A2E;
    --muuuh-purple: #2D0A4E;
    --lime: #D4FF00;
    --lime-dark: #B8E600;
    --red: #E11D48;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--bg-cream);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 255, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo-partnership {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
}

.logo-x { color: var(--red); }

.logo-divider {
    color: var(--lime);
    font-size: 18px;
    font-weight: 300;
}

.corex-logo-img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
}

.muuuh-logo {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    object-fit: cover;
    z-index: 1;
    animation: slowZoom 30s ease-in-out infinite alternate;
    filter: saturate(1.2) contrast(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.82) 0%, rgba(45, 10, 78, 0.72) 40%, rgba(107, 33, 168, 0.6) 70%, rgba(212, 255, 0, 0.08) 100%);
    z-index: 2;
}

.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 60%, rgba(212, 255, 0, 0.06) 0%, transparent 60%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 80px 24px 0;
}

.hero-partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212, 255, 0, 0.4);
    border-radius: 50px;
    padding: 14px 36px;
    margin-bottom: 36px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 40px rgba(212, 255, 0, 0.08), inset 0 0 20px rgba(212, 255, 0, 0.03);
    animation: fadeInUp 1s ease 0.3s both;
}

.logo-white {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: white;
    letter-spacing: -0.5px;
}

.logo-x-white { color: var(--red); }

.partnership-x {
    color: var(--lime);
    font-size: 20px;
    font-weight: 300;
}

.corex-logo-hero {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.muuuh-logo-hero {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-video-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-video-content h1 em {
    color: var(--lime);
    font-style: italic;
}

.hero-subtitle-video {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

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

.hero-testimonial-floating {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 20px 32px;
    backdrop-filter: blur(10px);
}

.hero-testimonial-floating .stars { color: var(--lime); margin-bottom: 8px; font-size: 18px; }
.hero-testimonial-floating p { font-size: 14px; color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 6px; }
.hero-testimonial-floating span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--text-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-primary:hover { background: var(--purple); transform: translateY(-1px); }

.btn-lime {
    background: var(--lime) !important;
    color: var(--muuuh-dark) !important;
    font-weight: 600 !important;
}

.btn-lime:hover { background: var(--lime-dark) !important; transform: translateY(-1px); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--purple); color: var(--purple); }

.btn-light { color: white; border-color: rgba(255,255,255,0.3); }
.btn-light:hover { border-color: var(--lime); color: var(--lime); }

/* Badge */
.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.badge-light { border-color: rgba(212, 255, 0, 0.4); color: var(--lime); }

/* Metrics Bar */
.metrics-bar {
    background: var(--muuuh-dark);
    padding: 40px 0;
    border-bottom: 2px solid var(--lime);
}

.metrics-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.metric { text-align: center; }
.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--lime);
    font-family: 'Playfair Display', serif;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-white { background: var(--bg-white); }
.section-dark { background: var(--muuuh-dark); color: white; }
.section-purple { background: linear-gradient(135deg, var(--muuuh-purple), var(--purple-dark)); color: white; }

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section h2 em { color: var(--purple); font-style: italic; }
.section-dark h2 em { color: var(--lime); }
.section-purple h2 em { color: var(--lime); }

.section-intro {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.section-intro.light { color: rgba(255,255,255,0.7); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card-dark {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 255, 0, 0.15);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--purple);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Metric Cards */
.metric-card {
    text-align: center;
    padding: 40px 24px;
}

.big-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.metric-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-benchmark {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* Info Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td, .info-table th {
    padding: 10px 0;
    font-size: 14px;
}

.info-table td:first-child { color: var(--text-secondary); }
.info-table td:last-child { font-weight: 500; text-align: right; }
.info-table th { text-align: left; font-weight: 600; padding-bottom: 12px; }

.card-dark .info-table tr { border-color: rgba(255,255,255,0.1); }
.card-dark .info-table td { color: rgba(255,255,255,0.7); }
.card-dark .info-table td:last-child { color: var(--lime); }

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Video Section */
.video-showcase {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.video-showcase video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Tabs */
.tabs { margin-top: 40px; }

.tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.tab-btn.active {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

.tab-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple); }

.tab-content {
    display: none;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tab-content.active { display: block; }
.tab-content h3 { font-size: 22px; margin-bottom: 12px; }
.tab-content p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }

.tab-stats {
    display: flex;
    gap: 32px;
}

.tab-stats .stat {
    font-size: 14px;
    color: var(--text-secondary);
}

.tab-stats .stat span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 2px;
}

/* Industries */
.industries { margin-top: 48px; }
.industries h3 { margin-bottom: 16px; }

.industry-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 18px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* Pricing */
.pricing-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.price-card {
    background: var(--bg-white);
    border: 2px solid var(--purple-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.price-detail {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Commercial Details */
.commercial-details { margin-bottom: 40px; }
.commercial-details h3 { margin-bottom: 24px; font-size: 22px; }
.commercial-details h4 { margin-bottom: 12px; color: var(--purple); }

.included-list ul {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime-dark);
    font-weight: 700;
}

/* Language Section */
.language-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.lang-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.lang-card.highlight { border-color: var(--purple); border-width: 2px; }
.lang-card h3 { margin-bottom: 20px; }

.lang-bar {
    background: #F3F4F6;
    border-radius: 8px;
    height: 36px;
    margin-bottom: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.bar-fill span { color: white; font-size: 13px; font-weight: 600; }
.bar-fill.c2 { background: var(--purple-dark); }

.lang-note { font-size: 13px; color: var(--text-light); margin-top: 12px; }

/* HR Section */
.hr-details { margin-top: 48px; }
.hr-details h3 { margin-bottom: 20px; }

.composition-bars { margin-bottom: 16px; }

.comp-item { margin-bottom: 12px; }
.comp-label { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.comp-bar { background: #F3F4F6; border-radius: 6px; height: 28px; overflow: hidden; }
.comp-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.note { font-size: 13px; color: var(--text-light); font-style: italic; }

/* Benefits */
.benefits-summary { margin-top: 48px; }
.benefits-summary h3 { margin-bottom: 24px; }

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
}

.benefit-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

/* Security Section */
.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.security-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lime);
}

/* Closed Shop */
.closed-shop {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 255, 0, 0.15);
}

.closed-shop h3 { margin-bottom: 24px; font-size: 24px; }

.shop-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
}

.shop-option.highlight {
    border-color: var(--lime);
    background: rgba(212, 255, 0, 0.05);
}

.shop-option h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: white;
}

.shop-option p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.shop-option ul {
    list-style: none;
    padding: 0;
}

.shop-option li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding-left: 16px;
    position: relative;
}

.shop-option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lime);
}

.security-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.security-photos img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    opacity: 0.9;
    border: 1px solid rgba(212, 255, 0, 0.1);
}

/* Operations */
.ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.ops-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.ops-card h3 { margin-bottom: 12px; }
.ops-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }

.ops-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ops-metrics span {
    font-size: 12px;
    padding: 4px 12px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: 50px;
    font-weight: 500;
}

.kpi-section { margin-top: 48px; }
.kpi-section h3 { margin-bottom: 24px; font-size: 22px; }

/* Documents Section */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.doc-category h3 {
    margin-bottom: 16px;
    font-size: 18px;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}

.doc-item:hover {
    background: rgba(212, 255, 0, 0.1);
    border-color: var(--lime);
    transform: translateX(4px);
}

.doc-icon {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    background: rgba(212, 255, 0, 0.2);
    border-radius: 4px;
    min-width: 36px;
    text-align: center;
    color: var(--lime);
}

.doc-name { font-size: 14px; }

/* Contact */
.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-card h3 { margin-bottom: 16px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.6; }
.contact-card a { color: var(--purple); }
.contact-note { font-style: italic; color: var(--text-light) !important; }

/* Download CTA */
.download-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section-dark .download-cta { border-color: rgba(212, 255, 0, 0.15); }

/* Footer */
.footer {
    background: var(--muuuh-dark);
    padding: 48px 0;
    text-align: center;
    border-top: 2px solid var(--lime);
}

.footer .logo { color: white; }

.footer-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 12px;
}

.footer-partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-partnership img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-legal {
    font-size: 12px !important;
    margin-top: 20px !important;
    color: rgba(255,255,255,0.4) !important;
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes pulseGlow {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

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

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-video-content h1 { font-size: 44px; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .pricing-highlight { grid-template-columns: 1fr 1fr; }
    .language-grid { grid-template-columns: 1fr; }
    .doc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-video-content h1 { font-size: 32px; }
    .hero-partnership-badge { padding: 8px 20px; gap: 10px; }
    .logo-white { font-size: 20px; }
    .muuuh-logo-hero { height: 28px; }
    .corex-logo-hero { height: 28px; }
    .section h2 { font-size: 32px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .pricing-highlight { grid-template-columns: 1fr; }
    .ops-grid { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: 1fr; }
    .tab-nav { flex-direction: column; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .metrics-bar .container { flex-direction: column; gap: 24px; }
    .security-photos { grid-template-columns: 1fr; }
}
