/* ============================================================
   TRGS 2026 — Complete Responsive Stylesheet
   ============================================================ */

/* ── Global Caution Modal ─────────────────────────────────── */
.caution-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.caution-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.caution-modal-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.caution-modal-overlay.open .caution-modal-card {
    transform: translateY(0) scale(1);
}

.caution-icon {
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 20px;
    animation: cautionShake 0.5s ease 0.1s both;
}

@keyframes cautionShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    80% {
        transform: rotate(3deg);
    }
}

.caution-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.caution-msg {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 32px;
}

.caution-close {
    min-width: 140px;
}

@media (max-width: 480px) {
    .caution-modal-card {
        padding: 36px 24px 28px;
        border-radius: 18px;
    }
}

/* ── Floating Sidebar Share Button ───────────────────────────── */
.float-share-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #1d4ed8, #059669);
    color: #fff;
    border-radius: 14px 0 0 14px;
    padding: 16px 12px;
    cursor: pointer;
    box-shadow: -4px 0 24px rgba(29, 78, 216, 0.35);
    transition: padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

.float-share-sidebar:hover {
    padding: 16px 18px;
    box-shadow: -6px 0 32px rgba(29, 78, 216, 0.5);
    background: linear-gradient(135deg, #1e40af, #047857);
}

.float-share-sidebar:active {
    transform: translateY(-50%) scale(0.96);
}

.float-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.float-share-sidebar:hover .float-share-icon {
    background: rgba(255,255,255,0.28);
}

.float-share-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    line-height: 1;
    margin-top: 4px;
}

/* Pulse ring on initial load to draw attention */
.float-share-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px 0 0 14px;
    box-shadow: 0 0 0 0 rgba(29,78,216,0.55);
    animation: floatSharePulse 2.4s ease-out 1.2s 3;
    pointer-events: none;
}

@keyframes floatSharePulse {
    0%   { box-shadow: 0 0 0 0 rgba(29,78,216,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(29,78,216,0); }
    100% { box-shadow: 0 0 0 0 rgba(29,78,216,0); }
}

@media (max-width: 600px) {
    .float-share-sidebar {
        padding: 12px 9px;
        border-radius: 12px 0 0 12px;
    }

    .float-share-icon {
        width: 34px;
        height: 34px;
    }

    .float-share-icon svg {
        width: 17px;
        height: 17px;
    }

    .float-share-label {
        font-size: 0.63rem;
    }
}

/* ── Share Modal ──────────────────────────────────────────── */
.share-modal-overlay {
    z-index: 100000; /* above caution modal */
}

.share-modal-card {
    max-width: 520px;
    padding: 44px 36px 36px;
}

.share-modal-emoji {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 16px;
    animation: cautionShake 0.5s ease 0.1s both;
}

.share-btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0 20px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 8px;
    border: none;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    color: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.share-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.share-btn:active {
    transform: scale(0.96);
}

.share-btn--whatsapp  { background: #25D366; }
.share-btn--twitter   { background: #000000; }
.share-btn--facebook  { background: #1877F2; }
.share-btn--telegram  { background: #229ED9; }
.share-btn--linkedin  { background: #0A66C2; }
.share-btn--copy      { background: #6366f1; color: #fff; }

.share-btn.shared {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

.share-status {
    font-size: 0.88rem;
    font-weight: 600;
    color: #059669;
    min-height: 22px;
    margin-bottom: 8px;
    text-align: center;
}

.share-continue {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-continue:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 520px) {
    .share-btn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .share-modal-card {
        padding: 32px 20px 28px;
    }
}

/* 1. CSS Variables — Professional Blue & Green Palette */
:root {
    /* Primary Colors */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    /* Accent Colors */
    --accent: #059669;
    --accent-light: #10b981;
    --accent-dark: #047857;
    --accent-50: #f0fdf4;
    --accent-100: #dcfce7;
    --accent-200: #bbf7d0;
    --accent-300: #86efac;
    --accent-400: #4ade80;
    --accent-500: #22c55e;
    --accent-600: #16a34a;
    --accent-700: #15803d;
    --accent-800: #166534;
    --accent-900: #145231;

    --black: #020617;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    --grad-primary-reverse: linear-gradient(135deg, #059669 0%, #1e40af 100%);
    --grad-accent: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --grad-subtle: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);

    /* Shadows */
    --shadow-none: none;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 30px 80px -15px rgba(30, 64, 175, 0.10);
    --shadow-card: 0 4px 20px -2px rgba(30, 64, 175, 0.08);

    /* Radii */
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    /* Timing */
    --smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease: ease-in-out;
}

/* 2. Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Prevent any element from causing horizontal scroll */
html {
    overflow-x: hidden;

    font-size: 16px;
}

/* Three.js Background Canvas — fixed behind all content */
#three-bg {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1;
    pointer-events: none;
    display: block;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden !important;
}

img,
video {
    max-width: 100%;
    display: block;
}

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

/* 3. Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 5%;
}

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

.bg-light {
    background: var(--gray-50);
}

.text-center {
    text-align: center;
}

/* 3b. Partner Logo Marquee Bar */
.partner-marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1001;
    background: var(--gray-600);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.partner-label {
    flex-shrink: 0;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    padding: 0 18px 0 20px;
    white-space: nowrap;
    border-right: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    align-items: center;
}

.partner-marquee-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Fade edges */
.partner-marquee-track-wrapper::before,
.partner-marquee-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.partner-marquee-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray-600) 0%, transparent 100%);
}

.partner-marquee-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--gray-600) 0%, transparent 100%);
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 100%;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.partner-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 48px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 0 8px;
}

.partner-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    max-height: 48px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.35s var(--smooth);
    transform-origin: center;
    flex-shrink: 0;
    cursor: pointer;
}

.partner-logo-item:hover .partner-logo-img,
.partner-logo-img:hover {
    opacity: 1;
    transform: scale(1.45);
    z-index: 3;
    position: relative;
}

.partner-logo-img[src*="IMG_0488"] {
    height: 58px;
    max-height: 58px;
}

.partner-logo-img[src*="ANB"] {
    height: 60px;
}

.partner-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray-200);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .partner-label {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
        padding: 0 12px 0 14px;
    }

    .partner-marquee-bar {
        height: 60px;
    }

    .partner-logo-img {
        height: 38px;
        max-width: 140px;
    }

    .partner-logo-img[src*="IMG_0488"] {
        height: 46px;
        max-height: 46px;
    }

    .partner-logo-img[src*="ANB"] {
        height: 50px;
    }

    .partner-marquee-track {
        gap: 28px;
    }
}

/* 4. Navigation */
.glass-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s, padding 0.4s, top 0.4s;
}

.glass-nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 640px) {
    .glass-nav {
        top: 60px;
    }
}

.nav-container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    height: 56px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-item {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-700);
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-600);
}

/* Mobile Hamburger — hidden by default */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-600);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.3s, opacity 0.3s, top 0.3s;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* Anime.js 3D Block Background */
/* Hero colour tokens for particles */
:root {
    --hero-blue: #3b82f6;
    --hero-blue-light: #93c5fd;
    --hero-blue-pale: #bfdbfe;
}

#animation-wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anime-block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 100px;
    background-color: rgba(104, 225, 168, 0.057);
    box-shadow: 10px 10px 50px rgba(136, 146, 162, 0.074);
    border-radius: 4px;
}

/* 5. Hero Section */
.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: clamp(170px, 18vh, 200px) 5% clamp(60px, 10vh, 100px);
}

.hero-content {
    flex: 1 1 50%;
    min-width: 0;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    color: white;
}

.hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--gray-500);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-100);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-lab {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
}

/* Countdown */
.hero-countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 14px 20px 10px;
    min-width: 80px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cd-val {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cd-lab {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-top: 4px;
}

.cd-sep {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-300);
    line-height: 1;
    padding-bottom: 20px;
}

@media (max-width: 640px) {
    .hero-countdown {
        gap: 8px;
    }

    .countdown-unit {
        min-width: 64px;
        padding: 10px 12px 8px;
    }

    .cd-val {
        font-size: 1.7rem;
    }

    .cd-lab {
        font-size: 0.55rem;
    }

    .cd-sep {
        font-size: 1.4rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-lab {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
}

.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: clamp(170px, 18vh, 200px) 5% clamp(60px, 10vh, 90px);
    position: relative;
    overflow: visible;
    background-color: #080f1e;
}

.hero-content {
    flex: 1 1 50%;
    min-width: 0;
    z-index: 2;
    position: relative;
}

.hero-visual {
    flex: 0 0 46%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
    position: relative;
}

/* Decorative glow blob behind the GIF frame */
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* 3D Globe in hero visual slot */
.hero-globe-box {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 99;
    isolation: isolate;
    overflow: visible;
    animation: heroFloat 5s ease-in-out infinite;
    box-shadow:
        0 0 0 2px rgba(30, 64, 175, 0.15),
        0 24px 60px rgba(0, 0, 0, 0.25),
        0 0 100px rgba(30, 64, 175, 0.18);
}

/* Inner circular clip — keeps canvas circular while allowing label outside */
.hero-globe-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(30, 64, 175, 0.25);
    pointer-events: none;
    z-index: 2;
}

.hero-globe-box canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border-radius: 50%;
    z-index: 1;
    /* clip-path removed — border-radius handles the circle shape */
}

/* Venue label that appears below the globe */
.globe-venue-label {
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 15, 30, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 64, 175, 0.35);
    border-radius: 40px;
    padding: 8px 18px 8px 12px;
    white-space: nowrap;
    pointer-events: none;
    animation: venueLabelFade 0.8s ease 2.4s both;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

@keyframes venueLabelFade {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.globe-venue-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff1a3a;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(255,26,58,0.6);
    animation: venueDotPulse 1.8s ease-out infinite;
}

@keyframes venueDotPulse {
    0%  { box-shadow: 0 0 0 0 rgba(255,26,58,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(255,26,58,0); }
    100%{ box-shadow: 0 0 0 0 rgba(255,26,58,0); }
}

.globe-venue-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.globe-venue-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.globe-venue-text em {
    font-size: 0.72rem;
    font-style: normal;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Hero GIF frame — premium floating card */
.hero-gif-frame {
    width: 100%;
    max-width: 680px;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    /* Gradient border via background-clip trick */
    padding: 3px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.6) 0%, rgba(5, 150, 105, 0.5) 50%, rgba(30, 64, 175, 0.3) 100%);
    box-shadow:
        0 0 0 1px rgba(30, 64, 175, 0.12),
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(30, 64, 175, 0.1);
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-0.3deg);
    }
}

.hero-gif-inner {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 22px;
}

/* Frosted glass shine on top of GIF */
.hero-gif-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.04) 35%,
            transparent 60%);
    border-radius: 22px;
    pointer-events: none;
}

/* Floating info chip — bottom of frame */
.hero-gif-chip {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
}

/* Legacy .asset-frame-premium (used on other pages) */
.asset-frame-premium {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    background: var(--white);
    padding: 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
}

.asset-frame-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.frame-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* 6. Badges & Titles */
.elite-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    color: var(--primary-700);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    border-radius: 30px;
    line-height: 1.4;
    word-break: break-word;
}

@media (max-width: 576px) {
    .elite-badge {
        font-size: 0.6rem;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
}

.section-title-elite {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 50px;
}

/* 7. Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.objective-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: transform 0.3s var(--smooth), box-shadow 0.3s;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.objective-card.highlight-card {
    background: var(--grad-primary);
    border: none;
    color: var(--white);
}

.obj-icon {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-700);
    margin-bottom: 20px;
    line-height: 1;
}

.highlight-card .obj-icon {
    color: rgba(255, 255, 255, 0.7);
}

.objective-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.objective-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.highlight-card p,
.highlight-card h3 {
    color: rgba(255, 255, 255, 0.9);
}

/* 8. Featured Card */
.featured-card-elite {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--gray-100);
}

.featured-visual-box {
    min-height: 340px;
}

.featured-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text-box {
    padding: clamp(30px, 5%, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.featured-text-box h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.featured-text-box p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* 9. Events Grid */
.pixel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.event-card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s var(--smooth), box-shadow 0.3s;
}

.event-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.event-card-premium>img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.card-p {
    padding: 28px 30px 32px;
}

.card-p h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.card-p p {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-700);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.card-p p span {
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 10. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--smooth);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.28);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    border: 2px solid var(--primary-200);
    color: var(--primary-700);
}

.btn-outline:hover {
    background: var(--primary-50);
    border-color: var(--primary-600);
    color: var(--primary-600);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    width: 100%;
}

/* 11. Registration Form */
.glass-form-container {
    max-width: 860px;
    margin-inline: auto;
    background: var(--white);
    padding: clamp(24px, 6vw, 70px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--gray-100);
}

.form-header {
    margin-bottom: 36px;
}

.form-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-full {
    grid-column: 1 / -1;
}

.label-elite {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-600);
}

.input-elite {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    box-sizing: border-box;
}

.input-elite:focus {
    outline: none;
    border-color: var(--primary-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* File input styling */
input[type="file"].input-elite {
    padding: 10px 14px;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 0.88rem;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

/* Form action buttons — flexible but never too narrow */
.btn-form {
    flex: 1 1 140px;
    text-align: center;
    justify-content: center;
}

/* 11b. Registration Availability Banner */
.reg-progress-track {
    width: 100%;
    height: 5px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 24px;
}

.reg-progress-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-stats-bar {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 36px;
    position: relative;
}

/* Gradient left accent stripe */
.reg-stats-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--grad-primary);
    border-radius: 4px 0 0 4px;
}

.reg-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 12px;
}

.reg-stat-val {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Spots left: green accent */
.reg-stat.spots .reg-stat-val {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reg-stat-lab {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

.reg-stat-div {
    width: 1px;
    background: var(--gray-100);
    margin: 12px 0;
    flex-shrink: 0;
}

.reg-stats-loading {
    padding: 20px 24px;
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .reg-stat-val {
        font-size: 1.5rem;
    }

    .reg-stat {
        padding: 14px 8px;
    }

    .reg-stat-lab {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }
}

/* 12. About Layout */
.about-elite-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 500;
}

.about-text p {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-visual .asset-frame-premium {
    max-width: 100%;
}

/* 13. Contact Layout */
.contact-grid-elite {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list-elite {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}

.contact-list-elite p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-list-elite strong {
    color: var(--gray-900);
}

.contact-form-side .form-grid {
    gap: 18px;
}

/* 13a. Coming Soon Layout */
.coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.coming-soon-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s var(--smooth), box-shadow 0.3s;
}

.coming-soon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.cs-icon {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 6px;
}

.coming-soon-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.coming-soon-card>p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.75;
    flex: 1;
}

.cs-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--gray-50);
    border: 1.5px dashed var(--gray-300);
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-top: 8px;
}

.cs-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-600);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.cs-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
}

.cs-cta-bar>p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coming-soon-card {
        padding: 32px 24px;
    }

    .cs-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

/* 13b. Sessions Timeline */
.sessions-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.session-item {
    display: grid;
    grid-template-columns: 90px 40px 1fr;
    gap: 0 20px;
    align-items: flex-start;
}

.session-time {
    padding-top: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    white-space: nowrap;
}

.session-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.session-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 23px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.session-line {
    width: 2px;
    background: var(--gray-100);
    flex: 1;
    min-height: 20px;
}

.session-item:last-child .session-line {
    display: none;
}

.session-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s, transform 0.3s var(--smooth);
}

.session-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(4px);
}

.session-track {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.session-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.session-speaker {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 8px;
}

.session-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .session-item {
        grid-template-columns: 70px 28px 1fr;
        gap: 0 12px;
    }

    .session-time {
        font-size: 0.7rem;
    }

    .session-card {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .session-item {
        grid-template-columns: 1fr;
    }

    .session-connector {
        display: none;
    }

    .session-time {
        text-align: left;
        padding-top: 0;
        margin-bottom: 6px;
    }

    .session-card {
        margin-bottom: 12px;
    }
}

/* 13c. Venue Section */
.venue-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.venue-globe-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* When the globe sits inside the venue section, let it fill the full column */
.venue-globe-wrap .hero-globe-box {
    max-width: 100%;
    background: transparent;
    box-shadow: none;
}

.venue-globe-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    position: relative;
    cursor: grab;
}

.venue-map-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.venue-globe-box canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.globe-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.globe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2244;
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.globe-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.venue-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-block: 16px 0;
}

.venue-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vd-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-detail-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.venue-detail-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .venue-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .venue-globe-box,
    .venue-map-box {
        max-height: 500px;
    }
}

@media (max-width: 640px) {
    .venue-globe-box {
        aspect-ratio: 1/1;
        max-height: 360px;
    }

    .venue-map-box {
        aspect-ratio: 4/3;
        max-height: 320px;
    }
}

/* 14. Gallery */
.masonry-gallery-elite {
    columns: 3 280px;
    gap: 24px;
}

.gallery-item-premium {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-card);
}

.gallery-item-premium img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--smooth);
}

.gallery-item-premium:hover img {
    transform: scale(1.05);
}

/* 15. Detail Grid */
.detail-grid-elite {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
}

.sidebar-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 100px;
}

.sidebar-meta {
    margin-bottom: 28px;
}

.sidebar-meta label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    display: block;
    margin-bottom: 8px;
}

.sidebar-meta p {
    font-size: 1.1rem;
    font-weight: 700;
}

.text-sold-out {
    color: #ef4444 !important;
}

.text-success {
    color: var(--accent-600) !important;
}

.btn-disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    pointer-events: none;
    box-shadow: none;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 32px;
    transition: color 0.2s;
}

.btn-back:hover {
    color: var(--primary-600);
}

.content-body {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.85;
}

/* 16. Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 36px;
}

.footer-container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.9rem;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-list p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

/* ── Aceternity "Images Badge" folders (footer) ───────────────── */
/* Row holding the partner + speaker folders, sat under the TRGS logo. */
.footer-folders {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    margin-top: 30px;
}

/* Raise the about column so a blooming fan paints over the other
   footer columns rather than behind them. */
.footer-about {
    position: relative;
    z-index: 10;
}

.folder-wrap {
    position: relative;
}

.folder-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Invisible bridge above the folder so hover survives while the fan is
   raised (only active while open, so it never blocks other footer UI). */
.folder-badge::before {
    content: '';
    position: absolute;
    left: -60px;
    right: -60px;
    bottom: -8px;
    top: -160px;
    z-index: 0;
    pointer-events: none;
}

.folder-wrap.is-open .folder-badge::before {
    pointer-events: auto;
}

.folder-badge:focus-visible .folder {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.45);
    border-radius: 6px;
}

.folder {
    position: relative;
    width: 76px;
    height: 56px;
    flex-shrink: 0;
    perspective: 600px;
    transform-style: preserve-3d;
    /* Open-state card size — fallbacks; main.js sets exact px per viewport
       so the bloomed grid is evenly spaced and never overlaps. */
    --fan-w: clamp(40px, 10.5vw, 82px);
    --fan-h: clamp(28px, 7vw, 54px);
}

/* Speaker folder: square, photo-cropped cards instead of logo tiles. */
.folder--photo {
    --fan-w: clamp(38px, 9vw, 66px);
    --fan-h: clamp(38px, 9vw, 66px);
}

/* Folder back panel + tab (amber, like the original) */
.folder-back {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(to bottom, #fbbf24, #f59e0b);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.folder-tab {
    position: absolute;
    left: 3px;
    top: -9px;
    width: 28px;
    height: 14px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to bottom, #fcd34d, #fbbf24);
}

/* Teaser logos that peek out and fan on hover */
.folder-teasers {
    position: absolute;
    inset: 0;
}

.folder-teaser {
    position: absolute;
    top: 3px;
    left: 50%;
    width: 44px;
    height: 30px;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(var(--tease-y, -6px)) rotate(var(--tease-rot, 0deg));
    z-index: var(--z, 10);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.5s cubic-bezier(0.2, 0.9, 0.25, 1),
        width 0.5s cubic-bezier(0.2, 0.9, 0.25, 1),
        height 0.5s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.folder-teaser img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
    background: #fff;
}

/* Speaker photos fill the card (faces, not logos). */
.folder-teaser.is-photo img {
    object-fit: cover;
    padding: 0;
}

.folder-wrap.is-open .folder-teaser {
    width: var(--fan-w);
    height: var(--fan-h);
    transform:
        translateX(calc(-50% + var(--open-x, 0px)))
        translateY(var(--open-y, 0px))
        rotate(0deg);
}

/* Folder front flap — tilts forward in 3D and opens on hover */
.folder-front {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85%;
    border-radius: 6px;
    background: linear-gradient(to bottom, #fcd34d, #fbbf24);
    transform-origin: bottom center;
    transform: rotateX(-25deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.25, 1);
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.folder-front::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    top: 4px;
    height: 1px;
    background: rgba(254, 243, 199, 0.5);
}

.folder-wrap.is-open .folder-front {
    transform: rotateX(-45deg) scaleY(0.8);
}

.folder-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.partners-badge-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    height: 100px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.partner-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.partner-badge:hover::before {
    opacity: 1;
}

.partner-badge img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(1) contrast(1);
    transition: filter 0.3s ease;
}

.partner-badge:hover img {
    filter: brightness(1.1) contrast(1.1);
}

.partner-badge-loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ── Partner Modal Popup (Aceternity Images Badge Style) ──────── */
.partner-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.partner-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.partner-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideIn {
    0% {
        transform: scale(0.95) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.partner-modal-overlay.open .partner-modal-content {
    transform: scale(1) translateY(0);
}

.partner-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    transition: all 0.2s ease;
    z-index: 10;
}

.partner-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.partner-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.partner-modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.partner-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.02em;
}

.partner-modal-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    padding: 40px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.partner-modal-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.partner-modal-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: imagePopIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 1;
}

@keyframes imagePopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 17. Cursor */
#custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-600);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

#cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(30, 64, 175, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

/* 18. Loader */
.loader-container {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.5s;
}

.loader-pill {
    width: 120px;
    height: 3px;
    background: var(--gray-100);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.loader-pill::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--grad-primary);
    animation: slide-load 1.4s ease-in-out infinite;
}

@keyframes slide-load {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* 19. App Root */
#app-root {
    min-height: 100vh;
    transition: opacity 0.4s ease;
}

/* 20. Theme Showcase Section */
.theme-showcase-section {
    position: relative;
    overflow: hidden;
}

.theme-showcase-inner {
    position: relative;
    background: linear-gradient(160deg, #0c1e4a 0%, var(--primary-900) 30%, var(--primary-800) 55%, var(--accent-dark) 100%);
    padding: clamp(80px, 12vw, 160px) 0;
}

/* ── Animated dot-grid background ───────────────────────────────── */
.theme-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(32px, 32px);
    }
}

/* ── Ambient glow ────────────────────────────────────────────────── */
.theme-showcase-glow {
    position: absolute;
    top: -60%;
    left: -30%;
    width: 160%;
    height: 220%;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: themeGlowShift 10s ease-in-out infinite alternate;
}

@keyframes themeGlowShift {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }

    50% {
        transform: translateX(2%) translateY(-1%) scale(1.03);
    }

    100% {
        transform: translateX(-2%) translateY(1%) scale(0.98);
    }
}

/* ── Floating orbs ───────────────────────────────────────────────── */
.theme-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
    opacity: 0;
    animation: orbFadeIn 1.5s ease forwards;
}

.theme-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: orbFloat1 14s ease-in-out infinite, orbFadeIn 1.5s ease forwards;
    animation-delay: 0s, 0.2s;
}

.theme-orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    top: 60%;
    right: 8%;
    animation: orbFloat2 18s ease-in-out infinite, orbFadeIn 1.5s ease forwards;
    animation-delay: 2s, 0.5s;
}

.theme-orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, transparent 70%);
    top: 25%;
    right: 20%;
    animation: orbFloat3 12s ease-in-out infinite, orbFadeIn 1.5s ease forwards;
    animation-delay: 1s, 0.3s;
}

.theme-orb-4 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(134, 239, 172, 0.15) 0%, transparent 70%);
    bottom: 15%;
    left: 18%;
    animation: orbFloat4 16s ease-in-out infinite, orbFadeIn 1.5s ease forwards;
    animation-delay: 3s, 0.6s;
}

.theme-orb-5 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.10) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: orbFloat5 20s ease-in-out infinite, orbFadeIn 1.5s ease forwards;
    animation-delay: 0.5s, 0.4s;
}

@keyframes orbFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15);
    }

    66% {
        transform: translate(20px, -25px) scale(0.95);
    }
}

@keyframes orbFloat3 {

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

    50% {
        transform: translate(25px, 35px);
    }
}

@keyframes orbFloat4 {

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

    50% {
        transform: translate(-30px, -20px) rotate(10deg);
    }
}

@keyframes orbFloat5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, -50px) scale(0.95);
    }

    75% {
        transform: translate(30px, 20px) scale(1.1);
    }
}

/* ── Content container ───────────────────────────────────────────── */
.theme-showcase-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Staggered entrance animations ───────────────────────────────── */
.theme-stagger-1,
.theme-stagger-2,
.theme-stagger-3,
.theme-stagger-4,
.theme-stagger-5,
.theme-stagger-6 {
    opacity: 0;
    transform: translateY(30px);
    animation: themeStaggerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.theme-stagger-1 {
    animation-delay: 0.15s;
}

.theme-stagger-2 {
    animation-delay: 0.35s;
}

.theme-stagger-3 {
    animation-delay: 0.55s;
}

.theme-stagger-4 {
    animation-delay: 0.7s;
}

.theme-stagger-5 {
    animation-delay: 0.9s;
}

.theme-stagger-6 {
    animation-delay: 1.1s;
}

@keyframes themeStaggerIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

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

/* ── Badge ───────────────────────────────────────────────────────── */
.theme-badge {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.theme-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

/* ── Quote wrapper & decorations ─────────────────────────────────── */
.theme-quote-wrapper {
    position: relative;
    padding: 0 60px;
    max-width: 900px;
}

.theme-deco-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 700;
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: -16px;
    left: 0;
    user-select: none;
    pointer-events: none;
    animation: quoteFloat 4s ease-in-out infinite alternate;
}

.theme-deco-close {
    left: auto;
    right: 0;
    top: auto;
    bottom: -40px;
    animation-delay: 2s;
}

@keyframes quoteFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-6px) rotate(2deg);
        opacity: 1;
    }
}

/* ── Headline with shimmer ───────────────────────────────────────── */
.theme-headline {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.12;
    position: relative;
    overflow: hidden;
}

.theme-headline-accent {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--accent-300) 50%, var(--primary-300) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Shimmer sweep across headline */
.theme-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.06) 45%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.06) 55%,
            transparent 70%);
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(150%);
    }
}

/* ── Divider ─────────────────────────────────────────────────────── */
.theme-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-400), var(--primary-400));
    background-size: 200% 100%;
    border-radius: 100px;
    margin: 36px auto;
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {

    0%,
    100% {
        width: 60px;
        background-position: 0% 50%;
        opacity: 0.6;
    }

    50% {
        width: 120px;
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* ── Description ─────────────────────────────────────────────────── */
.theme-description {
    font-size: clamp(0.95rem, 1.5vw, 1.12rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    line-height: 1.8;
    margin-bottom: 44px;
}

/* ── Pillars ─────────────────────────────────────────────────────── */
.theme-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
}

.theme-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--smooth);
    cursor: default;
}

.theme-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.theme-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.theme-pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.4s var(--smooth);
}

.theme-pillar:hover .pillar-icon {
    transform: scale(1.2) rotate(-5deg);
}

.theme-pillar span {
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ── Glowing CTA button ─────────────────────────────────────────── */
.theme-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent) 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    letter-spacing: 0.3px;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.25),
        0 0 60px rgba(5, 150, 105, 0.15);
    transition: all 0.4s var(--smooth);
}

.theme-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 30px rgba(59, 130, 246, 0.35),
        0 0 80px rgba(5, 150, 105, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.2);
}

.theme-cta-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-400), var(--accent-400), var(--primary-400));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: ctaGlow 3s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.6;
}

@keyframes ctaGlow {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.4;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .theme-quote-wrapper {
        padding: 0 28px;
    }

    .theme-deco-mark {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }

    .theme-pillars {
        gap: 10px;
    }

    .theme-pillar {
        padding: 10px 18px;
    }

    .pillar-icon {
        font-size: 1.15rem;
    }

    .theme-pillar span {
        font-size: 0.76rem;
    }

    .theme-cta {
        padding: 16px 32px;
        font-size: 0.92rem;
    }

    .theme-orb-4,
    .theme-orb-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .theme-quote-wrapper {
        padding: 0 12px;
    }

    .theme-deco-mark {
        display: none;
    }

    .theme-pillars {
        flex-direction: column;
        align-items: center;
    }

    .theme-orb {
        display: none;
    }

    .theme-cta {
        width: 100%;
    }
}

/* ──────────────────────────────────────────────────────────────────
   22. Speakers Page
   ────────────────────────────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────────── */
.speakers-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(170px, 16vw, 200px) 0 clamp(40px, 6vw, 60px);
}

@media (max-width: 768px) {
    .speakers-hero {
        padding-top: clamp(170px, 20vh, 220px);
        padding-bottom: 40px;
    }
}

.speakers-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0c1e4a;
}

/* GIF fills background */
.speakers-hero-gif {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

/* Dark gradient overlay for text readability */
.speakers-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 30, 74, 0.85) 0%, rgba(12, 30, 74, 0.65) 40%, rgba(11, 61, 46, 0.8) 100%);
    pointer-events: none;
}

.speakers-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    animation: gridDrift 20s linear infinite;
}

.speakers-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 48px;
}

.speakers-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 20px;
}

.speakers-hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ── Large Rectangular GIF Frame ─────────────────────────────────── */
.speakers-hero-image-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(59, 130, 246, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 1500px;
    margin: 0 auto;
    aspect-ratio: 16 / 7;
    background: #0a1a3a;
}

.speakers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .speakers-hero-image-frame {
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .speakers-hero-image-frame {
        aspect-ratio: 4 / 3;
    }
}

/* ── Cards Grid ──────────────────────────────────────────────────── */
.speakers-grid-section {
    padding-bottom: 100px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* ── Individual Card ─────────────────────────────────────────────── */
.speaker-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.45s var(--smooth), box-shadow 0.45s var(--smooth), border-color 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    animation: speakerCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.speaker-card:nth-child(1) {
    animation-delay: 0.1s;
}

.speaker-card:nth-child(2) {
    animation-delay: 0.2s;
}

.speaker-card:nth-child(3) {
    animation-delay: 0.3s;
}

.speaker-card:nth-child(4) {
    animation-delay: 0.4s;
}

.speaker-card:nth-child(5) {
    animation-delay: 0.5s;
}

.speaker-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes speakerCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gradient reveal border */
.speaker-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: transparent;
}

.speaker-card:hover::before {
    opacity: 1;
}

/* Photo */
.speaker-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.speaker-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-400));
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(0.8);
    display: block;
    transition: transform 0.5s var(--smooth);
}

.speaker-card:hover .speaker-photo {
    transform: scale(1.0);
}

.speaker-card-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-900);
    letter-spacing: -0.02em;
    margin: 0;
    padding: 20px 24px 0;
}

.speaker-card-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-500);
    margin: 0;
    padding: 4px 24px 0;
    line-height: 1.5;
}

.speaker-card-tagline {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-style: italic;
    line-height: 1.5;
    padding: 0 24px;
}

/* Topic tags */
.speaker-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 4px;
    padding: 0 24px;
}

.speaker-topic-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(59, 130, 246, 0.06);
    color: var(--primary-600);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.speaker-card-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 12px 24px 24px;
    transition: color 0.3s, gap 0.3s;
}

.speaker-card:hover .speaker-card-cta {
    color: var(--primary-500);
    gap: 10px;
}

/* ── Modal ────────────────────────────────────────────────────────── */
.speaker-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s;
}

.speaker-modal.active {
    pointer-events: all;
    opacity: 1;
}

.speaker-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.speaker-modal-panel {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 44px 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s var(--smooth);
}

.speaker-modal.active .speaker-modal-panel {
    transform: translateY(0) scale(1);
}

.speaker-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-100);
    background: var(--white);
    font-size: 1.3rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-modal-close:hover {
    background: var(--gray-50);
    color: var(--primary-900);
}

/* Modal body layout */
.speaker-modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.speaker-modal-photo {
    width: 120px;
    height: 150px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--primary-100);
    flex-shrink: 0;
}

.speaker-modal-meta h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-900);
    margin: 0;
    letter-spacing: -0.02em;
}

.speaker-modal-meta .speaker-card-role {
    font-size: 0.82rem;
    margin-top: 4px;
}

.speaker-modal-bio p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin: 0 0 16px;
}

.speaker-modal-bio p:last-child {
    margin-bottom: 0;
}

/* Accolades */
.speaker-accolades {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.speaker-accolades h3 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-300);
    margin: 0 0 12px;
}

.speaker-accolade-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.speaker-accolade-item {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(16, 185, 129, 0.06));
    color: var(--primary-700);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .speaker-modal-panel {
        padding: 32px 24px;
        width: 96%;
    }

    .speaker-modal-header {
        flex-direction: column;
        text-align: center;
    }

    .speaker-modal-meta h2 {
        font-size: 1.25rem;
    }
}

/* 21. Reveal animation — CSS so items always appear even without GSAP */
.reveal {
    animation: fadeUp 0.65s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {

    /* Nav becomes overlay */
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        height: 22px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 38px;
        transform: translateX(100%);
        transition: transform 0.45s var(--smooth);
        z-index: 1050;
        padding: 40px 24px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-item {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    /* Hero stacks vertically */
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 48px;
        padding-top: clamp(180px, 22vh, 220px);
        padding-bottom: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .hero-visual {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        flex: 1 1 100%;
        min-height: 480px;
    }

    .hero-globe-box {
        max-width: 300px;
        margin: 0 auto;
        box-shadow: 0 0 40px rgba(30, 64, 175, 0.18);
    }

    .hero-gif-frame {
        max-width: 100vw;
        width: 100vw;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        /* Remove the gradient border */
    }

    .hero-gif-inner,
    .hero-gif,
    .hero-gif-shine {
        border-radius: 0 !important;
    }

    /* Objectives: 2 columns */
    .objectives-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Featured card: stack */
    .featured-card-elite {
        grid-template-columns: 1fr;
    }

    .featured-visual-box {
        min-height: auto;
        aspect-ratio: 16/9;
    }

    /* About: stack */
    .about-elite-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Contact: stack */
    .contact-grid-elite {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Detail sidebar: reflow */
    .detail-grid-elite {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar-card {
        position: static;
    }

    /* Footer: 2-col */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    /* Partner Badge Gallery: responsive grid */
    .partners-badge-gallery {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
    }
}

/* --- Landscape Phone / Small Tablet (max 768px) --- */
@media (max-width: 768px) {

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }

    /* Gallery: 2 cols */
    .masonry-gallery-elite {
        columns: 2 240px;
    }

    /* Events: single col */
    .pixel-grid {
        grid-template-columns: 1fr;
    }

    /* Form: single col */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .form-actions {
        flex-direction: column;
    }

    /* Footer: single col */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    /* Partner Badge Gallery: mobile layout */
    .partners-badge-gallery {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }

    .partner-badge {
        height: 80px;
        padding: 12px;
    }

    /* Glass form: less padding */
    .glass-form-container {
        padding: 32px 24px;
    }
}

/* --- Mobile (max 480px) --- */
@media (max-width: 480px) {

    .container {
        padding-inline: 20px;
    }

    .hero-section {
        padding-inline: 20px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

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

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 28px;
    }

    /* Objectives: single col */
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .section-title-elite {
        font-size: 2rem;
    }

    /* Gallery: single col */
    .masonry-gallery-elite {
        columns: 1;
    }

    /* Nav logo smaller */
    .nav-logo {
        height: 36px;
    }
}

/* --- Extra safety: ensure form + objectives collapse by 640px on real devices --- */
@media (max-width: 640px) {

    /* Objectives always single col on phones */
    .objectives-grid {
        grid-template-columns: 1fr !important;
    }

    /* Registration form always single col */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .field-full {
        grid-column: auto !important;
    }

    /* Buttons stack vertically, full width */
    .form-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .btn-form {
        width: 100%;
        flex: none !important;
    }

    /* Hero countdown wraps gracefully */
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    /* Event grid: single col */
    .pixel-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery: single col */
    .masonry-gallery-elite {
        columns: 1;
    }
}

/* --- 480px: smallest phones --- */
@media (max-width: 480px) {
    .glass-form-container {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .input-elite {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .partner-modal-content {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .partner-modal-close {
        width: 36px;
        height: 36px;
        top: 16px;
        right: 16px;
    }

    .partner-modal-title {
        font-size: 1.4rem;
    }

    .partner-modal-gallery {
        padding: 24px;
        min-height: 250px;
    }

    .partner-modal-image {
        max-height: 250px;
    }
}

/* Custom Beautiful Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, #357abd 100%);
    border-radius: 8px;
    border: 3px solid #ffffff;
    /* Creates a clean, inset look against a white background */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3b76bb 0%, #2a5a92 100%);
}
/* ── Draggable Speaker Cards ── */
.draggable-cards-stack {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    perspective: 1000px;
    z-index: 100;
    pointer-events: none;
}

@media (max-width: 900px) {
    .draggable-cards-stack {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        bottom: auto;
        right: auto;
        margin: 0;
        z-index: 200; /* Ensure they appear above the globe */
    }
}

.draggable-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    overflow: hidden;
    cursor: grab;
    pointer-events: auto;
    user-select: none;
    display: flex;
    flex-direction: column;
    touch-action: none; /* Prevent scroll while dragging */
}
.draggable-card.scattered {
    /* Slightly smaller size to accommodate scattering without overwhelming screen */
    width: 180px; 
    height: 230px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    /* Center it initially */
    left: 50%;
    top: 50%;
    margin-left: -90px;
    margin-top: -115px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .draggable-card.scattered {
        width: 140px;
        height: 180px;
        margin-left: -70px;
        margin-top: -90px;
    }
}
.draggable-card.dragging {
    transition: none !important;
    cursor: grabbing;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.draggable-card .card-photo {
    width: 100%;
    height: 65%;
    object-fit: cover;
    object-position: center 20%;
    pointer-events: none;
}
.draggable-card .card-content {
    padding: 12px 14px;
    text-align: center;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}
.draggable-card .card-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-950, #0a192f);
    margin: 0 0 4px 0;
    line-height: 1.1;
}
.draggable-card .card-role {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-600, #2563eb);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .draggable-card .card-content {
        padding: 8px 10px;
    }
    .draggable-card .card-name {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    .draggable-card .card-role {
        font-size: 0.55rem;
        -webkit-line-clamp: 2;
    }
}
