/* ==========================================
           ABOUT PAGE PART 1
========================================== */

.about-hero{
    position:relative;
    overflow:hidden;
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
    background:radial-gradient(100% 100% at 50% 0%, rgba(79, 70, 229, 0.08) 0%, rgba(248, 250, 252, 0) 100%), var(--bg);
}

body.dark-mode .about-hero{
    background:radial-gradient(100% 100% at 50% 0%, rgba(79, 70, 229, 0.15) 0%, rgba(11, 15, 25, 0) 100%), var(--bg);
}

/* ================= BLOBS ================= */

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.25;
    animation:blobMove 14s ease-in-out infinite;
}

.blob1{
    width:400px;
    height:400px;
    background:var(--primary);
    top:-100px;
    left:-100px;
}

.blob2{
    width:320px;
    height:320px;
    background:var(--secondary);
    right:-80px;
    top:100px;
    animation-delay:2s;
}

.blob3{
    width:300px;
    height:300px;
    background:#818cf8;
    bottom:-100px;
    left:45%;
    animation-delay:4s;
}

@keyframes blobMove{
0%{
transform:translate(0,0) scale(1);
}

50%{
transform:translate(30px,-20px) scale(1.05);
}

100%{
transform:translate(0,0) scale(1);
}

}

/* ================================= */

.hero-container{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
    max-width:1400px;
    width:100%;
}

/* ================================= */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 16px;
    border-radius:var(--radius-pill);
    background:rgba(79, 70, 229, 0.08);
    color:var(--primary);
    border:1px solid rgba(79, 70, 229, 0.2);
    font-size:12px;
    font-weight:700;
    letter-spacing:0.04em;
    text-transform:uppercase;
    margin-bottom:24px;
}

body.dark-mode .hero-badge {
    background:rgba(99, 102, 241, 0.15);
    color:#818cf8;
    border-color:rgba(99, 102, 241, 0.3);
}

.hero-left h1{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:56px;
    line-height:1.12;
    letter-spacing:-0.03em;
    margin-bottom:20px;
    font-weight:800;
    color:var(--text);
}

.hero-left h1 span{
    background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    font-size:18px;
    line-height:1.7;
    max-width:620px;
    color:var(--text-light);
    margin-bottom:32px;
}

/* ================================= */

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.primary-btn,

.secondary-btn{
    padding:13px 28px;
    border-radius:10px;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    transition:all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.primary-btn{
    background:var(--primary);
    color:white;
    box-shadow:0 4px 14px rgba(79, 70, 229, 0.35);
}

.primary-btn:hover{
    transform:translateY(-2px);
    background:var(--primary-hover);
    box-shadow:0 6px 20px rgba(79, 70, 229, 0.45);
}

.secondary-btn{
    border:1px solid var(--border);
    background:var(--surface);
    color:var(--text);
    box-shadow:var(--shadow-sm);
}

.secondary-btn:hover{
    background:var(--surface-2);
    border-color:var(--primary);
    color:var(--primary);
    transform:translateY(-2px);
}

/* ================================= */

.glass-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:16px;
    padding:32px;
    box-shadow:var(--shadow-md);
    transition:all 0.25s ease;
}

body.dark-mode .glass-card{
    background:var(--surface);
    border:1px solid var(--border);
}

.glass-icon{
    font-size:65px;
    margin-bottom:20px;
}

.glass-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.glass-card p{
    line-height:2;
}

/* ================================= */

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:34px;
    animation:bounce 1.5s infinite;
    color:#4f7cff;
}

@keyframes bounce{
0%,100%{
transform:translate(-50%,0);
}

50%{
transform:translate(-50%,10px);
}

}

/* ==========================================
              STORY
========================================== */

.story-section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    opacity:.75;
    font-size:17px;
}

.story-card{
    max-width:900px;
    margin:auto;
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:24px;
    padding:45px;
    line-height:2;
    font-size:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.story-card:hover{
    transform:translateY(-8px);
}

/* ==========================================
             STATS
========================================== */

.stats-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:20px 8% 90px;
}

.stat-box{
    background:var(--card-bg);
    border-radius:20px;
    border:1px solid var(--border-color);
    padding:35px;
    text-align:center;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.stat-box h2{
    font-size:44px;
}

.stat-box h3{
    margin:18px 0;
    font-size:24px;
}

.stat-box p{
    opacity:.75;
}

/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width:900px){
.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-left p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.hero-left h1{
font-size:48px;
}

.glass-card{
margin-top:20px;
}

}
/* ==========================================
        ABOUT PAGE PART 2
        STUDENT SECTION
========================================== */

.student-section{
    padding:100px 8%;
    background:linear-gradient(180deg,#ffffff,#f7f9fc);
}

body.dark-mode .student-section{
    background:linear-gradient(180deg,#181818,#111111);
}

.student-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

/* ================================= */

.student-card{
    position:relative;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:14px;
    padding:32px;
    overflow:hidden;
    transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:var(--shadow-sm);
}

.student-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}

.student-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:rgba(79, 70, 229, 0.3);
}

.student-emoji{
    width:60px;
    height:60px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    background:var(--primary-light);
    color:var(--primary);
}

body.dark-mode .student-emoji {
    background:rgba(79, 70, 229, 0.15);
    color:#818cf8;
}

.student-card h3{
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.02em;
    margin-bottom:14px;
    color:var(--text);
}

.student-card p{
    line-height:1.7;
    color:var(--text-light);
}

/* ==========================================
        TRUTH SECTION
========================================== */

.truth-section{
    padding:90px 8%;
}

.truth-card{
    max-width:1000px;
    margin:auto;
    padding:50px 40px;
    border-radius:16px;
    background:linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
    color:#fff;
    text-align:center;
    box-shadow:var(--shadow-lg);
    border:1px solid rgba(255, 255, 255, 0.1);
}

.truth-card h2{
    font-size:36px;
    letter-spacing:-0.025em;
    margin-bottom:20px;
    font-weight:800;
}

.truth-card p{
    font-size:17px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
    opacity:0.9;
}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:768px){
.student-grid{
grid-template-columns:1fr;
}

.student-card{
padding:24px;
}

.student-card h3{
font-size:20px;
}

.truth-card{
padding:36px 20px;
}

.truth-card h2{
font-size:28px;
}

.truth-card p{
font-size:15px;
}

}
/* ==========================================
        ABOUT PAGE PART 3
========================================== */

/* ==========================================
        FEATURES SECTION
========================================== */

.features-section{
    padding:90px 8%;
    background:var(--bg);
}

body.dark-mode .features-section{
    background:var(--bg);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
    margin-top:48px;
}

.feature-card{
    position:relative;
    overflow:hidden;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:14px;
    padding:32px;
    transition:all 0.25s ease;
    box-shadow:var(--shadow-sm);
}

.feature-card::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transform:scaleX(0);
    transition:transform 0.25s ease;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:rgba(79, 70, 229, 0.3);
}

.feature-card:hover::after{
    transform:scaleX(1);
}

.feature-icon{
    width:64px;
    height:64px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    background:var(--primary-light);
    color:var(--primary);
}

body.dark-mode .feature-icon {
    background:rgba(79, 70, 229, 0.15);
    color:#818cf8;
}

.feature-card h3{
    margin-bottom:14px;
    color:var(--text);
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.015em;
}

.feature-card p{
    line-height:1.7;
    color:var(--text-light);
}

/* ==========================================
        BEHIND SECTION
========================================== */

.behind-section{
    padding:90px 8%;
}

.behind-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
    margin-top:48px;
}

.behind-card{
    background:var(--surface);
    border:1px solid var(--border);
    color:var(--text);
    border-radius:14px;
    padding:32px;
    text-align:center;
    transition:all 0.25s ease;
    box-shadow:var(--shadow-sm);
}

.behind-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:var(--primary);
}

.behind-number{
    font-size:44px;
    font-weight:800;
    letter-spacing:-0.03em;
    margin-bottom:12px;
    color:var(--primary);
}

.behind-card h3{
    margin-bottom:12px;
    font-size:20px;
    font-weight:700;
}

.behind-card p{
    line-height:1.7;
    color:var(--text-light);
}

/* ==========================================
      THINGS WE CAN'T FIX
========================================== */

.cannot-section{
    padding:90px 8%;
    background:var(--bg);
}

body.dark-mode .cannot-section{
    background:var(--bg);
}

.cannot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
    margin-top:48px;
}

.cannot-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:var(--text);
    transition:all 0.25s ease;
    box-shadow:var(--shadow-sm);
}

.cannot-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
    border-color:var(--danger);
    color:var(--danger);
}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:768px){
.feature-grid{
grid-template-columns:1fr;
}

.behind-grid{
grid-template-columns:1fr;
}

.cannot-grid{
grid-template-columns:1fr;
}

.feature-card,

.behind-card,

.cannot-card{
padding:28px;
}

}
/* ==========================================
        ABOUT PAGE PART 4
========================================== */

/* ==========================================
        CREATOR LETTER
========================================== */

.creator-section{
    padding:110px 8%;
}

.letter-card{
    max-width:950px;
    margin:auto;
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:28px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.letter-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:8px;
    background:linear-gradient(90deg,#4f7cff,#8b5cf6);
}

.letter-top{
    font-size:30px;
    font-weight:700;
    color:#4f7cff;
    margin-bottom:30px;
}

.letter-card p{
    line-height:2;
    font-size:18px;
    margin-bottom:20px;
}

.letter-sign{
    margin-top:40px;
    font-size:22px;
    font-weight:700;
    color:#4f7cff;
    text-align:right;
}
.founder{
    margin-top:40px;
    font-size:22px;
    font-weight:500;
    color:#060708;
    text-align:right;
}

/* ==========================================
        COUNTERS
========================================== */

.counter-section{
    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.counter-card{
    background:linear-gradient(135deg,#4f7cff,#2563eb);
    color:#fff;
    border-radius:24px;
    padding:40px;
    text-align:center;
    transition:.35s;
    box-shadow:0 20px 60px rgba(79,124,255,.25);
}

.counter-card:hover{
    transform:translateY(-10px);
}

.counter-card h2{
    font-size:56px;
    margin-bottom:15px;
}

.counter-card p{
    font-size:18px;
    opacity:.95;
}

/* ==========================================
        CONTACT
========================================== */

.contact-section{
    padding:110px 8%;
}

.contact-card{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:var(--card-bg);
    border-radius:28px;
    border:1px solid var(--border-color);
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-card h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-card p{
    line-height:2;
    max-width:650px;
    margin:auto auto 35px;
    opacity:.85;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================================
        FINAL QUOTE
========================================== */

.quote-section{
    padding:90px 8%;
    text-align:center;
}

.quote-section h2{
    font-size:42px;
    color:#4f7cff;
    line-height:1.6;
    max-width:900px;
    margin:auto;
}

.quote-section p{
    margin-top:25px;
    opacity:.75;
    font-size:18px;
}

/* ==========================================
        FOOTER
========================================== */

.about-footer{
    background:#111827;
    color:#fff;
    padding:70px 8%;
    margin-top:60px;
}

.footer-brand{
    text-align:center;
}

.footer-brand h2{
    font-size:34px;
    margin-bottom:10px;
}

.footer-brand p{
    opacity:.8;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin:40px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#7ea7ff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:35px;
    padding-top:25px;
    text-align:center;
    opacity:.75;
    line-height:1.8;
}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:768px){
.letter-card{
padding:35px 25px;
}

.letter-top{
font-size:24px;
}

.letter-card p{
font-size:16px;
}

.letter-sign{
text-align:center;
}

.counter-section{
grid-template-columns:1fr;
}

.contact-card{
padding:40px 25px;
}

.contact-card h2{
font-size:32px;
}

.quote-section h2{
font-size:30px;
}

.footer-links{
flex-direction:column;
gap:15px;
}

}