/* ══════════════════════════════════════════════════════════════════════════
   HOME (front-page) — page-specific section styles only.

   1:1 port of the approved Laravel home.blade.php inline <style> blocks, minus
   the shared chrome that is already global in lu-chrome.css (:root tokens,
   .lu-nav*, .lu-drawer*, .lu-burger, .lu-overlay, button reskin .btn-mod.*,
   body{padding-top}, .page-section spacing, h1-h4 fonts, .lu-plus,
   .lu-section-stat-n / .lu-section-stat-l, the smashi logo fix) and minus the
   CSS for sections that no longer render (2025-numbers strip, the legacy
   #lu-industries grid, testimonials, the global map, #lu-highlights, the
   participants roller). Those are intentionally dropped.
   ══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   HERO — scoped to #lu-hero
═══════════════════════════════════════════ */
#lu-hero {
    position: relative;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    overflow: hidden;
}
#lu-hero .lu-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
#lu-hero .lu-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.38;
}
#lu-hero .lu-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg,
        rgba(28,28,94,0.15) 0%,
        rgba(28,28,94,0.65) 45%,
        rgba(28,28,94,0.96) 82%,
        #1c1c5e 100%);
}
#lu-hero .lu-dot-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 28%, black 68%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 28%, black 68%, transparent 100%);
}
#lu-hero .lu-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}
#lu-hero .lu-live-tag { display: none !important; }
#lu-hero .lu-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00e5c8;
    box-shadow: 0 0 10px #00e5c8;
    flex-shrink: 0;
    animation: luPulse 2s infinite;
}
@keyframes luPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.45); }
}
#lu-hero .lu-tag-text { display: none !important; }
#lu-hero .lu-main-title {
    font-size: clamp(48px, 7.6vw, 108px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 300 !important;
}
#lu-hero .lu-main-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.28);
}
#lu-hero .lu-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin-bottom: 30px;
}
#lu-hero .lu-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
#lu-hero .lu-ctas .btn-mod {
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 14px 32px;
}
#lu-hero .lu-location {
    position: absolute;
    bottom: 40px; right: 40px;
    z-index: 2;
    text-align: right;
}
#lu-hero .lu-location span {
    display: block;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    line-height: 2;
}
#lu-hero .lu-scroll-hint {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
}
#lu-hero .lu-scroll-hint span {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}
#lu-hero .lu-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: luScroll 1.8s infinite;
}
@keyframes luScroll {
    0%   { transform:scaleY(0); transform-origin:top; }
    50%  { transform:scaleY(1); transform-origin:top; }
    51%  { transform:scaleY(1); transform-origin:bottom; }
    100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ═══════════════════════════════════════════
   TRUST STRIP — scoped to #lu-trust
═══════════════════════════════════════════ */
#lu-trust {
    background: rgba(69,76,154,0.55);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 36px 0;
}
#lu-trust .lu-trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
#lu-trust .lu-trust-item {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.14);
    text-align: center;
}
#lu-trust .lu-trust-item:last-child { border-right: none; }
#lu-trust .lu-trust-num {
    display: block;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: clamp(32px,4vw,54px);
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
#lu-trust .lu-trust-num sup { color: #00e5c8; font-size: 0.55em; vertical-align: super; }
#lu-trust .lu-trust-label {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
@media(max-width:991px) {
    #lu-trust .lu-trust-grid { grid-template-columns: repeat(3,1fr); }
    #lu-trust .lu-trust-item:nth-child(3) { border-right: none; }
    #lu-trust .lu-trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 32px; padding-top: 32px; }
}
@media(max-width:575px) {
    #lu-trust .lu-trust-grid { grid-template-columns: repeat(2,1fr); }
    #lu-trust .lu-trust-item:nth-child(2) { border-right: none; }
    #lu-trust .lu-trust-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.14); border-right: 1px solid rgba(255,255,255,0.14); margin-top: 28px; padding-top: 28px; }
    #lu-trust .lu-trust-item:nth-child(4) { border-right: none; margin-top: 0; padding-top: 0; }
}

/* ═══════════════════════════════════════════
   KPI GRID — scoped to #lu-trust
   (.lu-plus and .lu-section-stat-n/l are shared chrome — not redefined here)
═══════════════════════════════════════════ */
.lu-kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}
.lu-kpi-item {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.14);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lu-kpi-item:last-child { border-right: none; }
.lu-kpi-icon {
    width: 28px; height: 28px;
    color: #00e5c8;
    margin-bottom: 12px;
    opacity: 0.7;
}
.lu-kpi-icon svg { width: 100%; height: 100%; }
.lu-kpi-val {
    display: block;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.lu-kpi-val sup { color: #00e5c8; font-size: 0.52em; vertical-align: super; }
.lu-kpi-lbl {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 8.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
@media(max-width:991px) {
    .lu-kpi-grid { grid-template-columns: repeat(3,1fr); row-gap: 32px; }
    .lu-kpi-item:nth-child(3) { border-right: none; }
}
@media(max-width:575px) {
    .lu-kpi-grid { grid-template-columns: repeat(2,1fr); row-gap: 28px; }
    .lu-kpi-item:nth-child(2) { border-right: none; }
}

/* ═══════════════════════════════════════════
   ABOUT — scoped to #about
═══════════════════════════════════════════ */
#about .lu-about-headline {
    font-size: clamp(28px,3.8vw,50px) !important;
    line-height: 1.06 !important;
    margin-bottom: 24px;
}
#about .lu-about-headline em {
    font-style: normal;
    color: #00e5c8;
}
#about .lu-section-label { display: none !important; }
#about .lu-about-img {
    position: relative;
    clip-path: polygon(0 0,100% 0,100% 90%,90% 100%,0 100%);
    overflow: hidden;
}
#about .lu-about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
#about .lu-about-img:hover img { transform: scale(1.04); }
#about .lu-about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(28,28,94,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
}
#about .lu-badge-num {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    line-height: 1;
}
#about .lu-badge-lbl {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00e5c8;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   FINAL CTA — scoped to #lu-final-cta
═══════════════════════════════════════════ */
#lu-final-cta {
    display: grid;
    grid-template-columns: 1fr; /* CLIENT: single half now (was 1fr 1fr) */
    position: relative;
}
#lu-final-cta .lu-cta-half {
    padding: 112px 60px;
    display: flex; flex-direction:column; justify-content:center; align-items:center;
    text-align:center;
    min-height: clamp(400px, 46vh, 560px);
    position:relative; overflow:hidden;
}
#lu-final-cta .lu-cta-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; width:100%; }
/* background-color stays as the fallback: if the photo is missing from the server
   the section still renders as the original solid purple, not a white gap. */
#lu-final-cta .lu-cta-exhibit { background-color: rgba(28,28,94,0.95); }
#lu-final-cta .lu-cta-register { background-color: rgba(46,46,138,0.95); }
#lu-final-cta .lu-cta-photo {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (min-width:992px) and (hover:hover) {
    #lu-final-cta .lu-cta-photo { background-attachment: scroll, fixed; }
}
#lu-final-cta .lu-cta-over { display:none !important; }
#lu-final-cta .lu-cta-head {
    font-family:'LEMONMILK','Futura',sans-serif;
    font-weight:700;
    font-size:clamp(28px,3.8vw,52px);
    text-transform:uppercase; letter-spacing:0.01em;
    line-height:1.06; color:#fff; margin:0 auto 20px;
    max-width:14em;
}
#lu-final-cta .lu-cta-body {
    font-size:15px;
    color:rgba(255,255,255,0.82);
    line-height:1.72; margin:0 auto 36px;
    max-width:620px;
}
#lu-final-cta .lu-cta-rule {
    width:44px; height:2px; background:var(--cyan,#7ED6D1);
    margin:0 auto 22px;
}
#lu-final-cta .btn-mod { border-radius:50px; font-size:11px; letter-spacing:0.14em; padding:14px 32px; }
@media(max-width:767px) {
    #lu-final-cta { grid-template-columns:1fr; }
    #lu-final-cta .lu-cta-half { padding:72px 24px; min-height:0; }
}

/* ═══════════════════════════════════════════
   SECTION LABEL UTILITY
═══════════════════════════════════════════ */
.lu-label {
    display: none !important;
}
.lu-section-divider { display: none !important; }

/* ── Hero mobile fixes ── */
@media(max-width:767px) {
    #lu-hero { padding-top: 20px; padding-bottom: 40px; align-items: flex-end; }
    #lu-hero .lu-location { display: none; }
}
@media (max-width: 575px) {
    #lu-hero .lu-main-title {
        font-size: clamp(42px, 11.5vw, 112px) !important;
    }
}
@media (max-width:575px) {
    #lu-hero { padding-top: 0 !important; }
}

/* ═══════════════════════════════════════════
   PARTNERS MARQUEE — scoped to #lu-partners-carousel
═══════════════════════════════════════════ */
@keyframes partnersMarq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.partners-marquee-track:hover { animation-play-state: paused; }
@media (max-width:575px){ .partners-marquee-track img{ height:34px !important; max-width:120px !important; } }

/* ═══════════════════════════════════════════
   INDUSTRIES — scoped to #lu-industries-section
═══════════════════════════════════════════ */
#lu-industries-section { position: relative; overflow: hidden; }
#lu-industries-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,229,200,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.lu-ind-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.lu-ind-card {
    position: relative;
    background: rgba(18,18,58,0.8);
    border: 1px solid rgba(0,229,200,0.1);
    padding: 40px 26px 32px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
}
.lu-ind-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,200,0.08) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
}
.lu-ind-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5c8, transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.lu-ind-card:hover {
    background: rgba(26,26,82,0.95);
    border-color: rgba(0,229,200,0.35);
    transform: translateY(-4px);
}
.lu-ind-card:hover::before { opacity: 1; }
.lu-ind-card:hover::after { transform: scaleX(1); }

/* large background index number */
.lu-ind-card-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0,229,200,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.35s;
    letter-spacing: -.02em;
}
.lu-ind-card:hover .lu-ind-card-num { color: rgba(0,229,200,0.18); }

.lu-ind-icon-wrap {
    width: 56px; height: 56px;
    border: 1px solid rgba(0,229,200,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.lu-ind-card:hover .lu-ind-icon-wrap {
    border-color: rgba(0,229,200,0.7);
    background: rgba(0,229,200,0.08);
    transform: scale(1.05);
}
.lu-ind-icon-wrap svg {
    width: 28px; height: 28px;
    color: #00e5c8;
}

.lu-ind-card-name {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
    position: relative; z-index: 1;
}

.lu-ind-card-subs {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    position: relative; z-index: 1;
    flex: 1;
}
.lu-ind-card-subs li {
    font-family: 'Futura','Trebuchet MS',sans-serif;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    padding-left: 14px;
    position: relative;
    line-height: 1.55;
    transition: color 0.25s;
}
.lu-ind-card-subs li::before {
    content: '';
    position: absolute; left: 0; top: 7px;
    width: 5px; height: 5px; border-radius: 50%; /* CLIENT: dash -> bullet dot */
    background: #00e5c8; opacity: 0.65;
    transition: opacity 0.25s, transform 0.25s;
}
.lu-ind-card:hover .lu-ind-card-subs li { color: rgba(255,255,255,0.88); }
.lu-ind-card:hover .lu-ind-card-subs li::before { opacity: 1; transform: scale(1.25); }

@media(max-width:1199px) { .lu-ind-tiles { grid-template-columns: repeat(3,1fr); } }
@media(max-width:767px)  { .lu-ind-tiles { grid-template-columns: repeat(2,1fr); } .lu-ind-card { padding: 32px 22px 26px; } }
@media(max-width:480px)  { .lu-ind-tiles { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   SPEAKERS — Glassmorphic redesign — scoped to #spk6
══════════════════════════════════════════ */
#spk6 {
    background: #07071c;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
/* ambient grid */
#spk6::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,229,200,0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
/* radial glow */
#spk6::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at top, rgba(90,90,207,0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

#spk6 > .container {
    position: relative;
    z-index: 1;
}

/* Header */
.spk6-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
    position: relative; z-index: 1;
}
.spk6-eyebrow {
    display: block;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(127,214,209,.7);
    margin-bottom: 10px;
}
.spk6-eyebrow::before, .spk6-eyebrow::after { content: none; }
.spk6-title {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 300;
    font-size: clamp(26px, 3.8vw, 52px);
    line-height: 1.04;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.spk6-title em { font-style: normal; color: var(--cyan); }
/* Give the title/subtitle breathing room before the carousel starts. */
.spk6-header-row {
    margin-bottom: 58px !important;
}
.spk6-subtitle {
    font-family:'Futura','Trebuchet MS',sans-serif;
    font-size:13px;
    color:rgba(230,232,240,.45);
    margin-top:12px;
    margin-bottom:0;
}
.spk6-subtitle.spk6-subtitle-lg { /* CLIENT: make 2025 lineup bigger */
    font-size:19px;
    color:rgba(230,232,240,.78);
    font-weight:500;
}
.spk6-stat-n {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 40px);
    color: #fff;
    letter-spacing: -.02em;
    text-align: right;
    line-height: 1;
}
.spk6-stat-n sup { color: #7ED6D1; font-size: .46em; vertical-align: super; }
.spk6-stat-l {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    margin-top: 4px;
    text-align: right;
}

/* Swiper wrapper */
#spk6-sw {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Force every Swiper cell/card to keep the exact same box.
   Without min-width:0, long speaker titles/org names can force a flex slide wider
   than the width calculated by Swiper, which is what made some cards look fat. */
#spk6-sw .swiper-wrapper {
    align-items: stretch;
}
#spk6-sw .swiper-slide {
    height: auto !important;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
}
#spk6-sw .swiper-slide > .spk6-card {
    width: 100%;
    min-width: 0;
}

/* ── THE CARD ── */
.spk6-card {
    background: rgba(16,16,58,0.55);
    border: 1px solid rgba(127,214,209,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all .35s cubic-bezier(.22,1,.36,1);
    height: 100%;
    border-radius: 0;
}
/* cyan top shimmer */
.spk6-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #7ED6D1, transparent);
    opacity: 0;
    transition: opacity .3s;
    z-index: 3;
}
/* subtle inner glow on hover */
.spk6-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,229,200,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    z-index: 1;
}
.spk6-card:hover {
    border-color: rgba(127,214,209,0.45);
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(0,0,0,0.55),
        0 0 0 1px rgba(0,229,200,0.08),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.spk6-card:hover::before { opacity: 1; }
.spk6-card:hover::after  { opacity: 1; }

/* ── IMAGE ZONE — conference-page behaviour ported to home ── */
.spk6-img-box {
    width: 100%;
    height: 300px; /* CLIENT: taller so headshots aren't cropped/cut */
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    /* Match conference: the source photos are mostly on light/white plates. */
    background: #0d0d2e;
}
.spk6-img-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(0,0,0,0.07);
    z-index: 2;
    pointer-events: none;
}
.spk6-img {
    /* Clean cover-crop: fills plate (no gutters), preserves aspect (no stretch);
       object-position biased to top so faces stay framed. !important overrides
       any inline sizing left by the legacy align script. */
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    object-fit: cover !important;
    object-position: center top !important; /* CLIENT: keep faces/heads in frame */
    filter: contrast(1.02);
    opacity: 1 !important;
    transition: filter .35s;
    z-index: 1;
}
.spk6-img.is-aligned { opacity: 1; }
.spk6-card:hover .spk6-img {
    /* Keep the hover subtle; do not move the bitmap or it can expose crop edges. */
    filter: contrast(1.05);
}

/* ── BODY ── */
.spk6-body {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative; z-index: 2;
    background: rgba(10,10,40,0.35);
}
/* horizontal cyan line accent left of name */
.spk6-name-wrap {
    border-left: 2px solid rgba(0,229,200,0.5);
    padding-left: 10px;
    margin-bottom: 8px;
}
.spk6-fn {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 300;
    font-size: 9.5px;
    color: rgba(255,255,255,.38);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .1em;
    line-height: 1.3;
}
.spk6-ln {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.2;
    min-width: 0;
    overflow-wrap: anywhere;
}
.spk6-role {
    font-family: 'Futura','Trebuchet MS',sans-serif;
    font-size: 12.5px;
    color: rgba(230,232,240,.7);
    line-height: 1.35;
    margin-bottom: 4px;
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}
.spk6-org {
    border-top: 1px solid rgba(127,214,209,.08);
    padding-top: 6px;
    min-height: auto;
    display: flex;
    align-items: center;
}
.spk6-org img {
    max-height: 46px; width: auto; max-width: 160px;
    object-fit: contain;
    /* No filter — show logos in original colours */
    filter: none;
    opacity: .9;
    display: block;
    transition: opacity .3s;
}
.spk6-card:hover .spk6-org img { opacity: 1; }
.spk6-org-txt {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(127,214,209,.95);
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
}

/* ── Swiper wrapper/arrows — arrows live OUTSIDE the card viewport ── */
.spk6-shell {
    position: relative;
    width: 100%;
}
.spk6-viewport {
    position: relative;
    margin: 0 54px;
    overflow: hidden;
    z-index: 1;
}
.spk6-shell .swiper-button-prev,
.spk6-shell .swiper-button-next {
    top: 115px;
    transform: translateY(-50%);
    width: 40px;
    height: 56px;
    background: rgba(16,16,58,0.9);
    border: 1px solid rgba(127,214,209,.25);
    border-radius: 0;
    backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s, opacity .2s;
    z-index: 5;
    margin-top: 0;
}
.spk6-shell .swiper-button-prev { left: 0; }
.spk6-shell .swiper-button-next { right: 0; }
.spk6-shell .swiper-button-prev:hover,
.spk6-shell .swiper-button-next:hover {
    background: rgba(0,229,200,0.12);
    border-color: #7ED6D1;
}
.spk6-shell .swiper-button-prev::after,
.spk6-shell .swiper-button-next::after { font-size: 13px; font-weight: 700; color: #7ED6D1; }
.spk6-shell .swiper-button-disabled { opacity: .35; pointer-events: none; }
@media (max-width: 575.98px) {
    .spk6-shell {
        width: 100%;
        overflow: hidden;
    }

    .spk6-viewport {
        margin: 0 !important;
        padding: 0 54px !important;
        overflow: hidden !important;
        width: 100%;
        box-sizing: border-box;
    }

    #spk6-sw {
        width: 100% !important;
        overflow: hidden !important;
    }

    #spk6-sw .swiper-wrapper {
        align-items: stretch;
    }

    #spk6-sw .swiper-slide {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    #spk6-sw .swiper-slide > .spk6-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .spk6-shell .swiper-button-prev {
        left: 6px;
    }

    .spk6-shell .swiper-button-next {
        right: 6px;
    }
}

/* Match conference stat sizing inside this header */
#spk6 .lu-section-stat-n {
    font-size: clamp(42px,5vw,68px);
    letter-spacing: -.02em;
    line-height: 1;
}
#spk6 .lu-plus {
    color: #7ED6D1;
    font-size: .55em;
    vertical-align: super;
    margin-left: 0;
}
#spk6 .lu-section-stat-l {
    font-size: 9px;
    letter-spacing: .18em;
    color: rgba(255,255,255,.5);
    margin-top: 14px;
}

/* CTAs */
.spk6-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; position: relative; z-index: 1; justify-content: center; }
@media (max-width:991px) {
    #spk6 { padding: 56px 0; }
    .spk6-header-row { margin-bottom: 44px !important; }
}
@media (max-width:767px) {
    #spk6 { padding: 56px 0; }
    .spk6-header-row { margin-bottom: 34px !important; }
}

/* ── PARTNERS & SPONSORS — ADIS-style (clean, no boxes) — scoped to #lu-sponsors ── */
#lu-sponsors {
    position: relative;
    padding: 90px 0 100px;
    background: #07071c;
    overflow: hidden;
}
#lu-sp-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0.35;
    pointer-events: none;
}
.lu-sp-wrap {
    position: relative;
    z-index: 1;
    max-width: 1140px;
}
.lu-sp-hd {
    text-align: center;
    margin-bottom: 64px;
}
.lu-sp-eyebrow {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(127,214,209,0.35);
    background: rgba(127,214,209,0.06);
}
.lu-sp-title {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 3.4vw, 48px);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.lu-sp-title em {
    font-style: normal;
    color: var(--cyan);
}
.lu-sp-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* Tier row: horizontal flex containing 1+ groups */
.lu-sp-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    padding: 36px 0;
}
/* Tier group: label above, logos below */
.lu-sp-group {
    flex: 1 1 auto;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lu-sp-lbl {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(230,232,240,0.55);
    margin-bottom: 28px;
    white-space: nowrap;
}
.lu-sp-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
    width: 100%;
}
.lu-sp-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lu-sp-img {
    display: block;
    object-fit: contain;
    max-width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.78;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.lu-sp-logo-wrap:hover .lu-sp-img {
    opacity: 1;
    transform: scale(1.04);
}
/* Tier-based logo sizing */
.lu-sp-tier-lsz-xl .lu-sp-img { height: 88px; max-width: 240px; }
.lu-sp-tier-lsz-lg .lu-sp-img { height: 64px; max-width: 190px; }
.lu-sp-tier-lsz-md .lu-sp-img { height: 50px; max-width: 160px; }
.lu-sp-tier-lsz-sm .lu-sp-img { height: 38px; max-width: 130px; }
/* Hairline divider between rows */
.lu-sp-hr {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(127,214,209,0.18) 50%,
        transparent 100%);
    margin: 0;
}
/* Responsive */
@media (max-width: 991px) {
    #lu-sponsors { padding: 64px 0 72px; }
    .lu-sp-hd { margin-bottom: 48px; }
    .lu-sp-row { gap: 40px; padding: 28px 0; }
    .lu-sp-tier-lsz-xl .lu-sp-img { height: 64px; max-width: 180px; }
    .lu-sp-tier-lsz-lg .lu-sp-img { height: 48px; max-width: 150px; }
    .lu-sp-tier-lsz-md .lu-sp-img { height: 40px; max-width: 130px; }
    .lu-sp-tier-lsz-sm .lu-sp-img { height: 32px; max-width: 110px; }
    .lu-sp-logos { gap: 24px 32px; }
}
@media (max-width: 575px) {
    .lu-sp-row { gap: 32px; padding: 22px 0; }
    .lu-sp-group { min-width: 140px; }
    .lu-sp-lbl { font-size: 9px; margin-bottom: 18px; }
    .lu-sp-tier-lsz-xl .lu-sp-img { height: 52px; max-width: 150px; }
    .lu-sp-tier-lsz-lg .lu-sp-img { height: 40px; max-width: 130px; }
    .lu-sp-tier-lsz-md .lu-sp-img { height: 34px; max-width: 110px; }
    .lu-sp-tier-lsz-sm .lu-sp-img { height: 28px; max-width: 92px; }
    .lu-sp-logos { gap: 18px 24px; }
}

/* ── GALLERY — scoped to #lu-gallery ── */
#lu-gallery {
    background: #0e0e2e;
    position: relative;
    overflow: hidden;
}
#lu-gallery::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,229,200,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,200,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Gallery: 2-col left/right. Left=wide hero spans rows 1+2. Right=2 equal cards. */
/* Unified single grid — every cell filled, no leftover space */
.lu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    height: 620px;
}
.lu-gallery-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: #1a1a4a;
    cursor: pointer;
}
/* Card 1 — WHOOP hero: 2 cols × 2 rows (top-left big block) */
.lu-gallery-card:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
/* Card 2 — top row, col 3 */
.lu-gallery-card:nth-child(2) { grid-column: 3; grid-row: 1; }
/* Card 3 — top row, col 4 */
.lu-gallery-card:nth-child(3) { grid-column: 4; grid-row: 1; }
/* Card 4 — bottom row, col 3 */
.lu-gallery-card:nth-child(4) { grid-column: 3; grid-row: 2; }
/* Card 5 — bottom row, col 4 */
.lu-gallery-card:nth-child(5) { grid-column: 4; grid-row: 2; }

.lu-gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
                filter 0.55s ease;
    filter: brightness(0.78) saturate(0.9);
}
.lu-gallery-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.55) saturate(1.1);
}

/* Overlay — always present, intensifies on hover */
.lu-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,40,0.92) 0%,
        rgba(10,10,40,0.35) 45%,
        transparent 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}
.lu-gallery-card:hover .lu-gallery-overlay {
    background: linear-gradient(
        to top,
        rgba(10,10,40,0.97) 0%,
        rgba(10,10,40,0.6) 50%,
        rgba(10,10,40,0.15) 100%
    );
}

/* Cyan top border accent — slides in on hover */
.lu-gallery-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5c8, transparent);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.lu-gallery-card:hover::before { transform: scaleX(1); }

.lu-gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 28px 24px;
    z-index: 2;
    transform: translateY(6px);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.lu-gallery-card:hover .lu-gallery-caption {
    transform: translateY(0);
}

.lu-gallery-tag {
    display: inline-block;
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #00e5c8;
    border: 1px solid rgba(0,229,200,0.35);
    padding: 3px 8px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s 0.05s ease, transform 0.35s 0.05s ease;
}
.lu-gallery-card:hover .lu-gallery-tag {
    opacity: 1;
    transform: translateY(0);
}

.lu-gallery-title {
    font-family: 'LEMONMILK','Futura',sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 20px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.lu-gallery-card:nth-child(1) .lu-gallery-title {
    font-size: clamp(20px, 2.2vw, 30px);
}

.lu-gallery-desc {
    font-family: 'Futura','Trebuchet MS',sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    max-width: 380px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s 0.08s ease, transform 0.35s 0.08s ease;
}
.lu-gallery-card:hover .lu-gallery-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Corner icon — always visible */
.lu-gallery-icon {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 2;
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,40,0.5);
    backdrop-filter: blur(4px);
    opacity: 0.7;
    transition: opacity 0.3s, border-color 0.3s;
}
.lu-gallery-card:hover .lu-gallery-icon {
    opacity: 1;
    border-color: rgba(0,229,200,0.5);
}
.lu-gallery-icon svg {
    width: 14px; height: 14px;
    color: #00e5c8;
}

@media (max-width: 1199px) {
    .lu-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr 1fr;
        height: auto;
    }
    .lu-gallery-card:nth-child(1) { grid-column: 1 / span 3; grid-row: 1; aspect-ratio: 16/7; }
    .lu-gallery-card:nth-child(2) { grid-column: 1; grid-row: 2; aspect-ratio: 4/3; }
    .lu-gallery-card:nth-child(3) { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }
    .lu-gallery-card:nth-child(4) { grid-column: 3; grid-row: 2; aspect-ratio: 4/3; }
    .lu-gallery-card:nth-child(5) { grid-column: 1 / span 3; grid-row: 3; aspect-ratio: 16/6; }
}
@media (max-width: 767px) {
    .lu-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .lu-gallery-card:nth-child(1) { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 16/9; }
    .lu-gallery-card:nth-child(2) { grid-column: 1; grid-row: auto; aspect-ratio: 1/1; }
    .lu-gallery-card:nth-child(3) { grid-column: 2; grid-row: auto; aspect-ratio: 1/1; }
    .lu-gallery-card:nth-child(4) { grid-column: 1; grid-row: auto; aspect-ratio: 1/1; }
    .lu-gallery-card:nth-child(5) { grid-column: 2; grid-row: auto; aspect-ratio: 1/1; }
}
@media (max-width: 575px) {
    .lu-gallery-grid { grid-template-columns: 1fr; gap: 2px; }
    .lu-gallery-card { grid-column: 1 !important; aspect-ratio: 4/3 !important; }
    .lu-gallery-desc { opacity: 1; transform: none; }
    .lu-gallery-tag { opacity: 1; transform: none; }
}
