        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-tertiary: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: #c4bfb9;
            --text-muted: #8a8580;
            --accent-gold: #b8956a;
            --accent-gold-light: #c9a87a;
            --border: #4a4846;
            --border-light: #6a6866;

            /* A1.1 — Semantic text tokens for dark surfaces (additive, brand-compliant).
               Extends brand standard per rt-brand-golden-standard.md "ALLOWED Without Override".
               Brand-locked --accent-gold / --rt-gold preserved for badges/borders/dots. */
            --on-dark-primary:       #ffffff;   /* Pure white. Primary headings, body. 21:1 on #0f0f0f. */
            --on-dark-secondary:     #e8e6e3;   /* Near-white. Subheadings, captions, nav links. ~17:1. */
            --on-dark-muted:         #b0aca8;   /* Metadata, timestamps, deemphasized. ~8.5:1 (AAA normal). */
            --on-dark-accent:        #e3c178;   /* High-contrast gold for accent text. ~11:1. */
            --on-dark-accent-bright: #ffd76a;   /* Brightest gold for hyperlinks / CTA emphasis. ~14:1. */

            /* C1.1 — Surface overlay tokens for image-bg sections (Part C, additive). */
            --surface-overlay-strong: rgba(10, 10, 10, 0.72);  /* High legibility over busy images */
            --surface-overlay-soft:   rgba(10, 10, 10, 0.55);  /* For lighter / cleaner source images */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        .skip-nav {
            position: absolute;
            top: -100%;
            left: 1rem;
            z-index: 10000;
            padding: 0.75rem 1.5rem;
            background: var(--accent-gold);
            color: var(--bg-primary);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            border-radius: 0;
            transition: top 180ms ease;
        }
        .skip-nav:focus {
            top: 0.5rem;
        }
        .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;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .manifesto-lead::first-letter {
            float: left;
            font-size: 3.6em;
            line-height: 0.8;
            padding-right: 0.04em;
            padding-top: 0.06em;
            font-family: 'Playfair Display', serif;
            color: var(--on-dark-accent);
        }

        body {
            font-family: 'Geist', 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        /* Nav aligned to content container border (1160px) - tight, matches body. */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.9rem max(1.5rem, calc((100vw - 1160px) / 2));
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.25rem;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        /* Canonical event logo (2026-05-13): nav uses the rendered MSN26 compound mark
           as a single image (msn26-warsaw-logo.webp/.png at 2428x572 RGBA transparent).
           Replaces the prior CSS-composed compound (C-026) — image is more reliable across
           browsers, fonts, locales, and screenshot/share contexts. Hyperlinked to # (top of page). */
        .nav-logo {
            text-decoration: none;
            padding: 0.2rem 0;
        }
        .nav-logo picture,
        .nav-logo img {
            display: block;
            height: 1.75rem;  /* balanced with menu + CTA + EN/PL at 1160 container */
            width: auto;
        }
        @media (max-width: 980px) { .nav-logo img { height: 1.45rem; } }
        @media (max-width: 640px) { .nav-logo img { height: 1.25rem; } }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--on-dark-secondary);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
            white-space: nowrap;
        }
        .nav-links a:hover { color: var(--on-dark-accent); }

        .nav-cta {
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 0.55rem 1.1rem;
            font-weight: 600;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: all 0.3s ease;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-cta:hover { background: var(--accent-gold-light); }

        .lang-toggle {
            color: var(--on-dark-muted);
            font-size: 0.75rem;
            cursor: pointer;
            border: 1px solid var(--border);
            padding: 0.35rem 0.9rem;
            background: transparent;
            transition: all 0.3s ease;
        }
        .lang-toggle:hover { border-color: var(--accent-gold); color: var(--on-dark-accent); }

        /* Hero */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.95) 100%),
                        url('../images/hero-placeholder.svg');
            background-size: cover;
            background-position: center 30%;
            filter: brightness(0.8) contrast(1.05);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            margin-top: 2rem;
        }
        .hero-edition-badge {
            display: inline-block;
            border: 1px solid var(--accent-gold);
            color: var(--on-dark-accent);
            padding: 0.4rem 1.2rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        .hero-fullname {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: var(--on-dark-accent);
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        .hero-subtitle {
            font-size: 1rem;
            color: var(--on-dark-primary);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .hero-cta-group {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 1rem 2.8rem;
            border: none;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: var(--accent-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 50px rgba(184, 149, 106, 0.25);
        }
        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 1rem 2.8rem;
            border: 1px solid var(--border-light);
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover { border-color: var(--accent-gold); color: var(--on-dark-accent); }

        .hero-meta {
            position: absolute;
            bottom: 3rem;
            left: 0; right: 0;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            padding: 0 4rem;
            align-items: flex-end;
        }
        .hero-organizer { text-align: left; }
        .hero-organizer p {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-muted); /* uppercase tracked kicker label — metadata tier */
            margin-bottom: 0.4rem;
        }
        .hero-organizer a {
            color: var(--on-dark-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .hero-organizer a:hover { color: var(--on-dark-accent); }

        /* Countdown */
        .countdown-banner {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 2.5rem 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }
        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-muted); /* uppercase kicker label — metadata tier */
        }
        .countdown-timer { display: flex; gap: 2.5rem; }
        .countdown-item { text-align: center; }
        .countdown-item .number {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--on-dark-accent);
            line-height: 1;
        }
        .countdown-item .label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--on-dark-muted); /* small uppercase caption under countdown number — metadata tier */
            margin-top: 0.4rem;
        }
        .countdown-cta {
            font-size: 0.8rem;
            color: var(--on-dark-accent);
            text-decoration: none;
            border-bottom: 1px solid var(--accent-gold);
            padding-bottom: 0.2rem;
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 5rem;
            padding: 3rem;
            background: var(--bg-tertiary);
            border-bottom: 1px solid var(--border);
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--on-dark-accent);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--on-dark-muted); /* small uppercase caption under stat number — metadata tier */
            margin-top: 0.6rem;
        }

        /* Section Styles */
        section {
            padding: 7rem 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        .section-pretitle {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--on-dark-accent);
            margin-bottom: 1.2rem;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1.5rem;
        }
        .section-subtitle {
            color: var(--on-dark-primary);
            max-width: 550px;
            margin: 0 auto;
            font-weight: 300;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Manifesto */
        .manifesto {
            background: var(--bg-secondary);
            text-align: center;
            padding: 6rem 3rem;
        }
        .manifesto-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-style: italic;
            color: var(--text-primary);
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.4;
        }
        .manifesto-author {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-accent);
        }

        /* Three Acts */
        .three-acts {
            background: var(--bg-primary);
        }
        .acts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .act-card {
            border: 1px solid var(--border);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        .act-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        .act-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--on-dark-accent);
            opacity: 0.4;
            line-height: 1;
            margin-bottom: 1rem;
        }
        .act-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .act-card p {
            color: var(--on-dark-primary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* About */
        .about { background: var(--bg-secondary); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-text h3 {
            font-size: 1.6rem;
            margin-bottom: 1.8rem;
            line-height: 1.3;
        }
        .about-text p {
            color: var(--on-dark-primary);
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.7;
        }
        .about-text .highlight {
            color: var(--on-dark-accent);
            font-weight: 500;
        }
        .about-image {
            position: relative;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            filter: brightness(0.75) contrast(1.05);
            transition: transform 0.6s ease;
        }
        .about-image:hover img { transform: scale(1.03); }
        .about-image::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 60%;
            background: linear-gradient(to top, var(--bg-secondary), transparent);
        }

        /* Pioneers Note */
        .pioneers-note {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            text-align: center;
            padding: 4rem 3rem;
        }
        .pioneers-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-muted); /* uppercase kicker label — metadata tier */
            margin-bottom: 1rem;
        }
        .pioneers-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--on-dark-accent);
            margin-bottom: 1rem;
        }
        .pioneers-text {
            color: var(--on-dark-primary);
            font-size: 0.9rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Dress Code */
        .dress-code {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            text-align: center;
            padding: 4rem 3rem;
        }
        .dress-code-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-muted); /* uppercase kicker label — metadata tier */
            margin-bottom: 1rem;
        }
        .dress-code-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--on-dark-accent);
        }
        .dress-code-note {
            color: var(--on-dark-primary);
            font-size: 0.85rem;
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Agenda */
        .agenda-timeline {
            position: relative;
            max-width: 750px;
            margin: 0 auto;
        }
        .agenda-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: var(--border);
        }
        .agenda-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3.5rem;
            position: relative;
        }
        .agenda-item:nth-child(odd) { flex-direction: row-reverse; }
        .agenda-time {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--on-dark-accent);
            width: 30%;
            min-width: max-content;
            text-align: right;
            font-weight: 500;
        }
        .agenda-item:nth-child(odd) .agenda-time { text-align: left; }
        .agenda-dot {
            width: 10px; height: 10px;
            background: var(--accent-gold);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border: 3px solid var(--bg-primary);
        }
        .agenda-content { width: 42%; }
        .agenda-content h4 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .agenda-content p {
            color: var(--on-dark-primary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .agenda-tag {
            display: inline-block;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--on-dark-accent);
            border: 1px solid var(--border);
            padding: 0.2rem 0.6rem;
            margin-top: 0.5rem;
        }

        /* Performance Teaser */
        .performance {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }
        .performance-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 100%),
                        url('../images/performance-placeholder.svg');
            background-size: cover;
            background-position: center;
            filter: brightness(0.6);
        }
        .performance-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .performance-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        .performance-content p {
            color: var(--on-dark-primary);
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .performance-mystery {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.5rem;
            color: var(--on-dark-accent);
            margin-top: 2rem;
        }

        /* Speakers */
        .speakers { background: var(--bg-primary); }
        .speakers-intro {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
            color: var(--on-dark-primary);
            font-weight: 300;
            line-height: 1.7;
        }
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        .speaker-card {
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .speaker-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }
        .speaker-placeholder {
            width: 70px; height: 70px;
            background: var(--border);
            border-radius: 50%;
            margin: 0 auto 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-dark-muted); /* avatar initials inside circular placeholder — decorative */
            font-size: 1.3rem;
            font-family: 'Playfair Display', serif;
        }
        .speaker-card h4 {
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .speaker-card p { color: var(--on-dark-primary); font-size: 0.8rem; }
        .speaker-alert {
            text-align: center;
            margin-top: 3.5rem;
            padding: 2.5rem;
            border: 1px solid var(--border);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .speaker-alert p {
            color: var(--on-dark-primary);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        /* Audience */
        .audience {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .audience-item {
            text-align: center;
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .audience-item:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }
        .audience-item h4 {
            font-size: 1.05rem;
            margin-bottom: 0.6rem;
            color: var(--on-dark-accent);
        }
        .audience-item p {
            color: var(--on-dark-primary);
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .audience-item:nth-child(7) {
            grid-column: 2;
        }

        /* Curated Connections */
        .connections {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .connections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .connection-item {
            text-align: center;
            padding: 2rem;
        }
        .connection-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: var(--on-dark-accent);
        }
        .connection-item p {
            color: var(--on-dark-primary);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Tickets */
        .tickets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 850px;
            margin: 0 auto;
        }
        .ticket-card {
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        .ticket-card.featured {
            border-color: var(--accent-gold);
            transform: scale(1.04);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        .ticket-card.featured::before {
            content: 'Early Bird';
            position: absolute;
            top: -11px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 0.35rem 1.2rem;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .ticket-card:hover { border-color: var(--accent-gold-light); }
        .ticket-name { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 500; }
        .ticket-price {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--on-dark-accent);
            margin: 1.5rem 0;
            line-height: 1;
        }
        .ticket-price span { font-size: 0.9rem; color: var(--on-dark-muted); font-family: 'Inter', sans-serif; /* small currency/unit caption next to price — readable at this size, intentional metadata tier */ }
        .ticket-desc {
            color: var(--on-dark-primary);
            font-size: 0.85rem;
            margin-bottom: 2rem;
            min-height: 3.5em;
            line-height: 1.6;
        }
        .ticket-note {
            font-size: 0.7rem;
            color: var(--on-dark-primary);
            margin-top: 1.2rem;
            font-style: italic;
        }

        /* Venue */
        .venue { background: var(--bg-secondary); }
        .venue-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .venue-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .venue-item.large { grid-column: span 2; }
        .venue-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.05);
            transition: all 0.5s ease;
        }
        .venue-item.large img { height: 380px; }
        .venue-item:hover img { transform: scale(1.04); filter: brightness(0.85); }
        .venue-item-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        }
        .venue-item-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }
        .venue-item-overlay p { color: var(--on-dark-primary); font-size: 0.8rem; }

        /* Partners */
        .partners-form {
            max-width: 550px;
            margin: 0 auto;
            text-align: center;
        }
        .partners-form p {
            color: var(--on-dark-primary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        .form-group label {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--on-dark-muted); /* form field helper label — UI metadata */
            margin-bottom: 0.5rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 1rem;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        .form-group textarea { resize: vertical; min-height: 100px; }

        /* MMA Section */
        .mma {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            text-align: center;
            padding: 4rem 3rem;
        }
        .mma-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--on-dark-muted); /* uppercase kicker label — metadata tier */
            margin-bottom: 1rem;
        }
        .mma-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--on-dark-accent);
            margin-bottom: 0.8rem;
        }
        .mma-subtitle {
            color: var(--on-dark-secondary); /* uppercase tracked kicker — metadata tier, not body prose */
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        /* Footer */
        /* Legacy MSN26 footer NEUTRALIZED 2026-05-27 (SAR-2026-05-27-footer-not-canonical).
           Canonical footer is .cf-footer in overrides.css. */

        /* Responsive */
        @media (max-width: 768px) {
            .nav { padding: 1rem 1.5rem; }
            .nav-links { display: none; }
            section { padding: 5rem 1.5rem; }
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .acts-grid { grid-template-columns: 1fr; }
            .speakers-grid { grid-template-columns: repeat(2, 1fr); }
            .tickets-grid { grid-template-columns: 1fr; }
            .ticket-card.featured { transform: none; }
            .venue-gallery { grid-template-columns: 1fr; }
            .venue-item.large { grid-column: span 1; }
            .stats-bar { gap: 2rem; flex-wrap: wrap; }
            .connections-grid { grid-template-columns: 1fr; }
            .audience-grid { grid-template-columns: 1fr; }
            .audience-item:nth-child(7) { grid-column: auto; }
            .agenda-timeline::before { left: 20px; }
            .agenda-item, .agenda-item:nth-child(odd) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 50px;
            }
            .agenda-time, .agenda-item:nth-child(odd) .agenda-time {
                text-align: left;
                width: 100%;
                margin-bottom: 0.5rem;
            }
            .agenda-dot { left: 20px; }
            .agenda-content { width: 100%; }
            .countdown-banner { padding: 2rem; gap: 1.5rem; }
            .countdown-timer { gap: 1.2rem; }
            .hero-cta-group { flex-direction: column; align-items: center; }
            .hero-meta {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                text-align: center;
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
/* =========================================================
   MSN26 Warsaw — Premium Micro-Interactions & Animations
   Layer this file on top of msn26_warsaw_v4.html styles.
   All animations respect prefers-reduced-motion.
   ========================================================= */

/* ---------------------------------------------------------
   1. HERO ENTRANCE ANIMATION
   Staggered fade-in + translateY for each hero element.
   --------------------------------------------------------- */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-edition-badge {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-title {
    opacity: 0;
    animation: heroFadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.hero-fullname {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
}

.hero-cta-group {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

.hero-meta {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

/* Subtle parallax on hero background */
.hero-bg {
    will-change: transform;
    animation: heroBgZoom 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroBgZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

/* ---------------------------------------------------------
   2. SMOOTH SCROLL BEHAVIOUR
   Offset for fixed nav (approx 72px) using scroll-margin.
   --------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

section[id],
.dress-code,
.mma,
.countdown-banner,
.stats-bar {
    scroll-margin-top: 80px;
}

/* ---------------------------------------------------------
   3. NAV LINK HOVER EFFECTS
   Gold underline slides in from left on hover.
   --------------------------------------------------------- */
.nav-links a {
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Nav CTA subtle glow on hover */
.nav-cta {
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 0 24px rgba(184, 149, 106, 0.35);
}

/* ---------------------------------------------------------
   4. BUTTON MICRO-INTERACTIONS
   Magnetic feel (slight scale + lift), ripple on active,
   smoother transitions.
   --------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.nav-cta,
.lang-toggle {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
    will-change: transform;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:active,
.btn-secondary:active,
.nav-cta:active,
.lang-toggle:active {
    transform: translateY(0) scale(0.98);
}

/* Ripple effect on click using pseudo-element */
.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.btn-primary:active::before,
.btn-secondary:active::before {
    width: 200%;
    height: 200%;
    opacity: 1;
    transition: width 0s, height 0s, opacity 0s;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

/* ---------------------------------------------------------
   5. CARD HOVER STATES
   Ticket cards lift with shadow.
   Speaker cards image zoom (placeholder circle).
   Act cards border glow.
   --------------------------------------------------------- */

/* Ticket cards */
.ticket-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    will-change: transform;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

.ticket-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

/* Speaker cards */
.speaker-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    will-change: transform;
}

.speaker-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Speaker placeholder zoom */
.speaker-placeholder {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease;
    will-change: transform;
}

.speaker-card:hover .speaker-placeholder {
    transform: scale(1.12);
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Act cards */
.act-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
    will-change: transform;
}

.act-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(184, 149, 106, 0.12), 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Act number subtle shift on hover */
.act-number {
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.act-card:hover .act-number {
    opacity: 0.7;
    transform: translateY(-4px);
}

/* Venue items */
.venue-item {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.venue-item:hover {
    transform: translateY(-4px);
}

/* ---------------------------------------------------------
   6. COUNTDOWN FLIP / ROLL ANIMATION
   Numbers roll subtly when they change. Requires JS to add
   .flip class on value change, but CSS handles the visual.
   --------------------------------------------------------- */
@keyframes countRoll {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }
    50% {
        transform: rotateX(-90deg);
        opacity: 0.3;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.countdown-item .number {
    display: inline-block;
    perspective: 400px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    min-width: 1.2em;
    text-align: center;
}

.countdown-item .number.flip {
    animation: countRoll 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle pulse on countdown container */
@keyframes countdownPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 149, 106, 0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(184, 149, 106, 0.06);
    }
}

.countdown-banner {
    animation: countdownPulse 4s ease-in-out infinite;
}

/* ---------------------------------------------------------
   7. AGENDA TIMELINE ENHANCEMENT
   Dot pulse animation. Line draw-on-scroll via CSS.
   --------------------------------------------------------- */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 149, 106, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(184, 149, 106, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(184, 149, 106, 0);
    }
}

.agenda-dot {
    animation: dotPulse 2.5s ease-in-out infinite;
    will-change: box-shadow;
}

/* Stagger dot pulses */
.agenda-item:nth-child(2) .agenda-dot { animation-delay: 0.3s; }
.agenda-item:nth-child(3) .agenda-dot { animation-delay: 0.6s; }
.agenda-item:nth-child(4) .agenda-dot { animation-delay: 0.9s; }
.agenda-item:nth-child(5) .agenda-dot { animation-delay: 1.2s; }
.agenda-item:nth-child(6) .agenda-dot { animation-delay: 1.5s; }

/* Timeline line draw-on-scroll using background gradient */
.agenda-timeline::before {
    background: linear-gradient(
        to bottom,
        var(--accent-gold) 0%,
        var(--accent-gold) var(--line-progress, 0%),
        var(--border) var(--line-progress, 0%),
        var(--border) 100%
    );
    transition: background 0.1s linear;
}

/* ---------------------------------------------------------
   8. IMAGE LOADING STATES
   Skeleton shimmer for images before they load.
   --------------------------------------------------------- */
.about-image img,
.venue-item img,
.performance-bg {
    background: linear-gradient(
        90deg,
        var(--bg-tertiary) 25%,
        var(--border-light) 50%,
        var(--bg-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

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

/* Remove shimmer once image has loaded (requires JS to add .loaded) */
.about-image img.loaded,
.venue-item img.loaded,
.performance-bg.loaded {
    animation: none;
    background: none;
}

/* ---------------------------------------------------------
   9. CUSTOM SCROLLBAR
   Thin gold-accented scrollbar for WebKit browsers.
   --------------------------------------------------------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-primary);
}

/* ---------------------------------------------------------
   10. CURSOR ENHANCEMENT (Optional)
   Custom cursor for interactive elements. Commented out by
   default as it can interfere with native UX.
   --------------------------------------------------------- */
/*
@media (pointer: fine) {
    body {
        cursor: default;
    }

    a, button, .lang-toggle, .venue-item, .speaker-card,
    .ticket-card, .act-card, .nav-links a {
        cursor: none;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border: 1px solid var(--accent-gold);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
        z-index: 9999;
        mix-blend-mode: difference;
    }

    body:hover::after {
        width: 20px;
        height: 20px;
    }

    a:hover ~ body::after,
    button:hover ~ body::after {
        width: 40px;
        height: 40px;
        background: rgba(184, 149, 106, 0.1);
    }
}
*/

/* ---------------------------------------------------------
   11. PAGE TRANSITIONS — FADE-IN SECTIONS ON SCROLL
   Enhances existing .reveal with more refined easing and
   optional stagger for child elements.
   --------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside .reveal containers */
.reveal.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal.active > *:nth-child(2) { transition-delay: 0.12s; }
.reveal.active > *:nth-child(3) { transition-delay: 0.19s; }
.reveal.active > *:nth-child(4) { transition-delay: 0.26s; }
.reveal.active > *:nth-child(5) { transition-delay: 0.33s; }
.reveal.active > *:nth-child(6) { transition-delay: 0.40s; }

/* Ensure children also transition */
.reveal > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.reveal.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   12. TEXT SELECTION
   Custom selection color with gold tint.
   --------------------------------------------------------- */
::selection {
    background: rgba(184, 149, 106, 0.35);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(184, 149, 106, 0.35);
    color: var(--text-primary);
}

/* ---------------------------------------------------------
   13. FOCUS RINGS
   Visible, aesthetically pleasing focus states for keyboard
   navigation. Gold glow that does not rely on outline:none.
   --------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.lang-toggle:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(184, 149, 106, 0.15);
    border-radius: 2px;
}

/* Smooth focus transition */
a,
button,
input,
textarea,
select,
.lang-toggle {
    transition: box-shadow 0.2s ease, outline-offset 0.2s ease;
}

/* ---------------------------------------------------------
   BONUS: STAT BAR NUMBER COUNT-UP FEEL
   Subtle scale-in on load for stat numbers.
   --------------------------------------------------------- */
@keyframes statPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-number {
    display: inline-block;
    opacity: 0;
    animation: statPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Stat label fade in after number */
.stat-label {
    opacity: 0;
    animation: heroFadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stat-item:nth-child(1) .stat-label { animation-delay: 1.8s; }
.stat-item:nth-child(2) .stat-label { animation-delay: 1.95s; }
.stat-item:nth-child(3) .stat-label { animation-delay: 2.1s; }
.stat-item:nth-child(4) .stat-label { animation-delay: 2.25s; }

/* ---------------------------------------------------------
   BONUS: FOOTER LINK HOVER
   Consistent with nav links.
   --------------------------------------------------------- */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

/* ---------------------------------------------------------
   BONUS: FORM INPUT ENHANCEMENTS
   Subtle glow on focus, label lift effect.
   --------------------------------------------------------- */
.form-group input,
.form-group textarea,
.form-group select {
    transition: border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
    background: rgba(26, 26, 26, 0.8);
}

/* ---------------------------------------------------------
   BONUS: COUNTDOWN CTA ARROW ANIMATION
   Arrow slides right on hover.
   --------------------------------------------------------- */
.countdown-cta {
    position: relative;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 0.2rem;
}

.countdown-cta:hover {
    color: var(--on-dark-accent-bright);
    border-color: var(--accent-gold-light);
}

.countdown-cta::after {
    content: '\2192';
    display: inline-block;
    margin-left: 0.3rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.countdown-cta:hover::after {
    transform: translateX(4px);
}

/* ---------------------------------------------------------
   BONUS: MANIFESTO QUOTE TYPEWRITER FEEL
   Subtle fade-in with slight blur resolve.
   --------------------------------------------------------- */
.manifesto-quote {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(20px);
    animation: manifestoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

@keyframes manifestoReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.manifesto-author {
    opacity: 0;
    animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.2s forwards;
}

/* ---------------------------------------------------------
   PREFERS-REDUCED-MOTION
   Disable all non-essential animations for users who prefer
   reduced motion. Keep opacity transitions minimal.
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-edition-badge,
    .hero-title,
    .hero-fullname,
    .hero-subtitle,
    .hero-cta-group,
    .hero-meta,
    .stat-number,
    .stat-label,
    .manifesto-quote,
    .manifesto-author {
        opacity: 1;
        animation: none;
        transform: none;
        filter: none;
    }

    .hero-bg {
        animation: none;
        transform: none;
    }

    .countdown-banner {
        animation: none;
    }

    .agenda-dot {
        animation: none;
    }

    .about-image img,
    .venue-item img,
    .performance-bg {
        animation: none;
    }
}

/* === CONTRAST & BRIGHTNESS ENHANCEMENTS === */

/* Subtle warm gradient separators between major sections */
section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 149, 106, 0.15) 50%, transparent 100%);
    margin-bottom: 4rem;
}

section:first-of-type::before,
.hero::before,
.manifesto::before,
.countdown-banner::before,
.stats-bar::before,
.dress-code::before,
.mma::before {
    display: none;
}

/* Section header subtle glow */
.section-header .section-pretitle {
    text-shadow: 0 0 20px rgba(184, 149, 106, 0.15);
}

/* Enhanced hero text shadow for depth */
.hero-content h1,
.hero-fullname,
.hero-subtitle {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* Brighter card borders with subtle glow on hover */
.act-card,
.speaker-card,
.connection-item,
.ticket-card {
    border-color: var(--border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.act-card:hover,
.speaker-card:hover,
.connection-item:hover,
.ticket-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(184, 149, 106, 0.08);
}

/* Enhanced agenda timeline visibility */
.agenda-timeline::before {
    background: linear-gradient(to bottom, var(--border-light), var(--accent-gold), var(--border-light));
}

.agenda-dot {
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 0 5px var(--accent-gold);
}

/* Stats bar number glow */
.stat-number {
    text-shadow: 0 0 30px rgba(184, 149, 106, 0.2);
}

/* Countdown number glow */
.countdown-item .number {
    text-shadow: 0 0 25px rgba(184, 149, 106, 0.25);
}

/* Form input focus glow */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.15);
}

/* Footer link brighter hover */
.footer-links a {
    color: var(--on-dark-muted); /* footer nav link — UI chrome, not body prose */
}

.footer-links a:hover {
    color: var(--on-dark-accent-bright);
}

/* Enhanced nav link visibility */
.nav-links a {
    color: var(--on-dark-secondary);
}

/* Quote / manifesto text brighter */
.manifesto-quote {
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Performance section enhanced text */
.performance-content h2,
.performance-content p,
.performance-mystery {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* Dress code value brighter */
.dress-code-value {
    text-shadow: 0 0 20px rgba(184, 149, 106, 0.2);
}

/* Ticket price brighter */
.ticket-price {
    text-shadow: 0 0 25px rgba(184, 149, 106, 0.15);
}
