:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #000000;
    --text-color: #000000;
    --background-color: #000000;
    --card-background: #ffffff;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --font-primary: 'Supreme LL', sans-serif;
    --font-headlines: 'DIN Alternate', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

::selection {
    background-color: white;
    color: black;
}

*:not(html):not(body) {
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Default: no scroll for most sections */
body {
    overflow: hidden;
    height: 100vh;
    position: fixed;
}

/* Allow scrolling only for founders section */
body.founders-active {
    overflow: auto;
    overflow-x: hidden;
    position: static;
    height: auto;
    min-height: 100vh;
}

#founders-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
}

@media (max-width: 768px) {
    #founders-intro {
        gap: 0rem;
    }
}


/* Homepage and investors stay fixed */
body.homepage-active,
body.investors-active {
    overflow: hidden;
    height: 100vh;
    position: fixed;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.presentation-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    /* padding: 2rem; */
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide .content {
    position: relative;
    z-index: 2;
    /* max-width: 1400px; */
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Title Slide */
#slide1 .content {
    position: relative;
    z-index: 2;
    justify-content: center;
    gap: 2rem;
    padding-top: 4rem;
}

.title {
    font-family: var(--font-headlines);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-headlines);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.presented-by, .date {
    font-size: 1.2rem;
    color: white;
    text-transform: none;
}

.logo {
    width: 400px;
    max-width: 80vw;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
}

#slide1 {
    display: flex;
}

#slide1:not(.active) {
    display: none;
}

#slide1 .content > * {
    opacity: 0;
}

/* Grid Layouts */
.problem-list,
.model-details,
.benefits-grid,
.cost-structure,
.opportunity-grid,
.advantage-list,
.success-grid,
.next-steps {
    display: grid;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
    max-width: 1400px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Special handling for different grid sizes */
.cost-structure {  /* 2 items */
    grid-template-columns: repeat(2, minmax(250px, 400px));
    justify-content: center;
}

.opportunity-grid,
.success-grid,
.next-steps,
.benefits-grid {  /* Added benefits-grid to 3-column layout */
    grid-template-columns: repeat(3, minmax(250px, 350px));
    justify-content: center;
}

/* Default 4-item grid */
.problem-list,
.model-details,
.advantage-list {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.problem-item,
.model-item,
.benefit-item,
.cost-item,
.opportunity-item,
.advantage-item,
.success-item,
.step-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
}

.problem-item::before,
.model-item::before,
.benefit-item::before,
.cost-item::before,
.opportunity-item::before,
.advantage-item::before,
.success-item::before,
.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}


.problem-item > *,
.model-item > *,
.benefit-item > *,
.cost-item > *,
.opportunity-item > *,
.advantage-item > *,
.success-item > *,
.step-item > * {
    position: relative;
    z-index: 2;
}

h2 {
    font-family: var(--font-headlines);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h3 {
    font-family: var(--font-headlines);
    font-size: 1.5rem;
    color: white;
    margin:2rem 0;
    text-transform: uppercase;
}

p, li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    text-transform: none;
}

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

li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

li:before {
    content: "";
    position: absolute;
    left: 0;
}

/* Navigation */
.navigation {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 100;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 100px;
    pointer-events: none;
    z-index: 1;
}

.navigation > * {
    position: relative;
    z-index: 2;
}

/* Hide navigation on non-investor sections */
#homepage .navigation,
#founders .navigation,
#upgrade .navigation {
    display: none;
}

/* Show navigation only on investor section */
#investors .navigation {
    display: flex !important;
    opacity: 1 !important;
    position: fixed !important;
    z-index: 100 !important;
}

.nav-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    transform: scale(0);
    z-index: -1;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-btn:hover {
    color: white;
    transform: scale(1.1);
    border: 1px solid white;
}

.slide-indicators {
    display: flex;
    gap: 0.8rem;
    padding: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0.2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid white;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    opacity: 1;
    background: white;
    transform: scale(1.2);
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .problem-list,
    .model-details,
    .benefits-grid,
    .advantage-list,
    .success-grid,
    .next-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .problem-list,
    .model-details,
    .benefits-grid,
    .opportunity-grid,
    .advantage-list,
    .success-grid,
    .next-steps {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        overflow: auto;
        overflow-x: hidden;
        font-size: 14px;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    .presentation-container {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        height: auto;
        min-height: 100vh;
        /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/new/approach.webp') center/cover fixed; */
        width: 100%;
        max-width: 100vw;
    }
    
    .slide {
        position: relative;
        height: auto;
        padding: 0;
        display: none;
        overflow-x: hidden;
        width: 100%;
    }

    .slide.active {
        display: block;
    }

    .slide::before {
        position: fixed;
        top: -50px;
        left: -50px;
        right: -50px;
        bottom: -50px;
    }
    
    .slide .content {
        padding: 2rem 1rem 6rem 1rem;
        height: auto;
        min-height: auto;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    #slide1 {
        min-height: 100vh;
    }

    #slide1.active {
        display: flex;
    }

    #slide1 .content {
        padding: 2rem 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .title {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    
    .subtitle {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .presented-by, .date {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    p, li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .problem-list,
    .model-details,
    .benefits-grid,
    .cost-structure,
    .opportunity-grid,
    .advantage-list,
    .success-grid,
    .next-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .problem-item,
    .model-item,
    .benefit-item,
    .cost-item,
    .opportunity-item,
    .advantage-item,
    .success-item,
    .step-item {
        padding: 1.5rem;
    }

    .image-placeholder {
        height: 150px;
        margin-bottom: 1rem;
    }

    .navigation {
        bottom: 1rem;
        gap: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .slide-indicators {
        gap: 0.6rem;
    }
    
    /* Ensure navigation is visible on mobile for investors */
    #investors .navigation {
        display: flex !important;
        opacity: 1 !important;
        position: fixed !important;
        z-index: 100 !important;
    }

    /* Ensure founders section scrolls properly on mobile */
    body.founders-active {
        overflow: auto;
        overflow-x: hidden;
        position: static;
        height: auto;
        min-height: 100vh;
        width: 100vw;
    }
    
    #founders {
        width: 100%;
        min-height: 100vh;
    }
    
    #founders .slide {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    #founders .slide .content {
        padding: 4rem 1rem 2rem 1rem;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #founders h2 {
        font-size: 2.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #founders .model-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .founder-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem auto 1.5rem auto;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .features-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Image Placeholders with Icons */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* .image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.15;
} */

/* Problem Icon */
.problem-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 12h3v8h6v-6h2v6h6v-8h3L12 2z'/%3E%3C/svg%3E");
}

/* Model Icon */
.model-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 3h18v18H3V3zm16 16V5H5v14h14z'/%3E%3Crect x='7' y='7' width='4' height='4'/%3E%3Crect x='13' y='7' width='4' height='4'/%3E%3Crect x='7' y='13' width='4' height='4'/%3E%3Crect x='13' y='13' width='4' height='4'/%3E%3C/svg%3E");
}

/* Benefit Icon */
.benefit-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 8l10 6 10-6-10-6zM2 16l10 6 10-6-10-6-10 6z'/%3E%3C/svg%3E");
}

/* Cost Icon */
.cost-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z'/%3E%3C/svg%3E");
}

/* Opportunity Icon */
.opportunity-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L4 8v12h16V8l-8-6zm4 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z'/%3E%3C/svg%3E");
}

/* Advantage Icon */
.advantage-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 8l10 6 10-6-10-6zM2 16l10 6 10-6-10-6-10 6z'/%3E%3C/svg%3E");
}

/* Success Icon */
.success-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

/* Step Icon */
.step-item .image-placeholder::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 3h18v18H3V3zm16 16V5H5v14h14zM7 7h10v2H7V7zm0 4h10v2H7v-2zm0 4h7v2H7v-2z'/%3E%3C/svg%3E");
}

.problem-item .image-placeholder,
.model-item .image-placeholder,
.benefit-item .image-placeholder,
.cost-item .image-placeholder,
.opportunity-item .image-placeholder,
.advantage-item .image-placeholder,
.success-item .image-placeholder,
.step-item .image-placeholder {
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 0;
}

/* Title slide specific styles */
#slide1 .content {
    position: relative;
    z-index: 2;
}

#slide1 .title,
#slide1 .subtitle,
#slide1 .presented-by,
#slide1 .date {
    color: white;
    opacity: 0;
}

/* Grid layouts with images */
.problem-list,
.model-details,
.benefits-grid,
.cost-structure,
.opportunity-grid,
.advantage-list,
.success-grid,
.next-steps {
    /* Remove this as it conflicts with our main grid layout */
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
}

/* Card styles with images */
.problem-item,
.model-item,
.benefit-item,
.cost-item,
.opportunity-item,
.advantage-item,
.success-item,
.step-item {
    display: flex;
    flex-direction: column;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-family: var(--font-headlines);
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    margin-top: 4rem;
    cursor: pointer;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.cta-button > * {
    position: relative;
    z-index: 3;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button .arrow-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-button {
        font-size: 1.25rem;
        padding: 1.25rem 2.5rem;
        margin-top: 3rem;
    }

    .cta-button .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .image-placeholder {
        /* display: none; */
    }
}

/* Section Navigation */
.section {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    overflow-x: hidden;
    max-width: 100vw;
}

.section.active {
    display: block;
    opacity: 1;
}

/* Homepage Styles */
#homepage {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

#homepage .slide {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#homepage .slide .content {
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100vw;
    box-sizing: border-box;
}

.homepage-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    opacity: 0;
    position: relative;
    z-index: 10;
}

#homepage .logo {
    width: 400px;
    max-width: 80vw;
    height: auto;
    margin: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
}

/* Section Navigation */
.section {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    overflow-x: hidden;
    max-width: 100vw;
}

/* CTA Button Secondary Style */
.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover::before {
    opacity: 1;
}

.cta-button.secondary:hover::after {
    opacity: 1;
}

/* Back Button */
.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    z-index: 10;
    overflow: hidden;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.back-button > * {
    position: relative;
    z-index: 2;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Video Container */
.video-container {
    width: 100%;
    /* max-width: 800px; */
    margin: 2rem 0;
    margin-top: 4rem;
    position: relative;
}

.video-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-preview:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    /* filter: blur(8px); */
    /* transform: scale(1.1); */
    transition: all 0.3s ease;
}

.video-preview:hover .video-background {
    filter: blur(6px);
    /* transform: scale(1.05); */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(0);
    transition: all 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 32px;
    height: 32px;
    fill: #333;
    margin-left: 4px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-preview:hover .play-icon {
    fill: #000;
}

.video-title {
    text-align: center;
    color: white;
}

.video-title h4 {
    font-family: var(--font-headlines);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-title p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 70vh;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    /* transform: scale(0.8); */
    transition: all 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay:hover {
    backdrop-filter: blur(8px);
}

/* Mobile responsiveness for homepage */
@media (max-width: 768px) {
    #homepage {
        height: 100vh;
        overflow: hidden;
        width: 100vw;
        position: fixed;
    }
    
    #homepage .slide {
        height: 100vh;
        overflow: hidden;
    }
    
    #homepage .slide .content {
        height: 100vh;
        overflow: hidden;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .homepage-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 2rem;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }
    
    .homepage-buttons .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        font-size: 1.1rem;
        padding: 1.25rem 2rem;
        touch-action: manipulation;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    #homepage .logo {
        width: 300px;
        max-width: 70vw;
    }
    
    .back-button {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}


.application-section-container {

    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .application-section-container {
        padding: 1rem
    }
}

/* Application Section */
.application-section {
    margin: 4rem auto 3rem auto;
    padding: 0;
    background: transparent;
    border: none;
    max-width: 800px;
    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.application-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.application-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.application-content > * {
    position: relative;
    z-index: 2;
}

.application-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.application-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.application-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-headlines);
    font-size: 3rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-deadline {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 3rem !important;
    font-style: italic;
}

.cta-button.primary {
    background: white;
    color: black;
    border: 2px solid white;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .cta-button.primary {
        margin-top: 0;
    }
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button.primary > * {
    position: relative;
    z-index: 2;
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
}

.cta-button.primary:hover::before {
    opacity: 0;
}

/* Founders Section Specific Styles - Simplified */
#founders {
    width: 100%;
    max-width: 100vw;
            /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./img/new/approach.webp') center/cover fixed; */
    min-height: 100vh;
}

#founders .slide {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: block;
    opacity: 1;
    width: 100%;
}

#founders .slide .content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 4rem 2rem 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

#founders h2 {
    font-size: 6vw;
    margin-top: 2rem;
    /* margin-bottom: -1rem; */
    text-align: center;
    line-height: 100%;
}

.founder-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 0 auto;
    padding: 0 2rem;
}

.features-heading {
    font-family: var(--font-headlines);
    font-size: 3.6rem;
    line-height: 120%;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#founders .founder-explanation {
    width: 100%;
    margin: 2rem 0;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    #founders .founder-explanation {
        margin-bottom: 0;
    }
}

#founders .model-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* FAQ Accordion Styles */

.faq-section-container {
    background-image: url('./img/new/campfire.webp?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 2rem;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .faq-section-container {
        background-image: none;
        padding: 0;
    }
}

.faq-section {
    width: 100%;
    max-width: 800px;
    margin: 4rem auto 2rem auto;
    
}

.faq-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-headlines);
    font-size: 1.1rem;
    text-align: left;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 2;
}

.faq-item:not(.active) .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}


.faq-question .icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    text-align: left;
    z-index: 2;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* FAQ Grid Layout for 2 columns on larger screens */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .faq-section {
        max-width: 1200px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .faq-item {
        margin-bottom: 0;
    }
}

/* Featured Upgrade Option */
.cost-item.featured {
    border: 2px solid #FFD700;
    position: relative;
    transform: scale(1.05);
}

.cost-item.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: black;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: var(--border-radius);
}

/* Upgrade Page Specific Styles */
#upgrade .cost-structure {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
}

#upgrade .cost-item {
    padding: 2.5rem;
}

#upgrade .cost-item .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Responsive adjustments for founders section */
@media (max-width: 1200px) {
    #founders .model-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #upgrade .cost-structure {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cost-item.featured {
        grid-column: span 2;
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Founders section - clean scrolling styles only */
    body.founders-active {
        overflow: auto;
        overflow-x: hidden;
        position: static;
        height: auto;
        min-height: 100vh;
        width: 100vw;
    }
    
    #founders {
        width: 100%;
        min-height: 100vh;
    }
    
    #founders .slide {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    #founders .slide .content {
        padding: 4rem 1rem 2rem 1rem;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #founders h2 {
        font-size: 2.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #founders .model-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .founder-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem auto 3rem auto;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .features-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .application-content {
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .application-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .application-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .application-stats {
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .application-deadline {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }
    
    .cta-button.primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .faq-section {
        margin: 3rem auto 1rem auto;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
    
    #upgrade .cost-structure {
        grid-template-columns: 1fr;
    }
    
    .cost-item.featured {
        grid-column: span 1;
    }
    
    .video-container {
        margin: 1rem 0;
    }
    
    .video-preview {
        height: 250px;
    }
    
    .video-title h4 {
        font-size: 1.2rem;
    }
    
    .video-title p {
        font-size: 0.9rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        width: 24px;
        height: 24px;
    }
    
    .video-modal-content {
        width: 95vw;
        height: 60vh;
        margin: 1rem;
    }
    
    .video-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
    }
    
    .video-close svg {
        width: 16px;
        height: 16px;
    }
}

/* Application Form Styles */
.founder-application-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group input:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

/* Application Success Message */
.application-success {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 100, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.application-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.application-success > * {
    position: relative;
    z-index: 2;
}

.application-success h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.application-success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.queue-message {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.success-actions .cta-button {
    margin: 0;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem
}

/* Mobile responsiveness for form */
@media (max-width: 768px) {
    .founder-application-form {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .form-group input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .application-success {
        padding: 0.5rem;
        margin: 1.5rem 1rem 0 1rem;
    }
    
    .application-success h3 {
        font-size: 1.5rem;
    }
    
    .application-success p {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .success-actions .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

.share-incentive {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.success-actions .cta-button.primary {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Cohort Selection Styles */
.cohort-selection {
    margin-bottom: 2rem;
}

.cohort-label {
    display: block;
    color: white;
    font-family: var(--font-headlines);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cohort-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cohort-option {
    position: relative;
}

.cohort-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cohort-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem 1rem 3rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.cohort-option label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.cohort-option label > * {
    position: relative;
    z-index: 2;
}

.cohort-date {
    font-family: var(--font-headlines);
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cohort-season {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-style: italic;
}

.cohort-option input[type="checkbox"]:checked + label {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cohort-option input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.cohort-option label:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cohort-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .cohort-option label {
        padding: 0.875rem 1.25rem 0.875rem 2.75rem;
    }
    
    .cohort-date {
        font-size: 1rem;
    }
    
    .cohort-season {
        font-size: 0.85rem;
    }
}

/* Founders logo specific styling */
.founders-logo {
    position: static !important;
    transform: none !important;
    width: 240px;
    max-width: 60vw;
    height: auto;
    margin: 0 auto 0 auto;
    display: block;
    opacity: 1 !important;
    z-index: 3;
}

@media (max-width: 768px) {
    .founders-logo {
        width: 160px;
        max-width: 50vw;
        margin: 0 auto 2rem auto;
    }
}

/* Footer Styles */
.site-footer {
    background-color: transparent;
    color: white;
    padding: 2rem 0 1rem;
    font-family: var(--font-primary);
    border-top: none;
    position: static;
    width: 100%;
    margin-top: 2rem;
}

/* Footer positioning for different sections */
body.founders-active .site-footer {
    display: block;
    position: static;
    margin-top: 2rem;
    order: 999;
    clear: both;
}

body.homepage-active .site-footer,
body.investors-active .site-footer {
    display: none;
}

/* Ensure footer appears after all content in founders section */
body.founders-active {
    display: flex;
    flex-direction: column;
}

body.founders-active #founders {
    order: 1;
    flex: 1;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    justify-content: center;
    text-align: center;
}

.footer-section h4 {
    font-family: var(--font-headlines);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.footer-section p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    text-align: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Legal Pages Styles */
.legal-page {
    background-color: white;
    color: black;
    overflow-y: auto;
    position: static;
    height: auto;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
}

.legal-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 2rem;
}

.back-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: black;
}

.legal-header h1 {
    font-family: var(--font-headlines);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: black;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-family: var(--font-headlines);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
    border-left: 4px solid black;
    padding-left: 1rem;
}

.legal-content h3 {
    font-family: var(--font-headlines);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    color: black;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-content a {
    color: black;
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f8f8;
    font-family: var(--font-headlines);
    font-weight: bold;
    color: black;
}

.cookie-table td {
    color: #333;
}

/* Terms Agreement Checkbox */
.terms-agreement {
    margin: 1.5rem 0;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    gap: 4px;
}

.terms-checkbox input[type="checkbox"] {
    display: none;
}

.terms-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #666;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: white;
    border-color: white;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-weight: bold;
    font-size: 14px;
}

.terms-checkbox:hover .checkmark {
    border-color: white;
}

.terms-checkbox a {
    color: white;
    text-decoration: underline;
}

.terms-checkbox a:hover {
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }
    
    .legal-container {
        padding: 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .terms-checkbox span {
        font-size: 0.85rem;
    }

    .application-section-container .cta-button {
       margin-top: 0;
    }

    .application-section {
        margin-top: 0;
    }
} 