
/* =========================================================
   AFFLEADHUB — ADVERTISERS PAGE
   V1 STRUCTURE
========================================================= */

/* =========================================================
   GLOBAL
========================================================= */

.advertisers-section{
    position:relative;
    width:100%;
    padding:140px 6vw;
    overflow:hidden;
}

.advertisers-container{
    width:min(1200px,100%);
    margin:0 auto;
}

.section-content{
    max-width:760px;
}

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
    margin-bottom:70px;
}

.section-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,.45);
}

.section-eyebrow-line{
    width:32px;
    height:1px;
    background:rgba(255,255,255,.35);
}

.section-heading h2,
.section-content h1,
.section-content h2{
    font-size:clamp(42px,6vw,76px);
    line-height:.98;
    letter-spacing:-3px;
    font-weight:500;
    color:#fff;
    margin:0;
}

.section-heading h2 span,
.section-content h1 span,
.section-content h2 span{
    color:#D8FF37;
}

.section-heading p,
.section-content p{
    max-width:560px;
    margin-top:24px;
    font-size:16px;
    line-height:1.7;
    color:rgba(255,255,255,.55);
}

/* =========================================================
   BUTTONS
========================================================= */

.section-actions{
    display:flex;
    gap:16px;
    margin-top:38px;
    flex-wrap:wrap;
}

.section-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 28px;
    border-radius:100px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.35s ease;
}

.section-btn-primary{
    background:#fff;
    color:#050505;
}

.section-btn-primary:hover{
    transform:translateY(-3px);
}

.section-btn-secondary{
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
}

.section-btn-secondary:hover{
    background:rgba(255,255,255,.06);
}

/* =========================================================
   SECTION 1
========================================================= */

.advertisers-section.section-1{
    min-height:78vh;
    display:flex;
    align-items:center;
}

/* =========================================================
   SECTION 1 — 3D GLASS DASHBOARD
========================================================= */

.advertisers-section.section-1 {
    position: relative;
}

.advertisers-section.section-1 .advertisers-container {
    position: relative;
}

/* =========================================================
   SECTION 1 — TWO COLUMN LAYOUT
========================================================= */

.advertisers-section.section-1 {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.advertisers-section.section-1 .advertisers-container {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
}


/* =========================================================
   ADVERTISER DASHBOARD — REFERENCE LOOK
========================================================= */

.advertiser-dashboard {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    perspective: 1800px;
}

/* Soft glow behind dashboard */

.advertiser-dashboard::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    right: 5%;
    top: 15%;

    border-radius: 50%;

    background: rgba(200, 255, 0, 0.13);

    filter: blur(100px);

    pointer-events: none;
}


.dashboard-glass {
    position: relative;

    width: 100%;
    min-height: 520px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.75),
        0 0 60px rgba(200, 255, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transform:
        rotateY(-8deg)
        rotateX(3deg);

    transform-style: preserve-3d;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.8s ease;
}


.dashboard-glass:hover {
    transform:
        rotateY(-4deg)
        rotateX(1deg)
        translateY(-6px);

    box-shadow:
        0 45px 110px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(200, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

/* =========================================================
   DASHBOARD — GREEN EDGE GLOW
========================================================= */

.dashboard-glass {
    position: relative;
    isolation: isolate;
}

/* Thin glowing border */
.dashboard-glass::before {
    content: "";
    position: absolute;
    inset: -1px;

    border-radius: 29px;

    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(200, 255, 0, 0.75),
        rgba(200, 255, 0, 0.08) 35%,
        rgba(200, 255, 0, 0.02) 65%,
        rgba(200, 255, 0, 0.55)
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

    z-index: 5;

    filter:
        drop-shadow(0 0 5px rgba(200, 255, 0, 0.45))
        drop-shadow(0 0 14px rgba(200, 255, 0, 0.18));

    animation: dashboardEdgeGlow 3.5s ease-in-out infinite;
}


/* Soft outer glow */
.dashboard-glass::after {
    content: "";

    position: absolute;
    inset: -3px;

    border-radius: 31px;

    border: 1px solid rgba(200, 255, 0, 0.10);

    box-shadow:
        0 0 18px rgba(200, 255, 0, 0.12),
        0 0 40px rgba(200, 255, 0, 0.05);

    pointer-events: none;

    z-index: -1;

    animation: dashboardOuterGlow 3.5s ease-in-out infinite;
}


/* =========================================================
   EDGE PULSE
========================================================= */

@keyframes dashboardEdgeGlow {

    0%,
    100% {
        opacity: 0.55;
        filter:
            drop-shadow(0 0 4px rgba(200,255,0,.35))
            drop-shadow(0 0 10px rgba(200,255,0,.12));
    }

    50% {
        opacity: 1;
        filter:
            drop-shadow(0 0 7px rgba(200,255,0,.75))
            drop-shadow(0 0 18px rgba(200,255,0,.30));
    }

}


@keyframes dashboardOuterGlow {

    0%,
    100% {
        opacity: .45;
    }

    50% {
        opacity: 1;
    }

}

.dashboard-header {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8px 11px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,.9);

    font-size: 12px;
    font-weight: 600;
}

.dashboard-brand-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 12px rgba(200,255,0,.8);
}

.dashboard-header-icons {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.55);
    font-size: 15px;
}

.dashboard-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;

    color: #fff;
    font-size: 10px;
}




/* =========================================================
   DASHBOARD BODY
========================================================= */

.dashboard-body {
    display: grid;

    grid-template-columns: 105px minmax(0, 1fr);

    gap: 16px;

    padding-top: 16px;

    min-height: 440px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.dashboard-sidebar {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.dashboard-nav {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 9px 8px;

    border-radius: 8px;

    color: rgba(255,255,255,.38);

    font-size: 8px;

    transition: .3s ease;
}

.dashboard-nav span {
    font-size: 11px;
}

.dashboard-nav.active {
    color: #c8ff00;

    background:
        rgba(200,255,0,.07);

    box-shadow:
        inset 0 0 15px rgba(200,255,0,.025);
}

.dashboard-nav:hover {
    color: #fff;
}


/* =========================================================
   MAIN
========================================================= */

.dashboard-main {
    min-width: 0;
}

.dashboard-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 15px;
}

.dashboard-small-label {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.35);

    font-size: 8px;
    letter-spacing: 1.5px;
}

.dashboard-title-row h3 {
    margin: 0;

    color: #fff;

    font-size: 22px;
    font-weight: 500;
}

.dashboard-period {
    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 7px;

    color: rgba(255,255,255,.55);

    font-size: 8px;
}


/* =========================================================
   KPI CARDS
========================================================= */
.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 8px;

    margin-top: 12px;
}

.dashboard-stat {
    padding: 12px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04);
}

.dashboard-stat span {
    color: rgba(255,255,255,.38);

    font-size: 7px;
}

.dashboard-stat strong {
    display: block;

    margin-top: 6px;

    color: #fff;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: -0.3px;
}

.dashboard-stat small {
    display: block;

    margin-top: 5px;

    color: #c8ff00;

    font-size: 7px;
}


/* =========================================================
   GRAPH
========================================================= */

.dashboard-chart-card {
    margin-top: 9px;

    padding: 13px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );
}

.chart-heading {
    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.5);

    font-size: 8px;
}

.dashboard-chart {
    position: relative;

    height: 135px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 7px;
}

.chart-heading span:last-child {
    color: rgba(255,255,255,.25);
}



.chart-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 20% 25%;
}

.dashboard-chart svg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.chart-area {
    fill: url(#chartGradient);
}

.chart-line {
    fill: none;

    stroke: #c8ff00;
    stroke-width: 2;

    filter:
        drop-shadow(
            0 0 6px rgba(200,255,0,.55)
        );
}


/* =========================================================
   BOTTOM CARDS
========================================================= */

.dashboard-bottom {
    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 9px;

    margin-top: 9px;
}

.dashboard-mini-card {
    padding: 12px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 11px;

    background:
        rgba(255,255,255,.022);
}

.mini-card-title {
    margin-bottom: 12px;

    color: rgba(255,255,255,.55);

    font-size: 9px;
}

.campaign-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 7px 0;

    border-top: 1px solid rgba(255,255,255,.05);

    font-size: 8px;
}

.campaign-row span {
    display: flex;
    align-items: center;
    gap: 6px;

    color: rgba(255,255,255,.5);
}

.campaign-row i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #c8ff00;
}

.campaign-row strong {
    color: rgba(255,255,255,.75);

    font-weight: 500;
}


/* =========================================================
   TRAFFIC
========================================================= */

.traffic-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.traffic-ring {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        conic-gradient(
            #c8ff00 0 42%,
            rgba(255,255,255,.12) 42% 100%
        );

    position: relative;
}

.traffic-ring::after {
    content: "";

    position: absolute;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #090909;
}

.traffic-ring span {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 10px;
}

.traffic-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.traffic-list span {
    display: flex;
    align-items: center;
    gap: 6px;

    color: rgba(255,255,255,.45);

    font-size: 8px;
}

.traffic-list i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #c8ff00;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 992px) {

    .advertisers-section.section-1 {
        grid-template-columns: 1fr;
    }

    .advertiser-dashboard {
        max-width: 800px;
        margin: 30px auto 0;
    }

    .dashboard-glass {
        transform: none;
    }

}


@media(max-width: 600px) {

    .dashboard-glass {
        min-height: auto;
        padding: 12px;

        border-radius: 20px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .dashboard-chart {
        height: 130px;
    }

}

/* =========================================================
   ADVERTISER DASHBOARD — GRAPH ANIMATION
========================================================= */

.advertiser-dashboard .chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dashboardGraphDraw 2.4s cubic-bezier(.65, 0, .35, 1) forwards;
}

.advertiser-dashboard .chart-area {
    opacity: 0;
    animation: dashboardGraphArea 1.2s ease forwards;
    animation-delay: 1.7s;
}


/* Graph line */

@keyframes dashboardGraphDraw {

    to {
        stroke-dashoffset: 0;
    }

}


/* Graph fill */

@keyframes dashboardGraphArea {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}
/* =========================================================
   SECTION 2
========================================================= */

.advertisers-section.section-2{
    border-top:1px solid rgba(255,255,255,.08);
}

.advertiser-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1px;
    background:rgba(255,255,255,.08);
}

.advertiser-card{
    position: relative;
    isolation: isolate;
    min-height:260px;
    padding:34px;
    background:#050505;
}

/* Thin green edge */
.advertiser-card::before {
    content: "";
    position: absolute;
    inset: -1px;

    border-radius: inherit;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(200, 255, 0, 0.65),
        rgba(200, 255, 0, 0.08) 35%,
        rgba(200, 255, 0, 0.02) 65%,
        rgba(200, 255, 0, 0.50)
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

    z-index: 5;

    filter:
        drop-shadow(0 0 5px rgba(200, 255, 0, 0.40))
        drop-shadow(0 0 12px rgba(200, 255, 0, 0.12));

    opacity: .65;

    transition:
        opacity .35s ease,
        filter .35s ease;
}


/* Slightly stronger on hover */

.advertiser-card:hover::before {
    opacity: 1;

    filter:
        drop-shadow(0 0 7px rgba(200, 255, 0, 0.70))
        drop-shadow(0 0 18px rgba(200, 255, 0, 0.22));
}
.card-number{
    display:block;
    margin-bottom:65px;
    font-size:11px;
    letter-spacing:1px;
    color:rgba(255,255,255,.3);
}

.advertiser-card h3{
    font-size:22px;
    color:#fff;
    margin:0;
}

.advertiser-card p{
    margin-top:14px;
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,.45);
}

/* =========================================================
   SECTION 3
========================================================= */

.advertisers-section.section-3{
    border-top:1px solid rgba(255,255,255,.08);
}

.process-grid{
    border-top:1px solid rgba(255,255,255,.1);
}

.process-item{
    display:grid;
    grid-template-columns:90px 1fr 1fr;
    gap:40px;
    padding:34px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.process-number{
    color:rgba(255,255,255,.3);
    font-size:12px;
    letter-spacing:1px;
}

.process-item h3{
    color:#fff;
    font-size:22px;
    margin:0;
}

.process-item p{
    color:rgba(255,255,255,.45);
    font-size:14px;
    line-height:1.7;
    margin:0;
}

/* =========================================================
   SECTION 4 — PERFORMANCE MODELS
   AFFLEADHUB V3
========================================================= */


/* =========================================================
   SECTION BASE
========================================================= */

.advertisers-section.section-4 {
    position: relative;
    width: 100%;
    min-height: 1200px;

    overflow: hidden;
    isolation: isolate;

    background: #050505;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.models-container {
    position: relative;

    width: min(1400px, 92%);
    min-height: 1200px;

    margin: 0 auto;
    padding: 70px 0 90px;
}


/* =========================================================
   NEON ATMOSPHERE
========================================================= */

.models-container::before {
    content: "";

    position: absolute;

    width: 760px;
    height: 760px;

    left: 50%;
    top: 47%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200, 255, 0, 0.30) 0%,
            rgba(200, 255, 0, 0.18) 22%,
            rgba(200, 255, 0, 0.09) 40%,
            rgba(200, 255, 0, 0.035) 56%,
            transparent 72%
        );

    filter: blur(10px);

    pointer-events: none;

    z-index: -5;

    animation:
        modelsAtmosphere 8s ease-in-out infinite;
}


.models-container::after {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    left: 50%;
    top: 47%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(200, 255, 0, 0.18);

    box-shadow:
        0 0 35px rgba(200, 255, 0, 0.12),
        0 0 90px rgba(200, 255, 0, 0.08),
        inset 0 0 50px rgba(200, 255, 0, 0.06);

    pointer-events: none;

    z-index: -4;

    animation:
        modelsRing 8s ease-in-out infinite;
}


/* =========================================================
   HEADING
========================================================= */

.models-heading {
    position: relative;

    width: 620px;

    margin: 0 auto;

    text-align: center;

    z-index: 10;
}


.models-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.22em;

    color: rgba(255, 255, 255, 0.55);
}


.models-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200, 255, 0, 0.9),
        0 0 18px rgba(200, 255, 0, 0.4);
}


.models-heading h2 {
    margin: 0;

    font-size: clamp(46px, 5vw, 78px);

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 700;

    color: #ffffff;
}


.models-heading h2 span {
    color: #c8ff00;

    text-shadow:
        0 0 18px rgba(200, 255, 0, 0.20);
}


.models-heading p {
    margin: 28px auto 0;

    max-width: 500px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.48);
}


.models-heading p span {
    color: rgba(200, 255, 0, 0.85);
}


/* =========================================================
   PERFORMANCE SYSTEM
========================================================= */

.performance-system {
    position: relative;

    width: 100%;
    height: 720px;

    margin-top: 45px;
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.models-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    pointer-events: none;
}


.models-orbit-outer {
    width: 610px;
    height: 610px;

    border: 1px solid rgba(200, 255, 0, 0.075);

    box-shadow:
        0 0 35px rgba(200, 255, 0, 0.035);
}


.models-orbit-middle {
    width: 475px;
    height: 475px;

    border: 1px solid rgba(255, 255, 255, 0.055);
}


.models-orbit-inner {
    width: 330px;
    height: 330px;

    border: 1px dashed rgba(200, 255, 0, 0.10);

    animation:
        orbitRotate 35s linear infinite;
}


/* =========================================================
   CENTRAL PERFORMANCE CORE
========================================================= */

.performance-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 235px;
    height: 235px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 40% 35%,
            rgba(200, 255, 0, 0.15),
            rgba(15, 15, 15, 0.94) 55%,
            #070707 100%
        );

    border: 1px solid rgba(200, 255, 0, 0.40);

    box-shadow:
        0 0 20px rgba(200, 255, 0, 0.20),
        0 0 55px rgba(200, 255, 0, 0.12),
        inset 0 0 35px rgba(200, 255, 0, 0.06);

    z-index: 8;
}


.performance-core::before {
    content: "";

    position: absolute;

    inset: 9px;

    border-radius: 50%;

    border: 1px solid rgba(200, 255, 0, 0.12);

    box-shadow:
        inset 0 0 25px rgba(200, 255, 0, 0.10);

    animation:
        corePulse 4s ease-in-out infinite;
}


.performance-core::after {
    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    top: 20px;
    right: 48px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 10px rgba(200, 255, 0, 1),
        0 0 25px rgba(200, 255, 0, 0.7);
}


.core-content {
    position: relative;

    text-align: center;

    z-index: 2;
}


.core-content h3 {
    margin: 0;

    font-size: 22px;

    line-height: 1.05;

    letter-spacing: -0.025em;

    color: #ffffff;
}


.core-content p {
    margin: 14px 0 0;

    font-size: 11px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.42);
}


/* =========================================================
   MODEL CARDS
========================================================= */

.model-card {
    position: absolute;

    width: 310px;
    min-height: 175px;

    padding: 22px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    z-index: 12;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* Neon edge */

.model-card::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(200, 255, 0, 0.65),
            rgba(200, 255, 0, 0.04) 42%,
            rgba(200, 255, 0, 0.02) 65%,
            rgba(200, 255, 0, 0.48)
        );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

    opacity: 0.65;

    filter:
        drop-shadow(0 0 5px rgba(200, 255, 0, 0.35));

    transition:
        opacity 0.4s ease,
        filter 0.4s ease;
}


.model-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(200, 255, 0, 0.25);

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(200, 255, 0, 0.08);
}


.model-card:hover::before {
    opacity: 1;

    filter:
        drop-shadow(0 0 7px rgba(200, 255, 0, 0.75))
        drop-shadow(0 0 18px rgba(200, 255, 0, 0.20));
}


/* =========================================================
   CARD POSITIONS
========================================================= */

.model-card-cpa {
    left: 50%;
    top: 5px;

    transform: translateX(-50%);
}


.model-card-cpl {
    left: 2%;
    top: 235px;
}


.model-card-cps {
    right: 2%;
    top: 235px;
}


.model-card-cpi {
    left: 14%;
    bottom: 15px;
}


.model-card-cpc {
    right: 14%;
    bottom: 15px;
}


/* Keep hover movement correct */

.model-card-cpa:hover {
    transform:
        translateX(-50%)
        translateY(-8px);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.model-card-content {
    position: relative;
    z-index: 2;
}


.model-number {
    font-size: 10px;

    letter-spacing: 0.18em;

    color: rgba(200, 255, 0, 0.70);

    margin-bottom: 8px;
}


.model-info h3 {
    margin: 0;

    font-size: 30px;

    line-height: 1;

    letter-spacing: -0.04em;

    color: #ffffff;
}


.model-info span {
    display: block;

    margin-top: 6px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.16em;

    color: rgba(255, 255, 255, 0.38);
}


.model-info p {
    margin: 11px 0 0;

    max-width: 230px;

    font-size: 11px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.48);
}


/* =========================================================
   MODEL FLOW
========================================================= */

.model-flow {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 18px;

    padding-top: 14px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.flow-item {
    display: flex;

    align-items: center;

    gap: 5px;
}


.flow-icon {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    font-size: 9px;

    color: #c8ff00;

    background:
        rgba(200, 255, 0, 0.07);

    border:
        1px solid rgba(200, 255, 0, 0.18);

    box-shadow:
        0 0 8px rgba(200, 255, 0, 0.07);
}


.flow-item small {
    font-size: 7px;

    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.38);
}


.model-flow b {
    font-size: 10px;

    font-weight: 400;

    color: rgba(200, 255, 0, 0.50);
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.model-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200, 255, 0, 0.55),
            transparent
        );

    box-shadow:
        0 0 8px rgba(200, 255, 0, 0.30);

    z-index: 5;

    transform-origin: left center;
}


/* CPA */

.line-cpa {
    width: 120px;

    left: 50%;
    top: 182px;

    transform:
        translateX(-50%)
        rotate(90deg);
}


/* CPL */

.line-cpl {
    width: 135px;

    left: 27%;
    top: 330px;

    transform: rotate(8deg);
}


/* CPS */

.line-cps {
    width: 135px;

    right: 27%;
    top: 330px;

    transform:
        rotate(172deg);
}


/* CPI */

.line-cpi {
    width: 135px;

    left: 36%;
    bottom: 175px;

    transform:
        rotate(-20deg);
}


/* CPC */

.line-cpc {
    width: 135px;

    right: 36%;
    bottom: 175px;

    transform:
        rotate(200deg);
}


/* =========================================================
   CONNECTION NODES
========================================================= */

.model-node {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 7px rgba(200, 255, 0, 0.95),
        0 0 18px rgba(200, 255, 0, 0.55);

    z-index: 6;

    animation:
        nodePulse 2.5s ease-in-out infinite;
}


.node-cpa {
    left: 50%;
    top: 170px;

    transform: translateX(-50%);
}


.node-cpl {
    left: 29%;
    top: 330px;
}


.node-cps {
    right: 29%;
    top: 330px;
}


.node-cpi {
    left: 37%;
    bottom: 181px;
}


.node-cpc {
    right: 37%;
    bottom: 181px;
}


/* =========================================================
   BENEFITS
========================================================= */

.models-benefits {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    margin-top: 10px;

    padding: 22px 25px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 10;
}


.benefit-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 0 20px;
}


.benefit-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #c8ff00;

    border:
        1px solid rgba(200, 255, 0, 0.20);

    background:
        rgba(200, 255, 0, 0.05);

    box-shadow:
        0 0 12px rgba(200, 255, 0, 0.06);
}


.benefit-item strong {
    display: block;

    font-size: 9px;

    letter-spacing: 0.12em;

    color: #ffffff;
}


.benefit-item span {
    display: block;

    margin-top: 4px;

    font-size: 9px;

    line-height: 1.4;

    color: rgba(255, 255, 255, 0.38);
}


.benefit-divider {
    width: 1px;
    height: 38px;

    background:
        rgba(255, 255, 255, 0.07);
}


/* =========================================================
   CTA
========================================================= */

.models-cta {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 48px;

    text-align: center;
}


.models-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 15px 20px 15px 25px;

    border-radius: 100px;

    text-decoration: none;

    color: #050505;

    background: #c8ff00;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    box-shadow:
        0 0 18px rgba(200, 255, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.models-cta-button b {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.12);

    font-size: 15px;
}


.models-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(200, 255, 0, 0.35),
        0 0 55px rgba(200, 255, 0, 0.12);
}


.models-cta p {
    margin: 15px 0 0;

    font-size: 10px;

    color: #fff;
}


.models-cta p span {
    color: rgba(200, 255, 0, 0.75);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes modelsAtmosphere {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(.96);

        opacity: .70;
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.05);

        opacity: 1;
    }
}


@keyframes modelsRing {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(.97);

        opacity: .55;
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.03);

        opacity: 1;
    }
}


@keyframes orbitRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


@keyframes corePulse {

    0%,
    100% {
        transform: scale(.98);
        opacity: .6;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}


@keyframes nodePulse {

    0%,
    100% {
        opacity: .55;
        transform: scale(.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .models-container {
        width: 94%;
    }

    .model-card {
        width: 280px;
    }

    .model-card-cpl {
        left: 0;
    }

    .model-card-cps {
        right: 0;
    }

    .model-card-cpi {
        left: 8%;
    }

    .model-card-cpc {
        right: 8%;
    }

    .models-orbit-outer {
        width: 540px;
        height: 540px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .advertisers-section.section-4 {
        min-height: auto;
    }


    .models-container {
        width: 92%;

        min-height: auto;

        padding:
            90px 0 70px;
    }


    .models-container::before {
        width: 520px;
        height: 520px;

        top: 48%;
    }


    .models-container::after {
        width: 340px;
        height: 340px;

        top: 48%;
    }


    .models-heading {
        width: 100%;
    }


    .models-heading h2 {
        font-size: 44px;
    }


    .models-heading p {
        font-size: 13px;
    }


    .performance-system {

        height: auto;

        margin-top: 45px;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 18px;
    }


    .models-orbit {
        display: none;
    }


    .performance-core {

        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: 190px;
        height: 190px;

        margin-bottom: 25px;

        order: -1;
    }


    .performance-core:hover {
        transform: none;
    }


    .model-card {

        position: relative;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 100%;

        max-width: 420px;

        min-height: auto;

        transform: none !important;
    }


    .model-card:hover {
        transform: translateY(-4px) !important;
    }


    .model-line,
    .model-node {
        display: none;
    }


    .models-benefits {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 25px 20px;
    }


    .benefit-item {
        padding: 0;
    }


    .benefit-divider {

        width: 100%;
        height: 1px;
    }


    .models-cta {
        margin-top: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .models-heading h2 {
        font-size: 37px;
    }


    .models-heading p br {
        display: none;
    }


    .model-card {
        padding: 19px;
    }


    .model-info h3 {
        font-size: 27px;
    }


    .model-flow {
        gap: 6px;
    }


    .flow-item small {
        font-size: 6px;
    }


    .models-cta-button {
        width: 100%;

        justify-content: space-between;
    }

}

/* =========================================================
   SECTION 5 — PERFORMANCE ANALYTICS
========================================================= */

.section-5 {
    position: relative;

    width: 100%;
    min-height: 1100px;

    padding: 150px 0 120px;

    background: #050505;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.section-5::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 48%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200, 255, 0, 0.09),
            rgba(200, 255, 0, 0.025) 42%,
            transparent 72%
        );

    filter: blur(15px);

    z-index: -2;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.analytics-container {
    width: min(1320px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.analytics-heading {
    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}


.analytics-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .22em;

    color:
        rgba(255, 255, 255, .45);
}


.analytics-eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200,255,0,.8);
}


.analytics-heading h2 {
    margin: 0;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: .96;

    letter-spacing: -.055em;

    color: #fff;
}


.analytics-heading h2 span {
    color: #c8ff00;
}


.analytics-heading p {
    max-width: 520px;

    margin: 28px auto 0;

    font-size: 14px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.42);
}


/* =========================================================
   DASHBOARD
========================================================= */

.analytics-dashboard {
    position: relative;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    border:
        1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 35px 100px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.045);
}


/* glowing edge */

.analytics-dashboard::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            130deg,
            rgba(200,255,0,.35),
            transparent 30%,
            transparent 70%,
            rgba(200,255,0,.18)
        );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}


/* =========================================================
   TOP BAR
========================================================= */

.analytics-topbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 4px 28px;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}


.analytics-label {
    display: block;

    margin-bottom: 7px;

    font-size: 8px;

    letter-spacing: .18em;

    color:
        rgba(200,255,0,.65);
}


.analytics-topbar h3 {
    margin: 0;

    font-size: 20px;

    letter-spacing: -.03em;

    color: #fff;
}


.analytics-live {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border-radius: 50px;

    font-size: 8px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.48);

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.07);
}


.analytics-live span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200,255,0,.9);

    animation:
        analyticsLive 2s ease-in-out infinite;
}


/* =========================================================
   STATS
========================================================= */

.analytics-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 18px;
}


.analytics-stat-card {
    padding: 20px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.065);

    transition:
        border-color .3s ease,
        transform .3s ease,
        background .3s ease;
}


.analytics-stat-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(200,255,0,.18);

    background:
        rgba(200,255,0,.025);
}


.stat-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 16px;

    font-size: 10px;

    color:
        rgba(255,255,255,.42);
}


.stat-icon {
    color: #c8ff00;

    font-size: 13px;
}


.analytics-stat-card strong {
    display: block;

    font-size: 27px;

    letter-spacing: -.04em;

    color: #fff;
}


.stat-growth {
    margin-top: 10px;

    font-size: 8px;

    color:
        rgba(255,255,255,.28);
}


.stat-growth span {
    margin-right: 5px;

    color: #c8ff00;
}


/* =========================================================
   MAIN GRID
========================================================= */

.analytics-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(260px, .8fr);

    gap: 14px;

    margin-top: 14px;
}


/* =========================================================
   CHART CARD
========================================================= */

.analytics-chart-card {
    padding: 24px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.022);

    border:
        1px solid rgba(255,255,255,.065);
}


.chart-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}


.chart-card-header > div:first-child span {
    font-size: 8px;

    letter-spacing: .16em;

    color:
        rgba(255,255,255,.32);
}


.chart-card-header h3 {
    margin: 6px 0 0;

    font-size: 18px;

    color: #fff;
}


.chart-period {
    padding: 8px 11px;

    border-radius: 8px;

    font-size: 8px;

    color:
        rgba(255,255,255,.42);

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.06);
}


.chart-period span {
    margin-left: 8px;

    color: #c8ff00;
}


/* =========================================================
   CHART
========================================================= */

.analytics-chart {
    position: relative;

    height: 300px;

    overflow: hidden;
}


.chart-lines {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.chart-lines span {
    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,.055);
}


.analytics-chart svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;
}


.analytics-area {
    fill:
        url(#analyticsGraphFill);

    opacity: .8;
}


.analytics-line {
    fill: none;

    stroke: #c8ff00;

    stroke-width: 3;

    stroke-linecap: round;

    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 5px rgba(200,255,0,.7)
        );

    stroke-dasharray: 1;

    stroke-dashoffset: 1;

    animation:
        analyticsGraphDraw 2.8s
        cubic-bezier(.4,0,.2,1)
        forwards;
}


.chart-point {
    position: absolute;

    width: 9px;
    height: 9px;

    right: 0;

    top: 20px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 8px #c8ff00,
        0 0 22px rgba(200,255,0,.65);

    animation:
        chartPointPulse 2s
        ease-in-out infinite;
}


/* =========================================================
   CHART LABELS
========================================================= */

.chart-labels {
    display: flex;

    justify-content: space-between;

    margin-top: 12px;

    font-size: 8px;

    color:
        rgba(255,255,255,.22);
}


/* =========================================================
   SIDE CARDS
========================================================= */

.analytics-side {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.analytics-mini-card {
    flex: 1;

    padding: 22px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.022);

    border:
        1px solid rgba(255,255,255,.065);
}


.mini-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}


.mini-header span {
    font-size: 7px;

    letter-spacing: .16em;

    color:
        rgba(255,255,255,.28);
}


.mini-header h4 {
    margin: 6px 0 0;

    font-size: 15px;

    color: #fff;
}


.mini-arrow {
    color: #c8ff00 !important;

    font-size: 13px !important;
}


.mini-value {
    margin-top: 30px;

    font-size: 32px;

    letter-spacing: -.05em;

    color: #fff;
}


.mini-progress {
    height: 4px;

    margin-top: 18px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255,255,255,.06);
}


.mini-progress span {
    display: block;

    width: 78%;
    height: 100%;

    border-radius: inherit;

    background: #c8ff00;

    box-shadow:
        0 0 10px rgba(200,255,0,.5);

    animation:
        progressLoad 1.8s ease forwards;
}


.mini-footer {
    display: flex;

    justify-content: space-between;

    margin-top: 10px;

    font-size: 8px;

    color:
        rgba(255,255,255,.28);
}


.mini-footer strong {
    color: #c8ff00;
}


/* =========================================================
   TRAFFIC BARS
========================================================= */

.traffic-bars {
    margin-top: 25px;
}


.traffic-row {
    display: grid;

    grid-template-columns: 45px 1fr 30px;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    font-size: 8px;

    color:
        rgba(255,255,255,.38);
}


.traffic-row > div {
    height: 4px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255,255,255,.06);
}


.traffic-row i {
    display: block;

    height: 100%;

    border-radius: inherit;

    background: #c8ff00;

    box-shadow:
        0 0 8px rgba(200,255,0,.35);
}


.traffic-row strong {
    font-size: 8px;

    text-align: right;

    color:
        rgba(255,255,255,.55);
}


/* =========================================================
   FOOTER
========================================================= */

.analytics-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 14px;

    padding: 13px 4px 0;

    font-size: 8px;

    color:
        rgba(255,255,255,.24);
}


.analytics-footer > div:first-child {
    display: flex;

    align-items: center;

    gap: 7px;
}


.footer-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #c8ff00;

    box-shadow:
        0 0 7px rgba(200,255,0,.9);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes analyticsGraphDraw {

    to {
        stroke-dashoffset: 0;
    }

}


@keyframes chartPointPulse {

    0%,
    100% {
        opacity: .5;

        transform: scale(.8);
    }

    50% {
        opacity: 1;

        transform: scale(1.15);
    }

}


@keyframes analyticsLive {

    0%,
    100% {
        opacity: .45;
    }

    50% {
        opacity: 1;
    }

}


@keyframes progressLoad {

    from {
        width: 0;
    }

}


.analytics-counter {
    font-variant-numeric: tabular-nums;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .analytics-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .analytics-main-grid {
        grid-template-columns: 1fr;
    }

    .analytics-side {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .section-5 {
        padding:
            100px 0 80px;
    }


    .analytics-heading {
        margin-bottom: 45px;
    }


    .analytics-heading h2 {
        font-size: 45px;
    }


    .analytics-heading p {
        font-size: 13px;
    }


    .analytics-dashboard {
        padding: 16px;

        border-radius: 18px;
    }


    .analytics-topbar {
        align-items: flex-start;

        gap: 15px;
    }


    .analytics-stats {
        grid-template-columns: 1fr 1fr;
    }


    .analytics-stat-card {
        padding: 15px;
    }


    .analytics-stat-card strong {
        font-size: 22px;
    }


    .analytics-chart-card {
        padding: 17px;
    }


    .analytics-chart {
        height: 220px;
    }


    .analytics-side {
        grid-template-columns: 1fr;
    }


    .analytics-footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .analytics-heading h2 {
        font-size: 38px;
    }


    .analytics-stats {
        gap: 8px;
    }


    .analytics-stat-card strong {
        font-size: 19px;
    }


    .stat-growth {
        font-size: 7px;
    }


    .analytics-live {
        font-size: 7px;
    }

}



/* =========================================================
   SECTION 6 — TRAFFIC SOURCES
========================================================= */

.advertisers-section.section-6 {
    padding: 140px 0;
}


.traffic-sources-slider {
    width: 100%;

    overflow: hidden;

    margin-top: 60px;
}

.traffic-sources-track {
    display: flex;

    gap: 16px;

    width: max-content;

    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


.traffic-source-card {
    position: relative;

    width: 300px;
    min-height: 300px;

    padding: 28px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.traffic-source-card:hover {
    transform: translateY(-6px);

    border-color: rgba(200, 255, 0, 0.3);

    background: rgba(255, 255, 255, 0.045);
}


.traffic-source-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 55px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    color: #c8ff00;

    font-size: 22px;
}


.traffic-source-number {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.3);
}


.traffic-source-content h3 {
    margin: 0;

    font-size: 25px;

    font-weight: 500;

    letter-spacing: -0.035em;

    color: #fff;
}


.traffic-source-content p {
    margin: 12px 0 0;

    max-width: 235px;

    font-size: 12px;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.52);
}


.traffic-source-arrow {
    position: absolute;

    right: 26px;
    bottom: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.traffic-sources-controls {
    display: flex;

    justify-content: flex-end;

    gap: 8px;

    margin-top: 22px;
}


.traffic-slider-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.traffic-slider-btn:hover {
    background: #c8ff00;

    border-color: #c8ff00;

    color: #050505;
}

.traffic-slider-btn:disabled {
    cursor: default;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .advertisers-section.section-6 {
        padding: 90px 0;
    }


    .traffic-sources-slider {
        margin-top: 45px;
    }


    .traffic-source-card {
        width: 280px;

        min-height: 280px;

        padding: 24px;
    }


    .traffic-source-icon {
        margin-bottom: 45px;
    }


    .traffic-sources-controls {
        justify-content: flex-start;
    }

}

/* =========================================================
   SECTION 7
========================================================= */

.advertisers-section.section-7{
    padding-top:170px;
    padding-bottom:170px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.advertisers-section.section-7 .section-content{
    max-width:760px;
    margin:auto;
}

.advertisers-section.section-7 .section-actions{
    justify-content:center;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .section-heading{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .advertiser-grid{
        grid-template-columns:1fr;
    }

    .campaign-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-item{
        grid-template-columns:60px 1fr;
    }

    .process-item p{
        grid-column:2;
    }

}

@media(max-width:768px){

    .advertisers-section{
        padding:100px 22px;
    }

    .section-heading h2,
    .section-content h1,
    .section-content h2{
        font-size:clamp(38px,12vw,58px);
        letter-spacing:-2px;
    }

    .section-content p,
    .section-heading p{
        font-size:15px;
    }

    .section-actions{
        flex-direction:column;
    }

    .section-btn{
        width:100%;
    }

    .campaign-grid{
        grid-template-columns:1fr;
    }

    .performance-panel{
        height:300px;
    }

    .advertisers-section.section-7{
        padding-top:120px;
        padding-bottom:120px;
    }

}

/* =========================================================
   ADVERTISER SECTION 1 — MOBILE STACK
========================================================= */

@media (max-width: 768px) {

    .advertisers-section.section-1 {
        display: block;
    }

    .advertisers-section.section-1
    .advertisers-container {
        display: flex;
        flex-direction: column;
    }

    .advertisers-section.section-1
    .section-content {
        width: 100%;
        max-width: 100%;
    }

    /* Dashboard goes BELOW the complete content */

    .advertisers-section.section-1
    .advertiser-dashboard {
        width: 100%;
        margin-top: 55px;
        position: relative;
    }

}

/* =========================================================
   AFFLEADHUB GLOW WORDMARK
========================================================= */

.brand-glow-section {
    position: relative;

    width: 100%;
    min-height: 240px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 50px 20px;

    background: transparent;
}


/* subtle separator */

.brand-glow-section::before,
.brand-glow-section::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;

    height: 1px;

    background: rgba(255, 255, 255, 0.06);
}

.brand-glow-section::before {
    top: 0;
}

.brand-glow-section::after {
    bottom: 0;
}


/* =========================================================
   MAIN WORDMARK
========================================================= */

.brand-glow-wordmark {
    position: relative;

    width: 100%;

    text-align: center;

    font-family: inherit;

    font-size: clamp(65px, 12vw, 190px);

    font-weight: 800;

    line-height: 0.85;

    letter-spacing: -0.055em;

    color: transparent;

    -webkit-text-fill-color: transparent;

    -webkit-text-stroke: 1.2px
        rgba(255, 255, 255, 0.38);

    text-transform: uppercase;

    cursor: default;

    transition:
        -webkit-text-stroke-color 0.35s ease,
        filter 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   GLOW LAYER
========================================================= */

.brand-glow-wordmark::after {
    content: attr(data-text);

    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: transparent;

    -webkit-text-fill-color: transparent;

    -webkit-text-stroke: 1.2px
        rgba(200, 255, 0, 0);

    filter:
        drop-shadow(
            0 0 0 rgba(200, 255, 0, 0)
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        -webkit-text-stroke-color 0.35s ease,
        filter 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.brand-glow-wordmark:hover {
    -webkit-text-stroke-color:
        rgba(255, 255, 255, 0.72);

    transform: scale(1.015);
}

.brand-glow-wordmark:hover::after {
    opacity: 1;

    -webkit-text-stroke-color:
        rgba(200, 255, 0, 0.8);

    filter:
        drop-shadow(
            0 0 8px rgba(200, 255, 0, 0.65)
        )
        drop-shadow(
            0 0 25px rgba(200, 255, 0, 0.35)
        )
        drop-shadow(
            0 0 55px rgba(200, 255, 0, 0.18)
        );
}


/* =========================================================
   CAPTION
========================================================= */

.brand-glow-caption {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 38px;
}

.brand-glow-caption span {
    width: 55px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.12);
}

.brand-glow-caption small {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.28em;

    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .brand-glow-section {
        min-height: 170px;

        padding: 35px 12px;
    }

    .brand-glow-wordmark {
        font-size: clamp(48px, 14vw, 85px);

        letter-spacing: -0.06em;

        -webkit-text-stroke-width: 1px;
    }

    .brand-glow-caption {
        gap: 10px;

        margin-top: 25px;
    }

    .brand-glow-caption span {
        width: 30px;
    }

    .brand-glow-caption small {
        font-size: 7px;

        letter-spacing: 0.2em;
    }
}