/* ============================================
   INDEX PREMIUM - MINIMALIST BENTO
   Glassmorphism | Kinetic Typography | Space
   ============================================ */

/* === GLOBAL REFINEMENTS === */
body {
    background-color: #050505;
    /* Darker, cleaner black */
}

/* === HERO MINIMALIST === */
.hero {
    min-height: 95vh;
    background: radial-gradient(circle at 50% 50%, #0f0f12 0%, #000 100%);
}

.hero::before {
    /* Subtle mesh gradient */
    opacity: 0.3;
    filter: blur(80px);
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.glitch-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    /* Massive */
    font-weight: 300;
    /* Ultra thin */
    letter-spacing: -4px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    /* Outline style */
    position: relative;
    margin-bottom: 2rem;
    animation: textStrokePulse 5s infinite;
}

@keyframes textStrokePulse {

    0%,
    100% {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    }

    50% {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    }
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 8px;
    opacity: 0.6;
    margin-bottom: 4rem;
    font-weight: 400;
}

.mission-text {
    /* Hide mission text in hero for minimalism */
    display: none;
}

.cta-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* === VISION SECTION (NEW) === */
.vision-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #000 0%, #08080a 100%);
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Glass Panel Quote */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.vision-quote {
    font-family: 'Playfair Display', serif;
    /* Elegant serif */
    font-size: 1.5rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-style: italic;
}

.vision-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pseudo-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #666);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
}

.author-role {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Block */
.about-block .label {
    display: block;
    color: var(--accent-science);
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 300;
    /* Thin */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-desc {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--accent-science);
    margin-top: 0.2rem;
}

.feature-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.feature-item span {
    color: #666;
    font-size: 0.9rem;
}

/* === BENTO GRID LAYOUT === */
.ecosystem {
    padding: 6rem 5%;
}

.section-title {
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: -1px;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns */
    grid-template-rows: repeat(2, 400px);
    /* Fixed height rows */
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* BENTO CARD STYLES - GLASSMORPHISM */
.card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    /* No shadow initially */
}

.card:hover {
    transform: scale(0.98);
    /* Slight shrink effect */
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Remove old overlay */
.card::before {
    display: none;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 0;
}

/* Typography highlights */
.highlight-cyan,
.highlight-purple,
.highlight-orange,
.highlight-brown,
.highlight-green {
    font-weight: 400;
    /* Thinner highlight */
}

/* WIDGETS MINIMALIST */
.card-widget {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: auto;
}

.widget-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

/* GRID AREAS */
/* Science: Big featured block (2x2) */
.science {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.05), transparent);
}

/* Others: 1x1 blocks */
.gaming {
    grid-column: span 1;
    grid-row: span 1;
}

.shop {
    grid-column: span 1;
    grid-row: span 1;
}

.cafe {
    grid-column: span 1;
    grid-row: span 1;
}

.repair {
    grid-column: span 1;
    grid-row: span 1;
}

/* Interactive Links */
.card-link {
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

/* === MEMBERSHIP SECTION (FOOTER AREA) === */
.membership {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(to top, #000 0%, #050505 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.membership h2 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.membership p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* === FOOTER MINIMALIST GRID === */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Clean separator */
    background: #000;
    padding: 6rem 5% 3rem;
}

footer::before {
    display: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Logo takes double space */
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 2rem;
}

.footer-section a {
    display: block;
    color: #aaa;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links i {
    font-size: 1.2rem;
    color: #666;
    transition: 0.3s;
}

.social-links a:hover i {
    color: #fff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #444;
    font-size: 0.8rem;
}

/* === PREMIUM MODAL (GLASS FORM) === */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    inset: 0;
    /* Full screen */
    z-index: 2000;
    /* On top of everything */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s;
}

.modal.active {
    display: flex;
    /* Enable flex centering when active */
}

.modal-content {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    max-width: 500px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    animation: modalScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScaleUp {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #666;
    transition: 0.3s;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.modal p {
    color: #888;
    margin-bottom: 2.5rem;
}

/* Form Styling */
.membership-form input,
.membership-form select {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.membership-form input:focus,
.membership-form select:focus {
    outline: none;
    border-color: var(--accent-science);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
}

.membership-form button {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: #fff;
    color: #000;
    font-weight: 700;
}

.membership-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits h4 {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.benefits ul li {
    color: #aaa;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .science {
        grid-column: span 2;
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .vision-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 4rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .science {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}