/* ============================================================
   AIX DATAWORLD — DESIGN SYSTEM
   Visual direction derived from the supplied brochure:
   editorial / industrial / premium AI infrastructure
============================================================ */

:root {
    --aix-charcoal: #362E2B;
    --aix-black: #080A0D;
    --aix-white: #FFFFFF;
    --aix-yellow: #F7C600;

    --aix-navy: #071727;
    --aix-blue: #0B2945;
    --aix-cyan: #39D8F5;

    --aix-purple: #342535;
    --aix-magenta: #713B5A;
    --aix-pink: #B64D68;
    --aix-orange: #F08A27;

    --aix-light: #F4F3F0;
    --aix-muted: #77736F;
    --aix-border: rgba(54, 46, 43, .15);

    --aix-gradient: linear-gradient(90deg,
                #F04A32 0%,
                #F7941D 45%,
                #F7C600 100%);

    --display: "Funnel Display", sans-serif;
    --sans: "Funnel Sans", sans-serif;
    --body: "Roboto", sans-serif;

    --container: 1480px;
    --pad: clamp(24px, 5vw, 72px);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--body);
    color: var(--aix-charcoal);
    background: var(--aix-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}
.container {
    width: min(calc(100% - 2 * var(--pad)),
            var(--container));

    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(70px, 10vw, 70px);
}

.dark-section {
    background: var(--aix-black);
    color: var(--aix-white);
}

/* ============================================================
   PROGRESS
============================================================ */

.site-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 2000;
    pointer-events: none;
}

.site-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--aix-yellow);
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: 62px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
    color: var(--aix-white);
    transition: .45s var(--ease);
}

.header-stack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-header.scrolled {
    color: black;
    font-weight: 600;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.04em;
}

.brand-logo {
    width: auto;
    height: 40px;
}

/* Default state: Show light logo, hide dark logo */
.brand-logo.logo-dark {
    display: none;
}

.brand-logo.logo-light {
    display: block;
}

/* Scrolled state: Hide light logo, show dark logo */
.site-header.scrolled .brand-logo.logo-light {
    display: none;
}

.site-header.scrolled .brand-logo.logo-dark {
    display: block;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border: 1px solid currentColor;
    font-size: 12px;
    letter-spacing: -.08em;
}

.brand-name {
    font-size: 19px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 42px);
    margin-left: auto;
    margin-right: 42px;
    font-family: var(--sans);
    font-size: 14px;
}

.desktop-nav a {
    opacity: .82;
    transition: .3s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-cta {
    padding: 10px 16px;
    border: 1px solid currentColor;
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: .3s ease;
}

.header-cta:hover {
    background: var(--aix-yellow);
    border-color: var(--aix-yellow);
    color: var(--aix-black);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: currentColor;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    margin: 6px auto;
    transition: .3s ease;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: var(--aix-black);
    color: white;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--display);
    font-size: clamp(32px, 8vw, 54px);
    letter-spacing: -.04em;
}

.mobile-menu-cta {
    display: inline-block;
    color: var(--aix-yellow);
}

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--aix-black);
}

.hero-media,
.hero-gradient,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .72;
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

/*.hero-gradient {
    background:
        linear-gradient(90deg,
            rgba(7, 5, 10, .92) 0%,
            rgba(52, 37, 53, .72) 38%,
            rgba(113, 59, 90, .36) 67%,
            rgba(240, 138, 39, .22) 100%),
        linear-gradient(0deg, rgba(0,0,0,.62), transparent 45%);
} */

.hero-grid {
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: end;
    gap: 60px;
    padding-top: 120px;
    padding-bottom: 145px;
}

.hero-copy {
    max-width: 850px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--aix-yellow);
    flex: 0 0 auto;
}

.eyebrow.light {
    color: rgba(255,255,255,.8);
}

.eyebrow.dark {
    color: var(--aix-muted);
}

.hero h1 {
    max-width: 820px;
    margin-top: 28px;
    font-family: var(--display);
    font-size: clamp(52px, 6.2vw, 85px);
        line-height: 1.08;
        letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    background-image: var(--aix-gradient);
    
        /* Clip the background to the text and make text transparent */
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
}

.hero-description {
    max-width: 620px;
    margin-top: 34px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 21px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: .35s var(--ease);
}

.btn-light {
    color: var(--aix-black);
    background: white;
}

.btn-light:hover {
    background: var(--aix-yellow);
    transform: translateY(-3px);
}

.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,.45);
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}

.hero-event-card {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(10, 8, 12, .36);
    backdrop-filter: blur(15px);
}

.event-card-label {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    font-size: 9px;
    letter-spacing: .15em;
    color: rgba(255,255,255,.6);
}

.event-card-location {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
}

.event-card-location strong,
.event-card-location span {
    display: block;
}

.event-card-location strong {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 400;
}

.event-card-location span {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255,255,255,.58);
}

.event-card-location i {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,.2);
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

/* ============================================================
   STATEMENT
============================================================ */


.statement-heading h2,
.section-heading-row h2,
.section-top h2,
.numbers-intro h2,
.register h2 {
    margin-top: 25px;
    font-family: var(--display);
    font-size: clamp(48px, 6.4vw, 100px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.055em;
    margin-bottom: 25px;
}

.statement-heading em,
.section-heading-row em,
.register em {
    font-style: normal;
    color: var(--aix-orange);
}

.statement-copy {
    padding-top: 60px;
}

.statement-copy .lead {
    font-family: var(--display);
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.statement-copy p + p {
    margin-top: 25px;
    color: var(--aix-muted);
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--aix-charcoal);
    font-family: var(--sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
/* =========================================================
   AIX DATAWORLD — VALUE CHAIN
========================================================= */

.value-chain {
    position: relative;
    width: 100%;

    background: var(--aix-light);
    color: var(--aix-charcoal);

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND GRID
========================================================= */

.value-chain::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(54, 46, 43, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(54, 46, 43, 0.035) 1px,
            transparent 1px);

    background-size: 72px 72px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.value-chain-container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 2 * var(--pad)),
            var(--container));

    margin-inline: auto;

    padding-block: clamp(90px, 9vw, 75px);
}


/* =========================================================
   HEADER
========================================================= */

.value-chain-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr) minmax(260px, .55fr);

    gap: clamp(50px, 8vw, 140px);

    align-items: end;

    margin-bottom: 85px;
}


/* =========================================================
   LABEL
========================================================= */

.value-chain-label {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

    font-family: var(--sans);

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

    letter-spacing: 2px;

    color: var(--aix-charcoal);
}

.value-chain-label::before {
    content: "";

    width: 36px;
    height: 3px;

    flex-shrink: 0;

    background: var(--aix-gradient);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.value-chain-heading h2 {
    max-width: 950px;

    margin: 0;

    font-family: var(--display);

    font-size: clamp(48px, 5.2vw, 76px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;

    color: var(--aix-charcoal);
}


/* GRADIENT HIGHLIGHT */

.value-chain-heading h2 span {
    display: inline-block;

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.value-chain-description {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding-bottom: 8px;
}

.description-line {
    width: 2px;
    height: 75px;

    flex-shrink: 0;

    background: var(--aix-gradient);
}

.value-chain-description p {
    max-width: 310px;

    margin: 0;

    font-family: var(--body);

    font-size: 15px;

    line-height: 1.7;

    color: var(--aix-muted);
}


/* =========================================================
   NAVIGATION
========================================================= */

.value-chain-navigation {
    display: grid;

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

    border-top:
        1px solid rgba(54, 46, 43, .20);

    border-bottom:
        1px solid rgba(54, 46, 43, .20);

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


/* =========================================================
   ITEM
========================================================= */

.value-chain-item {
    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    min-height: 190px;

    padding: 28px 25px 24px;

    border-right:
        1px solid rgba(54, 46, 43, .15);

    overflow: hidden;

    transition:
        background .35s var(--ease),
        transform .35s var(--ease);
}

.value-chain-item:last-child {
    border-right: none;
}


/* =========================================================
   ICON
========================================================= */

.value-chain-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    color:
        rgba(54, 46, 43, .55);

    transition:
        color .35s ease,
        transform .4s var(--ease);
}

.value-chain-icon i {
    font-size: 25px;

    transition:
        transform .35s var(--ease);
}


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

.value-chain-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   NAME
========================================================= */

.value-chain-name {
    margin: 0;

    font-family: var(--display);

    font-size: 21px;

    font-weight: 600;

    letter-spacing: -.4px;

    color:
        rgba(54, 46, 43, .78);

    transition:
        color .3s ease,
        transform .3s var(--ease);
}


/* =========================================================
   ARROW
========================================================= */

.value-chain-arrow {
    position: absolute;

    right: 22px;
    bottom: 21px;

    font-size: 15px;

    opacity: 0;

    transform:
        translate(-8px, 8px);

    transition:
        opacity .3s ease,
        transform .3s var(--ease);
}


/* =========================================================
   GRADIENT PROGRESS LINE
========================================================= */

.value-chain-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 4px;

    background:
        var(--aix-gradient);

    transition:
        width .45s var(--ease);
}


/* =========================================================
   HOVER
========================================================= */

.value-chain-item:hover {
    background:
        rgba(255, 255, 255, .60);
}

.value-chain-item:hover::after {
    width: 100%;
}

.value-chain-item:hover .value-chain-icon {
    color:
        var(--aix-orange);

    transform:
        translateY(-5px);
}

.value-chain-item:hover .value-chain-icon i {
    transform:
        scale(1.08);
}

.value-chain-item:hover .value-chain-name {
    color:
        var(--aix-charcoal);

    transform:
        translateY(-3px);
}

.value-chain-item:hover .value-chain-arrow {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* =========================================================
   ACTIVE
========================================================= */

.value-chain-item.active {
    background:
        rgba(255, 255, 255, .65);
}

.value-chain-item.active::after {
    width: 100%;
}

.value-chain-item.active .value-chain-icon {
    color:
        var(--aix-orange);
}

.value-chain-item.active .value-chain-name {
    background:
        var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.value-chain-item.active .value-chain-arrow {
    opacity: 1;

    transform:
        translate(0, 0);
}


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

@media (max-width: 1100px) {

    .value-chain-header {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 60px;
    }


    .value-chain-description {
        padding-bottom: 0;
    }


    .value-chain-description p {
        max-width: 600px;
    }


    .value-chain-navigation {
        grid-template-columns:
            repeat(4, 1fr);
    }


    .value-chain-item:nth-child(4) {
        border-right: none;
    }


    .value-chain-item:nth-child(n + 5) {
        border-top:
            1px solid rgba(54, 46, 43, .15);
    }

}

.mobile-break {
    display: none;
}

@media (max-width: 700px) {

    .mobile-break {
        display: block;
    }

}

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

@media (max-width: 700px) {

    /* -----------------------------------------
       CONTAINER
    ----------------------------------------- */

    .value-chain-container {
        padding-block: 70px 55px;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .value-chain-header {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
        max-width: none;

        gap: 35px;

        margin-bottom: 50px;
    }


    /* -----------------------------------------
       LABEL
    ----------------------------------------- */

    .value-chain-label {
        width: 100%;

        font-size: 14px;
        letter-spacing: 1.5px;
    }


    /* -----------------------------------------
       HEADING
    ----------------------------------------- */

    .value-chain-heading {
        width: 100%;
        max-width: none;
    }

    .value-chain-heading h2 {
        width: 100%;
        max-width: none;

        margin: 0;

        font-size: 45px;
        line-height: 1;
        letter-spacing: -2px;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .value-chain-description {
        display: flex;

        width: 100%;
        max-width: none;

        gap: 15px;

        padding-bottom: 0;
    }

    .description-line {
        width: 2px;
        height: 65px;

        flex-shrink: 0;
    }

    .value-chain-description p {
        width: auto;
        max-width: 100%;

        margin: 0;

        font-size: 14px;
        line-height: 1.6;
    }


    /* -----------------------------------------
       MOBILE GRID
       KEEP 2 COLUMN GRID
    ----------------------------------------- */

    .value-chain-navigation {
        display: grid;

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

        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }


    /* -----------------------------------------
       GRID ITEMS
    ----------------------------------------- */

    .value-chain-item {
        width: 100%;
        min-width: 0;

        min-height: 170px;

        padding: 25px 20px;

        box-sizing: border-box;

        /* override desktop/tablet rules */
        flex: none;

        border-right: 1px solid rgba(54, 46, 43, .15);

        border-top: 1px solid rgba(54, 46, 43, .15);
    }


    /* First row */
    .value-chain-item:nth-child(1),
    .value-chain-item:nth-child(2) {
        border-top: none;
    }


    /* Right column */
    .value-chain-item:nth-child(2n) {
        border-right: none;
    }


    /* Last item */
    .value-chain-item:last-child {
        border-right: none;
    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .value-chain-icon {
        width: 42px;
        height: 42px;
    }

    .value-chain-icon i {
        font-size: 22px;
    }


    /* -----------------------------------------
       NAME
    ----------------------------------------- */

    .value-chain-name {
        font-size: 20px;
    }
}

/* ============================================================
   STATEMENT / MARKETPLACE
============================================================ */

.statement {
    position: relative;
    overflow: hidden;

    background: var(--aix-black);
    color: var(--aix-white);

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


/* subtle grid */

.statement::before {
    content: "";

    position: absolute;
    inset: 0;

    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: 80px 80px;

    pointer-events: none;
}


/* subtle orange glow */

.statement::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: 20%;

    background: radial-gradient(circle,
            rgba(247, 148, 29, .09),
            transparent 65%);

    pointer-events: none;
}


/* ============================================================
   MAIN GRID
============================================================ */

.statement .container {
    position: relative;
    z-index: 2;
}

.statement-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr) minmax(320px, .85fr);

    gap: clamp(60px,
            9vw,
            150px);

    padding-block:
        clamp(70px, 11vw, 15px);
}


/* ============================================================
   LABEL
============================================================ */

.statement-label {

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 38px;

    font-family: var(--sans);

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

    letter-spacing: .18em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, .65);
}

.statement-label span {

    width: 34px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--aix-gradient);
}


/* ============================================================
   HEADING
============================================================ */

.statement-heading h2 {

    max-width: 850px;

    margin: 0;

    font-family: var(--display);

    font-size: clamp(58px,
            7vw,
            105px);

    font-weight: 300;

    line-height: .88;

    letter-spacing: -.06em;

    color: #ffffff;
}


/* gradient emphasis */

.statement-heading em {

    display: block;

    font-style: normal;

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* ============================================================
   RIGHT COPY
============================================================ */

.statement-copy {

    align-self: end;

    padding-bottom: 5px;
}


/* lead */

.statement-copy .lead {

    max-width: 490px;

    margin: 0;

    font-family: var(--display);

    font-size: clamp(25px,
            2.25vw,
            35px);

    font-weight: 300;

    line-height: 1.13;

    letter-spacing: -.025em;

    color: rgba(255, 255, 255, .94);
}


/* secondary paragraph */

.statement-copy p+p {

    max-width: 470px;

    margin-top: 32px;

    font-family: var(--body);

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .48);
}


/* ============================================================
   LINK
============================================================ */

.statement-copy .text-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 38px;

    padding-bottom: 10px;

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

    font-family: var(--sans);

    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .13em;

    color: white;

    transition:
        border-color .3s ease,
        color .3s ease,
        gap .3s ease;
}

.statement-copy .text-link span {

    font-size: 16px;

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.statement-copy .text-link:hover {

    gap: 20px;

    border-color: #F7941D;
}


/* ============================================================
   BOTTOM FEATURES
============================================================ */

.statement-features {

    position: relative;
    z-index: 2;

    display: grid;

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

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

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

    margin-bottom: 70px;
}


.statement-feature {

    position: relative;

    min-height: 105px;

    padding:
        14px 28px;

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

    transition:
        background .35s var(--ease);
}

.statement-feature:last-child {
    border-right: none;
}


/* title */

.statement-feature strong {

    display: block;

    font-family: var(--display);

    font-size: 26px;

    font-weight: 500;

    letter-spacing: -.02em;

    color: white;
}


/* description */

.statement-feature p {

    margin-top: 8px;

    font-size: 16px;

    line-height: 1.5;

    color: rgba(255, 255, 255, .4);
}


/* hover */

.statement-feature:hover {

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

.statement-feature:hover>span {

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {

    .statement-grid {
        grid-template-columns: 1fr;
    }

    .statement-copy {
        padding-bottom: 0;
    }

    .statement-features {
        grid-template-columns: 1fr;
    }

    .statement-feature {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .statement-feature:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   OUTCOMES
============================================================ */
/* ============================================================
   OUTCOMES
============================================================ */

.outcomes {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* ============================================================
   INTRO PARAGRAPH
============================================================ */

.outcome-para {
    max-width: 1070px;

    margin-top: 20px;

    color: var(--aix-muted);

    line-height: 1.6;
}


/* ============================================================
   LIST
============================================================ */

.outcome-list {
    position: relative;

    margin-top: 85px;

    border-top: 1px solid var(--aix-border);
}


/* ============================================================
   OUTCOME ITEM
============================================================ */

.outcome-item {
    position: relative;

    display: grid;

    grid-template-columns:
        70px minmax(0, 1fr) 50px;

    align-items: center;

    gap: 40px;

    min-height: 145px;

    padding: 30px 0;

    border-bottom: 1px solid var(--aix-border);

    cursor: pointer;

    transition:
        padding .45s var(--ease),
        background .45s var(--ease);
}


/* ============================================================
   HOVER ROW
============================================================ */

.outcome-item:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: #F4F3F0;
}


/* ============================================================
   NUMBER
============================================================ */

.outcome-number {
    align-self: start;

    padding-top: 8px;

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: .08em;

    color: var(--aix-muted);

    transition: color .3s ease;
}


/* ============================================================
   TITLE
============================================================ */

.outcome-item h3 {
    font-family: var(--display);

    font-size: clamp(34px,
            3.4vw,
            52px);

    font-weight: 300;

    line-height: 1;

    letter-spacing: -.045em;

    transition:
        transform .4s var(--ease);
}


/* ============================================================
   DESCRIPTION
============================================================ */

.outcome-item p {
    max-width: 670px;

    margin-top: 9px;

    color: var(--aix-muted);

    font-size: 13px;

    line-height: 1.6;
}

.outcome-item::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--aix-gradient);

    transition:
        width .5s var(--ease);
}

.outcome-item:hover::after {
    width: 100%;
}


/* ============================================================
   ARROW
============================================================ */

.outcome-arrow {

    font-size: 24px;

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    transition:
        transform .4s var(--ease);
}


/* ============================================================
   HOVER TEXT
============================================================ */

.outcome-item:hover h3 {
    transform: translateX(8px);
}

.outcome-item:hover .outcome-number {
    color: #F7941D;
}

.outcome-item:hover .outcome-arrow {
    transform:
        translate(5px, -5px);
}

/* ============================================================
   OUTCOME HOVER IMAGE
============================================================ */

.outcome-preview {

    position: fixed;

    z-index: 50;

    top: 50%;

    right: clamp(40px,
            7vw,
            110px);

    width: 330px;
    height: 230px;

    pointer-events: none;

    opacity: 0;

    transform:
        translateY(-50%) translateY(20px) scale(.96);

    transition:
        opacity .35s ease,
        transform .5s var(--ease);
}


/* visible */

.outcome-preview.active {

    opacity: 1;

    transform:
        translateY(-50%) translateY(0) scale(1);
}


/* image wrapper */

.outcome-preview-image {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #111;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .18);
}


/* gradient overlay */

.outcome-preview-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(240, 74, 50, .12),
            transparent 50%);
}


/* image */

.outcome-preview img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.06);

    transition:
        opacity .35s ease,
        transform .8s var(--ease);
}


/* loaded image */

.outcome-preview img.loaded {

    opacity: 1;

    transform: scale(1);
}
/* ============================================================
   EXPERIENCE
============================================================ */
/* ============================================================
   EXPERIENCE
============================================================ */

.experience-section {
    position: relative;

    background: var(--aix-light);

    overflow: hidden;
}


/* ============================================================
   GRID
============================================================ */

.experience-grid {

    display: grid;

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

    gap: 14px;

    margin-top: 75px;
}


/* ============================================================
   CARD
============================================================ */

.experience-card {

    position: relative;

   
    gap: 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 30px;

    background: #ffffff;

    border: 1px solid rgba(54, 46, 43, .12);

    overflow: hidden;

    transition:
        transform .45s var(--ease),
        background .45s var(--ease),
        border-color .45s ease;
}


/* ============================================================
   CARD HOVER
============================================================ */

.experience-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(54, 46, 43, .28);
}


/* gradient bottom line */

.experience-card::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--aix-gradient);

    transition:
        width .5s var(--ease);
}

.experience-card:hover::after {

    width: 100%;
}


/* ============================================================
   TOP
============================================================ */

.experience-card-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


/* ============================================================
   NUMBER
============================================================ */

.card-number {

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: .12em;

    color: var(--aix-muted);
}


/* ============================================================
   ICON
============================================================ */

.experience-icon {

    width: 54px;
    height: 54px;

    display: flex;

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

    border: 1px solid rgba(54, 46, 43, .16);

    background: var(--aix-gradient);

    border-radius: 50%;

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .4s var(--ease);
}

.experience-icon svg {

    width: 38px;
    height: 38px;

    stroke: url(#aixGradient);

    stroke: var(--aix-white);

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform .4s var(--ease);
}

.experience-card:hover .experience-icon {

    background: #ffffff;

    border-color:
        rgba(247, 148, 29, .45);

    transform:
        translateY(-3px);
       
}

.experience-card:hover .experience-icon svg {

    transform:
        scale(1.08);
        stroke: var(--aix-orange);
}


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

.experience-card-content {

    max-width: 390px;
}


.experience-card h3 {

    margin: 0;

    font-family: var(--display);

    font-size: clamp(27px,
            2.5vw,
            38px);

    font-weight: 300;

    line-height: .98;

    letter-spacing: -.04em;

    color: var(--aix-charcoal);
}


.experience-card p {

    max-width: 340px;

    margin-top: 18px;

    font-family: var(--body);

    font-size: 13px;

    line-height: 1.65;

    color: var(--aix-muted);
}


/* ============================================================
   LINK
============================================================ */

.experience-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 27px;

    font-family: var(--sans);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: var(--aix-charcoal);

    transition:
        gap .35s var(--ease);
}

.experience-card a span {

    font-size: 16px;

    background: var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.experience-card:hover a {

    gap: 17px;
}

@media (max-width: 650px) {

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

        gap: 12px;

        margin-top: 50px;
    }

    .experience-card {
        min-height: 150px;

        padding: 26px;
    }

    .experience-card h3 {
        font-size: 34px;
    }

}

/* ============================================================
   ECOSYSTEM
============================================================ */
/* ============================================================
   EXHIBITOR GROUPS — IMAGE CARDS
============================================================ */

.ecosystem-section {
    position: relative;

    background: var(--aix-black);

    color: var(--aix-white);

    overflow: hidden;
}


/* subtle infrastructure grid */

.ecosystem-section::before {
    content: "";

    position: absolute;
    inset: 0;

    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: 80px 80px;

    pointer-events: none;
}


/* ============================================================
   HEADER
============================================================ */

.ecosystem-section .container {
    position: relative;
    z-index: 2;
}

.ecosystem-header {
    display: grid;

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

    gap: 80px;

    align-items: end;
}

.ecosystem-header h2 {
    margin-top: 24px;

    font-family: var(--display);

    font-size: clamp(
        55px,
        6.5vw,
        92px
    );

    font-weight: 300;

    line-height: .92;

    letter-spacing: -.055em;
}

.ecosystem-header > p {
    max-width: 500px;

    margin: 0;

    padding-bottom: 5px;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,.55);
}


/* ============================================================
   MARQUEE
============================================================ */
/* ============================================================
   MARQUEE ANIMATION
============================================================ */

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.ecosystem-marquee {
    width: 100%;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, .15);
    margin-top: 60px;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 30px;
    padding-block: 22px;

    animation: marquee 32s linear infinite;
    will-change: transform;
}

.marquee-track span,
.marquee-track i {
    flex: 0 0 auto;
}

/* ============================================================
   CARD GRID
============================================================ */

.ecosystem-grid {

    display: grid;

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

    gap: 14px;

    margin-top: 60px;
}


/* ============================================================
   IMAGE CARD
============================================================ */

.eco-card {

    position: relative;

    min-height: 410px;

    overflow: hidden;

    background: #111;

    cursor: pointer;

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


/* ============================================================
   IMAGE
============================================================ */

.eco-card-image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}

.eco-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1s var(--ease);
}

.eco-card:hover .eco-card-image img {

    transform: scale(1.08);
}


/* ============================================================
   DARK OVERLAY
============================================================ */

.eco-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,7,10,.08) 15%,
            rgba(5,7,10,.28) 42%,
            rgba(5,7,10,.92) 100%
        );

    transition:
        background .5s ease;
}

.eco-card:hover .eco-card-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(5,7,10,.12) 10%,
            rgba(5,7,10,.38) 40%,
            rgba(5,7,10,.96) 100%
        );
}


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

.eco-card-content {

    position: absolute;

    inset:
        auto 0 0;

    padding:
        30px;

    z-index: 2;
}


/* label */

.eco-card-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-family: var(--sans);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .15em;

    color: rgba(255,255,255,.68);
}


/* little gradient marker */

.eco-card-label::before {

    content: "";

    width: 22px;
    height: 2px;

    background:
        var(--aix-gradient);
}


/* title */

.eco-card h3 {

    max-width: 390px;

    margin-top: 18px;

    font-family: var(--display);

    font-size: clamp(
        27px,
        2.4vw,
        38px
    );

    font-weight: 300;

    line-height: .98;

    letter-spacing: -.04em;

    color: white;
}


/* description */

.eco-card p {

    max-width: 390px;

    margin-top: 14px;

    font-family: var(--body);

    font-size: 12px;

    line-height: 1.6;

    color: rgba(255,255,255,.58);
}


/* ============================================================
   ARROW
============================================================ */

.eco-card-arrow {

    position: absolute;

    right: 30px;
    bottom: 30px;

    font-size: 21px;

    background:
        var(--aix-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    transition:
        transform .45s var(--ease);
}

.eco-card:hover .eco-card-arrow {

    transform:
        translate(5px, -5px);
}


/* ============================================================
   BOTTOM GRADIENT LINE
============================================================ */

.eco-card::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background:
        var(--aix-gradient);

    z-index: 5;

    transition:
        width .55s var(--ease);
}

.eco-card:hover::after {

    width: 100%;
}


/* ============================================================
   WIDE GOVERNMENT CARD
============================================================ */

.eco-card-wide {

    grid-column: span 3;

    min-height: 300px;
}

.eco-card-wide .eco-card-content {

    max-width: 850px;
}

.eco-card-wide h3 {

    max-width: 700px;

    font-size: clamp(
        32px,
        4vw,
        58px
    );
}

.eco-card-wide p {

    max-width: 650px;
}


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

@media (max-width: 1000px) {

    .ecosystem-header {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .ecosystem-grid {

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

    .eco-card-wide {

        grid-column: span 2;
    }

}


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

@media (max-width: 650px) {

    .ecosystem-header h2 {

        font-size:
            clamp(
                48px,
                13vw,
                68px
            );
    }

    .ecosystem-marquee {

        margin-top: 55px;
    }

    .ecosystem-grid {

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 45px;
    }

    .eco-card {

        min-height: 380px;
    }

    .eco-card-wide {

        grid-column: span 1;

        min-height: 400px;
    }

    .eco-card-content {

        padding: 25px;
    }

}

/* ============================================================
   AUDIENCE
============================================================ */

.audience {
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 80px;
}

.audience-card {
    padding: 35px;
    background: var(--aix-light);
}

.audience-card.dark {
    color: white;
    background: var(--aix-charcoal);
}

.audience-icon {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--aix-muted);
}

.audience-card.dark .audience-icon {
    color: rgba(255,255,255,.5);
}

.audience-card small {
    display: block;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: .15em;
    color: var(--aix-muted);
}

.audience-card.dark small {
    color: rgba(255,255,255,.5);
}

.audience-card h3 {
    max-width: 340px;
    margin-top: 15px;
    font-family: var(--display);
    font-size: 42px;
    font-weight: 300;
    line-height: .98;
    letter-spacing: -.04em;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 30px;
}

.tag-list span {
    padding: 8px 10px;
    border: 1px solid rgba(0,0,0,.12);
    font-family: var(--sans);
    font-size: 14px;
}

.dark .tag-list span {
    border-color: rgba(255,255,255,.18);
}

.decision-makers {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--aix-border);
}

.decision-title {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .14em;
}

.decision-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.decision-tags span {
    padding: 11px 14px;
    border: 1px solid var(--aix-border);
    font-family: var(--sans);
    font-size: 16px;
}

/* ============================================================
   NUMBERS
============================================================ */

.numbers {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(182,77,104,.22), transparent 30%),
        var(--aix-black);
}

.numbers-intro {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.numbers-intro h2 {
    max-width: 600px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,.17);
    border-left: 1px solid rgba(255,255,255,.17);
}

.stat {
    min-height: 70px;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.17);
    border-bottom: 1px solid rgba(255,255,255,.17);
}

.stat strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(50px, 5vw, 78px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.06em;
    color: var(--aix-yellow);
}

.stat span {
    display: block;
    margin-top: 25px;
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255,255,255,.52);
}

/* ============================================================
   LOCATIONS
============================================================ */

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 80px;
}

.location-card {
    position: relative;
    height: min(58vw, 650px);
    overflow: hidden;
    color: white;
    background: var(--aix-black);
}

.location-card > img {
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}

.location-card:hover > img {
    transform: scale(1.05);
}

.location-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.85), transparent 65%);
}

.location-overlay {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: clamp(25px, 4vw, 50px);
}

.location-meta {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--aix-yellow);
}

.location-overlay h3 {
    margin-top: 12px;
    font-family: var(--display);
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 300;
    line-height: .85;
    letter-spacing: -.055em;
}

.location-overlay p {
    max-width: 420px;
    margin-top: 20px;
    color: rgba(255,255,255,.68);
    line-height: 1.6;
}

.location-overlay a {
    display: inline-block;
    margin-top: 25px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-family: var(--sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
/* ============================================================
   ORGANISERS
============================================================ */

.organisers-section {
    position: relative;

    background: var(--aix-light);

    color: var(--aix-charcoal);
}


.organisers-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    padding-bottom: 40px;

    border-bottom: 1px solid var(--aix-border);
}


.organisers-heading p {

    max-width: 520px;

    margin: 0;

    font-size: 18px;

    line-height: 1.6;

    color: var(--aix-black);
}


/* ============================================================
   LOGOS
============================================================ */

.organisers-logos {

    display: grid;

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

    align-items: center;

    min-height: 300px;

    margin-top: 10px;
}


.organiser-logo {

    min-height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;
}


.organiser-logo img {

    width: auto;

    max-width: 300px;

    height: 90px;

    object-fit: contain;

    margin-top: 25px;
}


.organiser-label {

    font-family: var(--sans);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: .16em;

    text-transform: uppercase;

    color: var(--aix-black);
}


.organiser-divider {

    width: 1px;

    height: 120px;

    background:
        var(--aix-border);
}

@media (max-width: 700px) {

    .organisers-heading {

        display: block;

        padding-bottom: 30px;
    }

    .organisers-heading p {

        margin-top: 25px;
    }

    .organisers-logos {

        grid-template-columns: 1fr;

        margin-top: 0;
    }

    .organiser-divider {

        width: 100%;

        height: 1px;
    }

    .organiser-logo {

        min-height: 180px;

        padding: 30px 20px;
    }

}


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

.final-cta {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--aix-black);

    color: var(--aix-white);
}


/* ============================================================
   TECHNICAL GRID
============================================================ */

.final-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    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: 90px 90px;

    pointer-events: none;
}


/* ============================================================
   GRADIENT GLOW
============================================================ */

.final-cta-glow {

    position: absolute;

    width: 800px;

    height: 800px;

    left: 50%;

    top: 50%;

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

    background:
        radial-gradient(circle,
            rgba(247, 148, 29, .13) 0%,
            rgba(247, 198, 0, .05) 28%,
            transparent 68%);

    pointer-events: none;
}


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

.final-cta .container {

    position: relative;

    z-index: 2;
}


.final-cta-content {

    max-width: 1100px;

    margin-inline: auto;

    text-align: center;
}


/* ============================================================
   EYEBROW
============================================================ */

.final-cta .eyebrow {

    justify-content: center;

    margin-bottom: 40px;
}


/* ============================================================
   HEADING
============================================================ */

.final-cta h2 {

    max-width: 1050px;

    margin-inline: auto;

    font-family: var(--display);

    font-size: clamp(52px,
            7vw,
            100px);

    font-weight: 300;

    line-height: .91;

    letter-spacing: -.06em;

    color: white;
}


.final-cta h2 em {

    font-style: normal;

    background:
        var(--aix-gradient);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.final-cta-content>p {

    max-width: 700px;

    margin:
        40px auto 0;

    font-size: 15px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, .55);
}


/* ============================================================
   ACTIONS
============================================================ */

.final-cta-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 45px;
}


/* ============================================================
   PRIMARY
============================================================ */

.cta-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    min-height: 58px;

    padding:
        0 28px;

    background:
        var(--aix-gradient);

    color: #ffffff;

    font-family: var(--sans);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease;
}


.cta-primary span {

    font-size: 17px;
}


.cta-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 45px rgba(247, 148, 29, .22);
}


/* ============================================================
   SECONDARY
============================================================ */

.cta-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    min-height: 58px;

    padding:
        0 28px;

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

    color: white;

    font-family: var(--sans);

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .12em;

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s var(--ease);
}


.cta-secondary span {

    font-size: 17px;

    background:
        var(--aix-gradient);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.cta-secondary:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(247, 148, 29, .65);

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

@media (max-width:768px) {

    .final-cta-actions {
        flex-direction: column;
    }
    .cta-primary, .cta-secondary {
        min-height: 50px;
        padding: 0 20px;
        font-size: 11px;
    }
}

/* ============================================================
   REGISTER
============================================================ */

.register {
    background: var(--aix-yellow);
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 150px);
}

.register h2 {
    font-size: clamp(65px, 8vw, 125px);
}

.register-copy p {
    max-width: 530px;
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.register-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
    padding: 0 25px;
    border-top: 1px solid rgba(0,0,0,.35);
    font-family: var(--display);
    font-size: clamp(23px, 2.5vw, 36px);
    font-weight: 300;
    letter-spacing: -.035em;
    transition: .35s var(--ease);
}

.big-cta:last-of-type {
    border-bottom: 1px solid rgba(0,0,0,.35);
}

.big-cta:hover {
    padding-inline: 35px;
    background: rgba(255,255,255,.25);
}

.big-cta.primary {
    color: white;
    background: var(--aix-black);
}

.big-cta.primary:hover {
    background: var(--aix-charcoal);
}

.big-cta b {
    font-weight: 300;
}

.contact-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    font-family: var(--sans);
    font-size: 10px;
}

.contact-line + .contact-line {
    padding-top: 8px;
}

.contact-line span {
    color: rgba(0,0,0,.55);
}

.contact-line a {
    text-decoration: underline;
}

/* ============================================================
   FOOTER
============================================================ */
/* ============================================================
   FOOTER
============================================================ */

.site-footer {

    position: relative;

    background: #efeff0;

    color: var(--aix-black);

    overflow: hidden;
}


/* ============================================================
   TOP GRADIENT LINE
============================================================ */

.footer-top-line {

    width: 100%;

    height: 2px;

    background: var(--aix-gradient);
}


/* ============================================================
   MAIN FOOTER
============================================================ */

.footer-main {

    display: grid;

    grid-template-columns:
        minmax(260px, 1.5fr) minmax(150px, .7fr) minmax(170px, .8fr) minmax(240px, 1fr);

    gap: 60px;

    padding-block:
        65px 65px;
}


/* ============================================================
   BRAND
============================================================ */

.footer-brand {

    max-width: 360px;
}


.footer-logo {

    display: inline-block;

    width: 220px;
}


.footer-logo img {

    width: 100%;

    height: auto;

    object-fit: contain;
}


.footer-brand>p {

    max-width: 330px;

    margin-top: 28px;

    font-family: var(--body);

    font-size: 13px;

    line-height: 1.75;

    color:
        var(--aix-black);
}


/* ============================================================
   SOCIAL
============================================================ */

.footer-social {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;
}


.footer-social a {

    width: 38px;
    height: 38px;

    display: flex;

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

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

    color:
        var(--aix-black);

    font-size: 13px;

    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease,
        transform .3s var(--ease);
}


.footer-social a:hover {

    border-color:
        rgba(247, 148, 29, .55);

    color: #ffffff;

    background:
        rgba(247, 148, 29, .07);

    transform:
        translateY(-3px);
}


/* ============================================================
   FOOTER LABEL
============================================================ */

.footer-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-family: var(--sans);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    background-image: var(--aix-gradient);
    
        /* Clip the background to the text and make text transparent */
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
       
}



/* ============================================================
   FOOTER COLUMNS
============================================================ */

.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 13px;

    list-style: none;
}


.footer-column li {

    margin: 0;
}


.footer-column a {

    position: relative;

    display: inline-block;

    font-family: var(--body);

    font-size: 14px;

    line-height: 1.5;

    color:
        var(--aix-black);

    transition:
        color .3s ease,
        transform .3s var(--ease);
}


.footer-column a:hover {

    color: var(--aix-orange);

    transform:
        translateX(5px);
}


/* remove the old yellow bullet */

.footer-column a::before {

    display: none;
}


/* ============================================================
   ORGANISERS
============================================================ */

.footer-organisers {

    min-width: 0;
}


.footer-organiser-logos {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-organiser {

    min-height: 82px;

    display: flex;

    align-items: center;

    padding:
        5px 15px;

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

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

    transition:
        border-color .35s ease,
        background .35s ease;
}


.footer-organiser:hover {

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

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


.footer-organiser img {

    
    width: auto;
    max-width: 210px;

    max-height: 48px;

    object-fit: contain;
}


/* ============================================================
   DIVIDER
============================================================ */

.footer-divider {

    width: 100%;

    height: 0.5px;

    background: var(--aix-black);
}


/* ============================================================
   BOTTOM
============================================================ */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    padding:
        10px 0 10px;
}


.footer-copyright {

    font-family: var(--sans);

    font-size: 11px;

    letter-spacing: .05em;

    color:
     var(--aix-black);
}


.footer-legal {

    display: flex;

    align-items: center;

    gap: 30px;
}


.footer-legal a {

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: .06em;

    color:
        rgba(255, 255, 255, .4);

    transition:
        color .3s ease;
}


.footer-legal a:hover {

    color: #ffffff;
}


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

@media (max-width: 1050px) {

    .footer-main {

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

        gap: 50px;
    }

    .footer-brand {

        grid-column: span 3;
    }

    .footer-organisers {

        grid-column: span 1;
    }

}


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

@media (max-width: 700px) {

    .footer-main {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-block:
            65px 50px;
    }


    .footer-brand {

        grid-column: auto;

        max-width: 100%;
    }


    .footer-brand>p {

        max-width: 400px;
    }


    .footer-organisers {

        grid-column: auto;
    }


    .footer-organiser-logos {

        display: grid;

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

        gap: 10px;
    }


    .footer-organiser {

        min-height: 90px;

        padding: 15px;
    }


    .footer-organiser img {

        max-width: 100%;

        max-height: 42px;
    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .footer-legal {

        gap: 20px;

        flex-wrap: wrap;
    }

}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE — 1200
============================================================ */

@media (max-width: 1200px) {
    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

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

    .stat:last-child {
        grid-column: span 1;
    }

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

    .experience-card.large {
        grid-row: span 1;
        min-height: 150px;
    }
}

/* ============================================================
   RESPONSIVE — 992
============================================================ */

@media (max-width: 992px) {
    :root {
        --pad: 32px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-items: end;
        gap: 45px;
        padding-bottom: 145px;
    }

    .hero-event-card {
        max-width: 500px;
    }

    .statement-grid {
        grid-template-columns: 60px 1fr;
    }

    .statement-copy {
        grid-column: 2;
        padding-top: 0;
        max-width: 600px;
    }

    .section-top,
    .section-heading-row {
        display: block;
    }

    .section-top > p,
    .section-heading-row > p {
        margin-top: 30px;
    }

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

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

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 300px;
    }

    .decision-makers {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        height: 600px;
    }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .back-top {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }
}

/* ============================================================
   RESPONSIVE — 768
============================================================ */

@media (max-width: 768px) {
    :root {
        --pad: 12px;
    }

    .section-pad {
        padding-block: 85px;
    }

    .site-header {
        height: 60px;
    }
   

    .hero {
        min-height: 850px;
    }

    .hero-media img {
        object-position: 58% center;
    }

    .hero-grid {
        background-size: 50px 50px;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 135px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 78px);
        line-height: .9;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-event-card {
        padding: 18px;
    }
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .statement-copy {
        grid-column: auto;
    }

    .section-index {
        padding-top: 0;
    }

    .statement-heading h2,
    .section-heading-row h2,
    .section-top h2,
    .numbers-intro h2,
    .register h2 {
        font-size: clamp(48px, 14vw, 76px);
    }

    .value-grid {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .value-card {
        min-height: 220px;
    }

    .value-card h3 {
        margin-top: 55px;
    }

    .outcome-list {
        margin-top: 55px;
    }

    .outcome-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .outcome-arrow {
        display: none;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

   

    .ecosystem-marquee {
        margin-top: 55px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .eco-item {
        min-height: 220px;
    }

    .numbers-intro {
        display: block;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 55px;
    }

    .stat {
        min-height: 190px;
        padding: 22px;
    }

    .stat strong {
        font-size: clamp(43px, 13vw, 65px);
    }

    .location-grid {
        margin-top: 55px;
    }

    .location-card {
        height: 520px;
    }

    .final-visual {
        min-height: 650px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .back-top {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   RESPONSIVE — 480
============================================================ */

@media (max-width: 480px) {
    .brand-name {
        font-size: 17px;
    }

    .hero-event-card {
        max-width: none;
    }

    .event-card-location {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .event-card-location i {
        width: 45px;
        height: 1px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        min-height: 170px;
    }

    .location-card {
        height: 480px;
    }

    .location-overlay h3 {
        font-size: 60px;
    }

    .big-cta {
        min-height: 82px;
        padding-inline: 15px;
        font-size: 24px;
    }

    .contact-line {
        flex-direction: column;
        gap: 5px;
    }
}
/*@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .marquee-track {
        animation: none;
    }
} */
