:root {
    --dark: #050507;
    --teal: #00F5D4;
    --pink: #FF006E;
    --orange: #FF9E00;
    --glass: rgba(15, 15, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 2px;
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 1.2rem;
}

.teal-text {
    color: var(--teal);
}

.pink-text {
    color: var(--pink);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: 30px;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.cta-pill {
    background: var(--teal);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: url('assets/inclusive-class.jpg') center/cover no-repeat;
    /* Fallback */
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300vw;
    /* Scale wide to cover vertical video */
    height: 300vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: contrast(110%) brightness(60%) grayscale(0.5);
    /* Gritty surgery */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, var(--dark) 90%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
}

.pre-header {
    font-size: 0.95rem;
    color: var(--teal);
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 800;
    /* Made bolder */
    letter-spacing: 4px;
    /* Increased tracking */
}

.main-header {
    font-size: 5.5rem;
    /* Slightly larger */
    line-height: 1.05;
    margin-bottom: 35px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background: var(--teal);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.3);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* Features Group */
.features {
    padding: 100px 40px;
    position: relative;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: border-color 0.33s;
}

.glass-panel:hover {
    border-color: var(--teal);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.6;
}

.teal-glow {
    text-shadow: 0 0 20px var(--teal);
}

.pink-glow {
    text-shadow: 0 0 20px var(--pink);
}

.orange-glow {
    text-shadow: 0 0 20px var(--orange);
}

/* Club Showcase */
.club-showcase {
    padding: 100px 40px;
    background: linear-gradient(to bottom, var(--dark), #0a0a0c);
}

.container.split-view {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.text-block p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li::before {
    content: '✓';
    color: var(--teal);
}

.app-frame-mock {
    border: 8px solid #222;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    background: #000;
}

.app-frame-mock img {
    width: 100%;
    display: block;
}

/* Footer */
.glass-footer {
    padding: 60px 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 30px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .main-header {
        font-size: 3rem;
    }

    .features .container {
        grid-template-columns: 1fr;
    }

    .container.split-view {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}