/*======================================
            ABOUT HERO
=======================================*/

.about-hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 0 100px;

}


.about-wrapper {

    display: grid;

    grid-template-columns: 58% 42%;

    align-items: center;

    gap: 70px;

}


.about-left {

    max-width: 760px;

}


.about-left h1 {

    margin: 30px 0;

    font-size: clamp(4.5rem, 7vw, 7rem);

    line-height: .98;

    letter-spacing: -4px;

    font-family: 'Sora', sans-serif;

    font-weight: 700;

    color: #fff;

}


.about-left p {

    font-size: 20px;

    line-height: 1.9;

    color: #9CA3AF;

    max-width: 650px;

    margin-bottom: 45px;

}


.about-left .hero-buttons {

    margin-top: 10px;

}


/*======================================
            ABOUT IMAGE
=======================================*/

.about-right {

    display: flex;

    flex-direction: column;

    align-items: center;

    position: relative;

}


.about-image {

    width: 420px;

    height: 520px;

    position: relative;

    border-radius: 36px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.04);

    backdrop-filter: blur(18px);

    box-shadow:

        0 35px 80px rgba(0,0,0,.45);

}


.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.about-image::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 38px;

    padding: 2px;

    background:

        linear-gradient(

            140deg,

            #7C3AED,

            #06B6D4,

            transparent,

            #7C3AED

        );

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;

    z-index: 2;

}


.about-image::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    background: #7C3AED;

    filter: blur(120px);

    opacity: .18;

    z-index: -1;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}


.about-info {

    margin-top: 30px;

    text-align: center;

}


.about-info h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 8px;

    font-family: 'Sora', sans-serif;

}


.about-info span {

    color: #94A3B8;

    letter-spacing: 1px;

    font-size: 17px;

}



/*======================================
            WHO I AM
=======================================*/

.who-i-am {

    padding: 190px 0;

}


.who-wrapper {

    max-width: 1200px;

    margin: auto;

}


.who-wrapper h2 {

    margin: 35px 0 80px;

    font-size: clamp(4rem, 6.5vw, 6.5rem);

    line-height: 1.02;

    color: #fff;

    font-family: 'Sora', sans-serif;

    letter-spacing: -4px;

    font-weight: 700;

}


.who-wrapper h2 span {

    display: block;

    margin-top: 25px;

    color: #7C3AED;

}


.who-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

}


.who-content p {

    color: #98A2B3;

    font-size: 20px;

    line-height: 1.9;

}



/*======================================
            SECTION HEADING
=======================================*/

.section-heading {

    max-width: 1000px;

    margin: 0 auto;

}


.section-heading h2 {

    margin-top: 30px;

    font-family: 'Sora', sans-serif;

    font-size: clamp(4rem, 6vw, 6rem);

    line-height: 1.02;

    letter-spacing: -3px;

    color: #fff;

}



/*======================================
            MY JOURNEY
=======================================*/

.journey {

    padding: 190px 0;

}


.timeline {

    position: relative;

    max-width: 1200px;

    margin: 110px auto 0;

}


.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 2px;

    height: 100%;

    background:

        linear-gradient(

            to bottom,

            rgba(124,58,237,.7),

            rgba(255,255,255,.08),

            rgba(6,182,212,.6)

        );

    transform: translateX(-50%);

}


.timeline-item {

    width: 50%;

    position: relative;

    padding: 35px 55px;

}


.timeline-item.left {

    left: 0;

    text-align: right;

}


.timeline-item.right {

    left: 50%;

}


.timeline-content {

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 28px;

    padding: 45px;

    backdrop-filter: blur(18px);

    transition:

        transform .4s ease,

        border-color .4s ease,

        box-shadow .4s ease;

}


.timeline-content:hover {

    transform: translateY(-12px);

    border-color: rgba(124,58,237,.7);

    box-shadow:

        0 25px 60px rgba(0,0,0,.25),

        0 0 40px rgba(124,58,237,.08);

}


.timeline-item::before {

    content: "";

    position: absolute;

    width: 20px;

    height: 20px;

    background: #7C3AED;

    border-radius: 50%;

    top: 58px;

    z-index: 2;

    box-shadow:

        0 0 0 7px rgba(124,58,237,.08),

        0 0 25px rgba(124,58,237,.5);

}


.timeline-item.left::before {

    right: -10px;

}


.timeline-item.right::before {

    left: -10px;

}


.year {

    color: #7C3AED;

    font-weight: 800;

    font-size: 18px;

    letter-spacing: 1px;

}


.timeline-content h3 {

    margin: 20px 0;

    color: #fff;

    font-size: 32px;

    line-height: 1.2;

    font-family: 'Sora', sans-serif;

}


.timeline-content p {

    color: #98A2B3;

    line-height: 1.9;

    font-size: 18px;

}



/*======================================
            WORKING PRINCIPLES
=======================================*/

.principles {

    padding: 190px 0;

}


.principles-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 90px;

}


.principle-card {

    position: relative;

    min-height: 380px;

    padding: 45px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,.08);

    background:

        linear-gradient(

            145deg,

            rgba(255,255,255,.045),

            rgba(255,255,255,.015)

        );

    overflow: hidden;

    transition:

        transform .4s ease,

        border-color .4s ease;

}


.principle-card::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    background: #7C3AED;

    filter: blur(100px);

    opacity: .12;

    transition: .4s ease;

}


.principle-card:hover {

    transform: translateY(-10px);

    border-color: rgba(124,58,237,.5);

}


.principle-card:hover::after {

    opacity: .25;

}


.principle-number {

    font-size: 16px;

    color: #7C3AED;

    font-weight: 700;

    letter-spacing: 1px;

}


.principle-icon {

    margin-top: 55px;

    font-size: 42px;

    color: #06B6D4;

}


.principle-card h3 {

    margin: 25px 0 15px;

    color: #fff;

    font-family: 'Sora', sans-serif;

    font-size: 34px;

}


.principle-card p {

    max-width: 500px;

    color: #98A2B3;

    font-size: 18px;

    line-height: 1.8;

}



/*======================================
            BEYOND WORK
=======================================*/

.beyond-work {

    padding: 190px 0;

}


.beyond-wrapper {

    display: grid;

    grid-template-columns: 25% 75%;

    gap: 60px;

    max-width: 1200px;

    margin: auto;

}


.beyond-content {

    max-width: 950px;

}


.beyond-content h2 {

    margin: 0 0 50px;

    font-family: 'Sora', sans-serif;

    font-size: clamp(4rem, 6vw, 6.2rem);

    line-height: 1;

    letter-spacing: -4px;

    color: #fff;

}


.beyond-content p {

    max-width: 800px;

    color: #98A2B3;

    font-size: 20px;

    line-height: 1.9;

    margin-bottom: 25px;

}



/*======================================
                CTA
=======================================*/

.about-cta {

    padding: 120px 0 180px;

}


.cta-box {

    position: relative;

    text-align: center;

    padding: 110px 50px;

    border-radius: 40px;

    border: 1px solid rgba(255,255,255,.08);

    background:

        radial-gradient(

            circle at 50% 20%,

            rgba(124,58,237,.18),

            transparent 45%

        ),

        rgba(255,255,255,.025);

    overflow: hidden;

}


.cta-box::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: 50%;

    top: 50%;

    transform: translate(-50%,-50%);

    background: #7C3AED;

    filter: blur(180px);

    opacity: .08;

    pointer-events: none;

}


.cta-box h2 {

    position: relative;

    margin: 30px auto;

    max-width: 900px;

    font-family: 'Sora', sans-serif;

    font-size: clamp(4rem, 6vw, 6.5rem);

    line-height: 1;

    letter-spacing: -4px;

    color: #fff;

}


.cta-box h2 span {

    display: block;

    color: #7C3AED;

    margin-top: 15px;

}


.cta-box p {

    position: relative;

    max-width: 650px;

    margin: 0 auto 45px;

    color: #98A2B3;

    font-size: 20px;

    line-height: 1.8;

}



/*======================================
                FOOTER
=======================================*/

.about-footer {

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 70px 0 35px;

}


.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 60px;

    padding-bottom: 60px;

}


.footer-brand {

    max-width: 420px;

}


.footer-brand .logo {

    display: inline-block;

    margin-bottom: 20px;

}


.footer-brand p {

    color: #98A2B3;

    line-height: 1.8;

    font-size: 16px;

}


.footer-links {

    display: flex;

    align-items: flex-start;

    gap: 35px;

    flex-wrap: wrap;

}


.footer-links a {

    color: #98A2B3;

    text-decoration: none;

    font-size: 16px;

    transition: color .3s ease;

}


.footer-links a:hover {

    color: #fff;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.07);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    color: #667085;

    font-size: 14px;

}



/*======================================
            LARGE SCREENS
=======================================*/

@media (min-width: 1400px) {

    .about-wrapper {

        gap: 100px;

    }

}



/*======================================
            TABLET
=======================================*/

@media (max-width: 1100px) {


    .about-wrapper {

        grid-template-columns: 1fr;

        gap: 70px;

        text-align: center;

    }


    .about-left {

        margin: auto;

    }


    .about-left p {

        margin-left: auto;

        margin-right: auto;

    }


    .about-left .hero-buttons {

        justify-content: center;

    }


    .about-image {

        width: 360px;

        height: 460px;

    }


    .who-wrapper {

        max-width: 90%;

    }


    .principles-grid {

        gap: 20px;

    }


    .beyond-wrapper {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}



/*======================================
            TABLET / SMALL LAPTOP
=======================================*/

@media (max-width: 992px) {


    .who-content {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .principles-grid {

        grid-template-columns: 1fr;

    }


    .timeline {

        margin-top: 70px;

    }

}



/*======================================
            MOBILE
=======================================*/

@media (max-width: 900px) {


    .timeline::before {

        left: 25px;

    }


    .timeline-item {

        width: 100%;

        left: 0 !important;

        padding-left: 70px;

        padding-right: 0;

        text-align: left !important;

    }


    .timeline-item::before {

        left: 15px !important;

        right: auto !important;

    }


    .timeline-content {

        padding: 30px;

    }


    .timeline-content h3 {

        font-size: 27px;

    }

}



/*======================================
            SMALL MOBILE
=======================================*/

@media (max-width: 768px) {


    .about-hero {

        padding: 120px 0 80px;

    }


    .about-left h1 {

        font-size: 3.4rem;

        letter-spacing: -2px;

    }


    .about-left p {

        font-size: 17px;

    }


    .about-image {

        width: 290px;

        height: 380px;

    }


    .about-info h3 {

        font-size: 25px;

    }


    .who-i-am,
    .journey,
    .principles,
    .beyond-work {

        padding: 120px 0;

    }


    .who-wrapper h2,
    .section-heading h2,
    .beyond-content h2 {

        font-size: 3.4rem;

        letter-spacing: -2px;

    }


    .who-content p,
    .beyond-content p {

        font-size: 17px;

    }


    .timeline {

        margin-top: 50px;

    }


    .timeline-item {

        padding-left: 60px;

    }


    .timeline-content {

        padding: 28px;

        border-radius: 22px;

    }


    .timeline-content h3 {

        font-size: 24px;

    }


    .timeline-content p {

        font-size: 16px;

    }


    .principle-card {

        min-height: auto;

        padding: 35px;

    }


    .principle-card h3 {

        font-size: 29px;

    }


    .principle-card p {

        font-size: 16px;

    }


    .beyond-wrapper {

        gap: 35px;

    }


    .cta-box {

        padding: 80px 25px;

        border-radius: 28px;

    }


    .cta-box h2 {

        font-size: 3.5rem;

        letter-spacing: -2px;

    }


    .cta-box p {

        font-size: 17px;

    }


    .footer-top {

        flex-direction: column;

        gap: 40px;

    }


    .footer-links {

        gap: 20px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }

}