/* ====================================================
   UNEX 2027 – Design System
   ==================================================== */

@font-face { font-family: 'AntoniaH1'; src: url('../Fonts/AntoniaH1-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'AntoniaH1'; src: url('../Fonts/AntoniaH1-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Avenir'; src: url('../Fonts/Avenir.ttc') format('truetype'); font-weight: 100 900; font-style: normal; font-display: swap; }

:root {
    --acc: #ef8b00;
    --bg: #0c1219;
    --bg-alt: #0a1018;
    --bg-card: #111a24;
    --bg-card-alt: #16222f;
    --text: #e7eef5;
    --text-soft: #cdd9e6;
    --text-muted: #b6c6d6;
    --text-mute-2: #9fb3c5;
    --text-faint: #8aa0b4;
    --text-ghost: #7e93a6;
    --text-dim: #5e7286;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.16);
    --ink: #10171f;
    --font-display: 'AntoniaH1', Georgia, serif;
    --font-mono: 'Saira Condensed', sans-serif;
    --font-base: 'Avenir', 'Barlow', system-ui, sans-serif;
    --container: 1240px;
    --container-narrow: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

::selection { background: rgba(239, 139, 0, 0.35); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0d141d; }
::-webkit-scrollbar-thumb { background: #2c3e52; }
::-webkit-scrollbar-thumb:hover { background: #3c5266; }

@keyframes unexPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes unexMenuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; color: #fff; }

.unex-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 46px);
}
.unex-container--narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.unex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: filter .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.unex-btn:hover { filter: brightness(1.08); }
.unex-btn--primary { background: var(--acc); color: var(--ink); }
.unex-btn--secondary { background: #B0D7EE; color: var(--ink); }
.unex-btn--ghost { background: transparent; color: var(--text-soft); border-color: var(--line-strong); }
.unex-btn--ghost:hover { border-color: var(--acc); color: #fff; background-color: rgba(239, 139, 0, 0.12); }
.unex-btn__arrow { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 8px solid currentColor; }

/* ---------- Section heading ---------- */
.unex-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--acc);
    font-weight: 600;
}
.unex-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--acc); }
.unex-section-title {
    margin: 0 0 clamp(28px, 4vw, 44px);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 0.98;
    max-width: 18ch;
}

/* ====================================================
   Navigation
   ==================================================== */
.unex-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    padding: 0 clamp(18px, 4vw, 46px);
    background: rgba(10, 16, 23, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.unex-nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.unex-nav__brand img { height: 23px; width: auto; }

.unex-nav__links { display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); }
.unex-nav__link {
    font-size: 13.5px;
    letter-spacing: 0.3px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    color: #bacadb;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}
.unex-nav__link:hover { color: #fff; }
.unex-nav__link.is-active { color: #fff; border-bottom-color: var(--acc); }

.unex-nav__register-wrap { position: relative; }
.unex-nav__register {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border: 1px solid var(--line-strong);
    color: #cdd9e6;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    background: transparent;
    cursor: pointer;
}
.unex-nav__register:hover { border-color: var(--acc); color: #fff; background-color: rgba(239, 139, 0, 0.12); }
.unex-nav__register-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); animation: unexPulse 2.4s ease-in-out infinite; }
.unex-nav__register-caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; }

.unex-nav__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: #0d141d;
    border: 1px solid var(--line);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
    z-index: 60;
    animation: unexMenuIn .18s ease-out;
}
.unex-nav__dropdown.is-open { display: flex; }
.unex-nav__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}
.unex-nav__dropdown-link--primary { background: var(--acc); }
.unex-nav__dropdown-link--secondary { background: #B0D7EE; }
.unex-nav__dropdown-link:hover { filter: brightness(1.06); }
.unex-nav__dropdown-arrow { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 7px solid var(--ink); }

.unex-nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 9px;
    background: transparent;
    border: 1px solid var(--line-strong);
    cursor: pointer;
}
.unex-nav__burger-bar { display: block; height: 2px; width: 100%; background: #cdd9e6; transition: transform .2s ease, opacity .2s ease; }
.unex-nav__burger.is-open .unex-nav__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.unex-nav__burger.is-open .unex-nav__burger-bar:nth-child(2) { opacity: 0; }
.unex-nav__burger.is-open .unex-nav__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.unex-mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 66px;
    z-index: 49;
    background: #0b121b;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
    animation: unexMenuIn .18s ease-out;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
}
.unex-mobile-menu.is-open { display: block; }
.unex-mobile-menu__overlay { display: none; position: fixed; left: 0; right: 0; top: 66px; bottom: 0; background: rgba(6, 10, 16, 0.55); z-index: 48; }
.unex-mobile-menu__overlay.is-open { display: block; }
.unex-mobile-menu__links { display: flex; flex-direction: column; padding: 8px 0; }
.unex-mobile-menu__link {
    display: block;
    padding: 15px clamp(18px, 5vw, 28px);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #bacadb;
}
.unex-mobile-menu__link.is-active { font-weight: 700; color: #fff; box-shadow: inset 3px 0 0 var(--acc); }
.unex-mobile-menu__ctas { display: flex; flex-direction: column; gap: 9px; padding: 14px clamp(18px, 5vw, 28px) 22px; }

/* ====================================================
   Hero (Home)
   ==================================================== */
.unex-hero {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #0a1018;
    background-size: cover;
    background-position: center;
}
.unex-hero__inner {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    text-align: center;
    text-shadow: 0 1px 3px rgba(8, 12, 18, 0.85), 0 1px 1px rgba(8, 12, 18, 0.7);
}
.unex-hero__logos { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 22px; }
.unex-hero__logo-top { width: clamp(140px, 16vw, 200px); height: auto; filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(8, 12, 18, 0.5)); }
.unex-hero__presents { font-weight: 600; font-size: clamp(11px, 1.3vw, 14px); letter-spacing: 7px; text-transform: uppercase; color: var(--acc); }
.unex-hero__wordmark { display: inline-block; width: clamp(300px, 62vw, 660px); height: auto; filter: drop-shadow(0 2px 7px rgba(8, 12, 18, 0.55)); }
.unex-hero__meta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; margin-top: 36px; }
.unex-hero__date {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    row-gap: 8px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: clamp(20px, 3vw, 30px);
    color: #fff;
}
.unex-hero__date-value { color: var(--acc); }
.unex-hero__date-sep { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.2); }
.unex-hero__location { letter-spacing: 1px; }

/* ====================================================
   Page header (subpages)
   ==================================================== */
.unex-pageheader {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 10vw, 104px) clamp(20px, 5vw, 46px) clamp(40px, 6vw, 60px);
    background: linear-gradient(135deg, #0d1620, #16222f 60%, #0b1118);
    background-size: cover;
    background-position: center;
}
.unex-pageheader::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: inherit;
    opacity: 0.001;
}
.unex-pageheader__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(150deg, rgba(196, 220, 239, 0.12), rgba(40, 60, 80, 0));
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}
.unex-pageheader__inner { position: relative; max-width: var(--container); margin: 0 auto; }
.unex-pageheader__title { font-size: clamp(40px, 7vw, 82px); line-height: 0.92; }
.unex-pageheader__intro { font-size: 17px; line-height: 1.7; color: var(--acc); font-weight: 300; max-width: 720px; margin: 18px 0 0; }

/* ====================================================
   Feature list ("why join")
   ==================================================== */
.unex-feature-list { max-width: var(--container); margin: 0 auto; padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 46px) clamp(8px, 2vw, 16px); }
.unex-feature-list__text { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7; color: var(--text-muted); font-weight: 300; margin: clamp(28px, 4vw, 44px) 0 0; }
.unex-feature-list__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 30px) clamp(32px, 5vw, 64px);
}
.unex-feature-list__item { display: flex; gap: 14px; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: var(--text-muted); font-weight: 300; }
.unex-feature-list__item::before { content: ''; flex: 0 0 auto; margin-top: 9px; width: 7px; height: 7px; background: var(--acc); transform: rotate(45deg); }

/* ====================================================
   Standard core content elements (Text, Textmedia, Bullets,
   Table, Uploads, HTML, Divider, Header) – same container
   width/padding as the rest of the UNEX content elements
   ==================================================== */
.frame-type-text,
.frame-type-textmedia,
.frame-type-bullets,
.frame-type-table,
.frame-type-uploads,
.frame-type-html,
.frame-type-div,
.frame-type-header { max-width: var(--container); margin: 0 auto; padding: clamp(32px, 5vw, 54px) clamp(20px, 5vw, 46px); }
.frame-type-text, .frame-type-bullets { color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.frame-type-textmedia .ce-textpic, .frame-type-textmedia .ce-bodytext { color: var(--text-muted); }
.frame-type-textmedia figcaption,
.frame-type-textmedia .ce-textpic figcaption { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; color: var(--text-muted); font-weight: 300; }
.frame-type-textmedia .ce-textpic.ce-intext.ce-nowrap {
    display: grid;
    grid-template-columns: minmax(0, 600px) 1fr;
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
}
.frame-type-textmedia .ce-textpic.ce-intext.ce-nowrap.ce-right { grid-template-columns: 1fr minmax(0, 600px); }
.frame-type-textmedia .ce-textpic.ce-right .ce-gallery { order: 2; }
.frame-type-textmedia .ce-gallery img { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.frame-type-textmedia .ce-textpic.ce-left .ce-bodytext { padding-left: 18px; border-left: 2px solid var(--acc); }
.frame-type-textmedia .ce-textpic.ce-right .ce-bodytext { padding-right: 18px; border-right: 2px solid var(--acc); }

/* ====================================================
   Logo grid (sponsors)
   ==================================================== */
.unex-logo-grid-section { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-alt); }
.unex-logo-grid-section__inner { max-width: var(--container); margin: 0 auto; padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 46px); }
.unex-logo-grid__title { text-align: center; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-ghost); margin-bottom: 34px; }
.unex-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.unex-logo-grid__cell { flex: 0 1 clamp(120px, 30vw, 180px); aspect-ratio: 5 / 2; background: var(--bg-card); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 12px; }
.unex-logo-grid__cell img { max-height: 100%; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: .85; }
.unex-logo-grid__placeholder { font-size: 11px; letter-spacing: 1.5px; color: var(--text-dim); font-family: ui-monospace, monospace; }

/* ====================================================
   Labeled image
   ==================================================== */
.unex-labeled-image { max-width: var(--container); margin: 0 auto; padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 46px); }
.unex-labeled-image__label { font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: #fff; margin-bottom: 16px; }
.unex-labeled-image__frame { aspect-ratio: 16 / 8; background: repeating-linear-gradient(135deg, #16222f, #16222f 12px, #1b2937 12px, #1b2937 24px); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.unex-labeled-image__frame img { width: 100%; height: 100%; object-fit: cover; }
.unex-labeled-image__placeholder { font-size: 14px; letter-spacing: 2px; color: var(--text-dim); font-family: ui-monospace, monospace; }
.unex-labeled-image__link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

/* ====================================================
   Table (core CE) – stand directory
   ==================================================== */
.unex-table-section { background: var(--bg-alt); border-top: 1px solid var(--line-soft); }
.unex-table-section__inner { max-width: var(--container-narrow); margin: 0 auto; padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 46px); }
.frame-type-table table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.frame-type-table thead th {
    text-align: left;
    padding: 13px 18px;
    background: var(--bg-card-alt);
    border-bottom: 1px solid var(--line-strong);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9fb6cb;
    font-weight: 600;
}
.frame-type-table tbody td { padding: 14px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 15px; color: #dfe9f3; }
.frame-type-table tbody td:first-child { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--acc); }

.unex-stand-directory__table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.unex-stand-directory__table thead th {
    text-align: left;
    padding: 13px 18px;
    background: var(--bg-card-alt);
    border-bottom: 1px solid var(--line-strong);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9fb6cb;
    font-weight: 600;
}
.unex-stand-directory__table thead th:first-child { width: 1%; }
.unex-stand-directory__table tbody td { padding: 10px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 15px; color: #dfe9f3; vertical-align: middle; }
.unex-stand-directory__table tbody td.unex-stand-directory__stand { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--acc); white-space: nowrap; }
.unex-stand-directory__exhibitor { display: flex; align-items: center; gap: 10px; }
.unex-stand-directory__logo { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }

/* ====================================================
   Agenda tabs
   ==================================================== */
.unex-agenda { max-width: var(--container-narrow); margin: 0 auto; padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 46px); }
.unex-agenda__tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line-strong); margin-bottom: 8px; flex-wrap: wrap; }
.unex-agenda__tab {
    background: transparent;
    color: var(--text-ghost);
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 18px;
    padding: 12px 18px;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-bottom: -1px;
}
.unex-agenda__tab.is-active { color: #fff; font-weight: 700; border-bottom-color: var(--acc); }
.unex-agenda__meta { font-size: 14px; color: var(--text-faint); margin: 18px 0 6px; }
.unex-agenda__day { display: none; }
.unex-agenda__day.is-active { display: block; }
.unex-agenda__row { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 20px 4px; border-bottom: 1px solid var(--line-soft); }
.unex-agenda__row-time { font-family: var(--font-mono); font-weight: 700; font-size: 19px; color: var(--acc); }
.unex-agenda__row-title { font-size: 17px; font-weight: 600; color: #fff; }
.unex-agenda__row-desc { font-size: 14.5px; line-height: 1.6; color: var(--text-mute-2); margin-top: 4px; font-weight: 300; }
.unex-agenda__row-desc a { color: var(--acc); text-decoration: underline; text-underline-offset: 2px; }
.unex-agenda__row-desc a:hover { color: #fff; }
.unex-agenda__row-images { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.unex-agenda__row-image-btn { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; max-width: 230px; padding: 0; border: none; background: none; cursor: zoom-in; }
.unex-agenda__row-image { display: block; height: 150px; width: auto; max-width: 230px; object-fit: cover; border: 1px solid var(--line); transition: border-color .15s ease, opacity .15s ease; }
.unex-agenda__row-image-btn:hover .unex-agenda__row-image,
.unex-agenda__row-image-btn:focus-visible .unex-agenda__row-image { border-color: var(--acc); opacity: .9; }
.unex-agenda__row-image-caption { font-size: 15px; line-height: 1.4; color: var(--text-mute-2); font-family: var(--font-mono); text-align: left; }

.unex-agenda__lightbox { padding: 0; border: none; background: transparent; max-width: 90vw; max-height: 90vh; }
.unex-agenda__lightbox[open] { display: flex; flex-direction: column; align-items: center; }
.unex-agenda__lightbox::backdrop { background: rgba(8, 12, 18, 0.88); }
.unex-agenda__lightbox-img { display: block; max-width: 90vw; max-height: 80vh; width: auto; height: auto; border: 1px solid var(--line-strong); }
.unex-agenda__lightbox-caption { font-family: var(--font-mono); font-size: 18px; letter-spacing: 0.3px; color: #fff; text-align: center; margin-top: 12px; max-width: 90vw; }
.unex-agenda__lightbox-caption:empty { display: none; }
.unex-agenda__lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(8, 12, 18, 0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.unex-agenda__lightbox-close:hover { border-color: var(--acc); color: var(--acc); }

/* ====================================================
   Speaker / Keynote
   ==================================================== */
.unex-speaker { max-width: var(--container); margin: 0 auto; padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 46px); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 64px); align-items: start; }
.unex-speaker__portrait { position: sticky; top: 90px; aspect-ratio: 3 / 4; background: repeating-linear-gradient(135deg, #16222f, #16222f 11px, #1b2937 11px, #1b2937 22px); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.unex-speaker__portrait img { width: 100%; height: 100%; object-fit: cover; }
.unex-speaker__name { font-size: clamp(32px, 5vw, 54px); margin: 0 0 6px; }
.unex-speaker__role { font-size: 16px; color: var(--acc); font-weight: 600; margin-bottom: 26px; }
.unex-speaker__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.unex-speaker__bio { font-size: 16px; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
.unex-speaker__bio p { margin: 0 0 16px; }
.unex-speaker__synopsis { background: linear-gradient(135deg, #14202c, #16222f); border: 1px solid rgba(239, 139, 0, 0.30); padding: 26px; }
.unex-speaker__synopsis-title { font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 10px; }
.unex-speaker__synopsis-text { font-size: 15.5px; line-height: 1.75; color: var(--text-soft); font-weight: 300; }
.unex-speaker__synopsis-text p { margin: 0; }
.unex-speaker__session-meta { margin-top: 18px; font-size: 14px; color: var(--text-faint); }

/* ====================================================
   Hotel cards
   ==================================================== */
.unex-hotel-cards { max-width: var(--container); margin: 0 auto; padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 46px); }
.unex-hotel-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.unex-hotel-card { display: block; background: var(--bg-card); border: 1px solid var(--line); color: inherit; text-decoration: none; transition: border-color .15s ease; }
.unex-hotel-card[href]:hover { border-color: var(--acc); }
.unex-hotel-card__image { aspect-ratio: 16 / 9; background: repeating-linear-gradient(135deg, #16222f, #16222f 10px, #1b2937 10px, #1b2937 20px); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.unex-hotel-card__image img { width: 100%; height: 100%; object-fit: cover; }
.unex-hotel-card__body { padding: 20px 22px; }
.unex-hotel-card__name { font-family: var(--font-mono); font-weight: 700; font-size: 20px; color: #fff; }
.unex-hotel-card__badge { font-size: 13px; color: var(--acc); font-weight: 600; margin: 4px 0 10px; }
.unex-hotel-card__desc { font-size: 14px; line-height: 1.6; color: var(--text-mute-2); margin: 0; font-weight: 300; }

/* ====================================================
   Info tiles
   ==================================================== */
.unex-info-tiles-section { background: var(--bg-alt); border-top: 1px solid var(--line-soft); }
.unex-info-tiles-section--plain { background: transparent; border-top: none; }
.unex-info-tiles-section__inner { max-width: var(--container); margin: 0 auto; padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 46px); }
.unex-info-tiles-section--plain .unex-info-tiles-section__inner { padding-top: clamp(20px, 3vw, 28px); }
.unex-info-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.unex-info-tiles--cols-2 { grid-template-columns: repeat(2, 1fr); }
.unex-info-tile { background: var(--bg-card); border: 1px solid var(--line); padding: 26px; }
.unex-info-tile--compact { padding: 22px; }
.unex-info-tile__title { font-family: var(--font-mono); font-weight: 700; font-size: 21px; color: #fff; }
.unex-info-tile--compact .unex-info-tile__title { font-size: 18px; }
.unex-info-tile__text { font-size: 14.5px; line-height: 1.7; color: var(--text-mute-2); margin: 10px 0 0; font-weight: 300; }
.unex-info-tile--compact .unex-info-tile__text { font-size: 13.5px; line-height: 1.55; margin: 6px 0 12px; }
.unex-info-tile__links { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 12px; }
.unex-info-tile__link { font-size: 13px; color: var(--acc); font-weight: 600; text-decoration: none; }

/* ====================================================
   Exhibitor Info: registration intro / package list / sponsor tiers / cta bar
   ==================================================== */
.unex-registration-intro-section { max-width: var(--container); margin: 0 auto; padding: clamp(48px, 7vw, 72px) clamp(20px, 5vw, 46px) clamp(20px, 3vw, 28px); }
.unex-registration-intro {
    background: linear-gradient(135deg, #14202c, #16222f);
    border: 1px solid var(--line);
    padding: clamp(28px, 4vw, 44px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
}
.unex-registration-intro__headline { font-family: var(--font-mono); font-weight: 700; font-size: clamp(26px, 3.5vw, 38px); color: #fff; margin-bottom: 12px; }
.unex-registration-intro__text { font-size: 16px; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin: 0; }
.unex-registration-intro__actions { display: flex; flex-direction: column; gap: 12px; }
.unex-registration-intro__contact { font-size: 13px; color: var(--text-faint); text-align: center; }
.unex-registration-intro__contact a { color: var(--text-soft); }

.unex-package-sponsor-section { max-width: var(--container); margin: 0 auto; padding: clamp(20px, 3vw, 28px) clamp(20px, 5vw, 46px) clamp(48px, 7vw, 72px); }
.unex-package-sponsor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.unex-package-intro { background: var(--bg-card); border: 1px solid var(--line); padding: clamp(24px, 3vw, 30px); margin-bottom: 16px; }
.unex-package-intro__title { font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: #fff; margin-bottom: 14px; }
.unex-package-intro__text { font-size: 15px; line-height: 1.7; color: var(--text-soft); font-weight: 300; }
.unex-package-intro__text > *:first-child { margin-top: 0; }
.unex-package-intro__text > *:last-child { margin-bottom: 0; }
.unex-package-intro__text p { margin: 0 0 14px; }
.unex-package-intro__text ul, .unex-package-intro__text ol { margin: 0 0 14px; padding-left: 20px; }
.unex-package-intro__text a { color: var(--acc); }
.unex-package-intro__text table { width: 100%; border-collapse: collapse; margin: 6px 0 14px; overflow-x: auto; display: block; }
.unex-package-intro__text table tbody { display: table; width: 100%; }
.unex-package-intro__text th, .unex-package-intro__text td { padding: 10px 14px; border: 1px solid var(--line-strong); text-align: left; font-size: 14px; color: var(--text-soft); }
.unex-package-intro__text th { background: rgba(239, 139, 0, 0.10); color: #fff; font-weight: 700; font-family: var(--font-mono); }
.unex-package-intro__text tr:nth-child(even) td { background: rgba(255, 255, 255, 0.03); }

.unex-package-list { background: var(--bg-card); border: 1px solid rgba(239, 139, 0, 0.35); padding: 30px; }
.unex-package-list__title { font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: #fff; margin-bottom: 6px; }
.unex-package-list__items { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 11px; }
.unex-package-list__item { display: flex; gap: 11px; font-size: 15px; color: var(--text-soft); }
.unex-package-list__item::before { content: '+'; color: var(--acc); font-weight: 700; }

.unex-sponsor-tiers-wrap { display: flex; flex-direction: column; gap: 16px; }
.unex-sponsor-tiers { background: var(--bg-card); border: 1px solid var(--line); padding: 26px; }
.unex-sponsor-tiers__title { font-family: var(--font-mono); font-weight: 700; font-size: 21px; color: #fff; margin-bottom: 14px; }
.unex-sponsor-tiers__list { display: flex; flex-direction: column; gap: 10px; }
.unex-sponsor-tier { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong); }
.unex-sponsor-tier__name { font-weight: 700; color: var(--acc); }
.unex-sponsor-tier__desc { font-size: 13px; line-height: 1.6; color: var(--text-mute-2); }
.unex-sponsor-tier__desc p { margin: 0 0 6px; }
.unex-sponsor-tier__desc p:last-child { margin-bottom: 0; }

.unex-cta-bar { display: flex; align-items: stretch; flex-wrap: wrap; margin-top: 8px; }
.unex-cta-bar__label { flex: 1; min-width: 260px; background: #fff; color: #16222f; display: flex; align-items: center; gap: 14px; padding: 18px 26px; font-family: var(--font-mono); font-weight: 700; font-size: 21px; letter-spacing: 0.5px; }
.unex-cta-bar__mark { display: inline-flex; align-items: center; gap: 3px; }
.unex-cta-bar__mark span { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
.unex-cta-bar__mark span:first-child { border-left: 10px solid var(--acc); }
.unex-cta-bar__mark span:last-child { border-right: 10px solid var(--acc); }
.unex-cta-bar__btn { background: var(--acc); color: var(--ink); display: flex; align-items: center; gap: 12px; padding: 18px 30px; font-family: var(--font-mono); font-weight: 700; font-size: 21px; letter-spacing: 0.5px; text-decoration: none; }
.unex-cta-bar__btn:hover { filter: brightness(1.06); }

/* ====================================================
   Gallery
   ==================================================== */
.unex-gallery { max-width: 1180px; margin: 0 auto; padding: clamp(40px, 6vw, 68px) clamp(20px, 5vw, 46px) clamp(24px, 4vw, 40px); }
.unex-gallery__stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: repeating-linear-gradient(135deg, #16222f, #16222f 14px, #1b2937 14px, #1b2937 28px); border: 1px solid var(--line); }
.unex-gallery__slide { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
.unex-gallery__slide.is-active { display: flex; }
.unex-gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.unex-gallery__placeholder { font-size: 14px; letter-spacing: 2px; color: var(--text-dim); font-family: ui-monospace, monospace; }
.unex-gallery__counter { position: absolute; top: 16px; right: 18px; font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: 1px; color: var(--text); background: rgba(8, 12, 18, 0.55); padding: 5px 11px; z-index: 2; }
.unex-gallery__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 24px 22px; background: linear-gradient(to top, rgba(8, 12, 18, 0.85), rgba(8, 12, 18, 0)); font-family: var(--font-mono); font-weight: 600; font-size: clamp(18px, 2.4vw, 26px); letter-spacing: 0.4px; color: #fff; z-index: 2; }
.unex-gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(8, 12, 18, 0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; }
.unex-gallery__nav--prev { left: 16px; }
.unex-gallery__nav--next { right: 16px; }
.unex-gallery__nav-arrow { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.unex-gallery__nav--prev .unex-gallery__nav-arrow { border-right: 10px solid #fff; margin-right: 2px; }
.unex-gallery__nav--next .unex-gallery__nav-arrow { border-left: 10px solid #fff; margin-left: 2px; }
.unex-gallery__thumbs { display: flex; gap: 9px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.unex-gallery__thumb {
    flex: 0 0 auto;
    width: 96px;
    height: 58px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(135deg, #16222f, #16222f 8px, #1b2937 8px, #1b2937 16px);
    border: 2px solid var(--line);
    opacity: 0.62;
    overflow: hidden;
    padding: 0;
}
.unex-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.unex-gallery__thumb.is-active { border-color: var(--acc); opacity: 1; }
.unex-gallery__thumb-cap { font-size: 9px; letter-spacing: 1px; color: var(--text-dim); font-family: ui-monospace, monospace; }

/* ====================================================
   Exhibitors
   ==================================================== */
.unex-exhibitors { max-width: 1300px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 46px) clamp(64px, 9vw, 100px); }
.unex-exhibitors__toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.unex-exhibitors__count { font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: #fff; }
.unex-exhibitors__search-wrap { position: relative; }
.unex-exhibitors__search {
    width: 300px;
    max-width: 72vw;
    padding: 12px 16px 12px 40px;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
}
.unex-exhibitors__search::placeholder { color: var(--text-dim); }
.unex-exhibitors__search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: 14px; pointer-events: none; }
.unex-exhibitors__letters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 26px; }
.unex-letter-btn {
    background: transparent;
    color: var(--text-mute-2);
    border: 1px solid var(--line-strong);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.unex-letter-btn.is-active { background: var(--acc); color: var(--ink); border-color: var(--acc); font-weight: 700; }
.unex-exhibitors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.unex-exhibitor-card { background: var(--bg-card); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.unex-exhibitor-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.unex-exhibitor-card__logo { width: 80px; height: 34px; background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.unex-exhibitor-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.unex-exhibitor-card__logo-placeholder { font-size: 9px; letter-spacing: 1.5px; color: var(--text-dim); font-family: ui-monospace, monospace; }
.unex-exhibitor-card__stand { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; color: var(--acc); border: 1px solid rgba(239, 139, 0, 0.35); padding: 3px 9px; }
.unex-exhibitor-card__name { font-family: var(--font-mono); font-weight: 700; font-size: 19px; color: #fff; }
.unex-exhibitor-card__desc { font-size: 13.5px; line-height: 1.6; color: var(--text-mute-2); margin: 8px 0 0; font-weight: 300; }
.unex-exhibitor-card__desc p { margin: 0 0 6px; }
.unex-exhibitor-card__desc p:last-child { margin-bottom: 0; }
.unex-exhibitors__empty { text-align: center; padding: 50px; color: var(--text-ghost); font-size: 15px; display: none; }
.unex-exhibitors__empty.is-visible { display: block; }

/* Exhibitor teaser (home) */
.unex-exhibitor-teaser-section { background: var(--bg-alt); border-top: 1px solid var(--line-soft); }
.unex-exhibitor-teaser-section__inner { max-width: var(--container); margin: 0 auto; padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 46px); }
.unex-exhibitor-teaser__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.unex-exhibitor-teaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* ====================================================
   Footer
   ==================================================== */
.unex-footer { background: #070b11; border-top: 1px solid var(--line); }
.unex-footer__grid { max-width: var(--container); margin: 0 auto; padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 46px); display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.unex-footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.unex-footer__brand img { height: 25px; width: auto; }
.unex-footer__claim { font-size: 14.5px; line-height: 1.7; color: var(--text-faint); font-weight: 300; max-width: 340px; margin: 0; }
.unex-footer__col-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.unex-footer__org-name { font-size: 15px; color: var(--text-soft); font-weight: 600; margin-bottom: 8px; }
.unex-footer__org-address { font-size: 14px; line-height: 1.8; color: var(--text-faint); font-weight: 300; }
.unex-footer__org-link { display: inline-block; margin-top: 10px; font-size: 14px; color: var(--acc); text-decoration: none; font-weight: 600; }
.unex-footer__contact { font-size: 14px; line-height: 1.9; color: var(--text-faint); font-weight: 300; }
.unex-footer__contact a { display: block; text-decoration: none; }
.unex-footer__contact a.is-email { color: var(--text-soft); }
.unex-footer__contact a.is-site { color: var(--text-faint); }
.unex-footer__contact a.is-highlight { color: var(--acc); font-weight: 600; margin-top: 8px; }
.unex-footer__bottom { border-top: 1px solid var(--line-soft); }
.unex-footer__bottom-inner { padding: 20px clamp(20px, 5vw, 46px); max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--text-dim); }

/* ====================================================
   Page title fallback (pages without a header CB, e.g. 404)
   ==================================================== */
.unex-fallback-title { max-width: var(--container); margin: 0 auto; padding: 48px clamp(20px, 5vw, 46px) 0; font-size: clamp(28px, 4vw, 42px); }

/* ====================================================
   Responsive
   ==================================================== */
@media (max-width: 1024px) {
    .unex-hotel-cards__grid,
    .unex-exhibitors__grid,
    .unex-exhibitor-teaser__grid { grid-template-columns: repeat(2, 1fr); }
    .unex-info-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
    .unex-nav__links { display: none; }
    .unex-nav__register-wrap { display: none; }
    .unex-nav__burger { display: inline-flex; }
}
@media (min-width: 881px) {
    .unex-nav__burger { display: none; }
    .unex-mobile-menu, .unex-mobile-menu__overlay { display: none !important; }
}

@media (max-width: 760px) {
    .unex-feature-list__grid { grid-template-columns: 1fr; }
    .frame-type-textmedia .ce-textpic.ce-intext.ce-nowrap {
        grid-template-columns: 1fr !important;
    }
    .frame-type-textmedia .ce-textpic .ce-gallery,
    .frame-type-textmedia .ce-textpic .ce-bodytext { order: initial; }
    .frame-type-textmedia .ce-textpic.ce-right .ce-bodytext { padding-right: 0; border-right: 0; padding-left: 18px; border-left: 2px solid var(--acc); }
    .unex-sponsor-tiers { grid-template-columns: repeat(3, 1fr); }
    .unex-footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .unex-hero__date { flex-wrap: wrap; row-gap: 8px; }
    .unex-hotel-cards__grid,
    .unex-exhibitors__grid,
    .unex-exhibitor-teaser__grid { grid-template-columns: 1fr; }
    .unex-package-sponsor-grid,
    .unex-registration-intro,
    .unex-info-tiles--cols-2 { grid-template-columns: 1fr; }
    .unex-speaker { grid-template-columns: 1fr; }
    .unex-speaker__portrait { position: static; max-width: 320px; }
}

