/* ================================
   FS Business Forum - Premium Styles
   ================================ */

/* ================================
   Local Font Faces (GDPR Compliant)
   ================================ */

/* Inter Font Family */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/Inter-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/Inter-Bold.woff2') format('woff2');
}

/* Playfair Display Font Family */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/PlayfairDisplay-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/PlayfairDisplay-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/PlayfairDisplay-Bold.woff2') format('woff2');
}

/* CSS Variables */
:root {
    --color-bg: #040810;
    --color-bg-secondary: #0a1018;
    --color-bg-tertiary: #121a24;
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a5;
    --color-text-muted: #6b6b70;
    --color-accent: #c9a962;
    --color-accent-light: #e8d5a3;
    --color-accent-dark: #8a7341;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.15);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);

    --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-text);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-text);
    transition: transform 0.15s var(--ease-out-quart), opacity 0.15s;
}

.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

@media (hover: none), (pointer: coarse) {
    .cursor, .cursor-follower { display: none; }
}

/* Intro Video Overlay */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-overlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.intro-overlay.fade-out {
    animation: introFadeOut 1.2s var(--ease-out-expo) forwards;
}

.intro-overlay.fade-out video {
    animation: introVideoScale 1.2s var(--ease-out-expo) forwards;
}

@keyframes introFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(0px);
    }
    50% {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(20px);
    }
}

@keyframes introVideoScale {
    0% {
        transform: scale(1);
        filter: brightness(1) blur(0px);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(0.8) blur(2px);
    }
    100% {
        transform: scale(1.08);
        filter: brightness(0.2) blur(8px);
    }
}

.intro-skip {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out-quart);
    animation: skipFadeIn 0.5s var(--ease-out-quart) 1s forwards;
}

.intro-skip svg {
    width: 14px;
    height: 14px;
}

.intro-skip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

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

.intro-overlay.fade-out .intro-skip {
    opacity: 0;
    transform: translateY(20px);
}

/* Hide main content until intro is done */
body.intro-playing {
    overflow: hidden;
}

body.intro-playing .nav,
body.intro-playing .hero-content,
body.intro-playing .hero-scroll {
    opacity: 0;
}

body.intro-playing .hero-video-container {
    opacity: 0;
    transform: scale(1.02);
}

body.intro-complete .nav {
    animation: navFadeIn 0.6s var(--ease-out-expo) forwards;
}

body.intro-complete .hero-video-container {
    animation: heroVideoFadeIn 0.8s var(--ease-out-expo) forwards;
}

body.intro-complete .hero-content {
    animation: heroContentFadeIn 0.8s var(--ease-out-expo) 0.2s forwards;
}

body.intro-complete .hero-scroll {
    animation: heroContentFadeIn 0.8s var(--ease-out-expo) 0.4s forwards;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVideoFadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 3rem;
    transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.nav.scrolled {
    background: rgba(4, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-accent);
}

.logo-subtext {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out-quart);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    transition: background 0.3s, transform 0.3s;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--color-accent-light);
    color: var(--color-bg);
    transform: scale(1.05);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s, transform 0.4s, color 0.3s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 8, 16, 0.4) 0%,
        rgba(4, 8, 16, 0.6) 50%,
        rgba(4, 8, 16, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-light);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 1;
    transform: translateY(0);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 500;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
}

.title-accent {
    color: var(--color-accent);
    font-style: italic;
    display: inline-block;
    overflow: hidden;
}

.title-line-sub {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-accent);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-quart);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-quart);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: scale(1.05);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-secondary);
}

.btn-light {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-light:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

.btn-light:hover svg {
    transform: translate(3px, -3px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Section Styles */
section {
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
}

.title-reveal {
    display: block;
    overflow: hidden;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    max-width: 600px;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 10rem 3rem;
    background: var(--color-bg);
    position: relative;
    overflow-x: clip;
}

/* About Section Design Enhancements */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(201, 169, 98, 0.03) 0%,
        rgba(201, 169, 98, 0.01) 30%,
        transparent 100%);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-accent) 50%,
        transparent 100%);
}

/* About Decorative Accent Lines */
.about .about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3rem;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg,
        var(--color-accent) 0%,
        rgba(201, 169, 98, 0.3) 50%,
        transparent 100%);
}

.about .about-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -3rem;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg,
        var(--color-accent) 0%,
        rgba(201, 169, 98, 0.3) 50%,
        transparent 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-main {
    padding-right: 2rem;
}

.about-lead {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-quart);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 8, 16, 0.3), transparent);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    padding: 2rem;
    background: linear-gradient(145deg, var(--color-bg-secondary) 0%, rgba(10, 16, 24, 0.7) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 50px -10px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.15);
}

.feature:hover::before {
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-out-quart);
}

.feature:hover .feature-icon {
    transform: scale(1.1) translateY(-2px);
    animation-play-state: paused;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    transition: filter 0.4s ease;
}

.feature:hover .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.4));
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Marquee Section - Defined later in file, this is kept for legacy */

/* Speakers Section */
.speakers {
    padding: 10rem 3rem;
    background: var(--color-bg-secondary);
    position: relative;
    overflow-x: clip;
}

.speakers-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.speaker-card {
    position: relative;
    cursor: pointer;
    will-change: transform, opacity;
    transform: translateZ(0);
    /* Fix visual artifacts */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.4s var(--ease-out-quart);
}

.speaker-card:hover {
    transform: translateY(-8px) translateZ(0);
    z-index: 10;
}

.speaker-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    transition: box-shadow 0.4s var(--ease-out-quart);
    /* Removed transform-style: preserve-3d to prevent border-radius issues */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Force layer creation for better rendering */
    will-change: box-shadow;
}

.speaker-card:hover .speaker-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.3);
    /* Ensure border-radius is maintained during hover */
    border-radius: 12px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-quart);
    /* Prevent white line at bottom */
    display: block;
    vertical-align: bottom;
    /* No border-radius on img - parent .speaker-image handles clipping */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Move image down to create buffer and prevent white gap during animation */
    transform: translateY(22.5px);
}

.speaker-card:hover .speaker-image img {
    /* Simple 2D scale with buffer offset maintained - parent overflow:hidden clips to border-radius */
    transform: translateY(22.5px) scale(1.08);
}

.speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 8, 16, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.speaker-company-logo {
    width: 100%;
    max-width: 120px;
}

.speaker-company-logo img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.speaker-company-logo.swiss-chris-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.speaker-company-logo.swiss-chris-logo span {
    font-size: 0.75rem;
    color: var(--color-text);
}

.speaker-info {
    padding: 1.25rem 0;
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.speaker-role {
    font-size: 1.0rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.speaker-company {
    font-size: 1.0rem;
    color: var(--color-accent);
    margin-top: 0.3rem;
    font-weight: 500;
}

.speakers-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.speakers-cta p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Experience Section */
.experience {
    padding: 10rem 3rem;
    background: var(--color-bg);
    position: relative;
    overflow-x: clip;
}

.experience-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Experience Gallery - Grid layout with controlled sizing */
.experience-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--color-bg-secondary);
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Featured: spans 2 columns, landscape only */
.gallery-item.featured {
    grid-column: span 2;
}

/* Portrait: spans 2 rows, 1 column - pairs nicely */
.gallery-item.portrait {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out-quart);
    will-change: transform;
}

/* Landscape images - standard ratio */
.gallery-item:not(.portrait) img {
    aspect-ratio: 3/2;
}

/* Featured landscape - wider ratio */
.gallery-item.featured img {
    aspect-ratio: 16/10;
}

/* Portrait images - taller ratio */
.gallery-item.portrait img {
    aspect-ratio: 2/3;
    height: 100%;
}

.gallery-item:hover img {
    transform: scale(1.03) translateZ(0);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(4, 8, 16, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 1;
    z-index: 1;
}

.gallery-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Universities Section */
.universities {
    padding: 8rem 3rem;
    background: var(--color-bg-secondary);
}

.universities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.universities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.university-item {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.3s, transform 0.3s;
}

.university-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Partners Section */
.partners {
    padding: 10rem 3rem;
    background: var(--color-bg);
    position: relative;
    overflow-x: clip;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s;
    aspect-ratio: 3/2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    min-height: 140px;
    will-change: transform, opacity;
    transform: translateZ(0);
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.partner-logo img {
    max-width: 90%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-logo:hover img {
    transform: scale(1.03) translateZ(0);
}

/* Stats Section */
.stats-section {
    padding: 10rem 3rem;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number-large {
    display: inline;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-bg);
}

.stat-plus-large {
    display: inline;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-bg);
    vertical-align: baseline;
}

.stat-label-large {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(4, 8, 16, 0.7);
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 10rem 3rem;
    background: var(--color-bg-secondary);
    position: relative;
    overflow-x: clip;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 700px;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-cta {
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    gap: 4rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.info-value {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.visual-circle {
    position: absolute;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.visual-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.visual-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-delay: -3s;
}

.visual-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-5deg); }
}

/* Footer */
.footer {
    padding: 4rem 3rem 2rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-accent);
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .experience-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item.featured {
        grid-column: span 2;
    }

    .gallery-item.portrait {
        grid-row: span 2;
    }

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

@media (max-width: 1024px) {
    .nav { padding: 0 2rem; }

    .nav-links { display: none; }

    .nav-menu-btn { display: flex; }

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

    .about-main {
        padding-right: 0;
    }

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

    .experience-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item.featured {
        grid-column: span 2;
    }

    .gallery-item.portrait {
        grid-row: span 2;
    }

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

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

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

    .contact-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about, .speakers, .experience, .partners, .contact {
        padding: 6rem 1.5rem;
    }

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

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .gallery-item.featured {
        grid-column: span 2;
    }

    .gallery-item.portrait {
        grid-row: span 2;
    }

    .about-photo-grid {
        gap: 1rem;
    }

    .photo-grid-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .universities-list {
        grid-template-columns: 1fr;
    }

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

    .stats-section {
        padding: 6rem 1.5rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .gallery-item.featured {
        grid-column: span 2;
    }

    .gallery-item.portrait {
        grid-row: span 2;
    }

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

    .partner-logo {
        min-height: 100px;
        padding: 1rem 1.5rem;
    }

    .partner-logo img {
        max-height: 96px;
    }

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

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }

/* Smooth scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--color-accent);
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
}

/* ================================
   NEW SECTIONS - Enhanced Design
   ================================ */

/* Speaker Highlights - Dynamic Card Design */
/* Reduce gap between section header and speaker highlights */
.speakers .section-header {
    margin-bottom: 2.5rem;
}

.speaker-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5.5rem;
}

.speaker-highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
    will-change: transform, opacity;
    transform: translateZ(0);
    /* Fix corner artifacts */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate;
}

.speaker-highlight-card:hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.1);
}

.speaker-highlight-card:hover .highlight-card-tag {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 169, 98, 0.3);
}

.speaker-highlight-card:hover .highlight-card-logo {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card-tag {
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}

.highlight-card-logo {
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}

.highlight-card-image {
    position: relative;
    padding: 2.5rem;
    padding-bottom: 0;
    background: linear-gradient(to bottom, #f0f0f0, #c8cdd6);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    /* Extend slightly to prevent gap with content below */
    margin-bottom: -1px;
}

.highlight-card-image > img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    vertical-align: bottom;
    transition: transform 0.6s var(--ease-out-quart);
    /* Move image down to create buffer and prevent white gap during animation */
    transform: translateY(22.5px);
}

/* Removed scale effect on hover for cutout speaker images */

.highlight-card-logo {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    width: 85px;
    height: 85px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transform: none !important;
}

.highlight-card-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    height: 60px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
}

/* Keynote Speaker tag - positioned over picture with shadow */
.highlight-card-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.95), rgba(138, 115, 65, 0.95));
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.highlight-card-content {
    text-align: center;
    padding: 1.5rem 2rem 2rem;
    background: linear-gradient(to top, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}

.highlight-card-name {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.75vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.highlight-card-role {
    font-size: 1.638rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}

.highlight-card-company {
    font-size: 1.43325rem;
    color: var(--color-accent);
    font-weight: 500;
}


/* Speaker Logo Badge (for grid speakers) */
.speaker-logo-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ffffff;
    width: 73px;
    height: 73px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: none !important;
}

.speaker-logo-badge img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    height: 58px;
    width: auto;
    max-width: 58px;
    object-fit: contain;
}

/* Speakers Photo Break (removed captions) */
.speakers-photo-break {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.speakers-photo-break .photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.speakers-photo-break .photo-item img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
    transition: transform 0.6s var(--ease-out-quart);
}

.speakers-photo-break .photo-item:hover img {
    transform: scale(1.03);
}

/* Removed photo captions - keeping selector for cleanup */
.photo-caption {
    display: none;
    color: var(--color-text);
    background: rgba(4, 8, 16, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}


/* About Section Enhanced */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Photo Grid - Full images, no cropping */
.about-photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.photo-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-secondary);
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
}

.photo-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out-quart);
}

.photo-grid-item:hover img {
    transform: scale(1.03);
}

.photo-grid-item.featured {
    flex: 1 1 100%;
}

.photo-grid-item .photo-overlay {
    display: none;
}

/* Panel Highlight Section */
.panel-highlight {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.panel-bg {
    position: absolute;
    inset: 0;
}

.panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-bg img.img-position-top {
    object-position: center 15%;
}

/* Panels intro section - less padding */
.panels-intro {
    padding-bottom: 0;
}

.panel-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.7) 50%, rgba(4, 8, 16, 0.3) 100%);
}

.panel-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 10%;
    text-align: right;
}

.panel-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.panel-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.panel-content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: 1.7;
}

/* Panel Highlight Reverse (for alternating panels) */
.panel-highlight.reverse .panel-bg::after {
    background: linear-gradient(to right, rgba(4, 8, 16, 0.95) 0%, rgba(4, 8, 16, 0.7) 50%, rgba(4, 8, 16, 0.3) 100%);
}

.panel-highlight.reverse .panel-content {
    align-items: flex-start;
    text-align: left;
}

/* Team Section */
.team {
    padding: 10rem 3rem;
    background: var(--color-bg);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-photo-wrapper {
    margin: 4rem auto;
    max-width: 900px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.team-main-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.chairmen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.chairman-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.chairman-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.chairman-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chairman-card p {
    font-size: 0.875rem;
    color: var(--color-accent);
}

.team-departments {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.team-departments span {
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Responsive for new sections */
@media (max-width: 1200px) {
    .speaker-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .speaker-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .speakers-photo-break {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .photo-grid-item.main {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .panel-highlight {
        height: auto;
        min-height: 300px;
        padding: 4rem 0;
    }

    .panel-content {
        padding: 0 1.5rem;
        align-items: flex-start;
        text-align: left;
    }

    .panel-highlight.reverse .panel-content {
        align-items: flex-start;
        text-align: left;
    }

    .highlight-card-logo img {
        height: 45px;
        max-width: 120px;
    }

    .highlight-card-tag {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
    }

    .highlight-card-name {
        font-size: 1.5rem;
    }

    .about-photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-grid-item.main,
    .photo-grid-item.wide {
        grid-column: span 1;
    }

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

@media (max-width: 480px) {
    .team-departments {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================
   PREMIUM EXPERIENCE ENHANCEMENTS
   ================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #e8d5a3, var(--color-accent));
    z-index: 10001;
    transition: none;
}

/* Grain Overlay for Premium Feel */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Text Marquee Section */
.marquee-section {
    padding: 2rem 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

.marquee-dot:nth-child(4n) { animation-delay: -0.5s; }
.marquee-dot:nth-child(4n+1) { animation-delay: -1s; }
.marquee-dot:nth-child(4n+2) { animation-delay: -1.5s; }

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Pulse that preserves translateY(-50%) for centered elements */
@keyframes dotPulseCentered {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s var(--ease-out-quart);
}

.btn-magnetic-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s var(--ease-out-quart);
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s var(--ease-out-quart);
}

.tilt-card-inner {
    transform: translateZ(20px);
}

/* Enhanced Text Reveal Animation */
.char-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.word-reveal .word {
    display: inline-block;
    overflow: hidden;
}

.word-reveal .word .char {
    display: inline-block;
    transform: translateY(100%);
}

/* Smooth Image Reveal */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-bg);
    transform-origin: right;
    transition: transform 1s var(--ease-out-quart);
}

.image-reveal.revealed::after {
    transform: scaleX(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-element {
    animation: float 6s ease-in-out infinite;
}

/* Glow Effect on Hover */
.glow-hover {
    transition: box-shadow 0.4s var(--ease-out-quart);
}

.glow-hover:hover {
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.3), 0 0 80px rgba(201, 169, 98, 0.1);
}

/* Animated Gradient Background */
.gradient-animate {
    background: linear-gradient(
        -45deg,
        var(--color-bg),
        var(--color-bg-secondary),
        var(--color-bg-tertiary),
        var(--color-bg)
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Parallax Image Container */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-image {
    will-change: transform;
    transform: scale(1.2);
}

/* Enhanced Section Transitions */
.section-fade {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Enhanced Speaker Card Hover - REMOVED to prevent conflicts with base styles */
/* All hover effects are defined in the base .speaker-card section above */

/* Smooth Underline Animation */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-quart);
}

.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Pulse Animation for CTAs */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 169, 98, 0); }
}

.pulse-cta {
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Gallery Item */
.gallery-item {
    transition: transform 0.5s var(--ease-out-quart), box-shadow 0.5s var(--ease-out-quart);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Animated Border */
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-border {
    position: relative;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--color-accent), transparent, var(--color-accent));
    background-size: 200% 200%;
    animation: borderRotate 3s linear infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.animated-border:hover::before {
    opacity: 1;
}

/* Smooth Scale on Scroll */
.scale-on-scroll {
    transform: scale(0.95);
    opacity: 0.8;
    transition: transform 0.6s var(--ease-out-quart), opacity 0.6s var(--ease-out-quart);
}

.scale-on-scroll.in-view {
    transform: scale(1);
    opacity: 1;
}

/* Text Gradient Animation */
.text-gradient-animate {
    background: linear-gradient(90deg, var(--color-accent), #e8d5a3, var(--color-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s linear infinite;
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Enhanced Partner Logo Hover */
.partner-logo {
    transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), background 0.4s;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

/* Reveal Line Animation */
.reveal-line {
    position: relative;
    overflow: hidden;
}

.reveal-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-quart);
}

.reveal-line:hover::after,
.reveal-line.active::after {
    transform: translateX(0);
}

/* Smooth Number Counter */
.counter-number {
    font-variant-numeric: tabular-nums;
    transition: transform 0.1s;
}

/* Enhanced Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .marquee-content span {
        font-size: 1.25rem;
    }

    .marquee-content {
        gap: 2rem;
    }

    .marquee-dot {
        width: 6px;
        height: 6px;
    }
}

/* Hide grain on mobile for performance */
@media (max-width: 768px) {
    .grain-overlay {
        display: none;
    }
}

/* ================================
   LUXURY DESIGN ELEMENTS
   ================================ */

/* Section Watermark Text - Large background letters */
.section-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 700;
    color: rgba(201, 169, 98, 0.04);
    letter-spacing: -0.02em;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.section-watermark.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section-watermark.left {
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
}

.section-watermark.right {
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
}

/* Elegant Gold Divider Lines - HIDDEN per user request */
.luxury-divider {
    display: none !important;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.luxury-divider-icon {
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-accent);
    transform: rotate(45deg);
    position: relative;
}

.luxury-divider-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-accent);
}

/* Decorative Corner Accents */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--color-accent);
    border-style: solid;
    opacity: 0.3;
    transition: opacity 0.4s, width 0.4s, height 0.4s;
}

.corner-accent::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.corner-accent::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.corner-accent:hover::before,
.corner-accent:hover::after {
    opacity: 0.6;
    width: 60px;
    height: 60px;
}

/* Gold Glow Ambient Effect */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow.top-right {
    top: -200px;
    right: -200px;
}

.ambient-glow.bottom-left {
    bottom: -200px;
    left: -200px;
}

.ambient-glow.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Elegant Section Title Decoration */
.title-decorated {
    position: relative;
    display: inline-block;
}

.title-decorated::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    transform: translateY(-50%);
}

.title-decorated::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    transform: translateY(-50%);
}

/* Shimmer Effect for Buttons */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn-shimmer:hover::before {
    left: 100%;
}

/* Show More Button Container & Styles */
.show-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    opacity: 1;
    transition: all 0.5s var(--ease-out-quart);
}

.show-more-container.hidden {
    opacity: 0;
    pointer-events: none;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
}

.show-more-btn {
    position: relative;
}

.show-more-btn svg {
    transition: transform 0.3s var(--ease-out-quart);
}

.show-more-btn:hover svg {
    transform: translateY(3px);
}

/* Hidden Speakers - Initially Hidden */
.speaker-card-hidden {
    display: none;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

/* When revealed via show more */
.speaker-card-visible {
    display: block;
    animation: speakerReveal 0.6s var(--ease-out-quart) forwards;
}

/* Speaker Reveal Animation */
@keyframes speakerReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Gold Particles */
.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
}

.gold-particle:nth-child(2) { animation-delay: -2s; left: 20%; }
.gold-particle:nth-child(3) { animation-delay: -4s; left: 40%; }
.gold-particle:nth-child(4) { animation-delay: -6s; left: 60%; }
.gold-particle:nth-child(5) { animation-delay: -1s; left: 80%; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0.6;
    }
}

/* Luxury Card Border Glow */
.luxury-card {
    position: relative;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.luxury-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--color-accent), transparent, var(--color-accent));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.luxury-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 169, 98, 0.1);
}

.luxury-card:hover::before {
    opacity: 0.15;
}

/* Elegant Quote Styling */
.luxury-quote {
    position: relative;
    padding: 3rem 4rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-secondary);
    text-align: center;
}

.luxury-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}

.luxury-quote::after {
    content: '"';
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}

/* Decorative Vertical Lines */
.vertical-accent {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.vertical-accent.left { left: 3rem; top: 50%; transform: translateY(-50%); }
.vertical-accent.right { right: 3rem; top: 50%; transform: translateY(-50%); }

/* Section with Side Decorations */
section.luxury-section {
    position: relative;
}

section.luxury-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--color-accent) 50%, transparent);
    opacity: 0.2;
}

section.luxury-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--color-accent) 50%, transparent);
    opacity: 0.2;
}

/* Gold Underline Effect for Headings */
.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
}

.gold-underline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Luxury Icon Circle */
.luxury-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.luxury-icon::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
}

/* Elegant Number Styling */
.luxury-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Decorative Dots Pattern */
.dots-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--color-accent) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.15;
    pointer-events: none;
}

.dots-pattern.top-left { top: 2rem; left: 2rem; }
.dots-pattern.top-right { top: 2rem; right: 2rem; }
.dots-pattern.bottom-left { bottom: 2rem; left: 2rem; }
.dots-pattern.bottom-right { bottom: 2rem; right: 2rem; }

/* Animated Gold Ring */
.gold-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.gold-ring:nth-child(2) {
    width: 400px;
    height: 400px;
    animation-delay: -1s;
}

.gold-ring:nth-child(3) {
    width: 500px;
    height: 500px;
    animation-delay: -2s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

/* ================================
   AMBIENT "ALWAYS ALIVE" ANIMATIONS
   ================================ */

/* Subtle glow pulse animation */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.08);
    }
}

/* Continuous border traveling glow */
@keyframes borderTravel {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Floating animation - continuous up/down */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Rotating gradient */
@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Breathing scale */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Shimmer sweep effect */
@keyframes shimmerSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Subtle sway */
@keyframes sway {
    0%, 100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

/* Pulsing border */
@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(201, 169, 98, 0.1);
    }
    50% {
        border-color: rgba(201, 169, 98, 0.3);
    }
}

/* Continuous glow flicker */
@keyframes glowFlicker {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
    }
    25% {
        box-shadow: 0 0 25px rgba(201, 169, 98, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.2);
    }
    75% {
        box-shadow: 0 0 25px rgba(201, 169, 98, 0.15);
    }
}

/* Slow drift animation for watermarks */
@keyframes slowDrift {
    0%, 100% {
        transform: translate(-50%, -50%) translateX(0);
    }
    50% {
        transform: translate(-50%, -50%) translateX(10px);
    }
}

/* Dots pattern subtle shift */
@keyframes dotsShift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.15;
    }
    50% {
        transform: translate(5px, 5px);
        opacity: 0.2;
    }
}

/* Diamond pulse for decorative elements */
@keyframes diamondPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) scale(1.15);
        opacity: 0.8;
    }
}

/* Section line shimmer */
@keyframes lineShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Feature icon gentle bob */
@keyframes gentleBob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Stats number glow */
@keyframes numberGlow {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    }
}

/* Apply ambient glow animation */
.ambient-glow {
    animation: glowPulse 6s ease-in-out infinite;
}

.ambient-glow.top-right {
    animation-delay: -2s;
}

.ambient-glow.bottom-left {
    animation-delay: -4s;
}

/* Apply slow drift to watermarks */
.section-watermark.center {
    animation: slowDrift 20s ease-in-out infinite;
}

/* Apply shift to dots patterns */
.dots-pattern {
    animation: dotsShift 8s ease-in-out infinite;
}

.dots-pattern.top-right,
.dots-pattern.bottom-left {
    animation-delay: -4s;
}

/* Diamond line pulse */
.diamond-line span {
    animation: diamondPulse 3s ease-in-out infinite;
}

/* Feature icons gentle animation */
.feature-icon {
    animation: gentleBob 4s ease-in-out infinite;
}

.feature:nth-child(2) .feature-icon { animation-delay: -1s; }
.feature:nth-child(3) .feature-icon { animation-delay: -2s; }
.feature:nth-child(4) .feature-icon { animation-delay: -3s; }

/* Stats section number subtle glow */
.stat-number-large {
    animation: numberGlow 4s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-number-large { animation-delay: -1s; }
.stat-item:nth-child(3) .stat-number-large { animation-delay: -2s; }
.stat-item:nth-child(4) .stat-number-large { animation-delay: -3s; }

/* Luxury section side lines shimmer */
section.luxury-section::before,
section.luxury-section::after {
    background: linear-gradient(to bottom,
        transparent,
        rgba(201, 169, 98, 0.3) 20%,
        rgba(201, 169, 98, 0.5) 50%,
        rgba(201, 169, 98, 0.3) 80%,
        transparent
    );
    background-size: 100% 200%;
    animation: lineShimmer 8s ease-in-out infinite;
}

section.luxury-section::after {
    animation-delay: -4s;
}

/* Hero badge dot pulse */
.hero-badge .badge-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

/* Section tag dot pulse - uses centered version to preserve translateY */
.section-tag::before {
    animation: dotPulseCentered 3s ease-in-out infinite;
}

/* ================================
   MORE CONTINUOUS ANIMATIONS
   ================================ */

/* Speaker highlight cards - smooth glowing border effect */
.speaker-highlight-card {
    border: 1px solid rgba(201, 169, 98, 0.25);
    animation: borderGlow 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

@keyframes borderGlow {
    0% {
        border-color: rgba(201, 169, 98, 0.2);
        box-shadow:
            0 0 8px rgba(201, 169, 98, 0.08),
            0 0 16px rgba(201, 169, 98, 0.04);
    }
    25% {
        border-color: rgba(201, 169, 98, 0.28);
        box-shadow:
            0 0 10px rgba(201, 169, 98, 0.1),
            0 0 22px rgba(201, 169, 98, 0.06);
    }
    50% {
        border-color: rgba(201, 169, 98, 0.38);
        box-shadow:
            0 0 14px rgba(201, 169, 98, 0.15),
            0 0 28px rgba(201, 169, 98, 0.08),
            0 0 40px rgba(201, 169, 98, 0.04);
    }
    75% {
        border-color: rgba(201, 169, 98, 0.28);
        box-shadow:
            0 0 10px rgba(201, 169, 98, 0.1),
            0 0 22px rgba(201, 169, 98, 0.06);
    }
    100% {
        border-color: rgba(201, 169, 98, 0.2);
        box-shadow:
            0 0 8px rgba(201, 169, 98, 0.08),
            0 0 16px rgba(201, 169, 98, 0.04);
    }
}

/* Regular speaker cards - subtle float */
.speaker-card {
    animation: floatUpDown 6s ease-in-out infinite;
}

.speaker-card:nth-child(2) { animation-delay: -1s; }
.speaker-card:nth-child(3) { animation-delay: -2s; }
.speaker-card:nth-child(4) { animation-delay: -3s; }
.speaker-card:nth-child(5) { animation-delay: -4s; }
.speaker-card:nth-child(6) { animation-delay: -5s; }
.speaker-card:nth-child(7) { animation-delay: -0.5s; }
.speaker-card:nth-child(8) { animation-delay: -1.5s; }

/* Partner logos - floating animation */
.partner-logo {
    animation: floatUpDown 5s ease-in-out infinite;
}

.partner-logo:nth-child(2) { animation-delay: -0.5s; }
.partner-logo:nth-child(3) { animation-delay: -1s; }
.partner-logo:nth-child(4) { animation-delay: -1.5s; }
.partner-logo:nth-child(5) { animation-delay: -2s; }
.partner-logo:nth-child(6) { animation-delay: -2.5s; }
.partner-logo:nth-child(7) { animation-delay: -3s; }
.partner-logo:nth-child(8) { animation-delay: -3.5s; }
.partner-logo:nth-child(9) { animation-delay: -4s; }
.partner-logo:nth-child(10) { animation-delay: -4.5s; }

/* Gallery items - subtle breathing */
.gallery-item {
    animation: breathe 5s ease-in-out infinite;
}

.gallery-item:nth-child(2) { animation-delay: -1s; }
.gallery-item:nth-child(3) { animation-delay: -2s; }
.gallery-item:nth-child(4) { animation-delay: -3s; }
.gallery-item:nth-child(5) { animation-delay: -4s; }
.gallery-item:nth-child(6) { animation-delay: -0.5s; }
.gallery-item:nth-child(7) { animation-delay: -1.5s; }
.gallery-item:nth-child(8) { animation-delay: -2.5s; }

/* Gallery item shimmer overlay */
.gallery-item .gallery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.08), transparent);
    animation: shimmerSweep 8s ease-in-out infinite;
    pointer-events: none;
}

/* Feature boxes - pulsing border */
.feature {
    animation: borderPulse 4s ease-in-out infinite;
}

.feature:nth-child(2) { animation-delay: -1s; }
.feature:nth-child(3) { animation-delay: -2s; }
.feature:nth-child(4) { animation-delay: -3s; }

/* Chairman cards - subtle sway */
.chairman-card {
    animation: sway 6s ease-in-out infinite;
}

.chairman-card:nth-child(2) { animation-delay: -2s; }
.chairman-card:nth-child(3) { animation-delay: -4s; }

/* Photo grid items - breathing */
.photo-grid-item {
    animation: breathe 6s ease-in-out infinite;
}

.photo-grid-item:nth-child(2) { animation-delay: -2s; }
.photo-grid-item:nth-child(3) { animation-delay: -4s; }

/* Contact visual circles - rotating and pulsing */
.contact-visual .visual-circle {
    animation: rotateGradient 20s linear infinite, breathe 4s ease-in-out infinite;
}

/* Hero title accent - one-time shimmer on load */
.title-accent {
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -50%;
    width: 40%;
    height: 140%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 100%
    );
    filter: blur(4px);
    animation: none;
    opacity: 0;
    pointer-events: none;
}

/* Trigger shimmer animation only after intro video ends */
body.intro-complete .title-accent::after {
    animation: shimmerOnce 2s ease-in-out 0.5s forwards;
}

@keyframes shimmerOnce {
    0% {
        left: -50%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Stats background text - slow pulse */
.stats-bg-text {
    animation: glowPulse 6s ease-in-out infinite;
}

/* Team departments badges - floating */
.team-departments span {
    animation: floatUpDown 4s ease-in-out infinite;
}

.team-departments span:nth-child(2) { animation-delay: -0.8s; }
.team-departments span:nth-child(3) { animation-delay: -1.6s; }
.team-departments span:nth-child(4) { animation-delay: -2.4s; }
.team-departments span:nth-child(5) { animation-delay: -3.2s; }

/* Contact info items - subtle float */
.info-item {
    animation: floatUpDown 5s ease-in-out infinite;
}

.info-item:nth-child(2) { animation-delay: -1.6s; }
.info-item:nth-child(3) { animation-delay: -3.2s; }

/* Hero stats - individual floating */
.hero-stats .stat {
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-stats .stat:nth-child(2) { animation-delay: -1s; }
.hero-stats .stat:nth-child(3) { animation-delay: -2s; }
.hero-stats .stat:nth-child(4) { animation-delay: -3s; }

/* CTA button shimmer */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

/* Section titles - subtle glow */
.section-title {
    animation: numberGlow 5s ease-in-out infinite;
}

/* Section Tag Enhanced */
.section-tag {
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.section-tag::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: var(--color-bg);
    border-radius: 50%;
}

/* Luxury Gradient Text */
.text-luxury {
    background: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative Line with Diamond */
.diamond-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.diamond-line::before,
.diamond-line::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 150px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5));
}

.diamond-line::after {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.5), transparent);
}

.diamond-line span {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    transform: rotate(45deg);
}

/* Gallery Item Gold Accents */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.4), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.4), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

/* Featured Gallery Items - Subtle Corner Accents */
.gallery-item.featured {
    box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.08);
}

.gallery-item.featured:hover {
    box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.2);
}

/* Subtle Gold Glow on Photo Grid Items */
.photo-grid-item {
    position: relative;
}

.photo-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.photo-grid-item:hover::before {
    border-color: rgba(201, 169, 98, 0.3);
}

/* Chairman Card Gold Accents */
.chairman-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* Partner Logo Subtle Glow */
.partner-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), transparent, rgba(201, 169, 98, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.partner-logo:hover::after {
    opacity: 1;
}

/* Stats Section Decorative Lines */
.stat-item::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
}

/* Team Photo Wrapper Gold Frame Effect */
.team-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 20px;
    pointer-events: none;
}

.team-photo-wrapper::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(201, 169, 98, 0.08);
    border-radius: 24px;
    pointer-events: none;
}

/* Panel Highlight Gold Accent */
.panel-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    opacity: 0.5;
    z-index: 2;
}

/* Contact Section Enhanced Gold Rings */
.contact-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

/* Hide luxury elements on mobile for performance */
@media (max-width: 768px) {
    .section-watermark {
        display: none;
    }

    .ambient-glow {
        display: none;
    }

    .dots-pattern {
        display: none;
    }

    .gold-ring {
        display: none;
    }

    .vertical-accent {
        display: none;
    }

    section.luxury-section::before,
    section.luxury-section::after {
        display: none;
    }

    /* Hide gold frame effects on mobile */
    .team-photo-wrapper::before,
    .team-photo-wrapper::after,
    .gallery-item::before,
    .gallery-item::after,
    .panel-highlight::before {
        display: none;
    }

    /* Disable ALL continuous animations on mobile for performance */
    .diamond-line span,
    .feature-icon,
    .stat-number-large,
    .hero-badge .badge-dot,
    .section-tag::before,
    .marquee-dot,
    .speaker-highlight-card,
    .speaker-card,
    .partner-logo,
    .gallery-item,
    .feature,
    .chairman-card,
    .photo-grid-item,
    .stats-bg-text,
    .team-departments span,
    .info-item,
    .hero-stats .stat,
    .section-title,
    .contact-visual .visual-circle {
        animation: none !important;
    }

    /* Hide shimmer pseudo-elements on mobile */
    .gallery-item .gallery-overlay::before,
    .title-accent::after,
    .btn-primary::before {
        display: none !important;
    }

    /* Disable hover transforms on touch devices */
    .speaker-card:hover,
    .speaker-highlight-card:hover,
    .feature:hover,
    .chairman-card:hover,
    .partner-logo:hover {
        transform: none !important;
    }

    .speaker-card:hover .speaker-image,
    .speaker-highlight-card:hover {
        box-shadow: none !important;
    }

    .feature:hover .feature-icon {
        transform: none !important;
    }

    /* Disable tap/click effects on mobile */
    .feature,
    .partner-logo {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        transition: box-shadow 0.3s ease !important;
    }

    .feature:active,
    .feature:focus,
    .partner-logo:active,
    .partner-logo:focus {
        transform: none !important;
        border-color: var(--color-accent) !important;
        /* Keep yellow glow effect */
        box-shadow: 0 15px 50px -10px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.15) !important;
        /* Don't change background */
        background: linear-gradient(145deg, var(--color-bg-secondary) 0%, rgba(10, 16, 24, 0.7) 100%) !important;
    }

    .feature:active::before,
    .feature:focus::before {
        width: 60% !important;
        background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent) !important;
        transform: none !important;
    }

    .feature:active .feature-icon,
    .feature:focus .feature-icon {
        transform: none !important;
        scale: none !important;
        filter: none !important;
        animation: none !important;
    }

    .partner-logo:active,
    .partner-logo:focus {
        background: #ffffff !important;
        /* Keep yellow glow for partner logos too */
        box-shadow: 0 12px 30px rgba(201, 169, 98, 0.18) !important;
    }

    .partner-logo:active img,
    .partner-logo:focus img {
        transform: none !important;
        scale: none !important;
        filter: none !important;
        animation: none !important;
    }
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-bg);
    stroke-width: 2.5;
    fill: none;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ================================ */

@media (max-width: 768px) {
    /* Intro Video - prevent zoom/cutoff */
    .intro-overlay video {
        object-fit: contain;
        background: #000000;
    }

    .intro-skip {
        bottom: 2rem;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    /* Hero Section - Reduced height, better spacing */
    .hero {
        min-height: auto;
        padding: 0 1rem;
        padding-top: calc(var(--nav-height) + 1.5rem);
        padding-bottom: 2rem;
    }

    .hero-video-container {
        /* Let video show more content by not forcing full cover */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none !important;
    }

    .hero-video {
        object-fit: cover;
        object-position: center center;
        transform: none !important;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    /* Hero badge - prevent overlap with nav */
    .hero-badge {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    /* Hero stats - 2x2 grid to save height */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero-stats .stat-plus {
        font-size: 1rem;
    }

    .hero-stats .stat-label {
        font-size: 0.65rem;
    }

    /* Hero CTA - centered button with margin */
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-cta .btn {
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Section Titles - with decorative underline on mobile */
    .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        line-height: 1.2;
        position: relative;
        padding-bottom: 0.75rem;
        margin-bottom: 0;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    }

    .section-header.center .section-title::after,
    .section-header .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 0.75rem;
        margin-bottom: 0;
    }

    .section-tag {
        font-size: 0.6rem;
        margin-bottom: 0.5rem;
    }

    /* Tighter section headers */
    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-header.center {
        margin-bottom: 1.25rem;
    }

    /* Reduce section padding */
    .about, .speakers, .experience, .partners, .contact {
        padding: 2rem 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    /* Hide luxury dividers completely on mobile */
    .luxury-divider {
        display: none !important;
    }

    /* Mobile section separators - short gold accent lines only */
    .speakers,
    .about,
    .experience,
    .partners {
        position: relative;
    }

    .speakers::before,
    .about::before,
    .experience::before,
    .partners::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    }

    /* About Section Design - Mobile Enhancements */
    .about {
        background: linear-gradient(180deg,
            rgba(201, 169, 98, 0.04) 0%,
            var(--color-bg) 40%,
            var(--color-bg) 100%);
    }

    .about::after {
        width: 80px;
        height: 2px;
    }

    .about .about-container::before,
    .about .about-container::after {
        display: none;
    }

    /* Mobile Feature Boxes with accent styling */
    .about .feature {
        padding: 1.25rem;
        background: linear-gradient(145deg,
            rgba(201, 169, 98, 0.05) 0%,
            var(--color-bg-secondary) 100%);
        border-color: rgba(201, 169, 98, 0.1);
    }

    .about .feature::before {
        width: 40%;
    }

    /* Mobile about-features spacing */
    .about-features {
        margin-bottom: 3rem;
    }

    /* ===== SPEAKERS SECTION ===== */

    /* Speaker section header - tighter spacing */
    .speakers .section-header {
        margin-bottom: 0.5rem;
    }

    /* Speaker Highlights - on mobile, merges seamlessly with speakers-grid as one list */
    .speaker-highlights {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-bottom: 0.75rem !important; /* Same as gap for seamless flow into speakers-grid */
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Hide corner accent decorations on mobile - speakers should look identical */
    .speaker-highlight-card.corner-accent::before,
    .speaker-highlight-card.corner-accent::after {
        display: none;
    }

    .speaker-highlight-card {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        background: linear-gradient(145deg, rgba(10, 16, 24, 0.8), rgba(4, 8, 16, 0.9)) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        min-height: 90px !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .speaker-highlight-card:hover {
        transform: none;
        box-shadow: none;
    }

    .highlight-card-image {
        position: static !important;
        width: 80px !important;
        min-width: 80px !important;
        height: 80px !important;
        aspect-ratio: unset !important;
        padding: 0 !important;
        margin: 0.75rem !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    .highlight-card-image > img {
        width: auto !important;
        height: auto !important;
        max-height: 90px !important;
        max-width: 100% !important;
        object-fit: contain !important;
        object-position: bottom center !important;
        transition: none !important;
        transform: translateY(5px) !important;
    }

    .speaker-highlight-card:hover .highlight-card-image > img {
        transform: translateY(5px) !important;
    }

    .highlight-card-logo {
        display: none;
    }

    .highlight-card-tag {
        display: none;
    }

    .highlight-card-content {
        position: static !important;
        flex: 1 !important;
        padding: 0.75rem !important;
        padding-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        background: transparent !important;
    }

    .highlight-card-name {
        font-size: 1.6055rem;
        margin-bottom: 0.2rem;
    }

    .highlight-card-role {
        font-size: 0.6552rem;
        margin-bottom: 0.1rem;
    }

    .highlight-card-company {
        font-size: 0.61425rem;
    }

    /* Speakers Grid - same style as highlight cards, flows as one list */
    .speakers-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 0 !important; /* No extra space - continues seamlessly from highlights */
    }

    .speaker-card {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        background: linear-gradient(145deg, rgba(10, 16, 24, 0.8), rgba(4, 8, 16, 0.9)) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        min-height: 90px !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .speaker-card:hover {
        transform: none !important;
        box-shadow: none !important;
        z-index: auto !important;
    }

    /* Reset base .speaker-image styles on mobile */
    .speaker-image {
        position: static !important;
        aspect-ratio: unset !important;
        transition: none !important;
    }

    .speaker-image img {
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .speaker-card .speaker-image {
        position: static !important;
        width: 80px !important;
        min-width: 80px !important;
        height: 80px !important;
        aspect-ratio: unset !important;
        border-radius: 8px !important;
        margin: 0.75rem !important;
        overflow: hidden !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        transition: none !important;
        transform: none !important;
    }

    .speaker-card:hover .speaker-image {
        transform: none !important;
        box-shadow: none !important;
    }

    .speaker-card .speaker-image img {
        width: auto !important;
        height: auto !important;
        max-height: 90px !important;
        max-width: 100% !important;
        object-fit: contain !important;
        object-position: bottom center !important;
        transform: translateY(5px) !important;
    }

    .speaker-card .speaker-info {
        flex: 1;
        padding: 0.75rem;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .speaker-name {
        font-size: 1.6055rem;
        margin-bottom: 0.2rem;
    }

    .speaker-role {
        font-size: 0.6552rem;
        margin-bottom: 0.1rem;
    }

    .speaker-company {
        font-size: 0.61425rem;
    }

    .speaker-logo-badge {
        display: none;
    }

    /* Hidden speakers - ensure no space taken up */
    .speaker-card-hidden {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* ===== GALLERY SECTION ===== */

    .experience-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .gallery-item.featured,
    .gallery-item.portrait {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Let images show naturally - no forced aspect ratios */
    .gallery-item img {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        max-height: none;
        object-fit: contain;
    }

    .gallery-item.portrait img {
        aspect-ratio: unset;
        max-height: none;
    }

    .gallery-item.featured img {
        aspect-ratio: unset;
        max-height: none;
    }

    .gallery-overlay {
        padding: 0.75rem;
    }

    .gallery-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* ===== ABOUT FEATURES (Pitch Battle etc) ===== */

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .feature {
        padding: 1rem;
        margin-bottom: 0;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .feature h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .feature p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* ===== PARTNERS SECTION ===== */

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .partner-logo {
        padding: 0.5rem;
        min-height: 70px;
        aspect-ratio: unset;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        transform: none;
        box-shadow: none;
    }

    .partner-logo img {
        width: 85%;
        max-width: 85%;
        height: auto;
        min-height: 45px;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    /* ===== OTHER SECTIONS ===== */

    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number-large {
        font-size: 2rem;
    }

    .stat-plus-large {
        font-size: 1.5rem;
    }

    .stat-label-large {
        font-size: 0.65rem;
    }

    /* About Section */
    .about-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .about-text-block {
        margin-top: 0;
    }

    .about-lead {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .about-text {
        font-size: 0.8rem;
    }

    .about-photo-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .photo-grid-item.main,
    .photo-grid-item.wide {
        grid-column: span 1;
    }

    /* Panel Highlights - prevent overlap */
    .panel-highlight {
        min-height: auto;
        margin-bottom: 0;
    }

    .panel-content {
        padding: 1.25rem 1rem;
    }

    .panel-tag {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .panel-content h2 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .panel-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Panels intro section - extra top spacing after about */
    .panels-intro {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }

    .panels-intro .section-header {
        margin-bottom: 0;
    }

    /* Experience section */
    .experience .section-header {
        margin-bottom: 1rem;
    }

    /* Partners section */
    .partners .section-header {
        margin-bottom: 1rem;
    }

    .diamond-line {
        margin-top: 0.75rem;
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-col h4 {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .footer-col a {
        font-size: 0.75rem;
    }

    /* Marquee - smaller text */
    .marquee-section {
        padding: 0.5rem 0;
    }

    .marquee-content span {
        font-size: 0.85rem;
    }

    .marquee-content {
        gap: 1rem;
    }

    /* Navigation */
    .nav {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-logo .logo-subtext {
        font-size: 0.6rem;
    }

    /* Disable tap/click effects on mobile - prevent position shifts */
    .feature,
    .partner-logo {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        transition: box-shadow 0.3s ease !important;
    }

    .feature:active,
    .feature:focus,
    .partner-logo:active,
    .partner-logo:focus {
        transform: none !important;
        border-color: var(--color-accent) !important;
        box-shadow: 0 15px 50px -10px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.15) !important;
    }

    .feature:active .feature-icon,
    .feature:focus .feature-icon,
    .partner-logo:active img,
    .partner-logo:focus img {
        transform: none !important;
        scale: none !important;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    /* Even smaller hero */
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }

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

    .hero-stats .stat-number {
        font-size: 1.25rem;
    }

    .hero-stats .stat-label {
        font-size: 0.6rem;
    }

    /* Sections - minimal padding */
    .about, .speakers, .experience, .partners, .contact {
        padding: 1.5rem 0.75rem;
    }

    .stats-section {
        padding: 1.5rem 0.75rem;
    }

    /* Ensure luxury dividers stay hidden at extra small screens */
    .luxury-divider {
        display: none !important;
    }

    /* Section titles */
    .section-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    /* Speaker cards - slightly smaller on very small screens */
    .speaker-card .speaker-image,
    .highlight-card-image {
        width: 65px;
        min-width: 65px;
        height: 65px;
        aspect-ratio: unset;
    }

    .speaker-card,
    .speaker-highlight-card {
        min-height: 80px;
    }

    .speaker-name,
    .highlight-card-name {
        font-size: 1.105rem;
    }

    .speaker-role,
    .highlight-card-role {
        font-size: 0.595rem;
    }

    .speaker-company,
    .highlight-card-company {
        font-size: 0.595rem;
    }

    .highlight-card-image > img,
    .speaker-card .speaker-image img {
        max-height: 75px;
    }

    /* Panel sections */
    .panel-content h2 {
        font-size: 1rem;
    }

    .panel-content p {
        font-size: 0.7rem;
    }

    /* Partners - 2 per row, logos fill space */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .partner-logo {
        min-height: 60px;
        padding: 0.4rem;
        background: #ffffff;
        aspect-ratio: unset;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-logo img {
        width: 85%;
        max-width: 85%;
        height: auto;
        min-height: 40px;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    /* Buttons */
    .btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.9rem;
    }

    .hero-cta .btn {
        min-width: 160px;
    }

    /* Disable tap/click effects on mobile - prevent position shifts */
    .feature,
    .partner-logo {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        transition: box-shadow 0.3s ease !important;
    }

    .feature:active,
    .feature:focus,
    .partner-logo:active,
    .partner-logo:focus {
        transform: none !important;
        border-color: var(--color-accent) !important;
        box-shadow: 0 15px 50px -10px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.15) !important;
    }

    .feature:active .feature-icon,
    .feature:focus .feature-icon,
    .partner-logo:active img,
    .partner-logo:focus img {
        transform: none !important;
        scale: none !important;
    }
}

/* Fix for landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .intro-overlay video {
        object-fit: cover;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 1rem);
        padding-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .hero-badge {
        margin-top: 0.5rem;
    }

    /* Disable tap/click effects on mobile landscape */
    .feature,
    .partner-logo {
        -webkit-tap-highlight-color: transparent;
        transition: box-shadow 0.3s ease !important;
    }

    .feature:active,
    .feature:focus,
    .partner-logo:active,
    .partner-logo:focus {
        transform: none !important;
        box-shadow: 0 15px 50px -10px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.15) !important;
    }

    .feature:active .feature-icon,
    .feature:focus .feature-icon,
    .partner-logo:active img,
    .partner-logo:focus img {
        transform: none !important;
        scale: none !important;
    }
}
