/* =========================================================
   AFFIZER — 3D EXPERIENCE
   Home V1
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.neo-hero {
    position: relative;
    min-height: 100vh;
    min-height: 900px;

    display: flex;
    align-items: center;

    padding:
        calc(var(--header-height) + 70px)
        0 100px;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(
            circle at 78% 46%,
            rgba(14, 226, 165, .09),
            transparent 28%
        ),
        radial-gradient(
            circle at 70% 35%,
            rgba(0, 117, 255, .055),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #020706 0%,
            #030a09 56%,
            #020605 100%
        );
}


/* ---------------------------------------------------------
   Technical background
   --------------------------------------------------------- */

.neo-hero-grid {
    position: absolute;
    z-index: -3;

    inset: 0;

    opacity: .34;

    background-image:
        linear-gradient(
            rgba(255,255,255,.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.022) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.8),
            rgba(0,0,0,.2) 75%,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.8),
            rgba(0,0,0,.2) 75%,
            transparent
        );
}

.neo-hero::after {
    content: "";

    position: absolute;
    z-index: -2;

    left: 0;
    right: 0;
    bottom: 0;

    height: 250px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(2, 6, 5, .96)
        );
}

.neo-hero-glow {
    position: absolute;
    z-index: -2;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);
}

.neo-glow-one {
    width: 420px;
    height: 420px;

    right: 5%;
    top: 25%;

    background:
        rgba(22, 226, 169, .08);
}

.neo-glow-two {
    width: 300px;
    height: 300px;

    left: 25%;
    bottom: 0;

    background:
        rgba(0, 122, 255, .035);
}


/* ---------------------------------------------------------
   Hero layout
   --------------------------------------------------------- */

.neo-hero-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(500px, 1.12fr);

    align-items: center;

    gap: clamp(30px, 4vw, 70px);
}


/* ---------------------------------------------------------
   Hero copy
   --------------------------------------------------------- */

.neo-hero-copy {
    position: relative;
    z-index: 20;

    max-width: 650px;
}

.neo-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 30px;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: .18em;

    color: #82918d;
}

.neo-live-dot {
    position: relative;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--color-primary);

    box-shadow:
        0 0 15px
        rgba(32,213,155,.8);
}

.neo-live-dot::before {
    content: "";

    position: absolute;
    inset: -5px;

    border:
        1px solid
        rgba(32,213,155,.22);

    border-radius: inherit;

    animation:
        affizerLive 2.2s
        ease-out infinite;
}

@keyframes affizerLive {

    0% {
        opacity: .8;
        transform: scale(.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}


.neo-hero h1 {
    max-width: 680px;

    margin-bottom: 28px;

    font-size:
        clamp(
            4rem,
            6.8vw,
            7.1rem
        );

    line-height: .88;

    font-weight: 630;

    letter-spacing: -.075em;
}

.neo-hero h1 span {
    display: block;

    color: var(--color-primary);

    text-shadow:
        0 0 45px
        rgba(32,213,155,.09);
}

.neo-hero-lead {
    max-width: 570px;

    margin-bottom: 34px;

    font-size: 16px;
    line-height: 1.8;

    color: #899995;
}

.neo-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 25px;
}

.neo-text-link,
.neo-inline-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    font-size: 13px;
    font-weight: 600;

    color: #bdc9c6;

    transition:
        color var(--transition),
        gap var(--transition);
}

.neo-text-link span,
.neo-inline-link span {
    color: var(--color-primary);
}

.neo-text-link:hover,
.neo-inline-link:hover {
    gap: 16px;
    color: #fff;
}


/* ---------------------------------------------------------
   Proof
   --------------------------------------------------------- */

.neo-proof {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 0;

    margin-top: 55px;
    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.075);
}

.neo-proof > div {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    min-width: 0;

    padding-right: 14px;
}

.neo-proof-icon {
    padding-top: 2px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .06em;

    color: var(--color-primary);
}

.neo-proof p {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin: 0;
}

.neo-proof strong {
    font-size: 10px;
    font-weight: 650;

    color: #d3dcda;
}

.neo-proof p span {
    max-width: 125px;

    font-size: 8px;
    line-height: 1.5;

    color: #5f706c;
}


/* =========================================================
   3D WORLD STAGE
   ========================================================= */

.world-stage {
    position: relative;

    width: 100%;
    height: clamp(600px, 69vw, 790px);

    min-width: 0;

    cursor: grab;

    perspective: 1200px;
}

.world-stage:active {
    cursor: grabbing;
}

#affizer-globe {
    position: absolute;
    z-index: 5;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    outline: 0;

    touch-action: pan-y;
}

.world-aura {
    position: absolute;
    z-index: 1;

    width: 70%;
    aspect-ratio: 1;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,213,155,.12),
            rgba(32,213,155,.035) 36%,
            transparent 70%
        );

    filter: blur(22px);

    pointer-events: none;
}


/* Decorative CSS orbits */

.world-orbit {
    position: absolute;
    z-index: 4;

    left: 50%;
    top: 50%;

    border:
        1px solid
        rgba(49,238,184,.10);

    border-radius: 50%;

    pointer-events: none;
}

.orbit-one {
    width: 82%;
    height: 39%;

    transform:
        translate(-50%, -50%)
        rotate(-17deg);

    animation:
        orbitFloatOne
        11s ease-in-out infinite;
}

.orbit-two {
    width: 62%;
    height: 72%;

    transform:
        translate(-50%, -50%)
        rotate(31deg);

    border-color:
        rgba(58,168,255,.07);

    animation:
        orbitFloatTwo
        14s ease-in-out infinite;
}

@keyframes orbitFloatOne {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(-17deg);
    }

    50% {
        transform:
            translate(-50%, -52%)
            rotate(-14deg);
    }
}

@keyframes orbitFloatTwo {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            rotate(31deg);
    }

    50% {
        transform:
            translate(-48%, -50%)
            rotate(35deg);
    }
}


/* ---------------------------------------------------------
   Floating cards
   --------------------------------------------------------- */

.world-card {
    position: absolute;
    z-index: 12;

    min-width: 175px;

    padding: 15px 17px;

    pointer-events: none;

    border:
        1px solid
        rgba(255,255,255,.105);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(11,24,22,.72),
            rgba(5,12,11,.48)
        );

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.30),
        inset 0 1px 0
        rgba(255,255,255,.035);

    -webkit-backdrop-filter:
        blur(15px);

    backdrop-filter:
        blur(15px);
}

.world-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 17px;

    width: 2px;
    height: 25px;

    background:
        var(--color-primary);

    box-shadow:
        0 0 14px
        rgba(32,213,155,.5);
}

.world-card-label {
    display: block;

    margin-bottom: 6px;

    font-size: 7px;
    font-weight: 750;

    letter-spacing: .15em;

    color: #61746f;
}

.world-card strong {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
    font-weight: 620;

    color: #e3ebe9;
}

.world-card small {
    display: block;

    font-size: 7px;
    line-height: 1.5;

    color: #687975;
}

.world-card-top {
    top: 13%;
    right: 2%;

    animation:
        cardFloatA
        6s ease-in-out infinite;
}

.world-card-left {
    left: -2%;
    bottom: 24%;

    animation:
        cardFloatB
        7.5s ease-in-out infinite;
}

.world-card-right {
    right: 0;
    bottom: 17%;

    animation:
        cardFloatC
        6.8s ease-in-out infinite;
}

.world-card-signal {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 7px;

    font-size: 7px;
    font-weight: 750;
    letter-spacing: .12em;

    color: var(--color-primary);
}

.world-card-signal i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 9px currentColor;
}

@keyframes cardFloatA {

    0%,
    100% {
        transform:
            translate3d(0,0,0);
    }

    50% {
        transform:
            translate3d(-5px,-12px,0);
    }
}

@keyframes cardFloatB {

    0%,
    100% {
        transform:
            translate3d(0,0,0);
    }

    50% {
        transform:
            translate3d(7px,-9px,0);
    }
}

@keyframes cardFloatC {

    0%,
    100% {
        transform:
            translate3d(0,0,0);
    }

    50% {
        transform:
            translate3d(-7px,9px,0);
    }
}


/* ---------------------------------------------------------
   Coordinates
   --------------------------------------------------------- */

.world-coordinate {
    position: absolute;
    z-index: 11;

    display: flex;
    align-items: center;

    gap: 6px;

    pointer-events: none;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .12em;

    color: #72847f;
}

.world-coordinate span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--color-primary);

    box-shadow:
        0 0 12px
        rgba(32,213,155,.7);
}

.world-coordinate-one {
    top: 32%;
    left: 11%;
}

.world-coordinate-two {
    top: 27%;
    right: 16%;
}

.world-coordinate-three {
    bottom: 31%;
    right: 10%;
}

.world-drag-hint {
    position: absolute;
    z-index: 12;

    left: 50%;
    bottom: 5%;

    transform:
        translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    pointer-events: none;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .12em;

    color: #52645f;
}

.world-drag-hint span {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   Scroll hint
   --------------------------------------------------------- */

.hero-scroll {
    position: absolute;
    z-index: 20;

    left: 28px;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 14px;

    transform:
        rotate(-90deg)
        translateX(100%);

    transform-origin:
        left bottom;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: .17em;

    color: #44534f;
}

.hero-scroll i {
    position: relative;

    width: 55px;
    height: 1px;

    overflow: hidden;

    background:
        rgba(255,255,255,.08);
}

.hero-scroll i::after {
    content: "";

    position: absolute;

    top: 0;
    left: -50%;

    width: 45%;
    height: 100%;

    background:
        var(--color-primary);

    animation:
        scrollSignal 2s
        ease-in-out infinite;
}

@keyframes scrollSignal {

    to {
        left: 110%;
    }
}


/* =========================================================
   SIGNAL BAR
   ========================================================= */

.signal-bar {
    position: relative;
    z-index: 10;

    background: #030807;

    border-top:
        1px solid
        rgba(255,255,255,.065);

    border-bottom:
        1px solid
        rgba(255,255,255,.065);
}

.signal-bar-inner {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.signal-bar-inner > div {
    position: relative;

    min-height: 105px;

    display: grid;

    grid-template-columns:
        auto 1fr;

    align-content: center;

    column-gap: 14px;

    padding:
        22px 28px;

    border-right:
        1px solid
        rgba(255,255,255,.065);
}

.signal-bar-inner > div:first-child {
    border-left:
        1px solid
        rgba(255,255,255,.065);
}

.signal-bar span {
    grid-row:
        1 / span 2;

    padding-top: 2px;

    font-size: 7px;
    font-weight: 700;

    color: var(--color-primary);
}

.signal-bar strong {
    font-size: 14px;
    font-weight: 620;

    color: #d6dfdc;
}

.signal-bar small {
    font-size: 8px;

    color: #53645f;
}


/* =========================================================
   COMMON EXPERIENCE SECTIONS
   ========================================================= */

.experience-section,
.vertical-universe,
.smartlink-lab,
.technology-world,
.advertiser-world {
    position: relative;

    padding: 135px 0;

    overflow: hidden;
}

.experience-section {
    background:
        #050a09;
}

.experience-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(260px, .65fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 70px;
}

.experience-index {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 9px;
    line-height: 1;

    font-weight: 750;
    letter-spacing: .18em;

    color: var(--color-primary);
}

.experience-heading h2,
.smartlink-copy h2,
.advertiser-world h2,
.neo-final h2 {
    margin: 0;

    font-size:
        clamp(
            3rem,
            5vw,
            5.3rem
        );

    line-height: .98;

    font-weight: 610;

    letter-spacing: -.06em;
}

.experience-heading h2 span,
.smartlink-copy h2 span,
.advertiser-world h2 span,
.neo-final h2 span {
    color: var(--color-primary);
}

.experience-heading > p {
    max-width: 430px;

    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #758681;
}


/* =========================================================
   PUBLISHER EXPERIENCE
   ========================================================= */

.publisher-experience {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, .55fr);

    gap: 14px;
}

.publisher-main-card {
    position: relative;

    min-height: 530px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.085);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 80% 70%,
            rgba(32,213,155,.075),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #081310,
            #050b09
        );
}

.publisher-main-card::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    bottom: -210px;

    border:
        1px solid
        rgba(32,213,155,.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px
            rgba(32,213,155,.018),
        0 0 0 140px
            rgba(32,213,155,.012);
}

.publisher-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        rgba(255,255,255,.065);
}

.publisher-card-head span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;

    color: #667771;
}

.publisher-card-head i {
    display: flex;
    align-items: center;

    gap: 5px;

    font-size: 7px;
    font-style: normal;
    font-weight: 700;

    color: var(--color-primary);
}

.publisher-card-head i::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--color-primary);

    box-shadow:
        0 0 10px
        rgba(32,213,155,.6);
}

.publisher-main-copy {
    position: relative;
    z-index: 2;

    max-width: 570px;

    margin-top: 60px;
}

.publisher-big-number {
    display: block;

    margin-bottom: 18px;

    font-size: 9px;
    font-weight: 700;

    color: var(--color-primary);
}

.publisher-main-copy h3 {
    margin-bottom: 18px;

    font-size:
        clamp(
            2rem,
            3.4vw,
            3.6rem
        );

    line-height: 1.02;

    font-weight: 590;

    letter-spacing: -.055em;
}

.publisher-main-copy p {
    max-width: 450px;

    margin: 0;

    font-size: 13px;
    line-height: 1.75;

    color: #70817c;
}


/* Traffic flow */

.publisher-flow {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: auto;
    padding-top: 45px;
}

.publisher-flow > div {
    min-width: 115px;

    padding: 13px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 8px;

    background:
        rgba(255,255,255,.018);
}

.publisher-flow span {
    display: block;

    margin-bottom: 3px;

    font-size: 6px;
    font-weight: 700;
    letter-spacing: .12em;

    color: #586a64;
}

.publisher-flow strong {
    font-size: 9px;
    font-weight: 600;
}

.publisher-flow > i {
    position: relative;

    width: 45px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(32,213,155,.15),
            var(--color-primary)
        );
}

.publisher-flow > i::after {
    content: "";

    position: absolute;

    right: -1px;
    top: -2px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--color-primary);
}


/* Side stack */

.publisher-side-stack {
    display: grid;

    grid-template-rows:
        repeat(2, 1fr);

    gap: 14px;
}

.publisher-mini-card {
    position: relative;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: start;

    gap: 18px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 18px;

    background:
        rgba(255,255,255,.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.publisher-mini-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(32,213,155,.20);

    background:
        rgba(32,213,155,.025);
}

.mini-card-index {
    padding-top: 3px;

    font-size: 8px;
    font-weight: 700;

    color: var(--color-primary);
}

.publisher-mini-card h3 {
    margin-bottom: 11px;

    font-size: 19px;
    font-weight: 600;

    letter-spacing: -.035em;
}

.publisher-mini-card p {
    margin: 0;

    font-size: 11px;
    line-height: 1.7;

    color: #667772;
}

.mini-card-arrow {
    font-size: 13px;

    color: #4e605b;
}


/* =========================================================
   VERTICAL UNIVERSE
   ========================================================= */

.vertical-universe {
    background:
        radial-gradient(
            circle at 50% 60%,
            rgba(32,213,155,.045),
            transparent 32%
        ),
        #020706;

    border-top:
        1px solid
        rgba(255,255,255,.055);

    border-bottom:
        1px solid
        rgba(255,255,255,.055);
}

.vertical-orbit-layout {
    position: relative;

    min-height: 580px;

    margin-top: 20px;
}

.vertical-orbit-layout::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 72%;
    height: 74%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(255,255,255,.045);

    border-radius: 50%;

    pointer-events: none;
}

.vertical-core {
    position: absolute;
    z-index: 5;

    left: 50%;
    top: 50%;

    width: 230px;
    height: 230px;

    transform:
        translate(-50%, -50%);

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(32,213,155,.20);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,213,155,.13),
            rgba(5,16,13,.95) 55%,
            #030907 75%
        );

    box-shadow:
        0 0 80px
        rgba(32,213,155,.07);
}

.vertical-core-ring {
    position: absolute;

    inset: -30px;

    border:
        1px solid
        rgba(32,213,155,.09);

    border-radius: 50%;

    animation:
        coreSpin
        20s linear infinite;
}

.vertical-core-ring::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 22%;
    right: 4%;

    border-radius: 50%;

    background:
        var(--color-primary);

    box-shadow:
        0 0 15px
        rgba(32,213,155,.7);
}

.ring-secondary {
    inset: -62px;

    border-color:
        rgba(255,255,255,.045);

    animation-duration: 29s;
    animation-direction: reverse;
}

@keyframes coreSpin {
    to {
        transform:
            rotate(360deg);
    }
}

.vertical-core-content {
    position: relative;
    z-index: 3;

    text-align: center;
}

.vertical-core-content span {
    display: block;

    margin-bottom: 7px;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .18em;

    color: var(--color-primary);
}

.vertical-core-content strong {
    display: block;

    margin-bottom: 5px;

    font-size: 28px;
    font-weight: 600;

    letter-spacing: -.05em;
}

.vertical-core-content small {
    font-size: 8px;

    color: #5c6e68;
}


/* Vertical nodes */

.orbit-vertical {
    position: absolute;
    z-index: 7;

    width: 230px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 13px;

    background:
        rgba(7,16,13,.75);

    -webkit-backdrop-filter:
        blur(12px);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.25);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.orbit-vertical:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(32,213,155,.23);
}

.orbit-vertical > span {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border:
        1px solid
        rgba(32,213,155,.15);

    border-radius: 50%;

    font-size: 8px;
    font-weight: 700;

    color: var(--color-primary);

    background:
        rgba(32,213,155,.035);
}

.orbit-vertical strong {
    display: block;

    margin-bottom: 3px;

    font-size: 15px;
    font-weight: 600;
}

.orbit-vertical small {
    display: block;

    font-size: 7px;
    letter-spacing: .06em;

    color: #5e706a;
}

.orbit-dating {
    left: 4%;
    top: 8%;
}

.orbit-nutra {
    right: 3%;
    top: 9%;
}

.orbit-finance {
    left: 3%;
    bottom: 7%;
}

.orbit-ecommerce {
    right: 2%;
    bottom: 7%;
}

.vertical-connections {
    position: absolute;
    z-index: 2;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    pointer-events: none;
}

.vertical-connections path {
    fill: none;

    stroke:
        rgba(32,213,155,.13);

    stroke-width: 1;

    stroke-dasharray:
        5 7;

    vector-effect:
        non-scaling-stroke;

    animation:
        connectionFlow
        12s linear infinite;
}

@keyframes connectionFlow {
    to {
        stroke-dashoffset:
            -120;
    }
}


/* =========================================================
   SMARTLINK LAB
   ========================================================= */

.smartlink-lab {
    background:
        #050a09;
}

.smartlink-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .75fr)
        minmax(500px, 1.25fr);

    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}

.smartlink-copy {
    max-width: 510px;
}

.smartlink-copy h2 {
    margin-bottom: 25px;
}

.smartlink-copy h2 span {
    display: block;
}

.smartlink-copy > p {
    max-width: 450px;

    margin-bottom: 34px;

    font-size: 14px;
    line-height: 1.8;

    color: #73847f;
}

.smartlink-specs {
    margin-bottom: 35px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}

.smartlink-specs > div {
    display: grid;

    grid-template-columns:
        35px 1fr;

    align-items: center;

    min-height: 55px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}

.smartlink-specs span {
    font-size: 7px;
    font-weight: 700;

    color: var(--color-primary);
}

.smartlink-specs strong {
    font-size: 11px;
    font-weight: 550;

    color: #bec9c5;
}


/* SmartLink machine */

.smartlink-machine {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(32,213,155,.08),
            transparent 35%
        ),
        #020706;
}

.machine-grid {
    position: absolute;
    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        35px 35px;
}

.machine-source {
    position: absolute;
    z-index: 3;

    left: 7%;
    top: 50%;

    transform:
        translateY(-50%);

    width: 95px;
    height: 95px;

    display: grid;
    place-content: center;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 50%;

    background:
        #07100d;
}

.machine-source span {
    font-size: 6px;
    font-weight: 700;

    color: var(--color-primary);
}

.machine-source strong {
    font-size: 11px;
    font-weight: 600;
}

.machine-stream {
    position: absolute;
    z-index: 2;

    left: calc(7% + 95px);
    right: 50%;

    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(32,213,155,.15),
            rgba(32,213,155,.75)
        );
}

.machine-stream i {
    position: absolute;

    top: -3px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--color-primary);

    box-shadow:
        0 0 12px
        rgba(32,213,155,.8);

    animation:
        streamParticle
        2.6s linear infinite;
}

.machine-stream i:nth-child(2) {
    animation-delay: -.9s;
}

.machine-stream i:nth-child(3) {
    animation-delay: -1.8s;
}

@keyframes streamParticle {

    from {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }
}

.machine-core {
    position: relative;
    z-index: 5;

    width: 165px;
    height: 165px;

    display: grid;
    place-content: center;

    text-align: center;

    border:
        1px solid
        rgba(32,213,155,.25);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,213,155,.15),
            #06100d 60%,
            #030806
        );

    box-shadow:
        0 0 70px
        rgba(32,213,155,.08);
}

.machine-core-orbit {
    position: absolute;

    inset: -23px;

    border:
        1px dashed
        rgba(32,213,155,.13);

    border-radius: 50%;

    animation:
        coreSpin 16s
        linear infinite;
}

.machine-core span {
    font-size: 7px;
    font-weight: 700;

    letter-spacing: .15em;

    color: var(--color-primary);
}

.machine-core strong {
    margin:
        3px 0;

    font-size: 18px;
    font-weight: 620;
}

.machine-core small {
    font-size: 6px;

    letter-spacing: .11em;

    color: #61726c;
}

.machine-output {
    position: absolute;
    z-index: 3;

    right: 5%;
    top: 50%;

    width: 125px;

    transform:
        translateY(-50%);

    display: grid;

    gap: 10px;
}

.machine-output::before {
    content: "";

    position: absolute;

    right: 100%;
    top: 50%;

    width: 105px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(32,213,155,.7),
            rgba(32,213,155,.12)
        );
}

.machine-output > div {
    padding: 11px;

    border:
        1px solid
        rgba(255,255,255,.075);

    border-radius: 7px;

    background:
        rgba(7,15,13,.85);
}

.machine-output span {
    display: block;

    margin-bottom: 2px;

    font-size: 6px;

    color: var(--color-primary);
}

.machine-output strong {
    font-size: 8px;
    font-weight: 550;
}


/* =========================================================
   TECHNOLOGY CONSOLE
   ========================================================= */

.technology-world {
    background:
        #020706;

    border-top:
        1px solid
        rgba(255,255,255,.055);
}

.technology-console {
    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        #050b09;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.28);
}

.console-top {
    min-height: 53px;

    display: grid;

    grid-template-columns:
        100px 1fr auto;

    align-items: center;

    padding:
        0 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.015);
}

.console-dots {
    display: flex;

    gap: 6px;
}

.console-dots i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.15);
}

.console-top > span {
    font-size: 7px;
    font-weight: 700;

    letter-spacing: .15em;

    color: #576862;
}

.console-top > small {
    font-size: 7px;
    font-weight: 700;

    color: var(--color-primary);
}

.console-body {
    min-height: 480px;

    display: grid;

    grid-template-columns:
        190px 1fr 260px;
}

.console-navigation {
    display: flex;
    flex-direction: column;

    padding: 24px 16px;

    border-right:
        1px solid
        rgba(255,255,255,.06);
}

.console-navigation span {
    padding:
        12px 13px;

    border-radius: 6px;

    font-size: 9px;

    color: #60716b;
}

.console-navigation span.active {
    color: var(--color-primary);

    background:
        rgba(32,213,155,.045);
}

.console-center {
    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;

    background-image:
        radial-gradient(
            rgba(255,255,255,.06) .7px,
            transparent .7px
        );

    background-size:
        22px 22px;
}

.console-center::before,
.console-center::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border:
        1px solid
        rgba(32,213,155,.055);

    border-radius: 50%;
}

.console-center::after {
    width: 300px;
    height: 300px;
}

.console-pulse {
    position: relative;
    z-index: 4;

    width: 180px;
    height: 180px;

    display: grid;
    place-content: center;

    text-align: center;

    border:
        1px solid
        rgba(32,213,155,.22);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,213,155,.13),
            rgba(4,12,10,.98) 65%
        );

    box-shadow:
        0 0 70px
        rgba(32,213,155,.07);
}

.console-pulse::before {
    content: "";

    position: absolute;

    inset: -22px;

    border:
        1px solid
        rgba(32,213,155,.07);

    border-radius: 50%;

    animation:
        consolePulse
        2.8s ease-out infinite;
}

@keyframes consolePulse {

    0% {
        opacity: .8;
        transform: scale(.8);
    }

    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.console-pulse span {
    font-size: 7px;
    font-weight: 750;

    color: var(--color-primary);
}

.console-pulse strong {
    margin-top: 5px;

    font-size: 16px;
    line-height: 1.15;

    font-weight: 600;
}

.console-events {
    display: grid;

    align-content: center;

    padding: 25px;

    border-left:
        1px solid
        rgba(255,255,255,.06);
}

.console-events > div {
    display: grid;

    grid-template-columns:
        42px 1fr auto;

    align-items: center;

    min-height: 67px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}

.console-events > div:last-child {
    border-bottom: 0;
}

.console-events span {
    font-size: 6px;
    font-weight: 700;

    color: #596a65;
}

.console-events strong {
    font-size: 9px;
    font-weight: 550;
}

.console-events i {
    display: grid;
    place-items: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    font-size: 7px;
    font-style: normal;
    font-weight: 800;

    color: #03100c;

    background:
        var(--color-primary);
}


/* =========================================================
   ADVERTISERS
   ========================================================= */

.advertiser-world {
    background:
        #050a09;
}

.advertiser-world-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: 10%;
    top: 0;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(32,213,155,.035);

    filter: blur(130px);
}

.advertiser-world-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    align-items: end;

    gap: 100px;
}

.advertiser-world h2 {
    max-width: 780px;
}

.advertiser-world h2 span {
    display: block;
}

.advertiser-world-copy {
    padding-bottom: 5px;
}

.advertiser-world-copy p {
    max-width: 430px;

    margin-bottom: 28px;

    font-size: 14px;
    line-height: 1.8;

    color: #758681;
}


/* Advertiser process */

.advertiser-path {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 15px;

    margin-top: 80px;
}

.advertiser-path > div {
    min-height: 130px;

    padding: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}

.advertiser-path span {
    display: block;

    margin-bottom: 24px;

    font-size: 7px;
    font-weight: 700;

    color: var(--color-primary);
}

.advertiser-path strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    font-weight: 600;
}

.advertiser-path small {
    font-size: 8px;

    color: #596a65;
}

.advertiser-path > i {
    width: 20px;
    height: 1px;

    background:
        var(--color-primary);

    opacity: .3;
}


/* =========================================================
   FINAL
   ========================================================= */

.neo-final {
    position: relative;

    padding:
        150px 0;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 55%,
            rgba(32,213,155,.09),
            transparent 28%
        ),
        #020706;

    border-top:
        1px solid
        rgba(255,255,255,.055);
}

.neo-final-grid {
    position: absolute;
    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 70%
        );

    -webkit-mask-image:
        radial-gradient(
            circle,
            #000,
            transparent 70%
        );
}

.neo-final-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.neo-final h2 span {
    display: block;
}

.neo-final p {
    max-width: 570px;

    margin:
        26px auto 34px;

    font-size: 14px;
    line-height: 1.8;

    color: #74857f;
}

.neo-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .neo-hero {
        min-height: auto;
    }

    .neo-hero-layout {
        grid-template-columns:
            minmax(0, .9fr)
            minmax(430px, 1.1fr);
    }

    .neo-hero h1 {
        font-size:
            clamp(
                3.7rem,
                7vw,
                5.5rem
            );
    }

    .world-stage {
        height: 620px;
    }

    .world-card-left {
        left: 0;
    }

    .publisher-experience {
        grid-template-columns:
            1.25fr .75fr;
    }

    .smartlink-layout {
        grid-template-columns:
            .8fr 1.2fr;

        gap: 50px;
    }

    .console-body {
        grid-template-columns:
            160px 1fr 220px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE/TABLET
   ========================================================= */

@media (max-width: 920px) {

    .neo-hero {
        padding-top:
            calc(
                var(--header-height)
                + 65px
            );
    }

    .neo-hero-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .neo-hero-copy {
        max-width: 720px;
    }

    .neo-hero h1 {
        max-width: 700px;

        font-size:
            clamp(
                4rem,
                11vw,
                6.4rem
            );
    }

    .world-stage {
        width: min(720px, 100%);
        height: 680px;

        margin:
            -20px auto 0;
    }

    .hero-scroll {
        display: none;
    }

    .experience-heading,
    .advertiser-world-layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .experience-heading > p {
        max-width: 600px;
    }

    .publisher-experience {
        grid-template-columns: 1fr;
    }

    .publisher-side-stack {
        grid-template-columns:
            1fr 1fr;

        grid-template-rows: auto;
    }

    .vertical-orbit-layout {
        min-height: 650px;
    }

    .smartlink-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .smartlink-copy {
        max-width: 650px;
    }

    .console-body {
        grid-template-columns:
            130px 1fr;
    }

    .console-events {
        grid-column:
            1 / -1;

        grid-template-columns:
            repeat(4, 1fr);

        border-top:
            1px solid
            rgba(255,255,255,.06);

        border-left: 0;
    }

    .console-events > div {
        grid-template-columns: 1fr;

        gap: 4px;

        padding: 15px;

        border-right:
            1px solid
            rgba(255,255,255,.06);

        border-bottom: 0;
    }

    .console-events i {
        margin-top: 6px;
    }

    .advertiser-path {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .advertiser-path > i {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .neo-hero {
        padding:
            calc(
                var(--header-height)
                + 55px
            )
            0 65px;
    }

    .neo-eyebrow {
        margin-bottom: 23px;

        font-size: 8px;
    }

    .neo-hero h1 {
        font-size:
            clamp(
                3.35rem,
                16vw,
                4.7rem
            );

        line-height: .91;
    }

    .neo-hero-lead {
        font-size: 14px;
    }

    .neo-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .neo-hero-actions .button {
        width: 100%;
    }

    .neo-text-link {
        justify-content: center;
    }

    .neo-proof {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 38px;
    }

    .neo-proof > div {
        padding:
            0 0 14px;

        border-bottom:
            1px solid
            rgba(255,255,255,.055);
    }

    .neo-proof p span {
        max-width: none;
    }


    /* Globe */

    .world-stage {
        height: 500px;

        margin-top: 5px;
    }

    .world-card {
        min-width: 135px;

        padding: 11px 12px;
    }

    .world-card strong {
        font-size: 10px;
    }

    .world-card small {
        font-size: 6px;
    }

    .world-card-top {
        top: 5%;
        right: 0;
    }

    .world-card-left {
        left: 0;
        bottom: 18%;
    }

    .world-card-right {
        right: 0;
        bottom: 8%;
    }

    .world-coordinate {
        display: none;
    }

    .world-drag-hint {
        bottom: 0;
    }


    /* Signal */

    .signal-bar-inner {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .signal-bar-inner > div {
        min-height: 88px;

        padding: 18px;

        border-bottom:
            1px solid
            rgba(255,255,255,.06);
    }

    .signal-bar-inner > div:nth-child(3) {
        border-left:
            1px solid
            rgba(255,255,255,.065);
    }


    /* Sections */

    .experience-section,
    .vertical-universe,
    .smartlink-lab,
    .technology-world,
    .advertiser-world {
        padding: 90px 0;
    }

    .experience-heading {
        margin-bottom: 45px;
    }

    .experience-heading h2,
    .smartlink-copy h2,
    .advertiser-world h2,
    .neo-final h2 {
        font-size:
            clamp(
                2.8rem,
                13vw,
                4rem
            );
    }


    /* Publisher */

    .publisher-main-card {
        min-height: 480px;

        padding: 22px;
    }

    .publisher-main-copy {
        margin-top: 42px;
    }

    .publisher-main-copy h3 {
        font-size: 2.25rem;
    }

    .publisher-flow {
        display: grid;

        grid-template-columns: 1fr;

        gap: 7px;
    }

    .publisher-flow > div {
        width: 100%;
    }

    .publisher-flow > i {
        width: 1px;
        height: 15px;

        margin-left: 20px;

        background:
            linear-gradient(
                var(--color-primary),
                rgba(32,213,155,.15)
            );
    }

    .publisher-flow > i::after {
        top: auto;
        bottom: -1px;
        right: -2px;
    }

    .publisher-side-stack {
        grid-template-columns: 1fr;
    }


    /* Verticals */

    .vertical-orbit-layout {
        min-height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }

    .vertical-orbit-layout::before,
    .vertical-connections {
        display: none;
    }

    .vertical-core {
        position: relative;

        left: auto;
        top: auto;

        width: 190px;
        height: 190px;

        transform: none;

        margin:
            40px auto 55px;
    }

    .orbit-vertical {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;
    }

    .orbit-vertical:hover {
        transform: none;
    }


    /* SmartLink */

    .smartlink-machine {
        min-height: 520px;
    }

    .machine-source {
        top: 8%;
        left: 50%;

        transform:
            translateX(-50%);
    }

    .machine-stream {
        left: 50%;
        right: auto;

        top: calc(8% + 95px);

        width: 1px;
        height: 80px;

        background:
            linear-gradient(
                rgba(32,213,155,.15),
                rgba(32,213,155,.75)
            );
    }

    .machine-stream i {
        top: 0;
        left: -3px;

        animation:
            streamParticleMobile
            2.6s linear infinite;
    }

    .machine-stream i:nth-child(2) {
        animation-delay: -.9s;
    }

    .machine-stream i:nth-child(3) {
        animation-delay: -1.8s;
    }

    @keyframes streamParticleMobile {

        from {
            top: 0;
            opacity: 0;
        }

        15% {
            opacity: 1;
        }

        85% {
            opacity: 1;
        }

        to {
            top: 100%;
            opacity: 0;
        }
    }

    .machine-core {
        position: absolute;

        top: 44%;
        left: 50%;

        transform:
            translate(-50%, -50%);
    }

    .machine-output {
        width: min(
            280px,
            calc(100% - 40px)
        );

        right: auto;
        left: 50%;
        top: auto;
        bottom: 7%;

        transform:
            translateX(-50%);

        grid-template-columns:
            repeat(3, 1fr);
    }

    .machine-output::before {
        display: none;
    }


    /* Console */

    .console-top {
        grid-template-columns:
            55px 1fr auto;

        padding:
            0 13px;
    }

    .console-top > span {
        font-size: 5px;
    }

    .console-body {
        display: block;
    }

    .console-navigation {
        flex-direction: row;

        overflow-x: auto;

        padding: 10px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.06);
    }

    .console-navigation span {
        white-space: nowrap;
    }

    .console-center {
        min-height: 360px;
    }

    .console-events {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        padding: 10px;
    }


    /* Advertisers */

    .advertiser-path {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .advertiser-path > div {
        min-height: auto;
    }


    /* Final */

    .neo-final {
        padding:
            100px 0;
    }

    .neo-final-actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .neo-final-actions .button {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .neo-live-dot::before,
    .orbit-one,
    .orbit-two,
    .world-card,
    .hero-scroll i::after,
    .vertical-core-ring,
    .vertical-connections path,
    .machine-core-orbit,
    .machine-stream i,
    .console-pulse::before {
        animation: none !important;
    }
}
/* =========================================================
   AFFIZER HERO V2
   COMPACT PREMIUM 3D COMPOSITION
   ========================================================= */

.neo-hero {
    min-height: 0;
    height: auto;

    padding:
        128px 0
        54px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 38%,
            rgba(0, 202, 175, .075),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(0, 110, 180, .04),
            transparent 24%
        ),
        #020807;
}


/* Main composition */

.neo-hero-layout {
    min-height: 585px;

    grid-template-columns:
        minmax(420px, .91fr)
        minmax(500px, 1.09fr);

    align-items: center;

    gap: 22px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.neo-hero-copy {
    max-width: 590px;

    padding-bottom: 10px;
}

.neo-eyebrow {
    margin-bottom: 24px;

    font-size: 9px;

    letter-spacing: .19em;
}

.neo-hero h1 {
    max-width: 590px;

    margin-bottom: 24px;

    font-size:
        clamp(
            3.65rem,
            4.65vw,
            5.35rem
        );

    line-height: .94;

    letter-spacing: -.067em;
}

.neo-hero h1 span {
    display: block;
}

.neo-hero-lead {
    max-width: 540px;

    margin-bottom: 29px;

    font-size: 14px;
    line-height: 1.75;

    color: #8b9a96;
}

.neo-hero-actions {
    gap: 12px;
}

.neo-hero-actions .button {
    min-height: 52px;

    padding:
        0 24px;

    border-radius: 8px;

    font-size: 12px;
}

.neo-text-link {
    min-height: 52px;

    padding:
        0 21px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 8px;

    font-size: 11px;

    color: #d1d9d7;

    background:
        rgba(255,255,255,.012);
}

.neo-text-link:hover {
    gap: 12px;

    border-color:
        rgba(32,213,155,.24);

    background:
        rgba(32,213,155,.025);
}


/* =========================================================
   THREE SMALL FEATURES
   ========================================================= */

.neo-proof {
    max-width: 570px;

    margin-top: 38px;
    padding-top: 0;

    border-top: 0;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.neo-proof > div {
    position: relative;

    align-items: center;

    gap: 11px;

    padding: 0;

    border: 0;
}

.neo-proof-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex: 0 0 34px;

    padding: 0;

    border:
        1px solid
        rgba(32,213,155,.11);

    border-radius: 7px;

    font-size: 7px;

    background:
        rgba(32,213,155,.055);
}

.neo-proof strong {
    font-size: 9px;
}

.neo-proof p span {
    max-width: 115px;

    font-size: 7px;
}


/* =========================================================
   GLOBE — MUCH SMALLER
   ========================================================= */

.world-stage {
    width: 100%;
    height: 590px;

    max-width: 650px;

    justify-self: end;

    transform: translateX(18px);

    cursor: grab;
}

#affizer-globe {
    inset: 0;

    width: 100%;
    height: 100%;
}

.world-aura {
    width: 64%;

    opacity: .75;
}


/* Remove the giant extra CSS orbit look */

.world-orbit {
    opacity: .42;
}

.orbit-one {
    width: 74%;
    height: 34%;
}

.orbit-two {
    width: 55%;
    height: 65%;
}


/* =========================================================
   FLOATING CARDS — SMALLER + CLEANER
   ========================================================= */

.world-card {
    min-width: 145px;

    padding:
        12px 14px;

    border-radius: 8px;

    background:
        rgba(4, 15, 13, .78);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}

.world-card::after {
    top: 13px;

    height: 22px;
}

.world-card-label {
    margin-bottom: 5px;

    font-size: 6px;
}

.world-card strong {
    margin-bottom: 3px;

    font-size: 10px;
}

.world-card small {
    font-size: 6px;
}

.world-card-top {
    top: 15%;
    right: 1%;
}

.world-card-left {
    left: 1%;
    bottom: 19%;
}

.world-card-right {
    right: 0;
    bottom: 15%;
}

.world-card-signal {
    font-size: 6px;
}


/* Geographic labels */

.world-coordinate {
    font-size: 6px;

    opacity: .75;
}

.world-coordinate-one {
    top: 35%;
    left: 14%;
}

.world-coordinate-two {
    top: 28%;
    right: 18%;
}

.world-coordinate-three {
    bottom: 30%;
    right: 13%;
}

.world-drag-hint {
    bottom: 1%;

    font-size: 6px;

    opacity: .75;
}


/* =========================================================
   REMOVE "CUT PAGE" FEEL
   ========================================================= */

.neo-hero::after {
    height: 100px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(2,8,7,.58)
        );
}

.hero-scroll {
    display: none;
}


/* Make next section visually continue hero */

.signal-bar {
    background:
        rgba(3, 10, 8, .96);

    border-top:
        1px solid
        rgba(255,255,255,.055);
}

.signal-bar-inner > div {
    min-height: 84px;

    padding:
        17px 23px;
}

.signal-bar strong {
    font-size: 11px;
}

.signal-bar small {
    font-size: 7px;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .neo-hero {
        padding-top: 130px;
    }

    .neo-hero-layout {
        min-height: 600px;
    }

    .world-stage {
        height: 610px;

        max-width: 680px;
    }

    .neo-hero h1 {
        font-size: 5.1rem;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (
    min-width: 921px
)
and (
    max-width: 1200px
) {

    .neo-hero {
        padding-top: 115px;
    }

    .neo-hero-layout {
        min-height: 540px;

        grid-template-columns:
            minmax(390px, .95fr)
            minmax(440px, 1.05fr);
    }

    .neo-hero h1 {
        font-size:
            clamp(
                3.4rem,
                5.5vw,
                4.4rem
            );
    }

    .world-stage {
        height: 540px;

        transform:
            translateX(10px);
    }

    .neo-proof {
        gap: 10px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 920px) {

    .neo-hero {
        padding:
            115px 0 50px;
    }

    .neo-hero-layout {
        min-height: 0;

        grid-template-columns: 1fr;

        gap: 5px;
    }

    .neo-hero-copy {
        max-width: 650px;
    }

    .neo-hero h1 {
        font-size:
            clamp(
                3.6rem,
                10vw,
                5.2rem
            );
    }

    .world-stage {
        width: min(
            600px,
            100%
        );

        height: 540px;

        justify-self: center;

        margin: 0 auto;

        transform: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .neo-hero {
        padding:
            105px 0
            38px;
    }

    .neo-hero h1 {
        font-size:
            clamp(
                3rem,
                14.5vw,
                4rem
            );

        margin-bottom: 20px;
    }

    .neo-hero-lead {
        font-size: 13px;
    }

    .neo-proof {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .neo-proof > div {
        padding-bottom: 0;

        border: 0;
    }

    .world-stage {
        height: 390px;

        margin-top: 15px;
    }

    .world-card {
        min-width: 115px;

        padding:
            9px 10px;
    }

    .world-card-top {
        top: 8%;
    }

    .world-card-left {
        bottom: 15%;
    }

    .world-card-right {
        bottom: 5%;
    }

    .world-card small {
        display: none;
    }

    .world-drag-hint {
        display: none;
    }

    .signal-bar-inner {
        grid-template-columns:
            repeat(2, 1fr);
    }
}
/* =========================================================
   AFFIZER V4 — PREMIUM LIGHT + TYPOGRAPHY BALANCE
   ========================================================= */

/* ---------- HERO BACKGROUND ---------- */

.neo-hero {
    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(21, 157, 123, .12) 0%,
            rgba(9, 74, 60, .055) 28%,
            transparent 55%
        ),
        radial-gradient(
            circle at 25% 38%,
            rgba(16, 82, 69, .075),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #03100f 0%,
            #020c0b 52%,
            #03100e 100%
        );
}


/* ---------- HERO MAIN TEXT ---------- */

.neo-hero-copy .eyebrow {
    font-size: 12px;
    letter-spacing: .22em;
    color: rgba(213, 235, 229, .72);
}

.neo-hero-copy h1 {
    color: #f4f8f7;
}

.neo-hero-copy .hero-lead {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(218, 232, 228, .70);
}


/* ---------- BUTTONS ---------- */

.neo-hero-actions .btn {
    min-height: 62px;
    padding: 0 28px;
    font-size: 15px;
}


/* ---------- HERO FEATURE ITEMS ---------- */

.neo-proof-item {
    gap: 14px;
}

.neo-proof-item strong {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(241, 249, 247, .90);
}

.neo-proof-item span {
    font-size: 11.5px;
    line-height: 1.5;
    color: rgba(189, 213, 207, .52);
}


/* ---------- GLOBE ---------- */

.world-stage {
    filter:
        brightness(1.10)
        contrast(1.02);
}

.world-aura {
    opacity: .72;
}


/* ---------- FLOATING GLOBE CARDS ---------- */

.world-card {
    background:
        rgba(4, 19, 17, .88);

    border-color:
        rgba(116, 218, 191, .19);

    box-shadow:
        0 18px 60px rgba(0, 0, 0, .24);
}

.world-card-label {
    font-size: 9px;
    color: rgba(135, 226, 201, .65);
}

.world-card strong {
    font-size: 14px;
    color: rgba(242, 250, 248, .92);
}

.world-card small {
    font-size: 9px;
    color: rgba(182, 211, 203, .50);
}


/* ---------- GLOBAL SECTION TYPOGRAPHY ---------- */

.neo-section .eyebrow,
.section-eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
}

.neo-section h2,
.section-title {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.neo-section p,
.section-copy {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(205, 222, 217, .68);
}


/* ---------- CARDS ACROSS WEBSITE ---------- */

.neo-card h3,
.feature-card h3 {
    font-size: 21px;
    line-height: 1.25;
}

.neo-card p,
.feature-card p {
    font-size: 15px;
    line-height: 1.68;
}


/* ---------- SIGNAL BAR ---------- */

.signal-item strong {
    font-size: 15px;
}

.signal-item span {
    font-size: 12px;
}


/* ---------- NAV ---------- */

.site-nav a {
    font-size: 15px;
}

.header-actions .btn {
    font-size: 15px;
}


/* ---------- FOOTER ---------- */

.site-footer {
    color: rgba(207, 224, 219, .66);
}

.site-footer a {
    font-size: 14px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 680px) {

    .neo-hero-copy .hero-lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .neo-hero-actions .btn {
        min-height: 56px;
        font-size: 14px;
    }

    .neo-section h2,
    .section-title {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
    }

    .neo-section p,
    .section-copy {
        font-size: 16px;
    }
}


/* =========================================================
   AFFIZER V5 — GLOBAL LIGHTING + TYPOGRAPHY REBALANCE
   FINAL OVERRIDES
   ========================================================= */

body {
    background: #06110f;
}

main {
    background:
        radial-gradient(circle at 78% 12%, rgba(26,171,132,.08), transparent 34%),
        linear-gradient(180deg, #06110f 0%, #071411 45%, #06110f 100%);
}

/* HERO */
.neo-hero {
    background:
        radial-gradient(ellipse at 74% 43%, rgba(30,202,154,.16) 0%, rgba(18,118,92,.09) 27%, rgba(8,42,35,.035) 49%, transparent 67%),
        radial-gradient(ellipse at 20% 42%, rgba(25,114,92,.08), transparent 48%),
        linear-gradient(135deg, #071512 0%, #061310 47%, #071713 100%) !important;
}

.neo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(21,79,65,.07), transparent 40%, rgba(22,133,103,.045));
}

.neo-eyebrow,
.neo-hero-copy .eyebrow {
    font-size: 13px !important;
    color: rgba(211,235,228,.78) !important;
}

.neo-hero-lead,
.neo-hero-copy .hero-lead {
    font-size: 19px !important;
    line-height: 1.7 !important;
    color: rgba(218,234,229,.76) !important;
}

.neo-proof strong,
.neo-proof-item strong {
    font-size: 15px !important;
    color: #eaf4f1 !important;
}

.neo-proof p span,
.neo-proof-item span {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    color: rgba(194,218,211,.65) !important;
}

/* ALL LARGE HOME SECTIONS */
.experience-section,
.vertical-universe,
.smartlink-lab,
.technology-world,
.advertiser-world {
    position: relative;
    background:
        radial-gradient(circle at 15% 25%, rgba(25,126,99,.055), transparent 32%),
        radial-gradient(circle at 82% 70%, rgba(17,101,82,.05), transparent 35%),
        linear-gradient(180deg, #081713 0%, #06120f 100%) !important;
}

.vertical-universe,
.technology-world {
    background:
        radial-gradient(circle at 50% 68%, rgba(30,170,128,.09), transparent 35%),
        radial-gradient(circle at 80% 25%, rgba(25,112,91,.055), transparent 32%),
        linear-gradient(180deg, #071512 0%, #081713 55%, #06120f 100%) !important;
}

.experience-section::before,
.vertical-universe::before,
.smartlink-lab::before,
.technology-world::before,
.advertiser-world::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(100,207,177,.11), transparent);
}

/* SECTION TYPOGRAPHY */
.experience-index {
    font-size: 13px !important;
    color: #35d9ab !important;
}

.experience-heading h2,
.smartlink-copy h2,
.advertiser-world h2,
.neo-final h2 {
    font-size: clamp(3.2rem, 5vw, 5.4rem) !important;
    line-height: .99 !important;
    color: #f2f7f5 !important;
}

.experience-heading > p,
.smartlink-copy > p,
.advertiser-world-copy p,
.neo-final p {
    font-size: 18px !important;
    line-height: 1.72 !important;
    color: rgba(210,229,223,.72) !important;
}

/* PUBLISHER */
.publisher-main-card {
    background:
        radial-gradient(circle at 80% 70%, rgba(32,213,155,.11), transparent 38%),
        linear-gradient(145deg, #0d211b, #081713) !important;
    border-color: rgba(104,211,181,.16) !important;
}

.publisher-main-copy p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(201,223,216,.68) !important;
}

.publisher-card-head span,
.publisher-big-number {
    font-size: 11px !important;
}

.publisher-mini-card {
    background: linear-gradient(145deg, rgba(14,37,31,.94), rgba(8,26,22,.94)) !important;
    border-color: rgba(106,209,180,.14) !important;
}

.publisher-mini-card h3 {
    font-size: 21px !important;
}

.publisher-mini-card p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: rgba(201,223,216,.68) !important;
}

.publisher-flow span {
    font-size: 9px !important;
}

.publisher-flow strong {
    font-size: 12px !important;
}

/* VERTICALS */
.vertical-universe {
    background:
        radial-gradient(ellipse at 50% 72%, rgba(25,178,133,.12), transparent 42%),
        linear-gradient(180deg, #071512 0%, #081713 55%, #06120f 100%) !important;
}

.orbit-vertical {
    background: linear-gradient(145deg, rgba(13,35,29,.94), rgba(8,25,21,.92)) !important;
    border-color: rgba(96,210,176,.18) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.orbit-vertical strong {
    font-size: 19px !important;
    color: #edf7f4 !important;
}

.orbit-vertical small {
    font-size: 11px !important;
    color: rgba(190,217,209,.61) !important;
}

.orbit-vertical > span {
    font-size: 10px !important;
}

.vertical-core {
    background:
        radial-gradient(circle, rgba(24,103,80,.70), rgba(7,31,25,.94) 58%, #06120f 78%) !important;
    box-shadow: 0 0 110px rgba(31,208,157,.10) !important;
}

.vertical-core-content span {
    font-size: 10px !important;
}

.vertical-core-content small {
    font-size: 11px !important;
    color: rgba(190,217,209,.55) !important;
}

/* SMARTLINK */
.smartlink-machine {
    background:
        radial-gradient(circle at 50% 50%, rgba(32,213,155,.12), transparent 38%),
        #071512 !important;
    border-color: rgba(102,207,177,.15) !important;
}

.smartlink-specs strong {
    font-size: 14px !important;
}

.smartlink-specs span {
    font-size: 10px !important;
}

.machine-source span,
.machine-core span,
.machine-output span {
    font-size: 9px !important;
}

.machine-source strong {
    font-size: 13px !important;
}

.machine-output strong {
    font-size: 11px !important;
}

/* TECHNOLOGY */
.technology-console {
    background: #091814 !important;
    border-color: rgba(104,211,181,.15) !important;
    box-shadow: 0 35px 90px rgba(0,0,0,.20) !important;
}

.console-top > span,
.console-top > small {
    font-size: 10px !important;
}

.console-navigation span {
    font-size: 12px !important;
    color: rgba(190,214,207,.58) !important;
}

.console-events span {
    font-size: 9px !important;
}

.console-events strong {
    font-size: 12px !important;
}

/* ADVERTISERS */
.advertiser-path > div {
    background: rgba(12,32,27,.42);
    border-color: rgba(101,202,173,.14) !important;
}

.advertiser-path span {
    font-size: 10px !important;
}

.advertiser-path strong {
    font-size: 16px !important;
}

.advertiser-path small {
    font-size: 11px !important;
    color: rgba(190,216,209,.60) !important;
}

/* FINAL CTA */
.neo-final {
    background:
        radial-gradient(circle at 50% 52%, rgba(32,213,155,.14), transparent 35%),
        linear-gradient(180deg, #071512, #06110f) !important;
}

/* GLOBE */
.world-stage {
    filter: brightness(1.16) contrast(.98) saturate(.93) !important;
}

.world-aura {
    opacity: .82 !important;
}

.world-orbit {
    display: none !important;
}

.world-card {
    background: linear-gradient(145deg, rgba(7,30,25,.95), rgba(5,22,19,.93)) !important;
    border-color: rgba(86,219,180,.22) !important;
}

.world-card-label,
.world-card-signal {
    font-size: 10px !important;
}

.world-card strong {
    font-size: 15px !important;
}

.world-card small {
    font-size: 10px !important;
    color: rgba(190,216,209,.60) !important;
}

.world-coordinate,
.world-drag-hint {
    font-size: 9px !important;
}

/* SIGNAL BAR */
.signal-bar {
    background: #091814 !important;
    border-color: rgba(90,197,166,.12) !important;
}

.signal-bar span {
    font-size: 10px !important;
}

.signal-bar strong {
    font-size: 16px !important;
}

.signal-bar small {
    font-size: 11px !important;
    color: rgba(190,216,209,.58) !important;
}

/* MOBILE */
@media (max-width: 680px) {
    .neo-hero-lead,
    .neo-hero-copy .hero-lead {
        font-size: 17px !important;
    }

    .experience-heading h2,
    .smartlink-copy h2,
    .advertiser-world h2,
    .neo-final h2 {
        font-size: clamp(2.55rem, 12vw, 4rem) !important;
    }

    .experience-heading > p,
    .smartlink-copy > p,
    .advertiser-world-copy p,
    .neo-final p {
        font-size: 16.5px !important;
    }
}

/* =========================================================
   AFFIZER CONTACT — PREMIUM V1
   ========================================================= */

.affizer-contact {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    border-top: 1px solid rgba(118, 255, 213, 0.08);
    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(26, 213, 167, 0.08),
            transparent 34%
        ),
        #030b09;
}

.affizer-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(73, 190, 155, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(73, 190, 155, 0.08) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 20%,
        #000 80%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 20%,
        #000 80%,
        transparent
    );
}

.contact-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.contact-heading h2 {
    margin: 18px 0 0;
    max-width: 680px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 610;
    letter-spacing: -0.055em;
}

.contact-heading h2 span {
    color: var(--color-primary, #24d6a8);
}

.contact-heading > p {
    max-width: 500px;
    margin: 0;
    color: rgba(220, 237, 232, 0.68);
    font-size: 18px;
    line-height: 1.75;
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 55px;
    align-items: stretch;
}

.contact-info {
    padding: 45px 20px 45px 0;
}

.contact-kicker {
    display: block;
    margin-bottom: 24px;
    color: #35dcb0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.contact-info h3 {
    max-width: 470px;
    margin: 0;
    color: #f1faf7;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.contact-info > p {
    max-width: 470px;
    margin: 25px 0 0;
    color: rgba(218, 235, 230, 0.63);
    font-size: 17px;
    line-height: 1.75;
}

.contact-direct {
    display: grid;
    gap: 22px;
    margin-top: 55px;
}

.contact-direct > div {
    padding-top: 20px;
    border-top: 1px solid rgba(113, 220, 188, 0.14);
}

.contact-direct span {
    display: block;
    margin-bottom: 7px;
    color: rgba(173, 209, 198, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.contact-direct a {
    color: #dff8f0;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-direct a:hover {
    color: #2ad8a9;
}

.contact-form-shell {
    position: relative;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(78, 226, 181, 0.28),
        rgba(78, 226, 181, 0.04) 45%,
        rgba(74, 132, 255, 0.10)
    );
}

.contact-form-shell::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(34, 218, 166, 0.09);
    filter: blur(55px);
    pointer-events: none;
}

.contact-form {
    position: relative;
    height: 100%;
    padding: 42px;
    border-radius: 23px;
    background: linear-gradient(
        145deg,
        rgba(8, 25, 20, 0.97),
        rgba(3, 13, 11, 0.98)
    );
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    margin-bottom: 23px;
}

.contact-field label {
    display: block;
    margin-bottom: 10px;
    color: rgba(225, 244, 238, 0.75);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(105, 196, 169, 0.17);
    border-radius: 12px;
    outline: none;
    background: rgba(3, 13, 11, 0.76);
    color: #effbf7;
    font: inherit;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 54px;
    padding: 0 17px;
}

.contact-field textarea {
    min-height: 145px;
    padding: 16px 17px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(191, 217, 209, 0.32);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(41, 218, 171, 0.65);
    background: rgba(6, 24, 19, 0.95);
    box-shadow: 0 0 0 3px rgba(35, 211, 165, 0.07);
}

.contact-field select {
    cursor: pointer;
    color-scheme: dark;
}

.contact-form-bottom {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.contact-form-bottom p {
    max-width: 390px;
    margin: 0;
    color: rgba(185, 210, 202, 0.42);
    font-size: 11px;
    line-height: 1.55;
}

.contact-submit {
    flex: 0 0 auto;
    min-width: 175px;
    min-height: 54px;
    border: 0;
    cursor: pointer;
}

@media (max-width: 900px) {
    .affizer-contact {
        padding: 95px 0;
    }

    .contact-heading,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-heading {
        gap: 25px;
        margin-bottom: 45px;
    }

    .contact-layout {
        gap: 30px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-direct {
        margin-top: 35px;
    }
}

@media (max-width: 620px) {
    .affizer-contact {
        padding: 75px 0;
    }

    .contact-heading > p {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit {
        width: 100%;
    }
}

