/* ==========================================================================
   Nerdearla 2025 - Main Stylesheet
   ========================================================================== */

/* Skip Navigation Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-primary, #FF323C);
    color: #fff;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Nerdearla Brand Colors */
    --color-amarillo: #FFBA00;
    --color-verde: #00ACA8;
    --color-rojo: #FF323C;
    --color-negro: #000000;

    --nerd-yellow: #FFBA00;
    --nerd-red: #FF323C;
    --nerd-blue: #00ACA8;
    --nerd-mustard: #D4A017;
    --nerd-dark-blue: #1E3A5F;
    --nerd-lightblue: #5BA4CF;
    --nerd-purple: #8B5CF6;
    --nerd-lightgreen: #34D399;
    --nerd-orange: #F97316;
    --nerd-green: #10B981;
    --nerd-gray: #6B7280;

    /* Colors */
    --color-bg: #000000;
    --color-bg-alt: #0a0a0a;
    --color-bg-card: #111111;
    --color-surface: #1a1a1a;

    --color-text: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #929292;

    --color-primary: var(--color-rojo);
    --color-primary-light: #FF5A62;
    --color-secondary: var(--color-verde);

    --color-accent-pink: var(--color-rojo);
    --color-accent-orange: var(--color-amarillo);
    --color-accent-green: var(--color-verde);
    --color-accent-blue: var(--color-verde);
    --color-accent-yellow: var(--color-amarillo);
    --color-accent-red: var(--color-rojo);
    --color-accent-teal: var(--color-verde);

    /* Gradients - Using Nerdearla brand colors */
    --gradient-primary: linear-gradient(135deg, var(--color-rojo) 0%, var(--color-amarillo) 50%, var(--color-verde) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(255, 50, 60, 0.15) 0%, transparent 50%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);

    /* Typography - Nerdearla Brand */
    --font-display: 'Rift Soft', 'Arial Black', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Rift Soft', 'Arial Black', sans-serif;
    --font-tertiary: 'Barlow', 'Roboto', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 50, 60, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
}

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

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

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

ul,
ol {
    list-style: none;
}

button,
input {
    font-family: inherit;
    font-size: inherit;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--space-20) 0;
}

.section--dark {
    background-color: var(--color-bg-alt);
}

.section--alt {
    background-color: var(--color-bg-card);
}

.section--light {
    background-color: #D8E3E6;
}

.section--white {
    background-color: #ffffff;
}

.section--white .section__tag,
.section--white .section__title {
    color: var(--color-negro);
}

.section--white .section__subtitle {
    color: var(--color-negro);
}

.section--white .sponsors__tier-label {
    color: var(--color-negro);
}

.section--light .section__tag,
.section--light .section__title {
    color: var(--color-negro);
}

.section--cta {
    background: var(--gradient-hero);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__header--left {
    text-align: left;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: var(--space-4);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    text-align: center;
}

.section__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: 600;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-rojo);
    color: white;
    border-color: var(--color-rojo);
}

.btn--primary:hover {
    background: #FF2D00;
    border-color: #FF2D00;
    transform: translateY(-2px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text-muted);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

/* Full logo visible by default, short logo hidden */
.nav__logo-img--full {
    display: block;
}

.nav__logo-img--short {
    display: none;
}

/* When scrolled, swap logos */
.header.scrolled .nav__logo-img--full {
    display: none;
}

.header.scrolled .nav__logo-img--short {
    display: block;
}

.logo-text {
    color: var(--color-rojo);
}

.text-highlight {
    color: var(--color-amarillo);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    gap: var(--space-4);
}

.nav__menu.active {
    display: flex;
}

.nav__link {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

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

.nav__cta {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    padding: var(--space-3) var(--space-5);
    background: var(--color-rojo);
    border-radius: var(--radius-lg);
    color: white;
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: #FF2D00;
    transform: translateY(-2px);
}

/* Dropdown Navigation */
.nav__dropdown {
    position: relative;
}

.nav__link--dropdown {
    cursor: pointer;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 160px;
    z-index: 100;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
    display: block;
}

.nav__dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.15s;
}

.nav__dropdown-link:hover {
    background: #1A1A1A;
}

/* Mobile dropdown - show inline */
@media (max-width: 1023px) {
    .nav__dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
        padding-left: 1rem;
    }

    .nav__dropdown:hover .nav__dropdown-menu,
    .nav__dropdown.active .nav__dropdown-menu {
        display: block;
    }
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-8);
        padding: 0;
        background: transparent;
        border: none;
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 4vh);
    padding-bottom: 260px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8) var(--space-6);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3em;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-5);
    color: #ffffff;
    background: rgba(255, 50, 60, 0.2);
    border: 1px solid rgba(255, 50, 60, 0.4);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(255, 50, 60, 0.15);
    margin-bottom: var(--space-8);
    transition: all var(--transition-base);
    letter-spacing: 0.05em;
}

.hero__badge-city {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    white-space: nowrap;
}

.hero__badge-sep {
    opacity: 0.6;
}

.hero__badge-city img {
    display: inline-block;
    height: 1em;
    width: auto;
    flex-shrink: 0;
}

.hero__badge:hover {
    background: rgba(255, 50, 60, 0.3);
    border-color: var(--color-rojo);
    transform: translateY(-2px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.05;
    /* More compressed for premium feel */
    margin-bottom: var(--space-8);
    /* Increased spacing */
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-8);
}


.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto;
    padding-top: 0;
    position: relative;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-amarillo);
    /* Use yellow for numbers for better contrast */
    line-height: 1;
    margin-bottom: var(--space-1);
    transition: transform var(--transition-base);
}

.stat:hover .stat__number {
    transform: scale(1.1);
}

.stat__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Hero Responsive */
@media (max-width: 639px) {
    .hero {
        padding-top: calc(var(--header-height) + 1vh);
        padding-bottom: 150px;
    }

    .hero__badge {
        border-radius: var(--radius-lg);
        padding: var(--space-1) var(--space-2);
        gap: 0.2em 0.3em;
        font-size: 0.65rem;
        max-width: 100%;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__stats {
        gap: var(--space-1);
    }

    .stat__number {
        font-size: 1.25rem;
    }

    .stat__label {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }
}

@media (min-width: 640px) {
    .hero__title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--text-6xl);
    }

    .stat__number {
        font-size: var(--text-4xl);
    }
}

/* --------------------------------------------------------------------------
   Events Section (unified with stats)
   -------------------------------------------------------------------------- */
.events {
    background: var(--color-bg-alt);
    padding: var(--space-12) 0;
}

/* Stats Strip */
.events__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
}

.events__stat {
    text-align: center;
}

.events__stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-amarillo);
    line-height: 1;
}

.events__stat-plus {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary-light);
}

.events__stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-1);
}

/* Event Cards Grid */
.events__grid {
    display: grid;
    gap: var(--space-4);
}

.event-card {
    position: relative;
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 220px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.event-card:hover {
    border-color: var(--color-rojo);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 50, 60, 0.15);
}

.event-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card__image {
    transform: scale(1.08);
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.event-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
}

.event-card__badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-1) var(--space-3);
    background: var(--color-rojo);
    color: white;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.event-card__city {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.event-card__date {
    font-size: var(--text-sm);
    color: var(--color-amarillo);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.event-card__arrow {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    transition: all var(--transition-fast);
}

.event-card:hover .event-card__arrow {
    background: var(--color-rojo);
    transform: translate(2px, -2px);
}

/* Featured Card */
.event-card--featured {
    border-color: var(--color-rojo);
}

@media (min-width: 768px) {
    .events__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .events__stat-number {
        font-size: var(--text-5xl);
    }

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

    .event-card {
        min-height: 280px;
    }

    .event-card--featured {
        grid-column: span 2;
        min-height: 320px;
    }

    .event-card--featured .event-card__city {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1024px) {
    .events__stat-number {
        font-size: var(--text-5xl);
    }

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

    .event-card {
        min-height: 240px;
    }

    .event-card--featured {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 100%;
    }

    .event-card--featured .event-card__city {
        font-size: var(--text-3xl);
    }

    .event-card--wide {
        grid-column: 2 / 4;
    }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about__grid {
    display: grid;
    gap: var(--space-12);
}

.about__content {
    max-width: 600px;
}

.about__text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.about__text strong {
    color: var(--color-text);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.feature {
    display: flex;
    gap: var(--space-4);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 50, 60, 0.15);
    border-radius: var(--radius-lg);
    color: var(--color-primary-light);
}

.feature__icon svg {
    width: 24px;
    height: 24px;
}

.feature__content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.feature__content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.about__visual {
    display: none;
}

.about__image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.about__image {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    min-height: 200px;
}

.about__image--1 {
    grid-column: span 2;
    min-height: 250px;
    background: url('https://nerdearla.com/static/images/stage-en-vivo.jpg') center/cover no-repeat;
}

.about__image--2 {
    background: url('https://nerdearla.com/static/images/keynote-vogels.jpg') center/cover no-repeat;
}

.about__image--3 {
    background: url('https://nerdearla.com/static/images/crowd-venue.jpg') center/cover no-repeat;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about__visual {
        display: block;
    }
}

/* --------------------------------------------------------------------------
   Speakers Section
   -------------------------------------------------------------------------- */
.speakers__grid {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.speaker-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 50, 60, 0.3);
    box-shadow: var(--shadow-lg);
}

.speaker-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-card__placeholder {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text-muted);
}

.speaker-collage {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.speaker-collage__item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.speaker-collage__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-collage__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-4xl);
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.speaker-card:hover .speaker-collage__img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.1);
}

.speaker-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-card__content {
    padding: var(--space-6);
}

.speaker-card__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 50, 60, 0.2);
    color: var(--color-primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
}

.speaker-card__badge--secondary {
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-amarillo);
}

.speaker-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.speaker-card__role {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.speaker-card__bio {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.speaker-card--featured {
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, rgba(255, 186, 0, 0.1) 100%);
    border-color: rgba(255, 50, 60, 0.2);
}

.speakers__cta {
    text-align: center;
}

@media (min-width: 768px) {
    .speakers__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .speaker-card--featured {
        grid-column: span 1;
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials__carousel {
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(100% - var(--space-2) * 2);
    padding: var(--space-8);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    margin: 0 var(--space-2);
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    position: relative;
    overflow-wrap: break-word;
}

.testimonial-card__quote::before,
.testimonial-card__quote::after {
    font-size: 4rem;
    color: var(--color-amarillo);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__quote::before {
    content: '\201C';
    display: block;
    margin-bottom: -1.5rem;
}

.testimonial-card__quote::after {
    content: '\201D';
    display: block;
    text-align: right;
    margin-top: -1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-rojo) 0%, var(--color-amarillo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    color: white;
    flex-shrink: 0;
}

img.testimonial-card__avatar {
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-text);
}

.testimonial-card__role {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-surface);
    background: transparent;
    color: var(--color-text);
    font-size: var(--text-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__btn:hover {
    border-color: var(--color-rojo);
    color: var(--color-rojo);
}

.testimonials__dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-surface);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__dot.active,
.testimonials__dot:hover {
    background: var(--color-rojo);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-2) * 2);
    }

    .testimonial-card__quote {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-4) * 2);
        margin: 0 var(--space-4);
    }
}

/* --------------------------------------------------------------------------
   Tracks Section
   -------------------------------------------------------------------------- */
.tracks__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.track-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.track-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.track-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.track-card__icon svg {
    width: 24px;
    height: 24px;
}

.track-card[data-color="blue"] .track-card__icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-accent-blue);
}

.track-card[data-color="purple"] .track-card__icon {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-primary);
}

.track-card[data-color="pink"] .track-card__icon {
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-accent-pink);
}

.track-card[data-color="red"] .track-card__icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-accent-red);
}

.track-card[data-color="green"] .track-card__icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-accent-green);
}

.track-card[data-color="orange"] .track-card__icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-accent-orange);
}

.track-card[data-color="teal"] .track-card__icon {
    background: rgba(20, 184, 166, 0.15);
    color: var(--color-accent-teal);
}

.track-card[data-color="yellow"] .track-card__icon {
    background: rgba(234, 179, 8, 0.15);
    color: var(--color-accent-yellow);
}

.track-card[data-color="indigo"] .track-card__icon {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.track-card[data-color="emerald"] .track-card__icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.track-card[data-color="cyan"] .track-card__icon {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.track-card[data-color="rose"] .track-card__icon {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.track-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.track-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.tracks__more {
    text-align: center;
    margin-top: var(--space-8);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

@media (min-width: 768px) {
    .tracks__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Agenda Section
   -------------------------------------------------------------------------- */
.agenda__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.agenda__day {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.agenda__day:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.agenda__day--highlight {
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
    border-color: rgba(255, 50, 60, 0.2);
}

.agenda__date {
    flex-shrink: 0;
    text-align: center;
    min-width: 60px;
}

.agenda__day-name {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.agenda__day-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
}

.agenda__info h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.agenda__info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.agenda__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.agenda__badge--virtual {
    background: rgba(0, 172, 168, 0.15);
    color: var(--color-secondary);
}

.agenda__badge--hybrid {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-primary-light);
}

.agenda__cta {
    text-align: center;
}

/* --------------------------------------------------------------------------
   Sponsors Section
   -------------------------------------------------------------------------- */
.sponsors__value {
    margin-bottom: var(--space-16);
}

.sponsors__value-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-8);
}

.sponsors__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    background: var(--color-bg);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-verde);
    margin-bottom: var(--space-2);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.benefit-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.sponsors__tiers {
    margin-bottom: var(--space-16);
}

.sponsors__tiers-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-8);
}

.sponsors__tiers-grid {
    display: grid;
    gap: var(--space-6);
}

.tier-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card__header {
    padding: var(--space-4) var(--space-6);
    text-align: center;
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
}

.tier-card--platinum .tier-card__header {
    background: linear-gradient(135deg, #e5e4e2 0%, #a3a3a3 100%);
    color: #1a1a1a;
}

.tier-card--gold .tier-card__header {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #1a1a1a;
}

.tier-card--silver .tier-card__header {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #1a1a1a;
}

.tier-card__benefits {
    padding: var(--space-6);
}

.tier-card__benefits li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.tier-card__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACA8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.sponsors__current {
    margin-bottom: var(--space-12);
}

.sponsors__current-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-10);
}

.section--light .sponsors__current-title {
    color: var(--color-negro);
}

.sponsors__tier {
    margin-bottom: var(--space-8);
}

.sponsors__tier-label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-4);
}

.section--light .sponsors__tier-label {
    color: #929292;
}

.sponsors__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.sponsor-logo {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    width: 120px;
    /* Default width */
    height: 60px;
    /* Default height */
    object-fit: contain;
}

.sponsor-logo:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.section--light .sponsor-logo,
.section--white .sponsor-logo {
    background: transparent;
    border: none;
    padding: var(--space-2);
}

.section--light .sponsor-logo:hover,
.section--white .sponsor-logo:hover {
    border: none;
    box-shadow: none;
    transform: scale(1.08);
}

/* Adamantium - Largest */
.sponsors__logos--adamantium .sponsor-logo {
    width: 288px;
    height: 120px;
    padding: var(--space-6);
}

/* Diamond */
.sponsors__logos--diamond .sponsor-logo {
    width: 216px;
    height: 96px;
    padding: var(--space-5);
}

/* Platinum */
.sponsors__logos--platinum {
    max-width: 680px;
    margin: 0 auto;
}
.sponsors__logos--platinum .sponsor-logo {
    width: 168px;
    height: 72px;
    padding: var(--space-4);
}
/* Walmart Chile slightly smaller, CodeRabbit slightly bigger */
.sponsors__logos--platinum .sponsor-logo[alt="Walmart"],
.sponsors__logos--platinum .sponsor-logo[alt="Walmart Chile"] {
    width: 151px;
    height: 65px;
}
.sponsors__logos--platinum .sponsor-logo[alt="CodeRabbit"] {
    width: 185px;
    height: 79px;
}

/* Gold */
.sponsors__logos--gold .sponsor-logo {
    width: 144px;
    height: 60px;
    padding: var(--space-4);
}

/* Silver */
.sponsors__logos--silver .sponsor-logo {
    width: 120px;
    height: 48px;
    padding: var(--space-3);
}

/* Bronze */
.sponsors__logos--bronze {
    max-width: 560px;
    margin: 0 auto;
}
.sponsors__logos--bronze .sponsor-logo {
    width: 115px;
    height: 43px;
    padding: var(--space-3);
}

@media (min-width: 768px) {
    .sponsors__logos--adamantium .sponsor-logo {
        width: 384px;
        height: 144px;
    }

    .sponsors__logos--diamond .sponsor-logo {
        width: 288px;
        height: 120px;
    }

    .sponsors__logos--platinum {
        max-width: 860px;
    }
    .sponsors__logos--platinum .sponsor-logo {
        width: 216px;
        height: 96px;
    }
    .sponsors__logos--platinum .sponsor-logo[alt="Walmart"],
    .sponsors__logos--platinum .sponsor-logo[alt="Walmart Chile"] {
        width: 194px;
        height: 86px;
    }
    .sponsors__logos--platinum .sponsor-logo[alt="CodeRabbit"] {
        width: 238px;
        height: 106px;
    }

    .sponsors__logos--gold .sponsor-logo {
        width: 192px;
        height: 84px;
    }

    .sponsors__logos--silver .sponsor-logo {
        width: 168px;
        height: 72px;
    }

    .sponsors__logos--bronze {
        max-width: 820px;
    }
    .sponsors__logos--bronze .sponsor-logo {
        width: 173px;
        height: 72px;
    }
}

.sponsors__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .sponsors__benefits {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

/* --------------------------------------------------------------------------
   Location Section
   -------------------------------------------------------------------------- */
.location__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.location__tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.location__tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.location__tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.location__tab-flag {
    font-size: 1.25rem;
}

.location__map-iframe {
    border: 0;
    border-radius: var(--radius-xl);
}

/* Fade transition for location tab switching */
.location__content,
.location__map iframe {
    transition: opacity 0.3s ease;
}

.location__grid.fading .location__content,
.location__grid.fading .location__map iframe {
    opacity: 0.5;
}

.location__grid {
    display: grid;
    gap: var(--space-8);
}

.location__content {
    max-width: 500px;
}

.location__address {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.location__description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.location__details {
    margin-bottom: var(--space-6);
}

.location__detail {
    padding: var(--space-2) 0;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.location__detail strong {
    color: var(--color-text);
}

.location__map {
    min-height: 300px;
}

.location__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .location__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .location__map {
        height: 100%;
    }
}

/* --------------------------------------------------------------------------
   Register Section
   -------------------------------------------------------------------------- */
.register__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.register__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.register__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.register__form {
    margin-bottom: var(--space-8);
}

.register__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.register__input {
    padding: var(--space-4) var(--space-6);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.register__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 50, 60, 0.2);
}

.register__input::placeholder {
    color: var(--color-text-muted);
}

.register__note {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-4);
}

.register__social {
    margin-top: 2rem;
}

.register__social p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .register__inputs {
        flex-direction: row;
    }

    .register__input {
        flex: 1;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-alt);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    gap: var(--space-12);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-rojo);
    display: block;
    margin-left: -6px;
}

.footer__logo-img {
    height: 48px;
    width: auto;
}

.footer__tagline {
    color: var(--color-text-muted);
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-8, 3rem);
}

.footer__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.footer__lang-option {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    cursor: pointer;
}

.footer__lang-option:hover {
    color: var(--color-text);
}

.footer__lang-option--active {
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.footer__lang-separator {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    user-select: none;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.footer__column h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__column a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__column a:hover {
    color: var(--color-text);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 2fr;
    }

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

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Initial hidden state for scroll-triggered animations */
.scroll-animate-init {
    opacity: 0;
    transform: translateY(12px);
    will-change: transform, opacity;
}

.animate-fade-in-up {
    animation: fadeInUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Particle animation */
@keyframes float {

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

    50% {
        transform: translate(var(--particle-tx), var(--particle-ty)) scale(1.2);
        opacity: 1;
    }
}

.particle {
    position: absolute;
    width: var(--particle-size);
    height: var(--particle-size);
    background: rgba(255, 50, 60, var(--particle-alpha));
    border-radius: 50%;
    left: var(--particle-x);
    top: var(--particle-y);
    animation: float var(--particle-duration) ease-in-out var(--particle-delay) infinite;
}

/* Lightbox open state - prevents body scroll */
.lightbox-open {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    /* Exclude marquee from global animation removal as it's slow ambient motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-content {
        animation-duration: 120s !important;
        animation-iteration-count: infinite !important;
    }

    .press-speakers__track {
        animation-duration: 60s !important;
        animation-iteration-count: infinite !important;
    }

    /* Show elements immediately when reduced motion is preferred */
    .scroll-animate-init {
        opacity: 1 !important;
        transform: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Sponsors Page Styles
   ========================================================================== */

/* Header solid variant for internal pages */
.header--solid {
    background: var(--color-bg);
}

/* Sponsors Hero */
.sponsors-hero {
    padding: calc(var(--space-20) + 80px) 0 var(--space-16);
    background: linear-gradient(180deg, rgba(255, 50, 60, 0.1) 0%, transparent 100%);
}

.sponsors-hero--slideshow {
    position: relative;
    overflow: hidden;
    background: none;
}

.sponsors-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sponsors-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.sponsors-hero__bg-img--active {
    opacity: 1;
}

.sponsors-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.sponsors-hero--slideshow .sponsors-hero__content {
    position: relative;
    z-index: 2;
}

.sponsors-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.sponsors-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.sponsors-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsors-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .sponsors-hero__title {
        font-size: var(--text-5xl);
    }
}

/* Why Sponsor Section */
.why-sponsor__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .why-sponsor__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .why-sponsor__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Value Proposition Section */
.value-prop__grid {
    display: grid;
    gap: var(--space-12);
}

.value-prop__content {
    height: 100%;
}

.value-prop__list {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: var(--space-4);
    height: 100%;
    margin: 0;
}

.value-prop__list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-verde);
}

.value-prop__list li strong {
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--color-text);
}

.value-prop__list li span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.value-prop__stats {
    display: grid;
    gap: var(--space-4);
}

.value-prop__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: var(--space-8);
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-prop__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-amarillo);
    margin-bottom: var(--space-2);
}

.value-prop__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .value-prop__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .value-prop__stats {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

/* Packages Section */
.packages__grid {
    display: grid;
    gap: var(--space-4);
}

.tier-card {
    position: relative;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.tier-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.tier-card--featured {
    border-color: var(--color-rojo);
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, transparent 100%);
}

.tier-card--premium {
    border-color: var(--color-amarillo);
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.1) 0%, transparent 100%);
}

.tier-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    background: var(--color-rojo);
    color: white;
    border-radius: var(--radius-full);
}

.tier-card--premium .tier-card__badge {
    background: var(--color-amarillo);
    color: var(--color-negro);
}

.tier-card__header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.tier-card__price {
    font-size: var(--text-sm);
    color: var(--color-verde);
    font-weight: 500;
}

.tier-card__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.tier-card__benefits li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.tier-card__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACA8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

@media (min-width: 640px) {
    .packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact__grid {
    display: grid;
    gap: var(--space-12);
}

.contact__description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact__detail {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.contact__detail strong {
    color: var(--color-text);
    margin-right: var(--space-2);
}

.contact__detail a {
    color: var(--color-verde);
}

.contact__detail a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.contact-form__row {
    display: grid;
    gap: var(--space-4);
}

.contact-form__field {
    margin-bottom: var(--space-4);
}

.contact-form__field label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 50, 60, 0.2);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.checkbox-label,
.contact-form__field .checkbox-label {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.checkbox-label span:last-child {
    flex: 1;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    background: var(--color-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--color-verde);
    border-color: var(--color-verde);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.checkbox-label input[type="checkbox"]:focus+.checkbox-custom {
    box-shadow: 0 0 0 3px rgba(0, 172, 168, 0.3);
}

.contact-form__submit {
    width: 100%;
    margin-top: var(--space-4);
}

@media (min-width: 640px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Active nav link */
.nav__link.active {
    color: var(--color-primary-light);
}

/* Horizontal Timeline */
.htimeline {
    position: relative;
    padding: 10rem 0 var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.htimeline__line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-verde) 0%, var(--color-amarillo) 50%, var(--color-rojo) 100%);
    border-radius: 2px;
    transform: translateY(-50%);
}

.htimeline__months {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.htimeline__months span {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: var(--space-2) var(--space-1);
    text-align: center;
    flex: 1;
}

.htimeline__months span::before {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto var(--space-2);
}

.htimeline__month--event {
    color: var(--color-text) !important;
}

.htimeline__month--2027 {
    color: var(--color-amarillo) !important;
}

.htimeline__events {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.htimeline__event {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.htimeline__marker {
    width: 20px;
    height: 20px;
    background: var(--color-verde);
    border: 4px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-verde);
    margin: 0 auto;
}

.htimeline__marker--tbd {
    background: var(--color-amarillo);
    box-shadow: 0 0 0 4px var(--color-amarillo);
}

.htimeline__card {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    text-align: center;
    white-space: nowrap;
    min-width: 100px;
}

.htimeline__card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--color-bg-card);
}

.htimeline__card--bottom {
    bottom: auto;
    top: calc(100% + 16px);
}

.htimeline__card--bottom::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--color-bg-card);
}

.htimeline__flag {
    display: block;
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.htimeline__city {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
}

.htimeline__date {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-1);
}

@media (max-width: 768px) {
    .htimeline {
        padding: 11rem 0 var(--space-12);
    }

    .htimeline__months span {
        font-size: 0.6rem;
        padding: var(--space-1) 0;
    }

    .htimeline__card {
        padding: var(--space-2) var(--space-3);
        min-width: 80px;
    }

    .htimeline__flag {
        font-size: 1.2rem;
    }

    .htimeline__city {
        font-size: var(--text-xs);
    }

    .htimeline__date {
        font-size: 0.6rem;
    }

    .htimeline__marker {
        width: 16px;
        height: 16px;
        border-width: 3px;
        box-shadow: 0 0 0 3px var(--color-verde);
    }

    .htimeline__marker--tbd {
        box-shadow: 0 0 0 3px var(--color-amarillo);
    }
}

/* Video Section */
.video-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-section__player {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-section__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

/* Photo Gallery */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
    z-index: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery__item:hover::after {
    opacity: 1;
}

@media (min-width: 640px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Home Gallery Section
   -------------------------------------------------------------------------- */
.home-gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.home-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
}

.home-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.home-gallery__item:hover img {
    transform: scale(1.08);
}

/* Video thumbnail in gallery */
.home-gallery__item--video {
    grid-column: span 1;
}

.home-gallery__play-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.home-gallery__play-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-gallery__play-btn:hover img {
    transform: scale(1.08);
}

.home-gallery__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.home-gallery__play-btn:hover .home-gallery__play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.home-gallery__play-icon {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.home-gallery__play-btn:hover .home-gallery__play-icon {
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.is-active {
    display: flex;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal__content {
    position: relative;
    width: 90vw;
    max-width: 960px;
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-modal__close:hover {
    opacity: 1;
}

.video-modal__player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 640px) {
    .home-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Sponsors Sticky CTA
   -------------------------------------------------------------------------- */
.sponsors-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.sponsors-sticky-cta.visible {
    transform: translateY(0);
}

.sponsors-sticky-cta__text {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
}

.sponsors-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    padding: var(--space-2) var(--space-6);
    background: var(--color-rojo);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.sponsors-sticky-cta__btn:hover {
    background: #FF2D00;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox__prev {
    left: var(--space-4);
}

.lightbox__next {
    right: var(--space-4);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__counter {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .lightbox__prev {
        left: var(--space-8);
    }

    .lightbox__next {
        right: var(--space-8);
    }

    .lightbox__close {
        top: var(--space-6);
        right: var(--space-6);
    }
}

/* ==========================================================================
   Speakers Page Styles
   ========================================================================== */

/* Speakers Hero */
.speakers-hero {
    position: relative;
    padding: calc(var(--space-16) + 80px) 0 var(--space-16);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.speakers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.speakers-hero>.container {
    position: relative;
    z-index: 2;
}

.speakers-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.speakers-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.speakers-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--space-12);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.speakers-hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.speakers-hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-amarillo);
    margin-bottom: var(--space-2);
}

.speakers-hero__stat-label {
    font-size: var(--text-sm);
    color: #ffffff;
}

@media (min-width: 768px) {
    .speakers-hero__title {
        font-size: var(--text-5xl);
    }

    .speakers-hero__stat-number {
        font-size: var(--text-4xl);
    }
}

/* Featured Speakers */
.featured-speakers__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .featured-speakers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-speakers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Speaker Cards */
.speaker-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    border-color: rgba(255, 255, 255, 0.05);
    transform: none;
}

.speaker-card--featured {
    display: flex;
}

.speaker-card--featured .speaker-card__image {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.speaker-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.speaker-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-base);
}

.speaker-card:hover .speaker-card__image img {
    transform: none;
}

.speaker-card__content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.speaker-card__role {
    font-size: var(--text-sm);
    color: var(--color-verde);
    margin-bottom: var(--space-1);
}

.speaker-card__company {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.speaker-card__bio {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.speaker-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: auto;
}

.speaker-card__tag {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-amarillo);
    border-radius: var(--radius-sm);
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.speakers-grid .speaker-card__content {
    padding: var(--space-4);
}

.speakers-grid .speaker-card__name {
    font-size: var(--text-base);
}

.speakers-grid .speaker-card__role,
.speakers-grid .speaker-card__company {
    font-size: var(--text-xs);
}

/* Speakers CTA */
.speakers-cta {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.speakers-cta__text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

/* Call for Speakers Section */
.cfp__grid {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .cfp__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.cfp__description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.cfp__list {
    margin-bottom: var(--space-6);
}

.cfp__newsletter-notice {
    color: var(--nerd-yellow, #FFBA00);
    font-size: var(--text-base);
    font-weight: 500;
}

.cfp__list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--color-text-secondary);
}

.cfp__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-verde);
    border-radius: 50%;
}

.cfp__topics {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.cfp__topics-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.cfp__topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.cfp__topic {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg-card);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Hero Marquee (Infinite Scroller)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Hero Marquee (Infinite Scroller)
   -------------------------------------------------------------------------- */
.hero__marquee {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: var(--space-4) 0;
    pointer-events: auto;
    /* Allow hover */
    /* Removed background/mask to show video cleanly */
}

.marquee-scroller {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    /* Edge fade effect for a more premium look */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

/* Ensure container is wide enough to scroll */
.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding-right: var(--space-12);
    min-width: 100%;
    /* Ensure hardware acceleration context */
    transform: translateZ(0);
}

.marquee-content img {
    height: auto;
    width: 140px;
    max-height: 55px;
    object-fit: contain;
    /* Make logos white/monochrome for dark background */
    filter: brightness(0) invert(1) opacity(0.6);
    transition: all var(--transition-base);
}

.marquee-row:hover .marquee-content img {
    filter: brightness(0) invert(1) opacity(0.4);
}

.marquee-content img:hover {
    filter: none;
    /* Reveal original color */
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .marquee-content img {
        height: auto;
        width: 180px;
        max-height: 65px;
    }

    .hero__marquee {
        bottom: 113px;
    }
}

/* Animations - Ensure smooth infinite loop */
/* Using specific names to avoid conflicts and cache issues */
.marquee-left .marquee-content {
    -webkit-animation: marquee-scroll-left 120s linear infinite;
    animation: marquee-scroll-left 120s linear infinite;
    will-change: transform;
}

.marquee-right .marquee-content {
    -webkit-animation: marquee-scroll-right 120s linear infinite;
    animation: marquee-scroll-right 120s linear infinite;
    will-change: transform;
}

/* Pause on hover if desired (optional, currently disabled to ensure persistent movement) */
/* .marquee-row:hover .marquee-content { animation-play-state: paused; } */

@-webkit-keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

@-webkit-keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

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

@keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

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

/* --------------------------------------------------------------------------
   Form Messages
   -------------------------------------------------------------------------- */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.form-message--success {
    background: rgba(0, 172, 168, 0.15);
    color: var(--color-verde);
}

.form-message--error {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-rojo);
}

/* ========== Editions Page ========== */

.editions-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.editions-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.editions-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.editions-featured {
    padding: 60px 0;
}

.editions-featured__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 0.5rem;
}

.editions-featured__description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.editions-featured__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    max-width: 900px;
}

.editions-featured__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.editions-gallery {
    padding: 60px 0;
}

.editions-gallery__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 2rem;
}

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

.editions-gallery__card {
    border-radius: 12px;
    overflow: hidden;
}

.editions-gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s;
}

.editions-gallery__card:hover .editions-gallery__img {
    transform: scale(1.05);
}

/* Editions History */
.editions-history {
    padding: 60px 0;
}

.editions-history__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 2rem;
}

.editions-year {
    margin-bottom: 2.5rem;
}

.editions-year__label {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editions-year__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.editions-year__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
}

.editions-year__card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.editions-year__card--featured {
    border-color: var(--accent, #7A00E2);
    background: rgba(124, 58, 237, 0.08);
}

.editions-year__card-flag {
    flex-shrink: 0;
}

.editions-year__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.editions-year__card-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.15rem 0 0;
}

.editions-year__card-badge {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--accent, #7A00E2);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.25rem;
}

.editions-year__summary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    font-style: italic;
}

/* Upcoming Events */
.editions-upcoming {
    padding: 60px 0 100px;
}

.editions-upcoming__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 2rem;
}

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

.editions-upcoming__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
}

.editions-upcoming__card:hover {
    border-color: var(--accent, #7A00E2);
    transform: translateY(-2px);
}

.editions-upcoming__card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.editions-upcoming__card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.15rem 0 0;
}

.editions-upcoming__cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .editions-hero {
        padding: 120px 0 40px;
    }

    .editions-hero__title {
        font-size: 1.8rem;
    }

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

    .editions-year__grid {
        grid-template-columns: 1fr;
    }

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

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

    .editions-upcoming__grid {
        grid-template-columns: 1fr;
    }
}

/* Countdown Timer */
/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: hero-scroll-bounce 2s ease-in-out infinite;
    z-index: 3;
    transition: opacity 0.3s;
}

.hero__scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero__countdown {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.countdown__label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .75rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.countdown__timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

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

.countdown__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-rojo);
    line-height: 1;
}

.countdown__text {
    font-family: var(--font-display);
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    margin-top: .25rem;
}

.countdown__live {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-rojo);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* FAQ */
.faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.faq__question {
    padding: 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--text-color, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-rojo);
    transition: transform .2s;
}

details[open] .faq__question::after {
    content: '−';
}

.faq__answer {
    padding: 0 0 1.25rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

/* Register actions */
.register__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (max-width: 600px) {
    .countdown__number {
        font-size: 1.8rem;
    }

    .countdown__timer {
        gap: 0.75rem;
    }

    .countdown__text {
        font-size: 0.65rem;
    }

    .hero--edition .hero__title {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .hero--edition .hero__subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .mobile-break {
        display: block;
    }

    .hero--edition .hero__content {
        padding: 2rem 0.5rem;
    }
}

/* Edition hero: tagline & bajada */
.hero__tagline {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero__bajada {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .hero__tagline {
        font-size: var(--text-base);
        padding: 0 1rem;
    }

    .hero__bajada {
        font-size: var(--text-sm);
        padding: 0 1rem;
    }
}

.mobile-break {
    display: none;
}

/* Sponsors sticky CTA: prevent overlap on mobile */
@media (max-width: 768px) {
    .sponsors-sticky-cta {
        flex-direction: column;
        gap: var(--space-2);
        padding: var(--space-2) var(--space-4);
    }

    .sponsors-sticky-cta__text {
        font-size: var(--text-sm);
    }

    body:has(.sponsors-sticky-cta.visible) main {
        padding-bottom: 80px;
    }
}

/* Breadcrumb navigation */
.breadcrumb {
    padding: var(--space-3) 0;
    background: rgba(0, 0, 0, 0.03);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary, #666);
}

.breadcrumb__item a {
    color: var(--color-primary, #7A00E2);
    text-decoration: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}

.breadcrumb__item+.breadcrumb__item::before {
    content: "›";
    margin-right: 0.5rem;
    color: var(--color-text-secondary, #999);
}

.breadcrumb__item--active {
    color: var(--color-text-primary, #333);
}

/* Legal Pages (Code of Conduct, Privacy, etc.) */
.legal-page {
    padding-top: calc(var(--space-20) + 80px);
}

.legal-page__content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page__body {
    margin-top: var(--space-8);
}

.legal-page__body h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.legal-page__body p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.legal-page__list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 var(--space-8);
}

.legal-page__list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.legal-page__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.legal-page__attribution {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page__attribution p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.legal-page__attribution a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Footer social links */
.footer__social {
    display: flex;
    gap: var(--space-3, 0.75rem);
    margin-top: var(--space-2, 0.5rem);
}

.footer__social a {
    color: var(--color-text-secondary, #999);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer__social a:hover {
    color: var(--color-primary, #7A00E2);
}

/* ============================================
   Speaker Detail Page
   ============================================ */

.speaker-detail__back {
    display: inline-block;
    margin: 1.5rem 0 0;
    color: var(--color-primary, #7A00E2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.speaker-detail__back:hover {
    color: #818cf8;
}

/* Hero */
.speaker-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a0a 50%, #0f0f0f 100%);
    padding: 4rem 0 3rem;
}

.speaker-hero__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.speaker-hero__photo-wrap {
    flex-shrink: 0;
    animation: speakerPhotoIn 0.6s ease-out both;
}

@keyframes speakerPhotoIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

.speaker-hero__photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.2);
}

.speaker-hero__name {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #fff;
}

.speaker-hero__tag {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #FF323C;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.speaker-hero__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.speaker-hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: all 0.2s;
}

.speaker-hero__social-link--twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.speaker-hero__social-link--linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.speaker-hero__social-link--website:hover {
    background: #7A00E2;
    color: #fff;
}

/* Bio */
.speaker-bio__content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0B0B0;
}

/* Talks */
.speaker-talks__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.speaker-talk-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border-left: 4px solid #7A00E2;
    transition: transform 0.2s;
}

.speaker-talk-card:hover {
    transform: translateX(4px);
}

.speaker-talk-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.speaker-talk-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.speaker-talk-card__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #929292;
    margin-bottom: 0.75rem;
}

.speaker-talk-card__desc {
    color: #B0B0B0;
    line-height: 1.6;
}

.speaker-talk-card__toggle {
    background: none;
    border: none;
    color: #7A00E2;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    margin-left: 0.25rem;
}

.speaker-talk-card__toggle:hover {
    text-decoration: underline;
}

/* Track badges */
.track-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-badge--development {
    background: rgba(255, 50, 60, 0.2);
    color: var(--nerd-red);
}

.track-badge--ai {
    background: rgba(255, 186, 0, 0.2);
    color: var(--nerd-yellow);
}

.track-badge--infrastructure {
    background: rgba(0, 172, 168, 0.2);
    color: var(--nerd-blue);
}

.track-badge--security {
    background: rgba(30, 58, 95, 0.2);
    color: var(--nerd-dark-blue);
}

.track-badge--ux {
    background: rgba(107, 114, 128, 0.2);
    color: var(--nerd-gray);
}

.track-badge--open-source {
    background: rgba(52, 211, 153, 0.2);
    color: var(--nerd-lightgreen);
}

.track-badge--science {
    background: rgba(0, 172, 168, 0.2);
    color: var(--nerd-blue);
}

.track-badge--testing {
    background: rgba(16, 185, 129, 0.2);
    color: var(--nerd-green);
}

.track-badge--product {
    background: rgba(212, 160, 23, 0.2);
    color: var(--nerd-mustard);
}

.track-badge--soft-skills {
    background: rgba(249, 115, 22, 0.2);
    color: var(--nerd-orange);
}

.track-badge--maker {
    background: rgba(30, 58, 95, 0.2);
    color: var(--nerd-dark-blue);
}

.track-badge--kids {
    background: rgba(212, 160, 23, 0.2);
    color: var(--nerd-mustard);
}

/* Track-colored left border */
.speaker-talk-card[data-track="DEVELOPMENT"] {
    border-left-color: var(--nerd-red);
}

.speaker-talk-card[data-track="DATA SCIENCE"],
.speaker-talk-card[data-track="DATA SCIENCE / AI"] {
    border-left-color: var(--nerd-yellow);
}

.speaker-talk-card[data-track="AI"] {
    border-left-color: var(--nerd-yellow);
}

.speaker-talk-card[data-track="INFRASTRUCTURE"] {
    border-left-color: var(--nerd-blue);
}

.speaker-talk-card[data-track="SECURITY"] {
    border-left-color: var(--nerd-dark-blue);
}

.speaker-talk-card[data-track="UX"] {
    border-left-color: var(--nerd-gray);
}

.speaker-talk-card[data-track="OPEN SOURCE"] {
    border-left-color: var(--nerd-lightgreen);
}

.speaker-talk-card[data-track="SCIENCE"] {
    border-left-color: var(--nerd-blue);
}

.speaker-talk-card[data-track="TESTING"] {
    border-left-color: var(--nerd-green);
}

.speaker-talk-card[data-track="PRODUCT"] {
    border-left-color: var(--nerd-mustard);
}

.speaker-talk-card[data-track="SOFTSKILLS"],
.speaker-talk-card[data-track="SOFT SKILLS"] {
    border-left-color: var(--nerd-orange);
}

.speaker-talk-card[data-track="MAKER"],
.speaker-talk-card[data-track="MAKER/RETRO"] {
    border-left-color: var(--nerd-dark-blue);
}

.speaker-talk-card[data-track="KIDS"] {
    border-left-color: var(--nerd-mustard);
}

.speaker-talk-card[data-track="MANAGEMENT"] {
    border-left-color: var(--nerd-lightblue);
}

.speaker-talk-card[data-track="NERD"] {
    border-left-color: var(--nerd-purple);
}

/* Nav prev/next */
.speaker-nav__inner {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}

.speaker-nav__link {
    color: var(--color-primary, #7A00E2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.speaker-nav__link:hover {
    color: #818cf8;
}

/* Responsive */
@media (max-width: 768px) {
    .speaker-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .speaker-hero__social {
        justify-content: center;
    }

    .speaker-hero__name {
        font-size: 2rem;
    }

    .speaker-hero__photo {
        width: 180px;
        height: 180px;
    }

    .speaker-talk-card {
        padding: 1rem 1.25rem;
    }

    .speaker-talk-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Speaker CTA */
.speaker-cta {
    text-align: center;
    padding: 60px 0;
}

.speaker-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.speaker-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.speaker-cta__subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

/* Speaker Talk Video */
.speaker-talk-card__video {
    margin-top: var(--space-4);
}

.speaker-talk-card__video-title {
    font-size: var(--text-sm);
    color: var(--color-rojo);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.speaker-talk-card__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.speaker-talk-card__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* Departures Board — Airport Style */
.departures {
    padding: 4rem 0;
}

.departures__board {
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.departures__header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
}

.departures__row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.departures__row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.departures__row:last-child {
    border-bottom: none;
}

.departures__col--city {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.departures__flag {
    font-size: 1.5rem;
}

.departures__city-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.departures__code {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.departures__flip {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.departures__col--days {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.departures__days-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-rojo);
    line-height: 1;
    min-width: 2.5ch;
    text-align: right;
}

.departures__days-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.departures__status {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.departures__status--next {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-rojo);
    animation: pulse-status 2s infinite;
}

.departures__status--soon {
    background: rgba(255, 170, 0, 0.12);
    color: #ffaa00;
}

.departures__status--announced {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
}

@keyframes pulse-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Departures Mobile */
@media (max-width: 600px) {
    .departures__header {
        display: none;
    }

    .departures__row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
        padding: 1rem;
    }

    .departures__col--city {
        grid-column: 1;
        grid-row: 1;
    }

    .departures__col--days {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .departures__col--date {
        grid-column: 1;
        grid-row: 2;
    }

    .departures__col--status {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }

    .departures__city-name {
        font-size: 0.95rem;
    }

    .departures__days-num {
        font-size: 1.5rem;
    }

    .departures__code {
        display: none;
    }
}

/* ── Speaker Filter Bar ── */
.speakers-filter {
    margin-bottom: 2rem;
    position: sticky;
    top: 64px;
    z-index: 90;
    background: var(--color-bg-dark, #0a0a0a);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.speakers-filter__search {
    margin-bottom: 1rem;
}

.speakers-filter__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.speakers-filter__input:focus {
    border-color: var(--color-primary, #60a5fa);
}

.speakers-filter__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.speakers-filter__tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.track-filter-btn {
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.track-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.track-filter-btn--active {
    background: var(--color-primary, #60a5fa) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.speakers-filter__no-results {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 0;
    font-size: 1.1rem;
}

.speaker-card a {
    text-decoration: none;
    color: inherit;
}

/* All speaker cards: non-clickable until individual pages are ready */
.speakers-grid .speaker-card {
    cursor: default;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Disable scroll animation on speaker cards — show immediately */
.speakers-grid .speaker-card.scroll-animate-init {
    opacity: 1;
    transform: none;
}

#speakers-grid-historical .speaker-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

#speakers-grid-historical .speaker-card:active {
    background: var(--color-bg-card);
}

#speakers-grid-historical .speaker-card:hover .speaker-card__image img {
    transform: none;
}

/* Track badge variants for slash-containing tracks */
.track-badge--data-science---ai {
    background: rgba(255, 186, 0, 0.2);
    color: var(--nerd-yellow);
}

.track-badge--maker-retro {
    background: rgba(30, 58, 95, 0.2);
    color: var(--nerd-dark-blue);
}

.track-badge--softskills {
    background: rgba(249, 115, 22, 0.2);
    color: var(--nerd-orange);
}

.track-badge--management {
    background: rgba(91, 164, 207, 0.2);
    color: var(--nerd-lightblue);
}

.track-badge--nerd {
    background: rgba(139, 92, 246, 0.2);
    color: var(--nerd-purple);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--color-rojo);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 50, 60, 0.4);
    transition: transform 0.3s ease, box-shadow 0.2s, opacity 0.3s ease, visibility 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
}

.floating-cta--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 50, 60, 0.5);
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
        bottom: 16px;
        right: 16px;
    }
}

/* ── LIVE phase ── */
.hero--live {
    background: #0a0a0a;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-rojo);
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse-dot 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 50, 60, 0.7);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(255, 50, 60, 0);
    }
}

.floating-cta--live {
    background: var(--color-rojo);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.edition-today {
    padding: 3rem 0;
}

.edition-today__grid {
    margin-top: 1.5rem;
}

.edition-today__placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary, #a0aec0);
}

.edition-today__placeholder p {
    margin-bottom: 1rem;
}

/* ── POST phase ── */
.hero--post {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero--post>.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.hero--post>.hero__content {
    position: relative;
    z-index: 1;
}

.edition-stats__grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 1rem 0;
}

.edition-stats__item {
    min-width: 120px;
}

.edition-stats__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary, #fff);
}

.edition-stats__label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary, #a0aec0);
    margin-top: 0.25rem;
}

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

.edition-videos__grid {
    margin-top: 1.5rem;
}

.edition-videos__placeholder {
    padding: 2rem 0;
}

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

.edition-gallery__placeholder-img {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #a0aec0);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .edition-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .edition-stats__grid {
        gap: 1.5rem;
    }

    .edition-stats__number {
        font-size: 2rem;
    }
}

.edition-next-cta {
    padding: 3rem 0;
}

/* ==========================================================================
   Press Room
   ========================================================================== */

/* Press Hero */
.press-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--space-20) + 80px) 0 var(--space-16);
    background: none;
}

.press-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.press-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

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

.press-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.press-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.press-hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.press-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .press-hero__title {
        font-size: var(--text-5xl);
    }
}

/* Press About */
.press-about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.press-about__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.press-about__content p:last-child {
    margin-bottom: 0;
}

/* Press Facts Grid (reuses benefit-card) */
.press-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .press-facts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Press Notable Speakers — Marquee Carousel */
.press-speakers__marquee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.press-speakers__row {
    overflow: hidden;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.press-speakers__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
}

.press-speakers__row--left .press-speakers__track {
    animation: press-speakers-scroll-left 50s linear infinite;
}

.press-speakers__row--right .press-speakers__track {
    animation: press-speakers-scroll-right 55s linear infinite;
}

.press-speakers__row:hover .press-speakers__track {
    animation-play-state: paused;
}

.press-speaker-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--color-bg-card, rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl, 12px);
    overflow: hidden;
    transition: all 0.3s;
}

.press-speaker-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.press-speaker-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.press-speaker-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s;
}

.press-speaker-card:hover .press-speaker-card__photo img {
    transform: scale(1.05);
}

.press-speaker-card__content {
    padding: 1rem 1rem 1.25rem;
}

.press-speaker-card__name {
    font-family: var(--font-display, inherit);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.press-speaker-card__credential {
    font-size: 0.8rem;
    color: var(--color-verde, #00d4aa);
    line-height: 1.4;
}

@keyframes press-speakers-scroll-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes press-speakers-scroll-right {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Press Timeline (vertical) */
.press-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.press-timeline__line {
    position: absolute;
    left: 0.65rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary, #6c5ce7);
    opacity: 0.4;
}

.press-timeline__item {
    position: relative;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.press-timeline__item:last-child {
    padding-bottom: 0;
}

.press-timeline__dot {
    position: absolute;
    left: -2.65rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary, #6c5ce7);
    border-radius: 50%;
    border: 2px solid var(--bg-primary, #0d0d0d);
    z-index: 1;
}

.press-timeline__year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary, #6c5ce7);
    min-width: 3.5rem;
    flex-shrink: 0;
}

.press-timeline__text {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 0.1rem;
}

/* Press Coverage */
.press-coverage__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.press-coverage__tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary, #a0aec0);
    cursor: pointer;
    transition: all 0.2s;
}

.press-coverage__tab:hover {
    border-color: var(--color-primary, #6c5ce7);
    color: #fff;
}

.press-coverage__tab--active {
    background: var(--color-primary, #6c5ce7);
    border-color: var(--color-primary, #6c5ce7);
    color: #fff;
}

.press-coverage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.press-mention {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.press-mention:hover {
    border-color: var(--color-primary, #6c5ce7);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.press-mention:hover .press-mention__arrow {
    opacity: 1;
    transform: translateX(0);
}

.press-mention:hover .press-mention__image img {
    transform: scale(1.05);
}

.press-mention[hidden] {
    display: none;
}

.press-mention__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.press-mention__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-mention__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    flex: 1;
}

.press-mention__outlet {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary, #6c5ce7);
}

.press-mention__title {
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    flex: 1;
}

.press-mention__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.press-mention__date {
    font-size: 0.8rem;
    color: var(--text-secondary, #a0aec0);
}

.press-mention__arrow {
    color: var(--color-primary, #6c5ce7);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
}

@media (max-width: 900px) {
    .press-coverage__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .press-coverage__grid {
        grid-template-columns: 1fr;
    }
}

/* Media Kit */
.press-media-kit__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.press-asset-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.press-asset-card:hover {
    border-color: var(--color-primary, #6c5ce7);
    transform: translateY(-2px);
}

.press-asset-card__preview {
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.press-asset-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-asset-card__preview--logo {
    padding: 1.5rem;
    background: #fff;
}

.press-asset-card__preview--logo img {
    object-fit: contain;
}

.press-asset-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    gap: 0.5rem;
}

.press-asset-card__label {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.press-asset-card__download-icon {
    flex-shrink: 0;
    color: var(--text-secondary, #a0aec0);
}

.press-asset-card:hover .press-asset-card__download-icon {
    color: var(--color-primary, #6c5ce7);
}

/* Spokesperson */
.press-spokesperson {
    max-width: 700px;
    margin: 0 auto;
}

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

.press-spokesperson__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.press-spokesperson__role {
    font-size: 1rem;
    color: var(--color-primary, #6c5ce7);
    margin-bottom: 1.25rem;
}

.press-spokesperson__bio {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Press contact form select */
.contact-form__field select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.contact-form__field select:focus {
    border-color: var(--color-primary, #6c5ce7);
    outline: none;
}

.contact-form__field select option {
    background: #1a1a2e;
    color: #fff;
}

/* Press section subtitle */
.section__subtitle {
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 1rem;
    color: var(--text-secondary, #a0aec0);
    text-align: center;
}

/* Responsive press hero */
@media (max-width: 768px) {
    .press-hero {
        min-height: 360px;
    }

    .press-hero__content {
        padding: 3rem 0;
    }

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

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

    .press-speakers__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Press Highlights ─── */

.press-highlights-hero {
    padding-bottom: var(--space-8);
}

.press-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.press-highlight-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-card, rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl, 12px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.press-highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.press-highlight-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.press-highlight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.press-highlight-card:hover .press-highlight-card__image img {
    transform: scale(1.05);
}

.press-highlight-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.15);
}

.press-highlight-card__body {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-highlight-card__badge {
    display: inline-block;
    width: fit-content;
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm, 4px);
    margin-bottom: var(--space-3);
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-amarillo, #ffba00);
}

.press-highlight-card__badge--keynote {
    background: rgba(108, 92, 231, 0.15);
    color: var(--color-primary, #6c5ce7);
}

.press-highlight-card__badge--comunidad {
    background: rgba(0, 212, 170, 0.15);
    color: var(--color-verde, #00d4aa);
}

.press-highlight-card__badge--logro {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.press-highlight-card__badge--media {
    background: rgba(116, 185, 255, 0.15);
    color: #74b9ff;
}

.press-highlight-card__title {
    font-family: var(--font-display, inherit);
    font-size: var(--text-lg, 1.125rem);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.press-highlight-card__excerpt {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-text-secondary, #a0aec0);
    line-height: 1.5;
    margin-bottom: var(--space-3);
    flex: 1;
}

.press-highlight-card__date {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-text-muted, #718096);
}

.press-highlights__empty {
    text-align: center;
    padding: var(--space-12) 0;
    color: var(--color-text-muted, #718096);
}

/* Press Highlight Detail */

.press-highlight-detail__hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: var(--color-bg-darker, #0a0a0a);
}

.press-highlight-detail__hero--has-image {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.press-highlight-detail__hero-bg {
    position: absolute;
    inset: 0;
}

.press-highlight-detail__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-highlight-detail__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.press-highlight-detail__hero-content {
    position: relative;
    z-index: 1;
}

.press-highlight-detail__title {
    font-family: var(--font-display, inherit);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: var(--space-3) 0 var(--space-2);
    line-height: 1.2;
}

.press-highlight-detail__subtitle {
    font-size: var(--text-lg, 1.125rem);
    color: var(--color-text-secondary, #a0aec0);
    max-width: 700px;
    line-height: 1.5;
}

.press-highlight-detail__date {
    display: inline-block;
    margin-top: var(--space-3);
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-text-muted, #718096);
}

.press-highlight-detail__content {
    max-width: 750px;
    margin: 0 auto;
    font-size: var(--text-base, 1rem);
    line-height: 1.8;
    color: var(--color-text-secondary, #c0c0c0);
}

.press-highlight-detail__content p {
    margin-bottom: var(--space-4);
}

/* Highlights responsive */

@media (max-width: 900px) {
    .press-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .press-highlights__grid {
        grid-template-columns: 1fr;
    }

    .press-highlight-detail__hero--has-image {
        min-height: 300px;
    }
}
/* About page - fact sheet */
.about-factsheet {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1.5rem;
    margin-top: 1rem;
}
.about-factsheet dt {
    font-weight: 600;
    color: var(--color-text-secondary, #aaa);
}
.about-factsheet dd {
    margin: 0;
}

/* ============================================
   HOSTS GRID (2x2, speaker-card style)
   ============================================ */
.hosts-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 2rem;
}
.host-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.host-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #999;
    text-decoration: none;
    transition: all 0.2s;
}
.host-link:hover {
    border-color: rgba(255,186,0,0.4);
    color: #FFBA00;
    background: rgba(255,186,0,0.08);
}
@media (max-width: 768px) {
    .hosts-grid-2x2 {
        grid-template-columns: 1fr;
    }
}
