/* =====================================================
   STICK NOTE — ABOUT PAGE
   ABOUT.CSS
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
font-family: "DM Sans", sans-serif;
    background: #07111f;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* ============================================================
   NAVBAR
============================================================ */






/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {
position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* GRID */

.about-grid {
    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


/* GLOW */

.about-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 5%;
    top: 15%;

    border-radius: 50%;

    background: rgba(0, 87, 184, 0.22);

    filter: blur(80px);
}


/* HERO CONTAINER */

.about-hero-container {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 50px;

    padding-top: 100px;
}


/* EYEBROW */

.about-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffd400;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;

    animation: fadeUp 0.8s ease both;
}

.eyebrow-line {
    width: 35px;
    height: 2px;

    background: #ffd400;
}


/* HERO HEADING */

.about-hero h1 {
    max-width: 700px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.92;

    letter-spacing: -5px;

    animation: fadeUp 0.8s 0.1s ease both;
}

.about-hero h1 span {
    display: block;

    color: #ffd400;
}


/* HERO TEXT */

.about-hero p {
    max-width: 600px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.65);

    animation: fadeUp 0.8s 0.2s ease both;
}


/* SCROLL LINK */

.about-scroll {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-top: 35px;

    font-size: 14px;
    font-weight: 600;

    animation: fadeUp 0.8s 0.3s ease both;

    transition: 0.3s ease;
}

.about-scroll span {
    color: #ffd400;

    font-size: 20px;

    transition: transform 0.3s ease;
}

.about-scroll:hover {
    color: #ffd400;
}

.about-scroll:hover span {
    transform: translateY(5px);
}


/* =====================================================
   HERO VISUAL
===================================================== */

.about-visual {
    position: relative;

    height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* CIRCLES */

.visual-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.15);

    animation: pulseCircle 5s ease-in-out infinite;
}

.visual-circle-one {
    width: 450px;
    height: 450px;
}

.visual-circle-two {
    width: 330px;
    height: 330px;

    border-color: rgba(255, 212, 0, 0.35);

    animation-delay: 0.8s;
}


/* STICKY CARD */

.sticky-card {
    position: relative;
    z-index: 3;

    width: 260px;
    height: 260px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffd400;
    color: #07111f;

    transform: rotate(-7deg);

    box-shadow:
        20px 25px 60px rgba(0, 0, 0, 0.4);

    animation: floatingCard 4s ease-in-out infinite;

    transition: 0.4s ease;
}

.sticky-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.sticky-small {
    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}

.sticky-card strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 55px;

    line-height: 1;
}

.sticky-arrow {
    position: absolute;

    right: 25px;
    bottom: 20px;

    font-size: 30px;
}


/* =====================================================
   MARQUEE
===================================================== */

.hero-marquee {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    padding: 18px 0;
}

.hero-marquee-track {
    display: flex;

    align-items: center;

    gap: 40px;

    width: max-content;

    animation: marquee 25s linear infinite;
}

.hero-marquee span {
    font-family: "Space Grotesk", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;
}

.hero-marquee i {
    color: #ffd400;

    font-style: normal;
}



/* =====================================================
   APPROACH
===================================================== */

.about-approach {
    padding: 140px 0;

    background: #07111f;
}

.approach-heading {
    display: grid;

    grid-template-columns: 1fr 0.55fr;

    gap: 80px;

    margin-bottom: 70px;
}

.approach-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.approach-heading h2 span {
    display: block;

    color: #ffd400;
}

.approach-heading p {
    align-self: end;

    color: rgba(255, 255, 255, 0.55);

    font-size: 17px;

    line-height: 1.7;
}


/* APPROACH GRID */

.approach-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* APPROACH CARD */

.approach-card {
    min-height: 370px;

    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.025);

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.approach-card:hover {
    background: #0057b8;

    border-color: #0057b8;

    transform: translateY(-8px);
}


/* CARD TOP */

.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #ffd400;

    font-size: 13px;

    font-weight: 700;
}

.card-symbol {
    font-size: 24px;

    transition: transform 0.4s ease;
}

.approach-card:hover .card-symbol {
    transform: rotate(45deg);
}


/* CARD HEADING */

.approach-card h3 {
    margin-top: 100px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 45px;
}

.approach-card p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    line-height: 1.7;

    font-size: 15px;

    transition: color 0.4s ease;
}

.approach-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;

        transform: translateY(35px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


@keyframes floatingCard {

    0%,
    100% {
        transform:
            rotate(-7deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-4deg)
            translateY(-18px);
    }

}


@keyframes pulseCircle {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);

        opacity: 1;
    }

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 900px) {


    /* NAV */

    

    

    

    

    

    

    


    /* HERO */

    .about-hero-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 400px;
    }


    /* TEAM */

    .team-heading,
    .approach-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* APPROACH */

    .approach-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {


    




    


    .about-hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }


    .about-hero p {
        font-size: 16px;
    }


    .about-visual {
        height: 330px;
    }


    .visual-circle-one {
        width: 300px;
        height: 300px;
    }


    .visual-circle-two {
        width: 220px;
        height: 220px;
    }


    .sticky-card {
        width: 190px;
        height: 190px;
    }


    .sticky-card strong {
        font-size: 40px;
    }


    .about-team,
    .about-approach {
        padding: 90px 0;
    }


    .team-heading h2,
    .approach-heading h2 {
        font-size: 45px;
    }


    .team-grid {
        grid-template-columns: 1fr;
    }


    .team-image {
        height: 380px;
    }


    .approach-card {
        min-height: 320px;
    }


    .approach-card h3 {
        margin-top: 70px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}