/* MSN26 — overrides + new sections (loaded AFTER style.css). */

/* ============================================================
   B'Fort CSS Imports (10 new elements from RT arsenal audit)
   Source: msn26-bfort-web-arsenal-matrix-2026-05-26.md
   ============================================================ */

/* 1. Nav backdrop-filter blur — smoother glass effect (from EGC26) */
.nav {
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10, 10, 10, 0.75);
}

/* 2. Kicker ::before red accent line (from EGC26) */
.section-pretitle {
  position: relative;
  display: inline-block;
  padding-left: 44px;
}
.section-pretitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background: #e31b23;
}

/* 3. Drop cap — handled in style.css (.manifesto-lead::first-letter) */

/* 4. Pullquote (from Kozminski offer) */
.pullquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  color: var(--on-dark-primary);
  border-left: 3px solid #e31b23;
  padding-left: 1.2rem;
  margin: 2rem 0;
  max-width: 700px;
}

/* 5. Stats tiles — 4-col large number tiles (from Kozminski offer) */
.stats-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.stats-tile {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
}
.stats-tile .tile-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--on-dark-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-tile .tile-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
@media (max-width: 768px) {
  .stats-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-tiles { grid-template-columns: 1fr; }
}

/* 6. Benefits grid — 2-col icon+title+desc (from Kozminski offer) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.benefit-card {
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  transition: border-color 180ms ease, transform 180ms ease;
}
.benefit-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-dark-primary);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--on-dark-secondary);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* 7. Rich partner cards (from YWC26 partners-section) */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  transition: border-color 180ms ease;
}
.partner-card:hover {
  border-color: var(--accent-gold);
}
.partner-card .partner-logo {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 180ms ease;
}
.partner-card:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}
.partner-card .partner-category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark-accent);
  margin-bottom: 0.75rem;
}
.partner-card .partner-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-dark-primary);
  margin-bottom: 0.5rem;
}
.partner-card .partner-desc {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

/* 8. Gold accent typography classes (from rt-www-home globals.css) */
.rt-event-name {
  color: var(--on-dark-accent);
  font-style: italic;
}
.rt-building-name {
  color: var(--on-dark-accent);
  font-weight: 600;
}
.rt-email-link {
  color: var(--on-dark-accent-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}
.rt-email-link:hover {
  border-bottom-color: var(--on-dark-accent-bright);
}

/* 9. Signal ticker — horizontal scroll in hero (from rt-www-home) */
.signal-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  overflow-x: auto;
  white-space: nowrap;
}
.signal-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.signal-ticker .ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--on-dark-accent);
  flex-shrink: 0;
}

/* 10. Status badge pills (from Obsidian slides) */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid;
}
.badge--confirmed {
  color: #4ade80;
  border-color: #4ade80;
}
.badge--in-talks {
  color: var(--on-dark-accent);
  border-color: var(--accent-gold);
}
.badge--aspirational {
  color: var(--on-dark-muted);
  border-color: var(--border);
}

/* ============================================================
   Ticket pricing phases
   ============================================================ */
.ticket-pricing-phases {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.pricing-phase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.pricing-phase:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phase-label {
  font-size: 0.78rem;
  color: var(--on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phase-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-dark-accent);
}

/* ============================================================
   End B'Fort CSS Imports
   ============================================================ */

/* Preview-draft banner — visible only while site is non-prod. */
.preview-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #e31b23;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
}

/* Full-width hero with overlay text. Full-bleed 100vh per Alex 2026-05-13.
   Break out of the global `section { max-width: 1100px; padding: 7rem 3rem; }`
   cage so the video fills the viewport edge-to-edge.
   2026-05-18 (iPhone Safari fix): poster image becomes the base layer of .hero
   itself, so the hero never renders blank even when the <video> element is
   hidden (A/B poster cohort), autoplay is blocked (iOS Low Power Mode), or
   the source fails to decode. Video layers above via z-index when it plays. */
.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/bg/bfort-akwarela-garden-evening.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* override style.css shorthand that bakes in a gradient + image: we set image inline
     and apply darkening via the separate .hero-overlay div for cleaner control. */
  background: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
/* ============================================================
   Hero — Domi-confirmed Variant B (2026-05-27)
   Gold title + 2px white outline, no glass/blur/background.
   Matches hero-outline-test.html exactly.
   ============================================================ */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(960px, calc(100vw - 2rem));
  padding: 4rem 1rem;
  text-align: center;
  color: #ffffff;
  background: none !important;
  border: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.hero-content * {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}
.hero-edition-badge { display: none !important; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem) !important;
  font-weight: 700;
  line-height: 1.1;
  color: #c5a55a !important;
  -webkit-text-stroke: 2px #ffffff;
  margin-bottom: 1rem;
}
.hero-fullname {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem) !important;
  color: #ffffff !important;
  margin-bottom: 1.2rem;
}
.hero-date-prominent {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0.5rem 0 !important;
}
.hero-subtitle {
  display: none !important;
}
.hero-when {
  margin-top: 0.8rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem !important;
  font-weight: 600;
  color: #c5a55a !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-when {
  margin-top: 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--on-dark-accent, #e3c178);
  text-transform: uppercase;
}
.hero-when-sep {
  margin: 0 0.6rem;
  color: var(--on-dark-muted, #b0aca8); /* decorative date separator dot — not text content */
}
.hero-meta {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

/* Full-width performance section with overlay. Full-bleed 100vh via .section-image. */
.performance {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.performance-bg {
  position: absolute;
  inset: 0;
  background: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  z-index: 0;
}
.performance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.performance-content {
  position: relative;
  z-index: 2;
  max-width: min(960px, calc(100vw - 2rem));
  padding: 4rem 1rem;
  text-align: center;
  color: var(--on-dark-primary, #ffffff);
}

/* Lang toggle button refinement — ensure 44px tap target. */
/* Lang toggle — active indicator */
.lang-opt {
  transition: color 180ms ease, opacity 180ms ease;
  opacity: 0.4;
}
.lang-opt.lang-active {
  color: #c5a55a;
  opacity: 1;
  font-weight: 700;
}
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--on-dark-primary, #ffffff);
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 0;
  transition: background 180ms ease, border-color 180ms ease;
}
.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
  outline: none;
}

/* Ticket-soon banner. */
.ticket-soon-banner {
  margin: 1rem auto 2rem;
  max-width: min(720px, calc(100vw - 2rem));
  padding: 1rem 1.5rem;
  border: 1px solid var(--accent-gold, #c5a55a);
  background: rgba(197,165,90,0.06);
  color: var(--on-dark-primary, #ffffff);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
}
.ticket-soon-banner a {
  color: var(--on-dark-accent, #e3c178);
}

/* Venue prose block. */
.venue-prose {
  max-width: min(840px, calc(100vw - 2rem));
  margin: 2rem auto 3rem;
  padding: 0 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--on-dark-primary, #ffffff);
}
.venue-prose p { margin-bottom: 1.2rem; }
.venue-prose strong { color: var(--on-dark-primary, #ffffff); }

/* Partners tier blocks. */
.partners-tier {
  max-width: min(960px, calc(100vw - 2rem));
  margin: 2rem auto;
  padding: 0 1rem;
}
.partners-tier h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--on-dark-accent, #e3c178);
  margin-bottom: 1rem;
}
.partners-list {
  list-style-type: disc;
  padding-left: 1.4rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--on-dark-primary, #ffffff);
  font-size: 1rem;
  line-height: 1.8;
}
.partners-list li { margin-bottom: 0.4rem; }

/* FAQ. */
.faq {
  max-width: min(840px, calc(100vw - 2rem));
  margin: 4rem auto;
  padding: 0 1rem;
}
.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--on-dark-primary, #ffffff);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--on-dark-accent, #e3c178);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin-top: 0.8rem;
  color: var(--on-dark-primary, #ffffff);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-list a { color: var(--on-dark-accent, #e3c178); }

/* Speaker note (under role). */
.speaker-card .speaker-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--on-dark-primary, #ffffff);
  line-height: 1.5;
}
.speaker-card.moderator { border-color: var(--accent-gold, #c5a55a); }

/* Form note. */
.form-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--on-dark-muted, #b0aca8); /* form helper text below input — UI metadata */
}
.form-note a { color: var(--on-dark-accent, #e3c178); }

/* Tickets vip note. */
.tickets-vip-note {
  max-width: min(720px, calc(100vw - 2rem));
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--on-dark-primary, #ffffff);
  line-height: 1.6;
}

/* Mobile tap-targets. */
@media (max-width: 720px) {
  .nav-links a, .nav-cta, .lang-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Agenda — full-screen 16:9 sticky background, content scrolls over it */
.agenda-sticky-bg {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}
.agenda-sticky-bg > .section-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease;
  will-change: opacity;
}
.agenda-sticky-bg.agenda-visible > .section-bg {
  opacity: 1;
}
.agenda-sticky-bg > .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.agenda-sticky-bg > *:not(.section-bg) {
  position: relative;
  z-index: 1;
  max-width: min(1160px, calc(100vw - 2.5rem));
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.agenda-sticky-bg > .section-header {
  padding-top: 2rem;
}

/* Hero date-prominent — consolidated into hero Variant B block above */

/* Speaker avatar: TBA placeholder (question mark, no initials) — Domi review note 5. */
.speaker-avatar-tba {
  background: rgba(197, 165, 90, 0.15);
  color: var(--on-dark-accent, #e3c178);
  font-size: 2.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tickets grid — deterministic responsive: 4-up desktop, 2x2 tablet, 1-up mobile
   (Alex 2026-05-12 directive: no orphan card on a row, no 3+1 split). */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: min(1200px, calc(100vw - 2rem));
  margin: 0 auto;
}
@media (max-width: 980px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

/* Hyperlinks: gold by default in content sections (Alex 2026-05-12 directive: gold not blue).
   Excludes nav, CTAs, and buttons which have their own styling. */
.partners-form a,
.partners-tier a,
.faq-list a,
.form-note a,
.footer-organizer a,
section p a,
.venue-prose a,
.hero-organizer a,
.three-acts a,
.tickets-vip-note a,
.about-content a,
.manifesto a {
  color: var(--on-dark-accent, #e3c178);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.partners-form a:hover,
.partners-tier a:hover,
.faq-list a:hover,
.form-note a:hover,
.footer-organizer a:hover,
section p a:hover,
.venue-prose a:hover,
.hero-organizer a:hover,
.three-acts a:hover,
.tickets-vip-note a:hover,
.about-content a:hover,
.manifesto a:hover {
  color: var(--on-dark-accent-bright, #ffd76a);
  text-decoration-thickness: 2px;
}

/* Footer-organizer block: normal capitalization, not ALL CAPS (Alex 2026-05-12 directive).
   Overrides style.css uppercase + small-caps treatments on this block. */
.footer-organizer,
.footer-organizer p,
.footer-organizer a,
.footer-organizer span {
  text-transform: none !important;
  letter-spacing: normal;
}
.footer-organizer p:first-child {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--on-dark-muted, #b0aca8); /* small uppercase metadata label override — caption tier */
  margin-bottom: 0.25rem;
}

/* Form labels: normal capitalization (Alex 2026-05-12 — screenshot showed IMIE I NAZWISKO in caps). */
.form-group label {
  text-transform: none !important;
  letter-spacing: 0.02em;
}

/* Networking pill tag on agenda cards (Alex 2026-05-12: "plenty of networking space-time"
   amplification — highlight networking-heavy blocks visually). */
.agenda-tag-networking {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.18em 0.6em;
  background: rgba(184, 149, 106, 0.15);
  color: var(--on-dark-accent, #e3c178);
  border: 1px solid var(--accent-gold, #b8956a);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Networking-time visual section: "Sporo czasoprzestrzeni na networking"
   (Alex 2026-05-12 amplification — section between #agenda and .performance). */
.networking-section {
  max-width: min(1160px, calc(100vw - 2rem));
  margin: 5rem auto;
  padding: 0 1rem;
  text-align: center;
}
.networking-philosophy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.networking-philosophy .networking-tagline {
  display: none;
}

/* C-013.b (Alex 2026-05-13): time-axis bar removed — "not of high value imho".
   All .day-timeline / .timeline-* / .legend-* rules deleted from this file.
   Networking philosophy prose retained below. */

.networking-philosophy {
  max-width: min(720px, calc(100vw - 2rem));
  margin: 3rem auto 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--on-dark-primary, #ffffff);
}

.networking-philosophy p {
  margin-bottom: 1.4rem;
}

.networking-philosophy .networking-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--on-dark-accent, #e3c178);
  font-size: 1.15rem;
  border-left: 2px solid var(--accent-gold, #b8956a);
  padding-left: 1.2rem;
  margin-bottom: 0;
}

/* SOP D2.5 — Mobile nav tap-target + touch-action (per reference_mobile_nav_golden_standard.md).
   Suppress double-tap zoom delay on interactive controls and enforce iOS HIG 44x44 minimum
   on touch viewports. Desktop sizes preserved. */
.nav-links a,
.nav-cta,
.lang-toggle,
.btn-primary,
.btn-secondary,
button[type="button"] {
  touch-action: manipulation;
}

@media (max-width: 720px) and (pointer: coarse) {
  .nav-links a,
  .nav-cta,
  .lang-toggle {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hero video — Part C addition 2026-05-13. Replaces the static hero-bg div
   placeholder. Covers full hero (100vh) underneath .hero-overlay gradient. */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   Part C — alternating-rhythm + parallax image beds (2026-05-13)
   ============================================================ */
/* Full-bleed cage-break for .section-image parallax beds.
   Mirrors .hero pattern (line 17-31): 100vw + margin 0 + max-width none.
   Body has overflow-x hidden so 100vw scrollbar-width overhang is clipped.
   Inner content capped at 1100px via .section-image > *:not(.section-bg) rule below. */
.section-image {
  position: relative;
  width: 100vw;
  margin: 0;
  max-width: none;
  overflow: hidden;
  min-height: 100vh;         /* Full-page parallax beds per Alex 2026-05-13 (uniform) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;           /* Reduced from 6rem — flex centering handles vertical distribution on 100vh */
}

.section-image .section-bg {
  position: absolute;
  inset: -25% 0;            /* 25% overscan for strong parallax travel */
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.section-image .section-bg picture,
.section-image .section-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* C-002 (Alex 2026-05-13): "no dark overlay" — gradient removed.
   Bed images breathe at full luminance; section text still readable because
   text uses --on-dark-* tokens that hit AAA contrast against the warm-dark
   image compositions (venue visualizations).
   If a future image needs darkening for legibility, set:
     .section-image[data-overlay] .section-bg::after { ...gradient... }
   on that specific section, not globally. */
/* DELETED C-002 rule — was killing all overlays. See Step 1. */

/* Activate the overlay only on sections that opt in via data-overlay="true".
   Center-band darker than edges so gold .section-title (#c5a55a) headings
   keep AAA contrast over the warm watercolor mid-tones. */
.section-image[data-overlay="true"] .section-bg::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.25) 0%,
    rgba(15, 15, 15, 0.60) 50%,
    rgba(15, 15, 15, 0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Content children: retain 1100px centering + the original section padding,
   so visual hierarchy of section content matches non-parallax sections. */
.section-image > *:not(.section-bg) {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  box-sizing: border-box;
}
.section-image > *:not(.section-bg):first-child:not([class*="header"]),
.section-image > .section-header { padding-top: 7rem; }
.section-image > *:last-child:not(.section-bg) { padding-bottom: 7rem; }

/* Motion gates: kill parallax for reduced-motion + small/touch viewports. */
@media (prefers-reduced-motion: reduce) {
  .section-image .section-bg {
    transform: none !important;
    will-change: auto;
  }
  /* Hide auto-playing hero video; poster image fills the gap via the .hero-bg-video
     element's `poster` attribute (Chromium/Safari render the poster when video is hidden). */
  .hero-bg-video {
    display: none;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg/bfort-akwarela-garden-evening.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
}

@media (max-width: 720px) {
  .section-image .section-bg {
    transform: none !important;
    will-change: auto;
    inset: 0;               /* No overscan needed without parallax */
  }
}

/* === MOBILE UI FIXES — 2026-05-14 ===
   Surgical fixes for mobile defects without altering desktop canonical layout:
   1. Hamburger menu (no toggle existed; .nav-links was display:none with no fallback)
   2. Footer-links horizontal overflow (flex nowrap with 7 children pushed content offscreen)
   3. Stats-bar uneven 2x2 (flex-wrap with inconsistent item widths → switch to grid)
   4. Hero uses 100dvh (better mobile-webview compatibility than 100vh)
   5. Body x-overflow safety net (html.scrollWidth was 473 vs 375 viewport before this).
*/

/* Safety net: prevent any descendant from creating horizontal scrollbars on mobile. */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
}

/* Hero on mobile: prefer dynamic viewport height for iOS Safari + LinkedIn webview. */
@media (max-width: 768px) {
  .hero { min-height: 100svh; height: auto; }
}

/* Hamburger button (hidden on desktop, shown on mobile). 44x44 minimum per iOS HIG. */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  flex: 0 0 auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(227,27,35,0.2);
}
.nav-hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--on-dark-primary, #ffffff);
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 28px; }
.nav-hamburger.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { position: relative; }
  .nav-hamburger { display: inline-block; }

  /* Mobile dropdown panel: section anchors + lang toggle + CTA stack vertically below nav. */
  .nav-links.nav-sections {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.5rem 1rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.2s ease, visibility 0s linear 0.22s;
    margin: 0;
    flex-wrap: nowrap;
    max-height: calc(100dvh - 4rem);
    overflow-y: auto;
    z-index: 999;
    display: flex; /* override desktop display: flex (was previously display:none) */
  }
  .nav-links.nav-sections.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.22s ease, opacity 0.2s ease, visibility 0s linear 0s;
  }
  .nav-links.nav-sections > a,
  .nav-links.nav-sections > button {
    display: flex;
    align-items: center;
    padding: 0.9rem 0.5rem;
    margin: 0;
    font-size: 0.9rem;
    min-height: 48px;
    color: var(--on-dark-primary, #ffffff);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    width: 100%;
    background: transparent;
    letter-spacing: 0.05em;
  }
  .nav-links.nav-sections > a:last-child,
  .nav-links.nav-sections > button:last-child {
    border-bottom: none;
  }
  .nav-links.nav-sections .lang-toggle {
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
    margin: 0.5rem 0;
  }
  .nav-links.nav-sections .nav-cta {
    background: var(--accent-gold, #c5a55a);
    color: var(--bg-primary, #0f0f0f);
    margin-top: 0.5rem;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
}

/* Footer-links: wrap on narrow viewports instead of nowrap-overflow. */
@media (max-width: 720px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 0 1rem;
  }
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Stats-bar: clean grid on mobile/tablet (was flex with uneven item widths).
   4-col at tablet, 2x2 at phone, 1-col at <340. */
@media (max-width: 768px) {
  .stats-bar {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem 1rem !important;
    padding: 2.5rem 1.5rem !important;
    flex-wrap: initial !important;
    justify-content: stretch !important;
  }
  .stats-bar .stat-item {
    text-align: center;
  }
}
@media (max-width: 520px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 340px) {
  .stats-bar { grid-template-columns: 1fr !important; }
}


/* Hero-meta: don't span full width on mobile; pin to bottom-right with content-fit. */
@media (max-width: 720px) {
  .hero-meta {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    width: auto;
    max-width: calc(100vw - 2rem);
    text-align: right;
  }
  .hero-organizer {
    text-align: right;
  }
}

/* Speakers grid: 2-col on tablets, 1-col on phones */
@media (max-width: 768px) {
  .speakers-grid,
  .speakers-grid.speakers-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .speakers-grid,
  .speakers-grid.speakers-grid--4 {
    grid-template-columns: 1fr !important;
  }
}

/* Hero CTA group: stack and full-width on phones. */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Countdown timer: tighten gap on very narrow screens. */
@media (max-width: 380px) {
  .countdown-timer { gap: 0.6rem; }
  .countdown-banner { padding: 1.5rem 1rem; }
}

/* Tickets grid already collapses correctly (handled at 480px earlier); ensure cards comfortable. */
@media (max-width: 480px) {
  .tickets-grid { padding: 0 0.5rem; }
}

/* Body class for menu-open: prevent background scroll. */
body.nav-menu-open {
  overflow: hidden;
}

/* === STICKY MOBILE NAV (2026-05-14, Alex feedback) ===
   On mobile the nav stays visible during scroll so users always have a way
   back to the menu. Desktop unchanged (nav remains static at top). */
@media (max-width: 768px) {
  .nav#msn-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 200ms ease;
  }
  .nav#msn-nav.menu-open {
    background: rgba(15, 15, 15, 0.97);
  }
}

/* === ORPHAN PREVENTION (no single word on last line) ===
   text-wrap: pretty does this natively in modern Chrome/Safari.
   Fallback: text-wrap: balance for hero/heading copy.
   Hero / section titles / subtitles / paragraphs use these so the last line
   never carries a single dangling word. Browsers without support fall back to
   normal wrapping gracefully. */
.hero-title,
.hero-fullname,
.hero-date-prominent,
.hero-subtitle,
.section-title,
.section-subtitle,
.section-pretitle,
.manifesto-quote,
.act-card h3,
.act-card p,
.agenda-content h4,
.agenda-content p,
.ticket-card p,
.faq-list summary,
.faq-list p {
  text-wrap: pretty;
}
.hero-title,
.hero-fullname,
.section-title,
.section-subtitle,
.manifesto-quote {
  text-wrap: balance;
}

/* === MOBILE: split hero subtitle into separate sentence lines for rhythm ===
   "Jeden dzień. Osiem bloków. Dwie trzecie programu: networking."
   On mobile, line-break after each period for the "Four successors. / Four
   answers." cadence Alex asked for. Works without changing markup: we use
   word-spacing tricks via CSS so periods become natural break points.
   Implementation: use ::before content on a span-less paragraph is fragile,
   so just allow natural balance to position breaks. */
@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
}
/* === END MOBILE UI FIXES === */

/* ==========================================================================
   MSN26 2026-05-16: ROUND-3 COPY + LAYOUT REFRESH
   --------------------------------------------------------------------------
   Origin: SAR-2026-05-14-mhp-abbreviation-third-strike.md
   - Stats disclaimer "work-in-progress" line under the 4-stat grid
   - Concept section single-column refactor (overrides broken .about-grid)
   - Speakers panel-intro paragraph (Past, Present, Future: Tense? intro)
   - Networking philosophy paragraph (why Spacetime for Networking matters)
   - Venue -> Tickets gap condense
   - Orphan-prevention text-wrap extensions
   ========================================================================== */

/* Stats disclaimer — single italic line below the 4-stat grid. */
.stats-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted, #a5a09a);
  margin: 0;
  padding: 0.75rem 1.5rem 1.75rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .stats-disclaimer {
    font-size: 0.72rem;
    padding: 0.5rem 1rem 1.25rem;
  }
}

/* Concept section refactor — single column, centered, 720px max.
   Neutralises the broken `.about-grid { grid-template-columns: 1fr 1fr; }`
   from style.css:405-410 (second column empty because no .about-image
   sibling was ever added). We render the new `.about-concept` instead. */
.about .about-concept {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about .about-concept .concept-block {
  margin-bottom: 2.5rem;
}
.about .about-concept .concept-block:last-of-type {
  margin-bottom: 2rem;
}
.about .about-concept .concept-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  line-height: 1.3;
  color: var(--accent-gold, #c5a55a);
  letter-spacing: 0.01em;
  font-weight: 600;
}
.about .about-concept .concept-block p {
  color: var(--on-dark-primary, #f5f0e8);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}
.about .about-concept .about-closing {
  margin: 2.25rem 0 1.5rem;
  font-style: italic;
  color: var(--on-dark-secondary, #c5a55a);
  line-height: 1.6;
}
.about .about-concept .about-meta {
  margin-top: 2.5rem;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.about .about-concept .about-meta .sep {
  color: var(--text-muted, #a5a09a);
  margin: 0 0.75rem;
}
.about .about-concept .about-meta span[data-i18n] {
  color: var(--accent-gold, #c5a55a);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media (max-width: 480px) {
  .about .about-concept .concept-block h3 {
    font-size: 1.15rem;
  }
  .about .about-concept .about-meta {
    text-align: center;
  }
  .about .about-concept .about-meta .sep {
    display: block;
    margin: 0.5rem 0;
  }
}

/* Speakers panel intro — paragraph block between section header and grid. */
.speakers .panel-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  text-align: center;
}
.speakers .panel-intro p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-dark-secondary, #c5a55a);
  font-style: italic;
  margin: 0;
}
@media (max-width: 480px) {
  .speakers .panel-intro {
    margin-bottom: 2rem;
  }
  .speakers .panel-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Networking philosophy paragraph — between section header and existing
   .networking-philosophy legend block. */
.networking-section .networking-philosophy-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.networking-section .networking-philosophy-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--on-dark-primary, #f5f0e8);
  text-align: center;
  margin: 0;
}
@media (max-width: 480px) {
  .networking-section .networking-philosophy-intro p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

/* D5 — Agenda: bigger font, full .rt-shell width */
.agenda-timeline {
  max-width: min(1160px, calc(100vw - 2.5rem));
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding-left: 2rem;
  padding-right: 2rem;
}
.agenda-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}

/* ALL section titles — gold + 2px white outline (consistent with hero) */
.section-title,
.performance-content h2,
.venue h2,
#tickets h2,
#partners h2,
#faq h2,
.networking-section h2 {
  font-family: 'Playfair Display', serif !important;
  color: #c5a55a !important;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}
.agenda-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}
.agenda-time {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #c5a55a;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  white-space: nowrap;
}

/* Venue -> tickets gap tightening. Default section padding is 7rem top/bottom
   creating 14rem cumulative gap. Halve it for this transition specifically. */
section.venue {
  padding-bottom: 3.5rem;
}
section#tickets {
  padding-top: 3.5rem;
}
@media (max-width: 768px) {
  section.venue {
    padding-bottom: 2.5rem;
  }
  section#tickets {
    padding-top: 2.5rem;
  }
}

/* Orphan-prevention text-wrap extensions for newly added content.
   text-wrap: pretty avoids 1-2 word orphans on continuation lines;
   text-wrap: balance distributes lines evenly on short headlines. */
.stats-disclaimer,
.about .about-concept .concept-block h3,
.about .about-concept .concept-block p,
.about .about-concept .about-closing,
.speakers .panel-intro p,
.networking-section .networking-philosophy-intro p {
  text-wrap: pretty;
}
.about .about-concept .concept-block h3,
.speakers .panel-intro p,
.networking-section .networking-philosophy-intro p {
  text-wrap: balance;
}
/* === END ROUND-3 COPY + LAYOUT REFRESH === */

/* ============================================================
   D1 — Hero countdown inside hero content (2026-05-26)
   ============================================================ */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0.75rem;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
}
.hero-countdown .countdown-timer {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.hero-countdown .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.hero-countdown .number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--on-dark-accent, #c5a55a);
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  line-height: 1;
}
.hero-countdown .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  margin-top: 0.3rem;
}
.hero-countdown .countdown-cta {
  display: none;
}
@media (max-width: 480px) {
  .hero-countdown {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-countdown .countdown-timer {
    gap: 1rem;
  }
  .hero-countdown .number {
    font-size: 1.5rem;
  }
}

/* ============================================================
   D2 — Stats card (single combined row, 2026-05-26)
   ============================================================ */
.stats-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  background: var(--bg-tertiary, #1a1a1a);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.stats-card-item strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--on-dark-accent, #e3c178);
  margin-right: 0.4rem;
  font-weight: 500;
}
.stats-card-item span {
  font-size: 0.78rem;
  color: var(--on-dark-muted, #b0aca8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stats-card-sep {
  color: var(--border, rgba(255,255,255,0.12));
  font-size: 1.2rem;
}
@media (max-width: 640px) {
  .stats-card {
    flex-direction: column;
    gap: 0.75rem;
  }
  .stats-card-sep {
    display: none;
  }
}

/* ============================================================
   D3 — Vignette on parallax images only (2026-05-26)
   ============================================================ */
.section-image .section-bg::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, transparent 18%, transparent 82%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero: NO glass on ANY sub-element (Variant B — clean text on watercolor) */
.hero-content .stats-card,
.hero-content .countdown-timer,
.hero-content .hero-countdown,
.hero-content .hero-cta-group,
.hero-content .btn-primary,
.hero-content .btn-secondary {
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.hero-content .stats-card {
  margin-top: 1.5rem;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  max-width: none;
  margin-bottom: 0;
}
.hero-content .stats-card-item strong {
  font-size: 1.1rem;
}
.hero-content .stats-card-item span {
  font-size: 0.7rem;
}
.hero-content .btn-primary {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  padding: 0.8rem 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-content .btn-secondary {
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: #ffffff !important;
  padding: 0.8rem 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ============================================================
   Canonical RT footer (2026-05-18) — mirrors realtimes.co home page footer.
   Rule: all pages on realtimes.co domain use this footer.
   Source of truth: rt-www-home/src/app/globals.css `.cf-footer*` rules.
   ============================================================ */
.cf-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3.5rem 0 2.5rem;
  background: var(--background, #0f0f0f);
  width: 100vw;
  max-width: none;
  margin: 0;
  text-align: left;
}
.cf-footer .cf-container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}
.cf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.cf-footer-brand img {
  display: block;
  height: 32px;
  width: auto;
}
.cf-footer-brand p {
  color: var(--on-dark-muted, #8a8580);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 0.8rem;
  max-width: 420px;
}
.cf-footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c5a55a; /* RT canonical gold */
  margin: 0 0 0.9rem;
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;
}
.cf-footer div:not(.cf-footer-brand):not(.cf-footer-grid) {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cf-footer a {
  color: var(--on-dark-muted, #8a8580);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.cf-footer a:hover {
  color: var(--on-dark-primary, #ffffff);
}
.cf-footer span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
}
@media (max-width: 980px) {
  .cf-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cf-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .cf-footer-brand img { margin: 0 auto; }
  .cf-footer-brand p { margin-left: auto; margin-right: auto; }
  .cf-footer div:not(.cf-footer-brand):not(.cf-footer-grid) { align-items: center; }
}

/* MMA section — dramatic statement sizing */
.mma-content {
  text-align: center;
  padding: 2rem 1rem;
}
.mma-label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.mma-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #c5a55a;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}
.mma-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.mma-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* Complimentary brands — grouped by category */
.comp-category {
  margin-bottom: 1.2rem;
}
.comp-category-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-accent, #c5a55a);
  margin-bottom: 0.3rem;
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;
}
.comp-brands {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}
.comp-logo-grid {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 0.8rem;
}
.comp-logo-grid--6 { grid-template-columns: repeat(6, 1fr); }
.comp-logo-grid--4 { grid-template-columns: repeat(4, 1fr); }
.comp-logo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.comp-logo-grid img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 180ms ease, filter 180ms ease;
}
.comp-logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .comp-logo-grid--6 { grid-template-columns: repeat(3, 1fr); }
  .comp-logo-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .comp-logo-grid--6,
  .comp-logo-grid--4,
  .comp-logo-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

/* WhatsApp floating button — gold */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(197, 165, 90, 0.4);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.wa-float, .wa-float:hover, .wa-float:visited, .wa-float:active {
  text-decoration: none !important;
  color: #c5a55a !important;
}
.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(197, 165, 90, 0.4);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}
/* WhatsApp expanded state — shows label, then collapses to icon only */
.wa-float.wa-expanded {
  width: auto;
  border-radius: 28px;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  gap: 0.6rem;
}
.wa-float .wa-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c5a55a;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 400ms ease, opacity 300ms ease, margin 300ms ease;
  margin-left: 0;
}
.wa-float.wa-expanded .wa-label {
  max-width: 300px;
  opacity: 1;
  margin-left: 0.4rem;
}
@media (max-width: 768px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
  }
  .wa-float.wa-expanded {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-top: 1px solid rgba(197, 165, 90, 0.3);
  }
  .wa-float.wa-expanded .wa-label {
    font-size: 0.85rem;
  }
}

/* Three Acts — full-width editorial stacked blocks */
.acts-editorial {
  max-width: min(1160px, calc(100vw - 2.5rem));
  margin: 0 auto;
}
.act-band {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.act-band:last-child {
  border-bottom: none;
}
.act-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #c5a55a;
  -webkit-text-stroke: 2px #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
  line-height: 1;
  min-width: 1.5em;
}
.act-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.act-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 520px) {
  .act-band {
    flex-direction: column;
    gap: 1rem;
  }
  .act-num {
    font-size: 2.5rem;
  }
}

/* D15 — Partners grid (5-col responsive) */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* R2-4: Three Acts bolder pretitle + larger fonts */
.three-acts .section-pretitle {
  font-weight: 700;
  color: var(--on-dark-accent-bright, #ffd76a);
  font-size: 0.85rem;
}
.three-acts .acts-grid {
  max-width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}
.three-acts .act-card h3 {
  font-size: 1.5rem;
}
.three-acts .act-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* R2-7: Garden Experience bolder heading + larger copy */
.performance .section-pretitle {
  font-weight: 700;
  color: var(--on-dark-accent-bright, #ffd76a);
}
.performance .section-title {
  font-weight: 700;
  color: var(--on-dark-accent-bright, #ffd76a);
}
.performance-content p {
  font-size: 1.1rem;
  line-height: 1.75;
}
.performance-mystery {
  font-size: 1.3rem;
}

/* R2-8: Speakers center-align + Phoenix jury hidden */
.speaker-subsection {
  text-align: center;
}
.subsection-title {
  text-align: center;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
  gap: 1.5rem;
}
.speakers-grid.speakers-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.speaker-subsection[data-section="phoenix-jury"] {
  display: none;
}

/* R2-9: Venue as parallax section-image */
section.venue.section-image {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 4rem 0;
}
section.venue.section-image > *:not(.section-bg) {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.venue .venue-gallery {
  display: none;
}

/* Ticket phase chip — straddles card top border */
.ticket-card {
  position: relative;
}
.ticket-phase-chip {
  position: absolute;
  top: -0.9em;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--accent-gold, #c5a55a);
  color: #0f0f0f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 1.2em;
  white-space: nowrap;
  z-index: 1;
}
.ticket-phase-chip[data-phase="regular"] {
  background: rgba(255,255,255,0.15);
  color: var(--on-dark-primary, #fff);
}
.ticket-phase-chip[data-phase="last"] {
  background: var(--rt-red, #e31b23);
  color: #fff;
}

/* Pricing phase rows — name + deadline + price */
.pricing-phase {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.8rem;
}
.phase-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-accent, #c5a55a);
  flex-basis: 100%;
  text-align: left;
}
.pricing-phase {
  text-align: left;
}
.ticket-card {
  display: flex;
  flex-direction: column;
}
.ticket-pricing-phases {
  flex-grow: 1;
}
.ticket-card .btn-primary,
.ticket-card .btn-secondary {
  margin-top: auto;
}
.phase-deadline {
  font-size: 0.72rem;
  color: var(--on-dark-muted, #8a8580);
  letter-spacing: 0.04em;
}

/* Current phase price — prominent, below card name */
.ticket-current-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--on-dark-accent, #c5a55a);
  margin-bottom: 1rem;
}

/* Early Bird chip shimmer animation */
@keyframes chipShimmer {
  0% { box-shadow: 0 0 4px rgba(197,165,90,0.3); }
  50% { box-shadow: 0 0 16px rgba(197,165,90,0.7), 0 0 30px rgba(197,165,90,0.3); }
  100% { box-shadow: 0 0 4px rgba(197,165,90,0.3); }
}
.ticket-phase-chip {
  animation: chipShimmer 3s ease-in-out infinite;
}

/* VIP card — single flat price, prominent */
.ticket-card--vip {
  border-color: var(--accent-gold, #c5a55a);
}
.ticket-phase-chip--vip {
  background: var(--accent-gold, #c5a55a);
  color: #0f0f0f;
  font-size: 0.9rem;
  padding: 0.5em 1.8em;
  letter-spacing: 0.18em;
}
.pricing-phase--flat {
  justify-content: center;
  padding: 1rem 0;
}
.phase-price--vip {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem !important;
  font-weight: 700;
  color: var(--on-dark-accent, #c5a55a);
}
.vip-perks-box {
  padding: 1rem 1.2rem !important;
}
.vip-perks-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.vip-perks-text strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--on-dark-accent, #c5a55a);
}

/* R2-10: 3-tier ticket grid + larger names */
section#tickets .tickets-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: min(1160px, calc(100vw - 2rem));
  gap: 1.5rem;
}
section#tickets .ticket-card .ticket-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--on-dark-accent, #e3c178);
}
section#tickets .ticket-card .ticket-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  section#tickets .tickets-grid {
    grid-template-columns: 1fr;
  }
}

/* R2-13/14/16/17: Partner logo marquee bands */
.partners-grid {
  display: none !important;
}
.partner-marquee-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 2rem 0;
}
.partner-marquee-label {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
}
.partner-marquee-band {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  padding: 0.5rem 0;
}
.partner-marquee-band img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 200ms ease;
  flex-shrink: 0;
}
.partner-marquee-band img:hover {
  opacity: 1;
}
.partner-marquee-band--left {
  animation: marquee-scroll-left 45s linear infinite;
}
.partner-marquee-band--right {
  animation: marquee-scroll-right 45s linear infinite;
}
@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-marquee-band--left,
  .partner-marquee-band--right {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 2rem;
  }
}

/* ============================================================
   Speaker Modal System (MSN26 B'Fort)
   Created: 2026-05-26
   ============================================================ */

/* Speaker sub-sections */
.speaker-subsection {
  margin-bottom: 4rem;
}

.subsection-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-dark-accent, #e3c178);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border, #4a4846);
}

/* Keynote grid: single column centered */
.speakers-grid--keynote {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 300px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* Make speaker cards clickable */
.speaker-card[data-name] {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.speaker-card[data-name]:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold, #b8956a);
}

/* Modal overlay */
.speaker-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 180ms ease;
}

/* Modal card */
.speaker-modal-card {
  position: relative;
  max-width: 480px;
  width: calc(100% - 2rem);
  background: var(--bg-tertiary, #1a1a1a);
  border: 1px solid var(--border, #4a4846);
  padding: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

/* Close button */
.speaker-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--accent-gold, #b8956a);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease;
  font-weight: 300;
}

.speaker-modal-close:hover {
  color: var(--accent-gold-light, #c9a87a);
}

/* Avatar container */
.speaker-modal-avatar-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Avatar image */
.speaker-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold, #b8956a);
}

/* Monogram fallback */
.speaker-modal-monogram {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary, #111111);
  border: 2px solid var(--accent-gold, #b8956a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold, #b8956a);
}

/* Modal text content */
.speaker-modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--on-dark-primary, #ffffff);
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.speaker-modal-role {
  font-size: 0.9rem;
  color: var(--on-dark-accent, #e3c178);
  text-align: center;
  margin-bottom: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.speaker-modal-company {
  font-size: 0.85rem;
  color: var(--on-dark-secondary, #e8e6e3);
  text-align: center;
  margin-bottom: 1.5rem;
}

.speaker-modal-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--on-dark-secondary, #e8e6e3);
  margin-bottom: 1.5rem;
}

/* LinkedIn button */
.speaker-modal-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--accent-gold, #b8956a);
  color: var(--accent-gold, #b8956a);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease;
}

.speaker-modal-linkedin:hover {
  background: var(--accent-gold, #b8956a);
  color: var(--bg-primary, #0a0a0a);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .speaker-modal-card {
    padding: 1.5rem;
  }

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

  .speaker-modal-avatar,
  .speaker-modal-monogram {
    width: 64px;
    height: 64px;
  }

  .speaker-modal-monogram {
    font-size: 1.5rem;
  }
}

/* Partnership form AJAX status line (2026-05-30) */
.pf-status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 1.2em;
}
.pf-status--ok { color: #7cfc9b; }
.pf-status--err { color: #ff8a8a; }
.pf-status--pending { color: var(--on-dark-muted, #aaaaaa); }
