/* =============================================
   A UNA PALABRA — MEDIA KIT 2026
   Horizontal Slide Deck — Editorial B&W
   ============================================= */

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

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gray-50: #f5f5f5;
    --gray-100: #e8e8e8;
    --gray-200: #d4d4d4;
    --gray-300: #a3a3a3;
    --gray-400: #737373;
    --gray-500: #525252;
    --gray-600: #404040;
    --gray-700: #262626;
    --gray-800: #171717;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-glow: rgba(37, 99, 235, 0.15);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    color: var(--black);
    background: var(--black);
}

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

/* ============ WAVE CANVAS ============ */
.wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.wave-canvas.visible {
    opacity: 0.35;
}

/* ============ SLIDES CONTAINER ============ */
.slides {
    display: flex;
    height: 100vh;
    width: max-content;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-dark {
    background: var(--black);
    color: var(--white);
}

.slide-light {
    background: var(--white);
    color: var(--black);
}

.slide-content {
    width: 100%;
    max-width: 1100px;
    padding: 2rem 3rem;
    position: relative;
    z-index: 2;
}

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

/* ============ PROGRESS BAR ============ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(128,128,128,0.15);
    z-index: 100;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-light ~ .progress-bar .progress-fill,
body.light-active .progress-fill {
    background: var(--black);
}

/* ============ SLIDE COUNTER ============ */
.slide-counter {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    transition: color 0.5s;
}

.slide-counter .slide-current {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: color 0.5s;
}

body.light-active .slide-counter { color: rgba(0,0,0,0.3); }
body.light-active .slide-counter .slide-current { color: rgba(0,0,0,0.7); }

/* ============ NAVIGATION ARROWS ============ */
.nav-arrow {
    position: fixed;
    bottom: 2rem;
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.nav-arrow-left { right: calc(2rem + 56px); }
.nav-arrow-right { right: 2rem; }

body.light-active .nav-arrow {
    border-color: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.03);
    color: rgba(0,0,0,0.4);
}

body.light-active .nav-arrow:hover {
    background: rgba(0,0,0,0.08);
    color: var(--black);
    border-color: rgba(0,0,0,0.2);
}

/* ============ SECTION NAV ============ */
.section-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    padding: 0.35rem 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s;
}

.section-nav a {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.section-nav a:hover { color: rgba(255,255,255,0.8); }

.section-nav a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

body.light-active .section-nav {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.06);
}

body.light-active .section-nav a { color: rgba(0,0,0,0.35); }
body.light-active .section-nav a:hover { color: rgba(0,0,0,0.7); }
body.light-active .section-nav a.active {
    background: rgba(0,0,0,0.08);
    color: var(--black);
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.eyebrow.light { color: rgba(255,255,255,0.35); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

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

.body-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 600px;
    margin-bottom: 1rem;
}

.body-text.light { color: rgba(255,255,255,0.55); }
.body-text.centered { text-align: center; margin-left: auto; margin-right: auto; }
.body-text strong { color: var(--black); font-weight: 600; }
.body-text.light strong { color: var(--white); }

/* ============ HERO ============ */
/* Hero fallback gradient (hidden when photo loads) */
.hero-bg-animated {
    position: absolute;
    inset: 0;
    background: var(--black);
}

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

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.hero-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-meta strong { color: rgba(255,255,255,0.7); }

.dot-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: inline-block;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.stat-big {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 0.25rem;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    justify-content: center;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============ SPLIT LAYOUT ============ */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-left, .split-right { max-width: 100%; }

/* ============ IMAGE PLACEHOLDERS ============ */
.image-placeholder {
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: var(--r-xl);
}

.portrait-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 70vh;
}

.guest-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
}

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

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

.fullbleed-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.65);
    z-index: 1;
}

.fullbleed-overlay.light-overlay {
    background: rgba(10,10,10,0.55);
}

/* Hero logo */
.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Nav logo — swap white/black based on slide */
.nav-logo-img {
    height: 36px;
    width: auto;
    vertical-align: middle;
}

.nav-logo-black { display: none; }
.nav-logo-white { display: inline; }

body.light-active .nav-logo-white { display: none; }
body.light-active .nav-logo-black { display: inline; }

/* Images above wave lines */
.portrait-img,
.split-img,
.guest-photo,
.bg-img,
.hero-logo {
    position: relative;
    z-index: 3;
}

/* Portrait photo */
.portrait-img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-xl);
}

/* Split image — used alongside text */
.split-img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    object-position: center;
    border-radius: var(--r-xl);
}

/* ============ INLINE STATS ============ */
.inline-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.inline-stat-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    display: block;
    color: var(--accent-light);
}

.inline-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-top: 0.15rem;
    display: block;
}

/* ============ FEATURES (AUP) ============ */
.two-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    text-align: left;
    max-width: 700px;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
}

/* ============ PLATFORM METRICS ============ */
.platform-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-header-row.small { margin-bottom: 1.5rem; }

.platform-icon-lg {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    background: var(--black);
    color: var(--white);
}

.platform-icon-lg.yt { background: #0a0a0a; }
.platform-icon-lg.spotify { background: #0a0a0a; }
.platform-icon-lg.tiktok { background: #0a0a0a; }
.platform-icon-lg.ig { background: #0a0a0a; }
.platform-icon-lg.email { background: #0a0a0a; }

.platform-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
}

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

.metric-card {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-lg);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}

.metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.metric-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    color: var(--accent);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.4;
}

.highlight-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--r-lg);
}

.highlight-num {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
}

.highlight-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
}

/* ============ DUAL PLATFORM ============ */
.dual-platform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.quad-platform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
}
.quad-platform .platform-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.platform-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-xl);
    padding: 2rem;
    transition: background 0.3s;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mini-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mini-metric .metric-num { font-size: 1.75rem; }

.metrics-row {
    display: flex;
    gap: 1.5rem;
}
.metrics-row .mini-metric {
    flex: 1;
}
.accent-row {
    display: flex;
    gap: 0.75rem;
}
.accent-row .accent-metric {
    flex: 1;
}
.platform-link-btn {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
}
.platform-link-btn:hover {
    color: var(--black);
    border-color: var(--black);
    background: var(--gray-50);
}
.accent-metric {
    padding: 1rem 1.25rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--r-md);
}

.accent-metric .metric-num { color: var(--white); }
.accent-metric .metric-label { color: rgba(255,255,255,0.45); }

/* ============ MILESTONES ============ */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 900px;
}

.milestone-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.milestone-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.milestone-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

.milestone-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ============ CHART ============ */
.charts-split {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
}
.chart-half {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.5rem 2.5rem;
}
.chart-label {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 320px;
    margin-top: 0;
}

/* ============ AUDIENCE ============ */

/* Gender section */
.demo-gender {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 500px;
}
.demo-gender-item {
    text-align: center;
}
.demo-gender-pct {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
}
.demo-gender-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.demo-gender-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-200);
}
.demo-gender-bar {
    display: flex;
    width: 100%;
    max-width: 500px;
    height: 8px;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 1.25rem;
}
.demo-gender-fill-m {
    background: var(--black);
    border-radius: 100px 0 0 100px;
}
.demo-gender-fill-f {
    background: var(--gray-200);
    border-radius: 0 100px 100px 0;
}

/* Age section */
.demo-age-section {
    width: 100%;
    max-width: 700px;
    margin-top: 2.5rem;
}
.demo-age-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}
.demo-age-highlight {
    color: var(--accent);
    font-weight: 600;
}
.demo-age-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.demo-age-item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 1rem;
}
.demo-age-range {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    text-align: right;
}
.demo-age-track {
    height: 28px;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
}
.demo-age-item.active .demo-age-range,
.demo-age-item.active .demo-age-pct {
    color: var(--black);
    font-weight: 700;
}
.demo-age-item.active .age-fill {
    background: var(--black);
}
.demo-age-pct {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
}

.age-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 8px;
    width: 0%;
    transition: width 1.2s var(--ease-out);
}

/* ============ GEOGRAPHY ============ */
.geo-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 650px;
}

.geo-item {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.geo-country { font-size: 0.85rem; font-weight: 500; }

.geo-track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.geo-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s var(--ease-out);
}

.geo-pct {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-serif);
    text-align: right;
}

/* ============ GUESTS ============ */
.guests-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
}

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

.guest-img {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: var(--r-lg);
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
}

.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-out);
}

.guest-card:hover .guest-photo {
    transform: scale(1.05);
}

/* Guest hover popup card */
.guest-overlay {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 280px;
    background: var(--white);
    color: var(--black);
    padding: 1.5rem;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    z-index: 10;
}

/* Arrow pointing down */
.guest-overlay::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--white);
}

.guest-card:hover .guest-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.guest-card:hover .guest-photo {
    transform: scale(1.05);
}

.guest-overlay-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.guest-overlay-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.guest-overlay-desc {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.guest-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.guest-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* ============ GUESTS SLIDER ============ */
.guests-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-top: 2.5rem;
    overflow: hidden;
}
.guests-slider-fade {
    position: absolute;
    top: 0;
    bottom: 60px;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.guests-slider-fade.left {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}
.guests-slider-fade.right {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}
.guests-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.guests-slider::-webkit-scrollbar { display: none; }
.guest-card-slide {
    flex: 0 0 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out);
}
.guest-card-slide:hover {
    transform: translateY(-4px);
}
.guest-card-slide .guest-img {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: var(--r-lg);
    aspect-ratio: 1/1;
    position: relative;
}
.guest-card-slide .guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-out);
}
.guest-card-slide:hover .guest-photo {
    transform: scale(1.05);
}
.guests-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

/* Guest Popup Overlay */
.guest-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}
.guest-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.guest-popup {
    background: var(--white);
    color: var(--black);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s var(--ease-out);
}
.guest-popup-overlay.active .guest-popup {
    transform: translateY(0) scale(1);
}
.guest-popup-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.guest-popup-close:hover { color: var(--black); }
.guest-popup-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1.5rem;
}
.guest-popup-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.guest-popup-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}
.guest-popup-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1000px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--r-lg);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--r-lg);
    transition: transform 0.5s var(--ease-out);
    cursor: pointer;
}

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

/* ============ SPONSOR CARDS ============ */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
}

.sponsor-card {
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: all 0.3s var(--ease-out);
}

.sponsor-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.07);
}

.sponsor-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.sponsor-card:hover .sponsor-num { color: var(--black); }

.sponsor-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.sponsor-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ============ PACKAGES BAR ============ */
.packages-bar {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-xl);
    text-align: center;
    max-width: 900px;
}

.packages-bar h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.packages-bar p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.packages-bar em {
    color: rgba(255,255,255,0.35);
}

/* ============ HIGHLIGHT QUOTE ============ */
.highlight-quote {
    padding: 1.25rem 1.75rem;
    background: var(--accent-glow);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-md);
    max-width: 700px;
}

/* ============ BIG QUOTE ============ */
.quote-overlay {
    background: rgba(10, 10, 10, 0.7);
}

.big-quote {
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.15);
    display: block;
    user-select: none;
}

.quote-mark.close {
    text-align: right;
    margin-top: 1rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    text-align: center;
    margin: -1rem 0 0;
}

.quote-text em {
    font-style: italic;
    color: var(--accent-light);
}

/* ============ REASONS ============ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
}

.reason-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    text-align: left;
    transition: border-color 0.3s, background 0.3s;
}

.reason-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.reason-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    margin: 1.5rem 0 2rem;
    transition: all 0.3s var(--ease-out);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-links a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    transition: color 0.3s;
}

.contact-links a:hover { color: var(--black); }

.footer-text {
    font-size: 0.75rem;
    color: var(--gray-300);
    margin-top: 1rem;
}

/* ============ DOWNLOAD PDF BUTTON ============ */
.download-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.download-pdf-btn:hover {
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
}

/* ============ MOBILE NAV DOTS ============ */
.mobile-nav-dots {
    display: none;
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.slide.active .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.slide.active .fade-in[data-delay="100"] { transition-delay: 0.1s; }
.slide.active .fade-in[data-delay="150"] { transition-delay: 0.15s; }
.slide.active .fade-in[data-delay="200"] { transition-delay: 0.2s; }
.slide.active .fade-in[data-delay="250"] { transition-delay: 0.25s; }
.slide.active .fade-in[data-delay="300"] { transition-delay: 0.3s; }
.slide.active .fade-in[data-delay="350"] { transition-delay: 0.35s; }
.slide.active .fade-in[data-delay="400"] { transition-delay: 0.4s; }
.slide.active .fade-in[data-delay="450"] { transition-delay: 0.45s; }
.slide.active .fade-in[data-delay="500"] { transition-delay: 0.5s; }

/* Scale-up effect for grid cards */
.metric-card.fade-in,
.milestone-card.fade-in,
.sponsor-card.fade-in,
.reason-card.fade-in,
.guest-card.fade-in {
    transform: translateY(25px) scale(0.95);
}

.slide.active .metric-card.fade-in,
.slide.active .milestone-card.fade-in,
.slide.active .sponsor-card.fade-in,
.slide.active .reason-card.fade-in,
.slide.active .guest-card.fade-in {
    transform: translateY(0) scale(1);
}

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

/* --- Tablet --- */
@media (max-width: 1024px) {
    .slide-content { max-width: 100%; padding: 2rem; }
    .metrics-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .guests-row { grid-template-columns: repeat(2, 1fr); }
    .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .content-split { gap: 2.5rem; }
}

/* --- Mobile (portrait phones + landscape phones) --- */
@media (max-width: 768px), (max-height: 500px) and (max-width: 1024px) {
    /* Switch to vertical scroll on mobile */
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        background: var(--black);
    }

    /* Hide desktop-only UI */
    .section-nav { display: none; }
    .nav-arrow { display: none; }
    .wave-canvas { display: none; }

    /* Mobile navigation dots */
    .mobile-nav-dots {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        padding: 8px 4px;
    }

    .mobile-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        padding: 0;
        transition: all 0.3s var(--ease-out);
    }

    .mobile-dot.on-light {
        background: rgba(0, 0, 0, 0.15);
    }

    .mobile-dot.active {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.5);
    }

    .mobile-dot.active.on-light {
        background: rgba(0, 0, 0, 0.7);
    }
    .slide-counter { display: none; }
    .progress-bar { display: none; }
    .scroll-hint { display: none; }

    .slides {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        transform: none !important;
        transition: none !important;
    }

    .slide {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 3rem 0 2rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .slide > .slide-content {
        margin-top: 0;
        margin-bottom: 0;
    }

    .slide-content {
        padding: 1.5rem 2.5rem;
        max-width: 100%;
    }

    /* Split layouts → stack vertically */
    .content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Images in splits */
    .portrait-img {
        max-height: 50vh;
    }
    .split-img {
        max-height: 40vh;
        width: 100%;
        border-radius: var(--r-lg);
        object-fit: cover;
    }

    /* Fullbleed backgrounds on mobile */
    .fullbleed-bg {
        position: absolute;
        inset: 0;
    }

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

    /* Hero */
    .hero-logo { width: 72px; margin-bottom: 1rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.25rem; }
    .hero-meta { font-size: 0.75rem; margin-bottom: 2rem; gap: 0.5rem; }
    .hero-stats { gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
    .stat-big { font-size: 1.75rem; }
    .stat-label { font-size: 0.65rem; }

    /* Section titles */
    .section-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .body-text { font-size: 0.92rem; line-height: 1.7; }
    .eyebrow { font-size: 0.65rem; margin-bottom: 0.75rem; }

    /* Platform metrics */
    .metrics-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .metric-card { padding: 1rem; }
    .metric-num { font-size: 1.4rem; }
    .metric-label { font-size: 0.7rem; }
    .highlight-bar {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }
    .highlight-num { font-size: 1.75rem; }
    .highlight-text { font-size: 0.8rem; }
    .platform-header-row { margin-bottom: 1.25rem; }
    .platform-icon-lg { width: 40px; height: 40px; border-radius: var(--r-sm); }
    .platform-title { font-size: 1.1rem; }

    /* Dual platform cards */
    .dual-platform { grid-template-columns: 1fr; gap: 1.25rem; }
    .quad-platform { grid-template-columns: 1fr; gap: 1.25rem; }
    .quad-platform .platform-card { min-height: auto; }
    .platform-card { padding: 1.5rem; border-radius: var(--r-lg); }
    .mini-metric .metric-num { font-size: 1.4rem; }
    .accent-row { flex-direction: column; gap: 0.5rem; }
    .metrics-row { flex-direction: column; gap: 0.75rem; }

    /* Milestones */
    .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
    .milestone-card { padding: 1.25rem 1rem; }
    .milestone-num { font-size: 1.35rem; }
    .milestone-text { font-size: 0.75rem; }

    /* Chart */
    .charts-split { flex-direction: column; gap: 1rem; width: 100%; }
    .chart-half { padding: 1rem; width: 100%; }
    .chart-label { font-size: 0.7rem; margin-bottom: 0.5rem; }
    .chart-half .chart-container { height: auto !important; }

    /* Guest slider */
    .guest-card-slide { flex: 0 0 160px; }
    .guest-name { font-size: 0.85rem; }
    .guest-role { font-size: 0.65rem; }
    .guest-popup { padding: 1.5rem; max-width: 90%; }
    .guest-popup-img { width: 120px; height: 120px; }

    /* Audience — demographics */
    .demo-gender-pct { font-size: 2.5rem; }
    .demo-gender { gap: 2rem; }
    .demo-age-item { grid-template-columns: 42px 1fr 42px; gap: 0.5rem; }
    .demo-age-track { height: 22px; }
    .demo-age-range, .demo-age-pct { font-size: 0.75rem; }
    .highlight-quote { padding: 1rem 1.25rem; font-size: 0.9rem !important; }

    /* Geography */
    .geo-grid { gap: 0.6rem; }
    .geo-item { grid-template-columns: 60px 1fr 40px; gap: 0.5rem; }
    .geo-country { font-size: 0.8rem; }
    .geo-pct { font-size: 0.75rem; }

    /* Guests */
    .guests-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
    .guest-name { font-size: 0.85rem; }
    .guest-role { font-size: 0.7rem; }
    .guest-overlay { display: none; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 0.5rem;
    }
    .gallery-item.gallery-large { grid-column: span 2; }

    /* Inline stats (presenter) */
    .inline-stats { gap: 1.5rem; flex-wrap: wrap; }
    .inline-stat-num { font-size: 1.25rem; }
    .inline-stat-label { font-size: 0.65rem; }

    /* Quote slide */
    .big-quote { padding: 1rem; }
    .quote-text { font-size: 1.2rem; }
    .quote-mark { font-size: 4rem; }

    /* Sponsor */
    .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .sponsor-card { padding: 1.25rem 1rem; border-radius: var(--r-lg); }
    .sponsor-num { font-size: 1.75rem; }
    .sponsor-card h4 { font-size: 0.9rem; }
    .sponsor-card p { font-size: 0.75rem; }
    .packages-bar { padding: 1.25rem; border-radius: var(--r-lg); }
    .packages-bar h4 { font-size: 1rem; }
    .packages-bar p { font-size: 0.8rem; }

    /* Reasons */
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .reason-card { padding: 1.25rem; border-radius: var(--r-lg); }
    .reason-card h4 { font-size: 0.9rem; }
    .reason-card p { font-size: 0.75rem; }

    /* Contact */
    .contact-title { font-size: 2.5rem; }
    .contact-btn { font-size: 1rem; padding: 0.85rem 2rem; }
    .contact-links { gap: 0.75rem; }
    .contact-links a { font-size: 0.7rem; }

    /* Features (AUP) */
    .feature-title { font-size: 1.05rem; }
    .feature-text { font-size: 0.85rem; }
    .tagline { font-size: 1rem; }
}

/* --- Small phone --- */
@media (max-width: 480px) {
    .slide-content { padding: 1.25rem 2rem; }

    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 0.75rem; }
    .stat-big { font-size: 1.5rem; }

    .section-title { font-size: 1.3rem; }
    .body-text { font-size: 0.85rem; }

    .metrics-grid-3 { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .metric-num { font-size: 1.15rem; }
    .metric-card { padding: 0.85rem; }

    .milestones-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .milestone-card { padding: 1rem 0.75rem; }
    .milestone-num { font-size: 1.2rem; }

    .guests-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .guest-name { font-size: 0.8rem; }

    .sponsor-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }

    .dual-platform { gap: 1rem; }
    .platform-card { padding: 1.25rem; }

    .demo-gender-pct { font-size: 2rem; }
    .demo-gender { gap: 1.5rem; margin-top: 1.5rem; }
    .demo-gender-divider { height: 40px; }
    .demo-age-section { margin-top: 1.5rem; }
    .demo-age-item { grid-template-columns: 38px 1fr 38px; gap: 0.4rem; }
    .demo-age-track { height: 18px; }

    .contact-links { flex-direction: column; gap: 0.5rem; }
    .contact-btn { font-size: 0.9rem; padding: 0.75rem 1.5rem; }
    .contact-title { font-size: 2rem; }

    .geo-item { grid-template-columns: 55px 1fr 38px; }

    .inline-stats { gap: 1rem; }

    .quote-text { font-size: 1rem; }
    .quote-mark { font-size: 3rem; }

    .split-img { max-height: 30vh; }

    .gallery-grid { grid-auto-rows: 110px; }

    .highlight-bar { padding: 0.85rem; }
    .highlight-num { font-size: 1.5rem; }

    .packages-bar { padding: 1rem; }
}

/* --- Very small phone (SE, etc) --- */
@media (max-width: 360px) {
    .slide-content { padding: 1rem 1.75rem; }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.15rem; }
    .metric-num { font-size: 1.05rem; }
    .metrics-grid-3 { grid-template-columns: 1fr; }
    .milestones-grid { grid-template-columns: 1fr; }
    .sponsor-grid { grid-template-columns: 1fr; }
    .guests-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-stats { gap: 0.5rem; }
    .stat-big { font-size: 1.3rem; }
    .contact-title { font-size: 1.75rem; }
}

/* --- Landscape phones — extra tweaks for short viewports --- */
@media (orientation: landscape) and (max-height: 500px) {
    .slide { min-height: auto; padding: 2rem 0; }
    .slide > .slide-content { margin-top: 0; margin-bottom: 0; }
    .portrait-img, .split-img { max-height: 50vh; }
    .hero-stats { flex-direction: row; gap: 2rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-logo { width: 50px; }
    .stat-big { font-size: 1.3rem; }
    .chart-container { height: 180px; }
    .section-title { font-size: 1.3rem; }
    .big-quote { padding: 0.5rem; }
    .quote-text { font-size: 1rem; }
    .quote-mark { font-size: 2.5rem; }
}

/* ============ PRINT STYLESHEET ============ */
@media print {
    @page {
        size: 1920px 1080px;
        margin: 0;
    }

    /* Reset everything */
    *, *::before, *::after {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    html, body {
        overflow: visible !important;
        height: auto !important;
        width: 1920px !important;
        background: var(--black) !important;
    }

    /* Hide all UI */
    .progress-bar,
    .slide-counter,
    .nav-arrow,
    .section-nav,
    .scroll-hint,
    .download-pdf-btn,
    .mobile-nav-dots,
    .wave-canvas { display: none !important; }

    /* Container: block, no transform */
    .slides {
        display: block !important;
        width: 1920px !important;
        height: auto !important;
        transform: none !important;
        transition: none !important;
    }

    /* Each slide = one 1920x1080 page */
    .slide {
        width: 1920px !important;
        height: 1080px !important;
        min-height: 1080px !important;
        max-height: 1080px !important;
        page-break-after: always;
        break-after: page;
        page-break-inside: avoid;
        break-inside: avoid;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    .slide:last-child {
        page-break-after: auto;
    }

    /* Slide content: wider for print */
    .slide-content {
        max-width: 1500px !important;
        padding: 2rem 5rem !important;
        z-index: 5 !important;
        position: relative !important;
    }

    /* Bigger typography for print */
    .section-title { font-size: clamp(2.2rem, 4vw, 3.5rem) !important; }
    .metric-num { font-size: 2.5rem !important; }
    .milestone-num { font-size: 2.2rem !important; }
    .sponsor-num { font-size: 3rem !important; }
    .body-text { font-size: 1.15rem !important; }
    .hero-title { font-size: 5.5rem !important; }
    .contact-title { font-size: 4.5rem !important; }

    /* Force ALL elements visible — kill animations */
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        transition-delay: 0s !important;
    }

    /* Cards with scale animation */
    .metric-card.fade-in,
    .milestone-card.fade-in,
    .sponsor-card.fade-in,
    .reason-card.fade-in,
    .guest-card.fade-in {
        transform: none !important;
    }

    /* Grids: force desktop columns */
    .content-split { grid-template-columns: 1fr 1fr !important; gap: 4rem !important; }
    .metrics-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .milestones-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .guests-row { grid-template-columns: repeat(4, 1fr) !important; }
    .sponsor-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .reasons-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .dual-platform { grid-template-columns: 1fr 1fr !important; }
    /* Bar fills: show their data width */
    .age-fill, .geo-fill {
        transition: none !important;
    }

    /* Images: proper sizing */
    .portrait-img {
        max-height: 65vh !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .split-img {
        max-height: 65vh !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Fullbleed backgrounds */
    .fullbleed-bg {
        position: absolute !important;
        inset: 0 !important;
    }

    .fullbleed-bg .bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .fullbleed-overlay {
        position: absolute !important;
        inset: 0 !important;
    }

    /* Guest images */
    .guest-img {
        aspect-ratio: 1/1 !important;
        overflow: hidden !important;
    }

    .guest-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .guest-overlay { display: none !important; }

    /* Chart */
    .chart-container {
        height: 320px !important;
        max-width: 750px !important;
    }

    /* Cards: solid backgrounds for print (no backdrop-filter) */
    .metric-card {
        background: var(--gray-50) !important;
        border: 1px solid var(--gray-100) !important;
        backdrop-filter: none !important;
    }

    .platform-card {
        background: var(--gray-50) !important;
        border: 1px solid var(--gray-100) !important;
        backdrop-filter: none !important;
    }


    .sponsor-card {
        background: var(--white) !important;
        border: 1px solid var(--gray-100) !important;
        backdrop-filter: none !important;
    }

    .milestone-card {
        border: 1px solid rgba(255,255,255,0.1) !important;
        backdrop-filter: none !important;
    }

    .reason-card {
        border: 1px solid rgba(255,255,255,0.1) !important;
        backdrop-filter: none !important;
    }

    /* Solid backgrounds for print */
    .slide-dark {
        background: var(--black) !important;
    }

    .slide-light {
        background: var(--white) !important;
    }

    .highlight-bar, .packages-bar, .accent-metric, .contact-btn,
    .gender-fill, .age-fill, .geo-fill, .platform-icon-lg {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}
