

/* =========================================================
   ABOUT SECTION 1
========================================================= */

.about-section.section-1 {
    position: relative;

    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 100px 0 100px;

    background: #050505;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.about-container {
    position: relative;

    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;

    min-height: calc(100vh - 250px);

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 50px;

    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero-content {
    position: relative;

    z-index: 5;

    max-width: 650px;

    padding-top: 30px;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.about-eyebrow-line {
    width: 34px;
    height: 1px;

    background: #c6ff00;

    box-shadow:
        0 0 8px rgba(198, 255, 0, 0.45);
}


/* =========================================================
   HERO TITLE
========================================================= */

.about-hero-content h1 {
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(58px, 6vw, 94px);

    line-height: 0.94;

    letter-spacing: -0.055em;

    font-weight: 500;

    max-width: 650px;
}

.about-hero-content h1 span {
    color: #c6ff00;

    text-shadow:
        0 0 25px rgba(198, 255, 0, 0.08);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-hero-content p {
    max-width: 610px;

    margin: 38px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 17px;

    line-height: 1.7;

    letter-spacing: -0.01em;
}


/* =========================================================
   CTA
========================================================= */

.about-actions {
    margin-top: 38px;
}

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.about-btn-primary {
    color: #050505;

    background: #c6ff00;

    box-shadow:
        0 0 30px rgba(198, 255, 0, 0.15);
}

.about-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 35px rgba(198, 255, 0, 0.22);
}

.about-btn span {
    font-size: 18px;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.about-network-visual {
    position: relative;

    width: 100%;
    height: 620px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 1;

    overflow: visible;
}


/* =========================================================
   CENTRAL ATMOSPHERIC GLOW
========================================================= */

.network-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(198, 255, 0, 0.16) 0%,
            rgba(198, 255, 0, 0.07) 28%,
            rgba(198, 255, 0, 0.025) 48%,
            transparent 72%
        );

    filter: blur(8px);

    pointer-events: none;
}


/* =========================================================
   CENTRAL CORE
========================================================= */

.network-core {
    position: absolute;

    width: 190px;
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 4;
}

.network-core-inner {
    position: relative;

    width: 112px;
    height: 112px;

    border: 1px solid rgba(198, 255, 0, 0.85);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at center,
            rgba(198, 255, 0, 0.08),
            rgba(5, 5, 5, 0.96) 65%
        );

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 20px rgba(198, 255, 0, 0.12),
        inset 0 0 25px rgba(198, 255, 0, 0.04);
}

.network-core-inner span {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.2em;
}

.network-core-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c6ff00;

    box-shadow:
        0 0 12px #c6ff00,
        0 0 25px rgba(198, 255, 0, 0.65);
}


/* =========================================================
   CORE RINGS
========================================================= */

.network-core-ring {
    position: absolute;

    border: 1px solid rgba(198, 255, 0, 0.18);

    border-radius: 50%;

    pointer-events: none;
}

.ring-1 {
    width: 150px;
    height: 150px;
}

.ring-2 {
    width: 205px;
    height: 205px;
}

.ring-3 {
    width: 260px;
    height: 260px;

    border-color: rgba(198, 255, 0, 0.08);
}


/* =========================================================
   NETWORK NODES
========================================================= */

.network-node {
    position: absolute;

    width: 22px;
    height: 22px;

    border: 1px solid rgba(198, 255, 0, 0.85);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #070707;

    box-shadow:
        0 0 12px rgba(198, 255, 0, 0.28);

    z-index: 5;
}

.network-node span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c6ff00;

    box-shadow:
        0 0 10px #c6ff00;
}


/* =========================================================
   NODE POSITIONS
========================================================= */

.node-1 {
    top: 24%;
    left: 15%;
}

.node-2 {
    top: 28%;
    right: 13%;
}

.node-3 {
    bottom: 22%;
    left: 18%;
}

.node-4 {
    bottom: 25%;
    right: 15%;
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.network-line {
    position: absolute;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(198, 255, 0, 0.7),
            rgba(198, 255, 0, 0.18),
            transparent
        );

    box-shadow:
        0 0 8px rgba(198, 255, 0, 0.22);

    z-index: 2;

    pointer-events: none;
}


/* top-left → core */

.network-line-1 {
    width: 300px;

    top: 34%;
    left: 18%;

    transform: rotate(24deg);
}


/* top-right → core */

.network-line-2 {
    width: 290px;

    top: 34%;
    right: 17%;

    transform-origin: right center;

    transform: rotate(-25deg);
}


/* bottom-left → core */

.network-line-3 {
    width: 300px;

    bottom: 31%;
    left: 19%;

    transform: rotate(-22deg);
}


/* bottom-right → core */

.network-line-4 {
    width: 300px;

    bottom: 31%;
    right: 18%;

    transform-origin: right center;

    transform: rotate(22deg);
}


/* =========================================================
   NETWORK LABELS
========================================================= */

.network-label {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    z-index: 6;
}

.network-label span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #c6ff00;

    box-shadow:
        0 0 8px #c6ff00;
}

.label-advertisers {
    top: 17%;
    left: 13%;
}

.label-publishers {
    top: 19%;
    right: 9%;
}

.label-performance {
    bottom: 17%;
    right: 16%;
}

.label-Traffic{
    bottom: 17%;
    left: 13%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .about-section.section-1 {
        min-height: auto;

        padding:
            135px
            0
            80px;
    }

    .about-container {
        width: min(
            100% - 40px,
            650px
        );

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-hero-content {
        padding-top: 20px;
    }

    .about-hero-content h1 {
        font-size: clamp(
            48px,
            12vw,
            72px
        );

        line-height: 0.95;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-network-visual {
        height: 500px;

        margin-top: 10px;
    }

    .network-glow {
        width: 400px;
        height: 400px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-section.section-1 {
        padding-top: 120px;
    }

    .about-container {
        width: calc(100% - 32px);

        gap: 30px;
    }

    .about-hero-content h1 {
        font-size: 48px;

        letter-spacing: -0.045em;
    }

    .about-hero-content p {
        margin-top: 26px;

        font-size: 15px;

        line-height: 1.6;
    }

    .about-actions {
        margin-top: 28px;
    }

    .about-btn {
        min-height: 52px;

        padding: 0 24px;
    }

    .about-network-visual {
        height: 400px;

        margin-top: 0;
    }

    .network-glow {
        width: 330px;
        height: 330px;
    }

    .network-core {
        transform: scale(0.8);
    }

    .network-node {
        transform: scale(0.8);
    }

    .network-line {
        opacity: 0.75;
    }

    .network-label {
        font-size: 8px;

        letter-spacing: 0.12em;
    }

}

/* =====================================================
   SECTION 2 — WHO WE ARE
===================================================== */

.about-intro-section {
    position: relative;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #020303;
}


/* -----------------------------------------------------
   BACKGROUND IMAGE
----------------------------------------------------- */

.about-intro-bg {
    position: absolute;
    inset: 0;

    background-image: url("../images/backround1.png ");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.03);

    filter: brightness(0.78) saturate(1.05);

    z-index: 0;
}


/* -----------------------------------------------------
   DARK OVERLAY
----------------------------------------------------- */

.about-intro-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(170, 255, 0, 0.08),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.62)
        );

    z-index: 1;

    pointer-events: none;
}


/* -----------------------------------------------------
   CONTENT WRAPPER
----------------------------------------------------- */

.about-intro-content {
    position: relative;

    width: 100%;
    max-width: 1280px;

    padding: 120px 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}


/* -----------------------------------------------------
   GLASS CARD
----------------------------------------------------- */

.about-intro-card {
    position: relative;

    width: min(850px, 100%);

    padding: 70px 75px;

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(190, 255, 0, 0.35);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.65),
        0 0 70px rgba(180, 255, 0, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    text-align: center;

    overflow: hidden;
}


/* Subtle glass glow */

.about-intro-card::before {
    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 450px;
    height: 450px;

    transform: translateX(-50%);

    background: rgba(190, 255, 0, 0.07);

    filter: blur(100px);

    pointer-events: none;
}


/* -----------------------------------------------------
   LOGO
----------------------------------------------------- */

.about-intro-logo {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 30px;
}

.about-intro-logo img {
    width: 220px;
    max-width: 70%;

    height: auto;

    object-fit: contain;
}


/* -----------------------------------------------------
   TOP DIVIDER
----------------------------------------------------- */

.about-intro-divider {
    position: relative;

    width: 100%;
    height: 1px;

    margin-bottom: 35px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 255, 0, 0.7),
            transparent
        );
}


/* -----------------------------------------------------
   MAIN TEXT
----------------------------------------------------- */

.about-intro-text {
    position: relative;

    max-width: 720px;

    margin: 0 auto;
}

.about-intro-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.65;

    font-weight: 400;
}

.about-intro-text p span {
    color: #c8ff00;

    font-weight: 600;
}


/* -----------------------------------------------------
   INTERNAL DIVIDERS
----------------------------------------------------- */

.about-intro-line {
    width: 55%;

    height: 1px;

    margin: 28px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );
}


/* -----------------------------------------------------
   VALUES
----------------------------------------------------- */

.about-intro-values {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding-top: 35px;
}


/* -----------------------------------------------------
   VALUE ITEM
----------------------------------------------------- */

.about-value {
    min-height: 120px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 15px;

    padding: 0 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.about-value:last-child {
    border-right: none;
}


/* -----------------------------------------------------
   VALUE ICON
----------------------------------------------------- */

.about-value-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #d1ff00;

    font-size: 27px;

    border: 1px solid rgba(200, 255, 0, 0.55);

    background:
        radial-gradient(
            circle,
            rgba(200, 255, 0, 0.12),
            rgba(200, 255, 0, 0.025)
        );

    box-shadow:
        0 0 25px rgba(190, 255, 0, 0.13),
        inset 0 0 20px rgba(190, 255, 0, 0.05);
}


/* -----------------------------------------------------
   VALUE TEXT
----------------------------------------------------- */

.about-value span {
    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;

    line-height: 1.4;

    text-align: center;

    font-weight: 500;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .about-intro-content {
        padding: 100px 25px;
    }

    .about-intro-card {
        padding: 55px 45px;
    }

    .about-intro-values {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 30px;
    }

    .about-value:nth-child(2) {
        border-right: none;
    }

    .about-value:nth-child(1),
    .about-value:nth-child(2) {
        padding-bottom: 25px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-intro-section {
        min-height: auto;
    }

    .about-intro-bg {
        background-position: center center;

        transform: scale(1.08);
    }

    .about-intro-content {
        padding: 90px 16px;
    }

    .about-intro-card {
        width: 100%;

        padding: 42px 22px;

        border-radius: 24px;

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }


    /* Logo */

    .about-intro-logo {
        margin-bottom: 22px;
    }

    .about-intro-logo img {
        width: 175px;
    }


    /* Text */

    .about-intro-text p {
        font-size: 17px;

        line-height: 1.65;
    }

    .about-intro-line {
        width: 70%;

        margin: 23px auto;
    }


    /* Values */

    .about-intro-values {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 40px;

        padding-top: 28px;

        row-gap: 25px;
    }

    .about-value {
        min-height: 105px;

        padding: 0 10px;

        gap: 12px;
    }

    .about-value-icon {
        width: 50px;
        height: 50px;

        font-size: 22px;
    }

    .about-value span {
        font-size: 13px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .about-intro-content {
        padding: 80px 12px;
    }

    .about-intro-card {
        padding: 35px 18px;
    }

    .about-intro-logo img {
        width: 155px;
    }

    .about-intro-text p {
        font-size: 16px;
    }

    .about-value-icon {
        width: 46px;
        height: 46px;
    }

    .about-value span {
        font-size: 12px;
    }
}

/* =========================================================
   ABOUT PAGE — SECTIONS 3–7
========================================================= */


/* =========================================================
   SHARED
========================================================= */

.about-flow-section,
.about-value-section,
.about-stats-section,
.about-why-section,
.about-final-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.48);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;

    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: #c8ff00;
    box-shadow: 0 0 10px rgba(200,255,0,.7);
}

.about-section-heading h2,
.about-value-header h2,
.about-stats-heading h2,
.about-why-copy h2,
.about-final-content h2 {
    margin: 25px 0 0;

    color: #fff;

    font-size: clamp(48px, 6vw, 92px);

    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 600;
}

.about-section-heading h2 span,
.about-value-header h2 span,
.about-stats-heading h2 span,
.about-why-copy h2 span,
.about-final-content h2 span {
    color: #c8ff00;
}

.about-section-heading p,
.about-value-header > p,
.about-stats-heading p,
.about-why-copy p,
.about-final-content p {
    color: rgba(255,255,255,.53);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   AFFLEADHUB — SECTION 3
   PRINCIPLES
========================================================= */

.ahp3-section {
    position: relative;
    width: 100%;

    padding: 150px 0 140px;

    background: #050505;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.ahp3-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.ahp3-header {
    max-width: 760px;
    margin-bottom: 65px;
}

.ahp3-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;

    color: rgba(255, 255, 255, 0.38);
}

.ahp3-eyebrow span {
    width: 30px;
    height: 1px;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200, 255, 0, 0.5);
}


.ahp3-header h2 {
    margin: 0;

    font-size: clamp(58px, 7vw, 92px);
    line-height: 0.92;

    font-weight: 500;
    letter-spacing: -0.055em;
}

.ahp3-header h2 span {
    display: block;

    color: #c8ff00;

    text-shadow:
        0 0 35px rgba(200, 255, 0, 0.08);
}


.ahp3-header p {
    max-width: 600px;

    margin: 28px 0 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.43);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.ahp3-principles {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   LEFT CARD LIST
========================================================= */

.ahp3-card-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   SMALL PRINCIPLE CARD
========================================================= */

.ahp3-card {
    position: relative;

    min-height: 82px;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr)
        24px;

    align-items: center;

    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 13px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.008)
        );

    cursor: pointer;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* CARD HOVER */

.ahp3-card:hover {
    transform: translateX(5px);

    border-color:
        rgba(200, 255, 0, 0.55);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(200, 255, 0, 0.07),
            transparent 55%
        ),
        rgba(255, 255, 255, 0.025);

    box-shadow:
        0 0 30px rgba(200, 255, 0, 0.04);
}


/* NUMBER */

.ahp3-card-number {
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.25);

    transition: color 0.3s ease;
}

.ahp3-card:hover .ahp3-card-number {
    color: #c8ff00;
}


/* CONTENT */

.ahp3-card-content {
    min-width: 0;
}

.ahp3-card-content h3 {
    margin: 0;

    font-size: 15px;
    line-height: 1.2;

    font-weight: 600;

    color: #ffffff;
}

.ahp3-card-content p {
    margin: 4px 0 0;

    font-size: 10px;
    line-height: 1.35;

    color: rgba(255, 255, 255, 0.36);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ARROW */

.ahp3-card-arrow {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.20);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ahp3-card:hover .ahp3-card-arrow {
    color: #c8ff00;

    transform: translate(2px, -2px);
}


/* =========================================================
   RIGHT INFORMATION AREA
========================================================= */

.ahp3-information {
    position: relative;

    min-height: 358px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 24px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(200, 255, 0, 0.085),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    isolation: isolate;
}


/* subtle glow */

.ahp3-information::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    bottom: -140px;

    border:
        1px solid rgba(200, 255, 0, 0.12);

    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(200, 255, 0, 0.025),
        0 0 0 70px rgba(200, 255, 0, 0.012);

    pointer-events: none;
}


/* =========================================================
   DETAIL PANELS
========================================================= */

.ahp3-detail {
    position: absolute;

    inset: 0;

    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}


/* FIRST PANEL DEFAULT */

.ahp3-detail-01 {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   HOVER SWITCHING
========================================================= */

/* 01 */
.ahp3-principles:has(.ahp3-card-01:hover)
.ahp3-detail-01 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ahp3-principles:has(.ahp3-card-01:hover)
.ahp3-detail-02,
.ahp3-principles:has(.ahp3-card-01:hover)
.ahp3-detail-03,
.ahp3-principles:has(.ahp3-card-01:hover)
.ahp3-detail-04 {
    opacity: 0;
    visibility: hidden;
}


/* 02 */
.ahp3-principles:has(.ahp3-card-02:hover)
.ahp3-detail-01,
.ahp3-principles:has(.ahp3-card-02:hover)
.ahp3-detail-03,
.ahp3-principles:has(.ahp3-card-02:hover)
.ahp3-detail-04 {
    opacity: 0;
    visibility: hidden;
}

.ahp3-principles:has(.ahp3-card-02:hover)
.ahp3-detail-02 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* 03 */
.ahp3-principles:has(.ahp3-card-03:hover)
.ahp3-detail-01,
.ahp3-principles:has(.ahp3-card-03:hover)
.ahp3-detail-02,
.ahp3-principles:has(.ahp3-card-03:hover)
.ahp3-detail-04 {
    opacity: 0;
    visibility: hidden;
}

.ahp3-principles:has(.ahp3-card-03:hover)
.ahp3-detail-03 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* 04 */
.ahp3-principles:has(.ahp3-card-04:hover)
.ahp3-detail-01,
.ahp3-principles:has(.ahp3-card-04:hover)
.ahp3-detail-02,
.ahp3-principles:has(.ahp3-card-04:hover)
.ahp3-detail-03 {
    opacity: 0;
    visibility: hidden;
}

.ahp3-principles:has(.ahp3-card-04:hover)
.ahp3-detail-04 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   DETAIL TOP
========================================================= */

.ahp3-detail-top {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.ahp3-detail-number {
    font-size: 11px;
    font-weight: 600;

    color: #c8ff00;
}

.ahp3-detail-label {
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.15em;

    color: rgba(255, 255, 255, 0.22);
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.ahp3-detail-main {
    max-width: 620px;

    margin-top: auto;
    margin-bottom: auto;
}

.ahp3-detail-main h3 {
    margin: 0 0 20px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 0.98;

    font-weight: 500;

    letter-spacing: -0.045em;

    color: #ffffff;
}

.ahp3-detail-main p {
    max-width: 560px;

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.43);
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.ahp3-detail-line {
    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #c8ff00 0%,
            #c8ff00 52%,
            rgba(255, 255, 255, 0.07) 100%
        );

    box-shadow:
        0 0 10px rgba(200, 255, 0, 0.15);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ahp3-section {
        padding: 120px 0;
    }

    .ahp3-principles {
        grid-template-columns: 1fr;
    }

    .ahp3-information {
        min-height: 390px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ahp3-section {
        padding: 90px 0;
    }

    .ahp3-container {
        width: calc(100% - 32px);
    }

    .ahp3-header {
        margin-bottom: 38px;
    }

    .ahp3-header h2 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .ahp3-header p {
        font-size: 13px;
    }


    /* small cards */

    .ahp3-card-list {
        gap: 7px;
    }

    .ahp3-card {
        min-height: 68px;

        padding: 11px 13px;

        grid-template-columns:
            34px
            minmax(0, 1fr)
            18px;

        border-radius: 11px;
    }

    .ahp3-card-content h3 {
        font-size: 13px;
    }

    .ahp3-card-content p {
        font-size: 9px;
    }

    .ahp3-card-arrow {
        font-size: 11px;
    }


    /* information */

    .ahp3-information {
        min-height: 330px;

        border-radius: 18px;
    }

    .ahp3-detail {
        padding: 25px;
    }

    .ahp3-detail-label {
        font-size: 8px;
    }

    .ahp3-detail-main h3 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .ahp3-detail-main p {
        font-size: 12px;
        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ahp3-card {
        min-height: 62px;

        padding: 9px 11px;
    }

    .ahp3-card-number {
        font-size: 9px;
    }

    .ahp3-card-content h3 {
        font-size: 12px;
    }

    .ahp3-card-content p {
        font-size: 8px;
    }

    .ahp3-information {
        min-height: 310px;
    }

    .ahp3-detail {
        padding: 22px;
    }

}

/* =========================================================
   ABOUT — SECTION 4
   OUR TEAM
========================================================= */

.about-team-section {
    width: 100%;
    padding: 120px 6vw 140px;
    background: #050505;
    color: #ffffff;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.about-team-heading {
    text-align: center;
    margin-bottom: 70px;
}

.about-team-eyebrow {
    display: block;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #888888;

    margin-bottom: 16px;
}

.about-team-heading h2 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -2px;

    color: #ffffff;
}

.about-team-heading-line {
    display: block;

    width: 48px;
    height: 2px;

    margin: 22px auto 0;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200, 255, 0, 0.6);
}

/* =========================================================
   TEAM MEMBER — INDIVIDUAL GLASS CARDS
========================================================= */

.about-team-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}


/* EACH MEMBER = SEPARATE GLASS CARD */

.about-team-card {
    position: relative;

    padding: 12px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 15px 45px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* CARD HOVER */

.about-team-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200, 255, 0, 0.32);

    background: rgba(255, 255, 255, 0.05);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(200, 255, 0, 0.06);
}


/* =========================================================
   IMAGE
========================================================= */

.about-team-photo {
    position: relative;

    width: 100%;
    aspect-ratio: 0.78 / 1;

    overflow: hidden;

    border-radius: 12px;

    background: #111;
}

.about-team-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}


/* IMAGE ZOOM */

.about-team-card:hover .about-team-photo img {
    transform: scale(1.04);
    filter: brightness(0.58);
}


/* =========================================================
   SOCIAL OVERLAY
========================================================= */

.about-team-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.28);

    opacity: 0;

    transition: opacity 0.3s ease;
}

.about-team-card:hover .about-team-overlay {
    opacity: 1;
}


/* SOCIAL ROW */

.about-team-socials {
    display: flex;
    gap: 10px;

    transform: translateY(10px);

    transition: transform 0.3s ease;
}

.about-team-card:hover .about-team-socials {
    transform: translateY(0);
}


/* SOCIAL BUTTON */

.about-team-socials a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    background: rgba(10, 10, 10, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* SOCIAL HOVER */

.about-team-socials a:hover {
    background: #c8ff00;

    border-color: #c8ff00;

    color: #050505;

    transform: translateY(-3px);
}


/* SVG */

.about-team-socials svg {
    width: 17px;
    height: 17px;

    display: block;

    fill: currentColor;
}


/* TEXT ICON */

.about-team-socials span {
    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   NAME + DESIGNATION
========================================================= */

.about-team-info {
    padding: 16px 5px 7px;

    text-align: left;
}

.about-team-info h3 {
    margin: 0 0 6px;

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.2;
}

.about-team-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-team-card {
        padding: 9px;
        border-radius: 15px;
    }

    .about-team-photo {
        border-radius: 10px;
    }

    .about-team-socials a {
        width: 36px;
        height: 36px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 460px) {

    .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

}
/* =========================================================
   AFFLEADHUB — SECTION 5
   CONFERENCES & EVENTS
========================================================= */

.ahp5-section {
    position: relative;

    width: 100%;

    padding: 150px 0;

    background: #050505;

    color: #fff;

    overflow: hidden;
}

.ahp5-container {
    width: min(1200px, calc(100% - 48px));

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.ahp5-header {
    max-width: 760px;

    margin-bottom: 80px;
}

.ahp5-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;

    color: rgba(255,255,255,.38);
}

.ahp5-eyebrow span {
    width: 30px;
    height: 1px;

    background: #c8ff00;

    box-shadow:
        0 0 10px rgba(200,255,0,.5);
}

.ahp5-header h2 {
    margin: 0;

    font-size: clamp(58px, 7vw, 92px);

    line-height: .9;

    font-weight: 500;

    letter-spacing: -.055em;
}

.ahp5-header h2 span {
    display: block;

    color: #c8ff00;
}

.ahp5-header p {
    max-width: 610px;

    margin: 28px 0 0;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255,255,255,.42);
}


/* =========================================================
   BLOCK
========================================================= */

.ahp5-block {
    margin-bottom: 55px;
}

.ahp5-block-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 22px;
}

.ahp5-small-label {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.25);
}

.ahp5-block-heading h3 {
    margin: 0;

    font-size: 24px;

    font-weight: 500;

    letter-spacing: -.025em;
}

.ahp5-count {
    font-size: 10px;

    color: rgba(255,255,255,.25);

    letter-spacing: .08em;
}


/* =========================================================
   ATTENDED EVENT CARDS
========================================================= */

.ahp5-attended-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.ahp5-event-card {
    position: relative;

    min-height: 190px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.ahp5-event-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(200,255,0,.045);

    filter: blur(20px);

    pointer-events: none;
}

.ahp5-event-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(200,255,0,.35);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );
}


/* LOGO */

.ahp5-event-logo {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);

    color:
        rgba(255,255,255,.35);

    font-size: 7px;

    line-height: 1.3;

    text-align: center;

    letter-spacing: .08em;
}


/* EVENT INFO */

.ahp5-event-info {
    margin-top: 22px;
}

.ahp5-event-status {
    font-size: 8px;

    font-weight: 600;

    letter-spacing: .15em;

    color: #c8ff00;
}

.ahp5-event-info h4 {
    margin: 7px 0 5px;

    font-size: 17px;

    font-weight: 500;
}

.ahp5-event-info p {
    margin: 0;

    font-size: 10px;

    color: rgba(255,255,255,.35);
}


/* ARROW */

.ahp5-event-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    font-size: 15px;

    color: rgba(255,255,255,.2);

    transition:
        color .3s ease,
        transform .3s ease;
}

.ahp5-event-card:hover .ahp5-event-arrow {
    color: #c8ff00;

    transform: translate(2px,-2px);
}


/* =========================================================
   NEXT EVENT
========================================================= */

.ahp5-next {
    position: relative;

    min-height: 170px;

    padding: 28px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border:
        1px solid rgba(200,255,0,.20);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(200,255,0,.075),
            transparent 45%
        ),
        rgba(255,255,255,.025);

    overflow: hidden;
}

.ahp5-next::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    box-shadow:
        inset 0 0 50px rgba(200,255,0,.025);

    pointer-events: none;
}

.ahp5-next-content {
    display: flex;

    align-items: center;

    gap: 24px;
}

.ahp5-next-logo {
    width: 82px;
    height: 82px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(200,255,0,.25);

    border-radius: 16px;

    background:
        rgba(200,255,0,.035);

    color: #c8ff00;

    font-size: 8px;

    letter-spacing: .12em;
}

.ahp5-next-label {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: .16em;

    color: #c8ff00;
}

.ahp5-next-info h3 {
    margin: 8px 0 6px;

    font-size: 28px;

    font-weight: 500;

    letter-spacing: -.03em;
}

.ahp5-next-info p {
    margin: 0;

    font-size: 12px;

    color: rgba(255,255,255,.4);
}


/* MEET BUTTON */

.ahp5-meet-button {
    position: relative;
    z-index: 2;

    min-width: 165px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border:
        1px solid rgba(200,255,0,.45);

    border-radius: 10px;

    color: #c8ff00;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .04em;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.ahp5-meet-button:hover {
    background: #c8ff00;

    color: #050505;

    transform: translateY(-2px);
}

.ahp5-meet-button strong {
    font-size: 15px;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.ahp5-footer-message {
    margin-top: 30px;

    display: flex;

    align-items: center;

    gap: 14px;
}

.ahp5-footer-message span {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 10px rgba(200,255,0,.6);
}

.ahp5-footer-message p {
    margin: 0;

    font-size: 11px;

    color: rgba(255,255,255,.3);
}

.ahp5-footer-message a {
    margin-left: auto;

    color: rgba(255,255,255,.55);

    font-size: 11px;

    text-decoration: none;

    transition: color .25s ease;
}

.ahp5-footer-message a:hover {
    color: #c8ff00;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ahp5-section {
        padding: 120px 0;
    }

    .ahp5-attended-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ahp5-section {
        padding: 90px 0;
    }

    .ahp5-container {
        width: calc(100% - 32px);
    }

    .ahp5-header {
        margin-bottom: 55px;
    }

    .ahp5-header h2 {
        font-size: 54px;
    }

    .ahp5-header p {
        font-size: 13px;
    }

    .ahp5-attended-grid {
        grid-template-columns: 1fr;
    }

    .ahp5-event-card {
        min-height: 165px;
    }

    .ahp5-next {
        padding: 22px;

        align-items: flex-start;

        flex-direction: column;
    }

    .ahp5-next-content {
        align-items: flex-start;
    }

    .ahp5-next-logo {
        width: 65px;
        height: 65px;
    }

    .ahp5-next-info h3 {
        font-size: 22px;
    }

    .ahp5-meet-button {
        width: 100%;
    }

    .ahp5-footer-message {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ahp5-footer-message a {
        margin-left: 20px;
    }

}


/* =========================================================
   SECTION 5 — PEOPLE WHO ATTENDED
========================================================= */

.ahp5-attended-by {
    position: relative;

    margin-top: 20px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.ahp5-attended-label {
    font-size: 7px;

    font-weight: 600;

    letter-spacing: .13em;

    color: rgba(255,255,255,.23);

    white-space: nowrap;
}


/* PEOPLE */

.ahp5-people {
    display: flex;
    align-items: center;
}


/* PERSON */

.ahp5-person {
    position: relative;

    width: 27px;
    height: 27px;

    margin-left: -6px;

    border-radius: 50%;

    border: 2px solid #101010;

    background: #111;

    cursor: pointer;

    z-index: 1;
}

.ahp5-person:first-child {
    margin-left: 0;
}

.ahp5-person:hover {
    z-index: 20;
}

.ahp5-person img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   PERSON TOOLTIP
========================================================= */

.ahp5-person-tooltip {
    position: absolute;

    left: 50%;
    bottom: calc(100% + 12px);

    width: 150px;

    padding: 10px 12px;

    transform:
        translate(-50%, 5px);

    opacity: 0;
    visibility: hidden;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 9px;

    background:
        rgba(10,10,10,.88);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.ahp5-person:hover .ahp5-person-tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}

.ahp5-person-tooltip strong {
    display: block;

    font-size: 10px;

    color: #fff;
}

.ahp5-person-tooltip small {
    display: block;

    margin-top: 3px;

    font-size: 7px;

    color: #c8ff00;

    letter-spacing: .04em;
}


/* MORE PEOPLE */

.ahp5-more-people {
    width: 27px;
    height: 27px;

    margin-left: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.045);

    color:
        rgba(255,255,255,.5);

    font-size: 8px;

    font-weight: 600;
}


/* =========================================================
   UPCOMING — WHO'S GOING
========================================================= */

.ahp5-going {
    margin-top: 18px;
}

.ahp5-going-label {
    display: block;

    margin-bottom: 9px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .13em;

    color: rgba(255,255,255,.25);
}

.ahp5-going-people {
    display: flex;

    align-items: center;

    gap: 10px;
}

.ahp5-going-person {
    display: flex;

    align-items: center;

    gap: 6px;
}

.ahp5-going-person img {
    width: 25px;
    height: 25px;

    border-radius: 50%;

    object-fit: cover;

    border:
        1px solid rgba(200,255,0,.3);
}

.ahp5-going-person span {
    font-size: 9px;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ahp5-attended-by {
        gap: 8px;
    }

    .ahp5-attended-label {
        font-size: 6px;
    }

    .ahp5-going-people {
        flex-wrap: wrap;
    }

    .ahp5-going-person span {
        font-size: 8px;
    }

}

/* =========================================================
   SECTION 6 — WHY
========================================================= */

.about-why-section {
    min-height: 850px;

    display: flex;
    align-items: center;

    padding: 150px 7vw;

    background: #050606;
}


.about-why-content {
    width: 100%;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 80px;
}


.about-why-copy {
    max-width: 620px;
}


.about-why-copy p {
    max-width: 540px;

    margin-top: 28px;
}


.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 56px;

    padding: 0 28px;

    margin-top: 35px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.about-primary-btn {
    color: #050505;

    background: #c8ff00;

    box-shadow:
        0 0 30px rgba(200,255,0,.15);
}


.about-secondary-btn {
    color: #fff;

    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.03);
}


.about-primary-btn:hover,
.about-secondary-btn:hover {
    transform: translateY(-4px);
}


.about-primary-btn:hover {
    box-shadow:
        0 0 45px rgba(200,255,0,.3);
}


/* ORBIT VISUAL */

.about-why-visual {
    position: relative;

    width: min(600px, 100%);
    aspect-ratio: 1;

    margin: auto;
}


.about-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(200,255,0,.2);

    box-shadow:
        0 0 30px rgba(200,255,0,.03);
}


.orbit-one {
    width: 38%;
    height: 38%;

    animation: orbitRotate 18s linear infinite;
}

.orbit-two {
    width: 58%;
    height: 58%;

    animation: orbitRotate 28s linear infinite reverse;
}

.orbit-three {
    width: 78%;
    height: 78%;

    animation: orbitRotate 38s linear infinite;
}


@keyframes orbitRotate {
    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


.about-orbit-core {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 155px;
    height: 155px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(200,255,0,.65);

    background:
        radial-gradient(
            circle,
            rgba(200,255,0,.1),
            rgba(0,0,0,.85) 70%
        );

    box-shadow:
        0 0 40px rgba(200,255,0,.15),
        inset 0 0 35px rgba(200,255,0,.06);

    z-index: 5;
}


.about-orbit-core img {
    width: 75%;

    height: auto;
}


.about-orbit-node {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.55);

    font-size: 11px;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.about-orbit-node span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 10px #c8ff00,
        0 0 25px rgba(200,255,0,.7);
}


.node-one {
    top: 17%;
    left: 15%;
}

.node-two {
    top: 22%;
    right: 8%;
}

.node-three {
    bottom: 20%;
    left: 10%;
}

.node-four {
    bottom: 15%;
    right: 12%;
}


/* =========================================================
   SECTION 7 — FINAL CTA
========================================================= */

.about-final-section {
    min-height: 700px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 130px 7vw;

    text-align: center;

    background: #020303;
}


.about-final-bg {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(200,255,0,.12),
            transparent 38%
        );

    pointer-events: none;
}


.about-final-content {
    position: relative;

    max-width: 1000px;

    z-index: 2;
}


.about-final-content h2 {
    font-size: clamp(55px, 8vw, 110px);

    margin-top: 28px;
}


.about-final-content p {
    max-width: 650px;

    margin: 40px auto 0;
}


.about-final-buttons {
    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.about-final-buttons .about-primary-btn,
.about-final-buttons .about-secondary-btn {
    margin-top: 35px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .about-flow-section,
    .about-value-section,
    .about-stats-section,
    .about-why-section {
        padding: 110px 5vw;
    }


    .about-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-flow-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .about-flow-item:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }


    .about-value-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat:nth-child(2) {
        border-right: none;
    }

    .about-stat:nth-child(1),
    .about-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }


    .about-why-content {
        grid-template-columns: 1fr;
    }

    .about-why-visual {
        max-width: 560px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-flow-section,
    .about-value-section,
    .about-stats-section,
    .about-why-section,
    .about-final-section {
        padding: 90px 18px;
    }


    .about-section-heading h2,
    .about-value-header h2,
    .about-stats-heading h2,
    .about-why-copy h2 {
        font-size: 48px;
    }


    /* FLOW */

    .about-flow {
        grid-template-columns: 1fr;
    }

    .about-flow-line {
        left: 28px;
        right: auto;

        top: 50px;
        bottom: 50px;

        width: 1px;
        height: auto;
    }

    .about-flow-line span {
        width: 5px;
        height: 55px;

        top: 0;
        left: -2px;

        animation: flowSignalMobile 5s linear infinite;
    }

    @keyframes flowSignalMobile {
        0% {
            top: 0;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: calc(100% - 55px);
            opacity: 0;
        }
    }


    .about-flow-item {
        min-height: 280px;

        padding: 40px 25px 40px 70px;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .about-flow-item:last-child {
        border-bottom: none;
    }

    .about-flow-icon {
        margin-top: 22px;
    }

    .about-flow-item h3 {
        margin-top: 30px;
    }


    /* VALUE CARDS */

    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: 300px;

        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,.1) !important;
    }

    .about-value-card:last-child {
        border-bottom: none !important;
    }


    /* STATS */

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat {
        min-height: 200px;

        padding: 35px 20px;
    }

    .about-stat:nth-child(2) {
        border-right: none;
    }

    .about-stat-value {
        font-size: 52px;
    }

    .about-stats-bottom {
        gap: 12px;

        font-size: 8px;
    }


    /* WHY */

    .about-why-section {
        min-height: auto;
    }

    .about-why-visual {
        margin-top: 30px;
    }

    .about-orbit-core {
        width: 115px;
        height: 115px;
    }

    .about-orbit-node {
        font-size: 8px;
    }


    /* CTA */

    .about-final-content h2 {
        font-size: 52px;
    }

    .about-final-content p {
        font-size: 15px;
    }

    .about-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-final-buttons .about-primary-btn,
    .about-final-buttons .about-secondary-btn {
        width: 100%;
    }
}



#our-team {
    scroll-margin-top: 120px;
}