/* HERO SECTION */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f7fffe 0%, rgba(45, 212, 191, 0.08) 100%);
    margin-top: 60px;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.about-hero .container {
    width: min(1200px, 90vw);
    margin: auto;
    text-align: center;
}

.about-hero h1 {
    font-family: 'League Gothic', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ABOUT APPLICATION SECTION */
.about-app {
    padding: 100px 0;
    background: var(--white);
}

.about-app .container {
    width: min(1200px, 90vw);
    margin: auto;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--ink);
}

.app-text > p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.app-features {
    list-style: none;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ink-2);
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.05rem;
}

.app-features i {
    color: var(--teal);
    font-size: 1.4em;
    min-width: 24px;
}

.app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.15);
}

/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(45, 212, 191, 0.1);
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.how-it-works .container {
    width: min(1200px, 90vw);
    margin: auto;
}

.how-it-works h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--ink);
}

.intro-text {
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    border: 2px solid rgba(45, 212, 191, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'League Gothic', sans-serif;
    font-size: 2rem;
    margin: 0 auto 20px;
    font-weight: bold;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--ink);
    font-weight: 600;
}

.step-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CREATORS SECTION */
.about-creators {
    padding: 100px 0;
    background: var(--white);
}

.about-creators .container {
    width: min(1200px, 90vw);
    margin: auto;
}

.about-creators h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--ink);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

.creator-card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.04) 0%, rgba(34, 211, 238, 0.04) 100%);
    border: 1.5px solid rgba(45, 212, 191, 0.15);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.creator-card:hover {
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 212, 191, 0.12);
}

.creator-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 25px;
}

.creator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 600;
}

.creator-card .role {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px !important;
}

.creator-card .bio {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.creator-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(45, 212, 191, 0.1);
}

.creator-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.creator-social a:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
}

/* TECHNOLOGY STACK SECTION */
.tech-stack {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(34, 211, 238, 0.03) 100%);
    border-top: 1px solid rgba(45, 212, 191, 0.1);
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.tech-stack .container {
    width: min(1200px, 90vw);
    margin: auto;
}

.tech-stack h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--ink);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-item {
    background: white;
    border: 1.5px solid rgba(45, 212, 191, 0.15);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 600;
}

.tech-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* MISSION & VISION SECTION */
.mission-vision {
    padding: 100px 0;
    background: var(--white);
}

.mission-vision .container {
    width: min(1200px, 90vw);
    margin: auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.mission-card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(34, 211, 238, 0.08) 100%);
    border: 2px solid rgba(45, 212, 191, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: rgba(45, 212, 191, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 212, 191, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.mission-card h3 {
    font-family: 'League Gothic', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--ink);
}

.mission-card p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
}

/* ABOUT CTA SECTION */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fbff 0%, #e8f8f5 50%, #f0fbff 100%);
    border-top: 1px solid rgba(45, 212, 191, 0.15);
}

.about-cta .container {
    width: min(1200px, 90vw);
    margin: auto;
    text-align: center;
}

.about-cta h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--ink);
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 14px 45px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1em;
}

.btn-secondary:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
}

/* RESPONSIVE */
@media screen and (max-width: 1023px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .app-text h2,
    .how-it-works h2,
    .about-creators h2,
    .tech-stack h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .creators-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .app-grid,
    .mission-grid {
        gap: 40px;
    }

    .app-text h2,
    .how-it-works h2,
    .about-creators h2,
    .tech-stack h2,
    .about-cta h2 {
        font-size: 1.6rem;
    }

    .steps-grid,
    .creators-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .creator-card,
    .tech-item,
    .mission-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .creator-avatar {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 35px;
    }
}
