
#headline-section {
    position: relative;
    overflow: hidden;
    padding: 224px 0;          /* preserve your vertical spacing */
    padding-top: 144px;
    background-color: var(--primary-background);

    .container {
        position: relative;
        z-index: 1;

        /* --- Headline wrapper & layout --- */
        .headline {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            width: 100%;
            height: 100%;
        }

        .headline__text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        /* --- Title styling --- */
        .headline__title {
            max-width: 1029px;
            text-align: center;
            font-family: 'Rubik', sans-serif;
            font-size: 55px;
            font-weight: 700;
            line-height: 76px;
        }

        .headline__title--primary {
            color: #ffffff;
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.20);
        }

        .headline__title--accent {
            /* hide the solid color */
            color: transparent;

            /* keep your text shadow */
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.20);

            /* paint a left→right gradient from primary → tertiary → your old accent */
            background-image: linear-gradient(
                    to right,
                    var(--tertiary-color),
                    var(--primary-color)
            );

            /* clip the gradient to the letters */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* --- Subtitle styling --- */
        .headline__subtitle {
            max-width: 1029px;
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            line-height: 30px;
            color: #ABABAB;
        }

        .headline__subtitle--bold {
            font-weight: 700;
        }

        .headline__subtitle--normal {
            font-weight: 400;
        }

        /* --- CTA button container --- */
        .headline__cta {
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            gap: 16px;
        }

        /* --- Explore button --- */
        .btn--explore {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: #C13C90;
            color: #ffffff;
            border-radius: 100px;
            outline: 1px solid #FACEEA;
            outline-offset: -1px;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 18px;
            cursor: pointer;
            border: none;
        }


    }
    video#hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        width: auto;
        height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;               /* behind overlay & content */
    }


    .section-heading {
        width: 100%;
        text-align: center;
        color: white;
        font-size: 28px;
        font-family: 'Rubik', sans-serif;
        font-weight: 700;
        line-height: 40px;
        word-wrap: break-word;
    }

}


/* Semi-opaque layer between video and content */
#headline-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}




/* Second section base */
#second-section {
    background-color: var(--primary-background);
    padding-bottom: 90px;
    .container {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .about-card {
            margin-top: -200px;
            position: relative;
            z-index: 2;
            width: 70%;
            height: 100%;
            padding: 12px;
            background: linear-gradient(180deg, rgba(23.91, 25.77, 42.50, 0.50) 0%, rgba(23.91, 35.81, 42.50, 0.23) 0%, rgba(13.60, 19.88, 34, 0.50) 100%);
            border-radius: 32px;
            outline: 2px #252528 solid;
            outline-offset: -2px;
            backdrop-filter: blur(24px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
        }

        .about-card__inner {
            flex: 1 1 0;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
        }

        .about-card__image-wrapper {
            flex: 1 1 0;
            width: 100%;
            background: linear-gradient(180deg, #181A2B 0%, rgba(24, 26, 43, 0.46) 0%, #0E1422 100%);
            overflow: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 32px;
        }

        .about-card__image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
        }

    }
}


#dna-section{
    background-color: var(--primary-background);
    padding: 0;
    .container{
        .dna-section {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 24px;
            text-align: center;
            padding: 0 16px; /* adds mobile spacing */
        }

        .dna-title {
            max-width: 100%;
            font-size: 55px;
            font-family: 'Rubik', sans-serif;
            font-weight: 700;
            line-height: 76px;
            color: transparent;
            background: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.2);
        }

        .dna-description {
            max-width: 100%;
            font-size: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 30px;
            color: #ABABAB;
        }

    }
}


#dna-detail-section{
    background-color: var(--primary-background);
    padding: 0;
    padding-bottom:60px;
    .container{
        padding-top: 0;
        .frosted-card {
            background: linear-gradient(
                    180deg,
                    rgba(23, 25, 42, 0.5) 0%,
                    rgba(23, 35, 42, 0.23) 0%,
                    rgba(13, 19, 34, 0.5) 100%
            );
            backdrop-filter: blur(24px);
            border-radius: 20px;
            outline: 2px solid #252528;
            outline-offset: -2px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title-text {
            width: 100%;
            color: white;
            font-size: 2rem;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            line-height: 1.3;
        }

        .card-description-text {
            width: 100%;
            color: #ABABAB;
            font-size: 1.125rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.7;
        }

        img{
        }
    }
}


#people-section{
    background-color: var(--primary-background);
    padding: 0;
    .container{
        .dna-section {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 24px;
            text-align: center;
            padding: 0 16px; /* adds mobile spacing */
        }

        .dna-title {
            max-width: 100%;
            font-size: 55px;
            font-family: 'Rubik', sans-serif;
            font-weight: 700;
            line-height: 76px;
            color: transparent;
            background: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.2);
        }

        .dna-description {
            max-width: 100%;
            font-size: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 30px;
            color: #ABABAB;
        }

    }
}

#people-detail-section{
    background-color: var(--primary-background);
    padding: 0;
    .container{
        padding-top: 0;
        .frosted-card {
            background: linear-gradient(
                    180deg,
                    rgba(23, 25, 42, 0.5) 0%,
                    rgba(23, 35, 42, 0.23) 0%,
                    rgba(13, 19, 34, 0.5) 100%
            );
            backdrop-filter: blur(24px);
            border-radius: 20px;
            outline: 2px solid #252528;
            outline-offset: -2px;
            display: flex;
            flex-direction: column;
            justify-content: center;

            img{
                border-radius: 20px;
            }
        }

        .card-title-text {
            width: 100%;
            color: white;
            font-size: 2rem;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            line-height: 1.3;
        }

        .card-title-quote {
            width: 100%;
            color: white;
            font-size: 2rem;
            font-family: 'Rubik', sans-serif;
            font-weight: 700;
            line-height: 1.3;

            /* ─────── ADD THESE ─────── */
            display: inline-block;                   /* shrink-wrap so scale works */
            transform-origin: center center;         /* grow from center */
            transition:
                    transform 0.3s ease-in-out,
                    background 0.3s ease-in-out,
                    backdrop-filter 0.3s ease-in-out,
                    padding 0.3s ease-in-out;
        }

        .card-title-quote:hover {
            /* width: 100vw; */                      /* ← you can comment this out */
            /* ─────── ADD THESE ─────── */
            transform: scale(1.05);                  /* slight grow */
            padding: 0.5rem 1rem;                    /* breathing room */
            border-radius: 8px;                      /* soften corners */
            background: rgba(255,255,255,0.15);      /* frosted white overlay */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }


        .card-description-text {
            width: 100%;
            color: #ABABAB;
            font-size: 1.125rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.7;
        }

        img{
            padding: 5px;
            background-color: white;
        }
    }
}

#seventh-section {
    background-color: var(--primary-background);
    .container{
        padding: 0;
        /* Container that wraps everything */
        position: relative;      /* NEW */
        .cta-section {
            width: 100%;
            height: 100%;
            padding: 64px 180px;
            overflow: hidden;

            display: inline-flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;

            /* new: rounded corners + thin border */
            border-radius: 24px;

            /* new: outline for extra pop */
            outline: 1px solid var(--outline-color);
        }

        /* Inner flex column for text + buttons */
        .cta-content {
            position: relative;      /* NEW */
            z-index: 1;              /* NEW */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
        }

        .cta-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;   /* cover the area without distortion */
            z-index: 0;          /* behind .cta-content */

            /* ← NEW: match parent’s corner radius */
            border-radius: inherit;
        }


        /* Text block wrapper */
        .cta-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
        }

        /* Main heading */
        .cta-title {
            width: 100%;
            text-align: center;
            color: #ffffff;
            font-size: 48px;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            text-transform: capitalize;
            line-height: 62.4px;
            word-wrap: break-word;
        }

        /* Subtitle below the heading */
        .cta-subtitle {
            width: 100%;
            text-align: center;
            color: #ABABAB;
            font-size: 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 30px;
            word-wrap: break-word;
        }

        /* Buttons container */
        .cta-buttons {
            display: inline-flex;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
        }

        /* Primary button style */
        .btn-primary {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;

            padding: 16px 32px;
            background: #C13C90;
            border-radius: 100px;
            outline: 1px #FACEEA solid;
            outline-offset: -1px;

            color: #ffffff;
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            line-height: 18px;
            text-decoration: none;
        }

        /* Secondary button style */
        .btn-secondary {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;

            height: 56px;
            padding: 16px 32px;
            background: rgba(5, 7, 17, 0.5);
            border-radius: 100px;
            outline: 1px #ffffff solid;
            outline-offset: -1px;

            color: #ffffff;
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            line-height: 18px;
            text-decoration: none;
        }


    }
}