@charset "UTF-8";
/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080002;
  --orange: #d4003a;
  --indigo: #4a0018;
  --magenta: #800020;
  --acid: #ff9500;
  --white: #ffffff;
  --cream: #fff5f0;
  --dark2: #0e0004;
  --dark3: #0a0003;
  --border: 5px solid var(--orange);
  --border-indigo: 5px solid var(--indigo);
  --border-magenta: 5px solid var(--magenta);
  --border-acid: 4px solid var(--acid);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3 { font-family: 'Archivo Black', sans-serif; letter-spacing: -0.02em; }

/* =============================================
   UTILITY BASE CLASSES
   ============================================= */
.sec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.sec-label a { color: inherit; text-decoration: none; }
.sec-label a:hover { text-decoration: underline; }

.sec-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  position: relative;
  z-index: 1;
}

.sec-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1.2rem;
  line-height: 1.55;
}

/* =============================================
   NAVIGATION — floating pill
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem calc((100% - 1200px) / 2);
  white-space: nowrap;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.hero-euro-line {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
}

.hero-eps-logo {
  height: 0.72em;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

/* Top-level nav items */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.55rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}

.nav-item > a:hover,
.nav-item:hover > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown arrow */
.nav-arrow {
  font-size: 0.55em;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  padding-top: 0.2rem; /* fills the gap so hover stays connected */
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, visibility 0.18s;
  z-index: 10;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* inner panel — separate from the outer so padding-top doesn't get a background */
.nav-dropdown::after {
  display: none;
}

.nav-dropdown-inner {
  background: rgba(12, 2, 4, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.nav-dropdown-label {
  display: block;
  padding: 0.6rem 1.2rem 0.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.nav-dropdown-label:not(:first-child) {
  margin-top: 0.3rem;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 0.6rem;
}

.nav-dropdown li a .nav-ext {
  font-size: 0.7rem;
  opacity: 0.4;
  margin-left: 0.3rem;
}

.nav-dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.nav-dropdown-col {
  min-width: 180px;
}

.nav-dropdown-col:not(:last-child) {
  border-right: 1px dashed rgba(255,255,255,0.1);
}

.nav-dropdown.nav-dropdown-wide {
  min-width: 560px;
  left: 0;
  transform: none;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0.45rem 0.9rem;
  margin-left: auto;
  margin-right: 0.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

/* Search modal */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}

.search-modal[hidden] { display: none; }

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-modal-content {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 1.5rem;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.search-modal-input {
  display: block;
  width: 100%;
  padding: 1rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
}

.search-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-modal-results {
  max-height: 50vh;
  overflow-y: auto;
}

.search-modal-results:empty::after {
  content: "Type to search\2026";
  display: block;
  padding: 1.2rem 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.05rem;
}

.search-modal-item {
  display: block;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-modal-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
}

.search-modal-item-meta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

.nav-cta {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  border-radius: 2px;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 0.25rem;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-main {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(4,10,10,0.92) 0%, rgba(4,10,10,0.75) 40%,
      rgba(4,10,10,0.35) 70%, rgba(4,10,10,0.2) 100%),
    url('./krakow.jpg') center 55% / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
}

.hero-dot-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.45) 1.5px, transparent 1.5px);
  background-size: 7px 7px;
  pointer-events: none;
}

.hero-main .section-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-block {
  max-width: 600px;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff9500;
  border-bottom: 3px solid #ff9500;
  display: inline-block;
  padding-bottom: 0.4rem;
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.85;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  background: radial-gradient(ellipse at top left, #d62020 0%, #a8002d 55%, #700020 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.3rem;
}

.hero-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2rem;
  line-height: 1.6;
  max-width: 440px;
}

.hero-intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-main .hero-dates {
  margin-left: auto;
  margin-right: auto;
}

.hero-main .hero-cta-row {
  margin-top: 3rem;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 3px solid var(--acid);
  padding-bottom: 0.4rem;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  line-height: 0.85;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  text-shadow: 0 2px 0 #222;
}

.hero-title .ep-year {
  display: block;
  color: var(--orange);
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.82;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 2px 0 rgba(0,0,0,0.3);
}

.hero-city {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 4.8rem);
  color: #ffffff;
  background: #1a5c2a;
  padding: 0.22em 0.55em;
  transform: rotate(-1.5deg);
  margin-top: 1em;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 4px #ffffff;
  border-radius: 8px;
}

/* =============================================
   POLAND LABEL
   ============================================= */
.hero-country {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.5rem;
}

.hero-dates {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
  max-width: 800px;
}

.hero-date-block {
  border-bottom: 4px solid var(--white);
  padding: 0.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-date-main {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--white);
}

.hero-date-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.hero-week-tagline {
  margin-top: 3.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.hero-schedule {
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}

.hero-schedule span {
  color: var(--acid);
  font-weight: 700;
}

.hero-schedule a {
  color: var(--acid);
  font-weight: 700;
  text-decoration: none;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.44rem;
  color: #eeeeee;
  font-style: italic;
  margin-top: 1.6rem;
  letter-spacing: 0.01em;
}

.hero-cta-row {
  margin-top: 5.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: 3px solid var(--orange);
  border-radius: 2px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(214,32,32,0.3), inset 0 0 20px rgba(214,32,32,0.05);
}
.btn-primary:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 50px rgba(214,32,32,0.6), inset 0 0 25px rgba(214,32,32,0.15);
}

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  border: 3px solid var(--acid);
  border-radius: 2px;
  padding: 0.9rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 16px rgba(255,149,0,0.2), inset 0 0 16px rgba(255,149,0,0.04);
}
.btn-secondary:hover {
  background: var(--acid);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(255,149,0,0.5), inset 0 0 20px rgba(255,149,0,0.1);
}

/* =============================================
   SECTION UTILITY
   ============================================= */
.section {
  position: relative;
  overflow: visible; /* let flowers overflow cleanly */
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--acid);
  border-left: 4px solid var(--acid);
  padding-left: 0.8rem;
  margin-bottom: 2rem;
}

.section-number {
  position: absolute;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  top: -1rem;
  right: -2rem;
  pointer-events: none;
  user-select: none;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* =============================================
   PROGRAMME SECTION
   ============================================= */
/* =============================================
   NEWS SECTION
   ============================================= */
.news-section {
  background: #050810;
  color: var(--white);
}

.news-section .section-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.news-header { margin-bottom: 2.5rem; }

.news-header h2 {
  font-size: 2.2rem;
  color: var(--cream);
}

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

.news-card {
  padding: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.news-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--acid);
}

.news-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.25;
}

.news-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.news-cta {
  display: inline-block;
  margin-top: 0.75rem;
  align-self: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  color: var(--acid);
  text-decoration: none;
  border: 2px solid var(--acid);
  border-radius: 2px;
  padding: 0.5rem 1.2rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 16px rgba(255,149,0,0.2), inset 0 0 16px rgba(255,149,0,0.04);
}
.news-cta:hover {
  background: var(--acid);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(255,149,0,0.5), inset 0 0 20px rgba(255,149,0,0.1);
}

@media (max-width: 860px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
}

.prog-section {
  background: #070b14;
  color: var(--white);
}

.prog-section .section-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 1200px;
}

.prog-section-header { margin-bottom: 2.5rem; }

.prog-label { color: var(--orange); }

.prog-section-title { /* inherits sec-title */ }

.prog-card-cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1.2rem;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
}

.link-inherit {
  color: inherit;
  text-decoration: none;
}

.prog-section-header .prog-topics-label {
  margin-top: 1rem;
}

.prog-keynoters .prog-topics-label {
  text-align: center;
}

.prog-events-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.prog-keynoter-photo--empty {
  background: #0e0e0e;
}

.prog-keynoter-placeholder {
  font-family: 'Archivo Black', sans-serif;
  font-size: 5rem;
  opacity: 0.12;
  color: #fff;
}

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

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

.prog-card-date {
  padding: 1.8rem 1.4rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}

.prog-card-date-main {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.55rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.prog-card-date-days {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
}

.prog-card-body {
  padding: 1.6rem 1.4rem 2rem;
}

.prog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.44rem;
  font-weight: 700;
  color: var(--acid);
  margin-bottom: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.prog-card-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.prog-cta {
  text-align: center;
}

.prog-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(to bottom, #b8ff00, #96d400);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
}
.prog-cta-btn:hover { opacity: 0.85; }

.prog-topics {
  margin-top: 3rem;
  text-align: center;
}

.prog-topics-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.topics-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.topic-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  background: rgba(255,255,255,0.07);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.35em 1.1em;
  transition: background 0.15s, color 0.15s;
}
.topic-tag:hover {
  background: var(--acid);
  color: var(--bg);
  border-color: var(--acid);
}

.prog-events {
  margin-top: 4rem;
  text-align: center;
}

.prog-events-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.prog-event-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  color: var(--acid);
  text-decoration: none;
  border: 2px solid var(--acid);
  border-radius: 2px;
  padding: 0.9rem 2rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 16px rgba(255,149,0,0.2), inset 0 0 16px rgba(255,149,0,0.04);
}
.prog-event-link:hover {
  background: var(--acid);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(255,149,0,0.5), inset 0 0 20px rgba(255,149,0,0.1);
}

.prog-keynoters {
  margin-top: 4rem;
}

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

.prog-keynoter {
  border-right: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  overflow: hidden;
  transition: background 0.2s;
}
.prog-keynoter:nth-child(3n) { border-right: none; }
.prog-keynoter:nth-last-child(-n+3) { border-bottom: none; }
.prog-keynoter:hover {
  background: rgba(255,255,255,0.04);
}

.prog-keynoter-photo {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prog-keynoter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.3) brightness(0.7) sepia(0.4) hue-rotate(180deg);
  transition: filter 0.3s;
}

.prog-keynoter:hover .prog-keynoter-photo img {
  filter: none;
}

.prog-keynoter-initial {
  font-family: 'Archivo Black', sans-serif;
  font-size: 7rem;
  line-height: 1;
  opacity: 0.18;
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  color: #fff;
  user-select: none;
}

.prog-keynoter-body {
  padding: 1.8rem 1.8rem 2rem;
}

.prog-keynoter-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.prog-keynoter-role {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.prog-keynoter-bio {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.prog-more {
  text-align: center;
  margin-top: 3rem;
}
.prog-more-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.prog-more-cta:hover { opacity: 0.85; }

/* =============================================
   PROGRAMME SECTIONS — shared header + 2×2 grid
   ============================================= */
.progsec-header {
  text-align: center;
  margin-bottom: 3rem;
}
.progsec-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.progsec-grid li {
  padding: 1.6rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
.progsec-grid li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

/* — Talks — */
.progtalk-section {
  background: #080f1a;
  color: var(--white);
}
.progtalk-label { color: #f5a623; }
.progtalk-title { line-height: 0.9; color: #f5a623; }
.progtalk-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #f5a623, #d48b10);
  color: #0d1a2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.progtalk-cta:hover { opacity: 0.85; }

/* — Tutorials — */
.progtut-section {
  background: #080f1a;
  color: var(--white);
}
.progtut-label { color: #4ecdc4; }
.progtut-title { line-height: 0.9; color: #4ecdc4; }
.progtut-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #4ecdc4, #2ea89f);
  color: #0d1a2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.progtut-cta:hover { opacity: 0.85; }

/* — Posters — */
.progpost-section {
  background: #080f1a;
  color: var(--white);
}
.progpost-label { color: #c084fc; }
.progpost-title { line-height: 0.9; color: #c084fc; }
.progpost-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #c084fc, #9b5de5);
  color: #0d1a2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.progpost-cta:hover { opacity: 0.85; }

/* — Lightning Talks — */
.proglightning-section {
  background: #080f1a;
  color: var(--white);
}
.proglightning-label { color: #ffd166; }
.proglightning-title { line-height: 0.9; }
.proglightning-title span { display: block; color: #ffd166; }

/* — Open Spaces — */
.progopen-section {
  background: #081a19;
  color: var(--white);
}
.progopen-label { color: #56d4c8; }
.progopen-title { line-height: 0.9; }
.progopen-title span { display: block; color: #56d4c8; }

/* — Sprints — */
.progsprint-section {
  background: #1a0f08;
  color: var(--white);
}
.progsprint-label { color: #f0826c; }
.progsprint-title { line-height: 0.9; }
.progsprint-title span { display: block; color: #f0826c; }

/* =============================================
   DISCOVER KRAKÓW SECTION
   ============================================= */
.krakow-section {
  background: #0d1a0a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.krakow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(46,204,113,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(30,140,70,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.krakow-flowers-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.07;
  filter: brightness(1.5) saturate(0.5);
  will-change: transform;
}

.krakow-flowers-bg img {
  position: absolute;
  top: var(--t);
  left: var(--l);
  width: var(--w);
  transform: rotate(var(--r, 0deg));
}

.krakow-flowers-bg img.flower-flip {
  transform: rotate(var(--r, 0deg)) scaleX(-1);
}

.krakow-gallery-container { /* inherits sec-inner */ }

.krakow-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.krakow-label { color: #2ecc71; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px dashed rgba(255,255,255,0.1);
  transition: transform .3s ease;
  cursor: pointer;
}
.bento-item:hover {
  transform: translateY(-4px);
}

.bento-item.img1 { grid-column: span 3; height: 400px; }
.bento-item.img2,
.bento-item.img3,
.bento-item.img4 { grid-column: span 1; height: 550px; }

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.bento-item:hover .gallery-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.bento-item:hover .image-overlay {
  opacity: 1;
}

.krakow-footer {
  margin-top: 2rem;
  text-align: center;
}

.krakow-credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.krakow-more {
  text-align: center;
  margin-top: 2.5rem;
}

.krakow-btn {
  display: inline-block;
  background: linear-gradient(to bottom, #2ecc71, #25a85d);
  color: #0d1a0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s;
}
.krakow-btn:hover { opacity: 0.85; }

@media (max-width: 1024px) {
  .bento-item.img1 { height: 350px; }
  .bento-item.img2,
  .bento-item.img3,
  .bento-item.img4 { height: 450px; }
}

@media (max-width: 640px) {
  .krakow-gallery-container { padding: 2rem 0.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.img1,
  .bento-item.img2,
  .bento-item.img3,
  .bento-item.img4 { grid-column: span 1; height: 250px; }
  .bento-item.img2,
  .bento-item.img3,
  .bento-item.img4 { height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
  .bento-item, .gallery-image, .image-overlay { transition: none; }
  .bento-item:hover, .bento-item:hover .gallery-image { transform: none; }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  background: linear-gradient(135deg, #6b8ba3 0%, #7a9ab2 30%, #5c7f9a 60%, #8aacc2 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 5% 60%, rgba(255,255,255,0.35) 0%, transparent 50%),
    radial-gradient(ellipse 70% 90% at 95% 10%, rgba(140,190,240,0.5) 0%, transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 95%, rgba(180,220,255,0.35) 0%, transparent 45%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-inner {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-label { color: #1e3a5f; }

.testimonials-header h2 { color: #1e3a5f; }

.testimonials-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: #3a5070;
  margin-top: 1.2rem;
  line-height: 1.55;
}

.testimonials-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.testimonials-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(30,58,95,0.2);
  border-radius: 2px;
  color: #1e3a5f;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: border-color 0.15s, background 0.15s;
}

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

.testimonials-link:hover {
  border-color: rgba(30,58,95,0.4);
  background: rgba(30,58,95,0.06);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.testimonial-card {
  background: #fff;
  border-radius: 2px;
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #d1dde8;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e3a5f;
  transition: color 0.2s;
}

.testimonial-card:hover .testimonial-name {
  color: #0077b5;
}

.testimonial-quote {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
  font-style: italic;
}

/* =============================================
   COMMUNITY PARTNERS SECTION
   ============================================= */
/* ICE Kraków Venue Block */
.ice-venue-section {
  background: #0a0a1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ice-venue-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(214,32,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(180,20,20,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.ice-venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ice-venue-left {
  position: sticky;
  top: 2rem;
}

.ice-venue-label { color: #d62020; }

.ice-venue-title { line-height: 0.9; }

.ice-venue-title span {
  display: block;
  color: #d62020;
}

.ice-venue-subtitle { /* inherits sec-subtitle */ }

.ice-venue-cta-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ice-venue-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #0a0a1a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ice-venue-cta:hover { opacity: 0.85; }

.ice-venue-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border: 1px dashed rgba(214,32,32,0.3);
  border-radius: 2px;
  color: #d62020;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.ice-venue-map-link:hover {
  color: #fff;
  border-color: rgba(214,32,32,0.5);
}

.ice-venue-photo {
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.ice-venue-photo img {
  width: 100%;
  display: block;
}

.ice-venue-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ice-venue-details li {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.ice-venue-details li:last-child {
  border-bottom: none;
}

.ice-venue-details li strong {
  color: rgba(255,255,255,0.9);
}

.ice-venue-sprints {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 1rem 1.2rem;
  border: 1px dashed rgba(214,32,32,0.2);
  border-radius: 2px;
  background: rgba(214,32,32,0.04);
  text-align: center;
}

.ice-venue-sprints-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #d62020;
  margin-bottom: 0.4rem;
}

.ice-venue-sprints p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 900px) {
  .ice-venue-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ice-venue-left {
    position: static;
  }
}


.community-partners-section {
  background: #fff;
  padding: 4rem 1.5rem;
}

.community-partners-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.community-partners-header { margin-bottom: 2.5rem; }

.community-partners-header h2 {
  color: #070b14;
  margin-bottom: 0.5rem;
}

.community-partners-header p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: #070b14;
  opacity: 0.6;
}

.community-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cp-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

.cp-logo img {
  height: 100px;
  width: auto;
  max-width: min(180px, 100%);
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}

.cp-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.cp-name {
  margin-top: 0.6rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: #070b14;
  opacity: 0.6;
  text-align: center;
}

/* =============================================
   SPONSORS SECTION
   ============================================= */
.sponsors-section {
  background: #fff;
  padding: 5rem 1.5rem;
}

.sponsors-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.sponsors-header { margin-bottom: 3.5rem; }

.sponsors-header h2 {
  color: #070b14;
  margin-bottom: 0.75rem;
}

.sponsors-header p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: #070b14;
  opacity: 0.6;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.sponsors-cta {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  border-radius: 6px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sponsors-cta:hover { opacity: 0.85; }

.sponsor-tier {
  margin-bottom: 2.5rem;
}

.sponsor-tier-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sponsor-tier-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.tier-platinum .sponsor-tier-logos {
  grid-template-columns: repeat(3, 1fr);
}

.sponsor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

.sponsor-logo img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}

.sponsor-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.tier-platinum .sponsor-logo img  { height: 120px; max-width: min(280px, 100%); }
.tier-gold     .sponsor-logo img  { height: 90px;  max-width: min(220px, 100%); }
.tier-silver   .sponsor-logo img  { height: 72px;  max-width: min(180px, 100%); }
.tier-bronze   .sponsor-logo img,
.tier-patron   .sponsor-logo img,
.tier-finaid   .sponsor-logo img,
.tier-supporter .sponsor-logo img { height: 60px;  max-width: min(160px, 100%); }

.sponsor-tier-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 0 0 2.5rem;
}

/* =============================================
   TICKETS SECTION
   ============================================= */
.tickets-section {
  background: #070b14;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tickets-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.tickets-inner { padding: 5rem 2rem; }

.tickets-header { /* inherits sec-header */ }

.tickets-header h2 { margin-bottom: 0.75rem; }

.tickets-header p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.ticket-card {
  padding: 2.5rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ticket-card:last-child { border-right: none; }

.ticket-type {
  font-size: 1.5rem;
}

.ticket-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1.1;
}

.ticket-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  flex: 1;
}

.ticket-pricing {
  margin: 0.5rem 0 0.25rem;
}

.ticket-price-main {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1.2;
}

.ticket-price-late {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.ticket-price-late strong {
  color: var(--cream);
  font-weight: 700;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.ticket-features li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.3rem;
  position: relative;
}

.ticket-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--acid);
}

.ticket-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  border-radius: 2px;
  padding: 0.75rem 2rem;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.ticket-cta:hover { opacity: 0.85; }

.tickets-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
  margin-top: 0;
}

.ticket-note {
  padding: 1.5rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.ticket-note:last-child { border-right: none; }

.ticket-note strong {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.3rem;
}

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

.ticket-card.featured {
  background: rgba(255,149,0,0.05);
}

.ticket-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--acid);
  border-radius: 2px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.25rem;
}

.tickets-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
  margin-top: 0;
}

.ticket-addon {
  padding: 2rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ticket-addon:last-child { border-right: none; }

.ticket-addon-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.ticket-addon-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  color: var(--acid);
  line-height: 1;
}

.ticket-addon-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.ticket-common {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 2.5rem;
}

.ticket-common-block h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--acid);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ticket-common-block p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.ticket-included-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.ticket-included-list li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.3rem;
  position: relative;
}

.ticket-included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--acid);
}

.ticket-vat-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border: 1px dashed rgba(255,149,0,0.25);
  border-radius: 2px;
  background: rgba(255,149,0,0.05);
}

.ticket-vat-note p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   FINANCIAL AID NEW SECTION
   ============================================= */
.finaid-section {
  background: #070b14;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.finaid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.finaid-inner { padding: 5rem 2rem; }

.finaid-header { /* inherits sec-header */ }

.finaid-header h2 { margin-bottom: 0.75rem; }

.finaid-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.finaid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.finaid-card {
  padding: 2.5rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  align-items: center;
}

.finaid-card:last-child { border-right: none; }


.finaid-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
}

.finaid-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.2rem;
  color: var(--acid);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0.25rem 0;
}

.finaid-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  flex: 1;
}

.finaid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2.4rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}

.finaid-footer p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.finaid-footer p strong {
  color: var(--cream);
}

.finaid-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.finaid-cta:hover { opacity: 0.85; }

/* =============================================
   VISA SUPPORT SECTION
   ============================================= */
.visa-section {
  background: #0a0a1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.visa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.visa-inner { padding: 5rem 2rem; }

.visa-header h2 { margin-bottom: 0.75rem; }

.visa-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.visa-card {
  padding: 2.5rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visa-card:last-child { border-right: none; }

.visa-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
}

.visa-card-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.visa-tips {
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2rem 2.4rem;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.02);
}

.visa-tips-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.visa-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visa-tips-list li {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  padding-left: 1.5rem;
  position: relative;
}

.visa-tips-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--acid);
}

.visa-tips-list li strong {
  color: var(--cream);
}

.visa-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2.4rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}

.visa-footer p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.visa-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.visa-cta:hover { opacity: 0.85; }

.visa-section a:not(.visa-cta):not(.sec-label a) {
  color: var(--acid);
  text-decoration: underline;
}
.visa-section a:not(.visa-cta):not(.sec-label a):hover {
  color: var(--cream);
}
.visa-section .sec-label a { text-decoration: none; }

/* =============================================
   VOLUNTEERING SECTION
   ============================================= */
.volunteering-section {
  background: #070b14;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.volunteering-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.volunteering-inner { padding: 5rem 2rem; }

.volunteering-header h2 { margin-bottom: 0.75rem; }

.volunteering-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.volunteering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.volunteering-card {
  padding: 2.5rem 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  align-items: center;
}

.volunteering-card:last-child { border-right: none; }

.volunteering-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.volunteering-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--cream);
}

.volunteering-card-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.volunteering-perks {
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2rem 2.4rem;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.02);
}

.volunteering-perks-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.volunteering-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.volunteering-perk {
  padding: 1.2rem 1.5rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
}

.volunteering-perk:last-child { border-right: none; }

.volunteering-perk strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
}

.volunteering-perk p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.volunteering-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2.4rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}

.volunteering-footer p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.volunteering-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.volunteering-cta:hover { opacity: 0.85; }

/* =============================================
   EUROSCIPY SECTION
   ============================================= */
.euroscipy-section {
  background: #2e2ed4;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.euroscipy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.euroscipy-label {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.euroscipy-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.euroscipy-dates {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.euroscipy-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #f04040, #cc3030);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.euroscipy-cta:hover { opacity: 0.88; }

.euroscipy-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.euroscipy-right p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.euroscipy-right p strong {
  color: var(--white);
}

.euroscipy-sprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  width: fit-content;
}

/* =============================================
   CONFERENCE ORGANISERS SUMMIT SECTION
   ============================================= */
.orgsummit-section {
  background: #081a12;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.orgsummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(20,160,80,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(10,100,50,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.orgsummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.orgsummit-left {
  position: sticky;
  top: 2rem;
}

.orgsummit-label { color: #2ecc71; }

.orgsummit-title { line-height: 0.9; }

.orgsummit-title span {
  display: block;
  color: #2ecc71;
}

.orgsummit-subtitle { /* inherits sec-subtitle */ }

.orgsummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #2ecc71, #25a85d);
  color: #081a12;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.orgsummit-cta:hover { opacity: 0.85; }

.orgsummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.orgsummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.orgsummit-events li:last-child { border-bottom: none; }

.orgsummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* ── Shared summit meta ── */
.summit-info {
  margin-top: 1.5rem;
}

.summit-date {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.summit-room {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
}

.summit-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-top: 1.2rem;
  line-height: 1.5;
}

/* =============================================
   LANGUAGE SUMMIT SECTION
   ============================================= */
.langsummit-section {
  background: #080f1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.langsummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(60,120,200,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(40,80,160,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.langsummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.langsummit-left { position: sticky; top: 2rem; }
.langsummit-label { color: #5b9bd5; }
.langsummit-title { line-height: 0.9; }
.langsummit-title span { display: block; color: #5b9bd5; }
.langsummit-subtitle { /* inherits sec-subtitle */ }
.langsummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #5b9bd5, #3a7abd);
  color: #0d1a2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.langsummit-cta:hover { opacity: 0.85; }
.langsummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.langsummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.langsummit-events li:last-child { border-bottom: none; }
.langsummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* =============================================
   C API SUMMIT SECTION
   ============================================= */
.capisummit-section {
  background: #10081a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.capisummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(140,60,200,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(100,40,160,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.capisummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.capisummit-left { position: sticky; top: 2rem; }
.capisummit-label { color: #a374d5; }
.capisummit-title { line-height: 0.9; }
.capisummit-title span { display: block; color: #a374d5; }
.capisummit-subtitle { /* inherits sec-subtitle */ }
.capisummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #a374d5, #8555b8);
  color: #1a0d2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.capisummit-cta:hover { opacity: 0.85; }
.capisummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.capisummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.capisummit-events li:last-child { border-bottom: none; }
.capisummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* =============================================
   PACKAGING SUMMIT SECTION
   ============================================= */
.pkgsummit-section {
  background: #101005;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pkgsummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(200,170,30,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(160,130,20,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.pkgsummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pkgsummit-left { position: sticky; top: 2rem; }
.pkgsummit-label { color: #d4a520; }
.pkgsummit-title { line-height: 0.9; }
.pkgsummit-title span { display: block; color: #d4a520; }
.pkgsummit-subtitle { /* inherits sec-subtitle */ }
.pkgsummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #d4a520, #b08a18);
  color: #1a1a08;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pkgsummit-cta:hover { opacity: 0.85; }
.pkgsummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pkgsummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.pkgsummit-events li:last-child { border-bottom: none; }
.pkgsummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* =============================================
   RUST SUMMIT SECTION
   ============================================= */
.rustsummit-section {
  background: #100a05;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.rustsummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(200,100,30,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(160,70,20,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.rustsummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.rustsummit-left { position: sticky; top: 2rem; }
.rustsummit-label { color: #e06030; }
.rustsummit-title { line-height: 0.9; }
.rustsummit-title span { display: block; color: #e06030; }
.rustsummit-subtitle { /* inherits sec-subtitle */ }
.rustsummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #e06030, #c04820);
  color: #1a0f08;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.rustsummit-cta:hover { opacity: 0.85; }
.rustsummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rustsummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.rustsummit-events li:last-child { border-bottom: none; }
.rustsummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* =============================================
   WEBASSEMBLY SUMMIT SECTION
   ============================================= */
.wasmsummit-section {
  background: #051010;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.wasmsummit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(30,180,180,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(20,130,130,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.wasmsummit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.wasmsummit-left { position: sticky; top: 2rem; }
.wasmsummit-label { color: #35b8b8; }
.wasmsummit-title { line-height: 0.9; }
.wasmsummit-title span { display: block; color: #35b8b8; }
.wasmsummit-subtitle { /* inherits sec-subtitle */ }
.wasmsummit-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #35b8b8, #2a9a9a);
  color: #081a1a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wasmsummit-cta:hover { opacity: 0.85; }
.wasmsummit-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wasmsummit-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.wasmsummit-events li:last-child { border-bottom: none; }
.wasmsummit-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* =============================================
   25TH ANNIVERSARY SECTION
   ============================================= */
.ep25-section {
  background: #0b1b4d;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ep25-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(255,212,59,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(255,212,59,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.ep25-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ep25-header {
  max-width: 700px;
  margin: 0 auto;
}

.ep25-label { color: #ffd43b; }

.ep25-title { /* inherits sec-title */ }

.ep25-title span {
  color: #ffd43b;
}

.ep25-subtitle { /* inherits sec-subtitle */ }

.ep25-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #ffd43b, #dbb52e);
  color: #0b1b4d;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ep25-cta:hover { opacity: 0.85; }

.ep25-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.ep25-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(255,212,59,0.18);
  padding: 2.5rem 1.5rem;
  min-height: 7rem;
  min-width: 0;
  overflow: hidden;
  transition: background 0.2s;
  cursor: pointer;
  user-select: none;
}

.ep25-box:hover {
  background: rgba(255,212,59,0.08);
}

.ep25-box-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  color: #ffd43b;
  line-height: 1.2;
}

.ep25-box-city {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.ep25-box.ep25-current {
  background: #ffd43b;
  border-color: #ffd43b;
}

.ep25-box.ep25-current .ep25-box-year {
  color: #0b1b4d;
}

.ep25-box.ep25-current .ep25-box-city {
  color: #0b1b4d;
  font-weight: 700;
}

.ep25-box.ep25-online {
  border-style: dashed;
}

.ep25-box.ep25-checked {
  background: #ffd43b;
  border-color: #ffd43b;
}
.ep25-box.ep25-checked .ep25-box-year {
  color: #0b1b4d;
}
.ep25-box.ep25-checked .ep25-box-city {
  color: #0b1b4d;
}

/* =============================================
   PYLADIES NEW SECTION
   ============================================= */
.pyladies-section {
  background: #2a0d1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pyladies-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(210,30,60,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(160,20,60,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.pyladies-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pyladies-left {
  position: sticky;
  top: 2rem;
}

.pyladies-label { color: #d42027; }

.pyladies-title { line-height: 0.9; }

.pyladies-title span {
  display: block;
  color: #d42027;
}

.pyladies-subtitle { /* inherits sec-subtitle */ }

.pyladies-events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pyladies-events li {
  padding: 1.4rem 1.8rem 1.4rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.pyladies-events li:last-child { border-bottom: none; }

.pyladies-events li strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pyladies-cta {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(to bottom, #d42027, #b01a20);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pyladies-cta:hover { opacity: 0.85; }

.finaid-section a:not(.finaid-cta) {
  color: var(--acid);
  text-decoration: none;
}
.finaid-section a:not(.finaid-cta):hover {
  text-decoration: underline;
}

.ticket-addl-info {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

.ticket-addl-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.ticket-addl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ticket-addl-card {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 1.8rem 2rem;
}

.ticket-addl-card h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.ticket-addl-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.ticket-addl-card p:last-child {
  margin-bottom: 0;
}

.ticket-addl-card a {
  color: var(--acid);
  text-decoration: none;
}

.ticket-addl-card a:hover {
  text-decoration: underline;
}

.ticket-addl-notes {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 1.8rem 2rem;
}

.ticket-addl-notes h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.ticket-addl-notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ticket-addl-notes li {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.ticket-addl-notes a {
  color: var(--acid);
  text-decoration: none;
}

.ticket-addl-notes a:hover {
  text-decoration: underline;
}

.ticket-late-bird {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px dashed rgba(255,149,0,0.6);
  border-radius: 2px;
  padding: 1.8rem 2.4rem;
  margin-bottom: 2.5rem;
  background: rgba(255,149,0,0.1);
  box-shadow: 0 0 30px rgba(255,149,0,0.12);
}

.ticket-late-bird-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acid);
  white-space: nowrap;
}

.ticket-late-bird-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.ticket-late-bird-text strong {
  color: var(--acid);
  font-size: 1.35rem;
}

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

@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card { transition: none; }
  .testimonial-card:hover { transform: none; }
  .testimonials-grid { animation: none; }
}

@keyframes fadeInUp {
  0%  { opacity: 0; transform: translateY(30px); }
  to  { opacity: 1; transform: translateY(0); }
}

.prog-sticker-1 {
  width: 240px; height: 240px;
  bottom: -60px; right: 40px;
  transform: rotate(-10deg);
}

/* =============================================
   KEYNOTES SECTION
   ============================================= */
.keynotes-section {
  background: var(--bg);
}

.keynotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 5px solid var(--magenta);
}

.keynote-card {
  border-right: 5px solid var(--magenta);
  border-bottom: 5px solid var(--magenta);
  padding: 2.5rem;
  position: relative;
  transition: none;
  overflow: hidden;
}

.keynote-card:nth-child(3n) { border-right: none; }
.keynote-card:nth-last-child(-n+3) { border-bottom: none; }

.keynote-card:hover {
  background: var(--magenta);
}

.keynote-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  color: rgba(226,0,58,0.15);
  line-height: 1;
  margin-bottom: -1.5rem;
}

.keynote-card:hover .keynote-num {
  color: rgba(0,0,0,0.15);
}

.keynote-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.keynote-card:hover .keynote-name { color: var(--bg); }

.keynote-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--acid);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.keynote-card:hover .keynote-role { color: var(--bg); opacity: 0.7; }

.keynote-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.65;
  margin-top: 1rem;
}
.keynote-card:hover .keynote-bio { color: rgba(0,0,0,0.75); }

.keynotes-sticker-1 {
  width: 300px; height: 300px;
  top: -40px; right: -20px;
  transform: rotate(15deg);
}


/* =============================================
   VENUE NEW SECTION
   ============================================= */
.venue-new-section {
  background: #100d08;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.venue-new-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(180,120,20,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 5% 70%, rgba(140,80,10,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.venue-new-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(201,152,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,152,10,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.venue-new-inner { /* inherits sec-inner */ }

.venue-new-left {
  margin-bottom: 2.5rem;
}

.venue-new-label { color: #c9980a; }

.venue-new-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
}

.venue-new-title span {
  display: block;
  color: #c9980a;
}

.venue-new-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.venue-new-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.venue-new-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px dashed rgba(201,152,10,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.venue-new-list-heading {
  padding: 1.2rem 1.8rem;
  border-bottom: 1px dashed rgba(201,152,10,0.2);
  background: rgba(201,152,10,0.06);
}

.venue-new-list-heading strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #c9980a;
  display: block;
}

.venue-new-list-heading span {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
}

.venue-new-list li {
  padding: 1.1rem 1.8rem;
  border-bottom: 1px dashed rgba(201,152,10,0.15);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.venue-new-list li:last-child { border-bottom: none; }

.venue-new-list li a {
  color: #c9980a;
  text-decoration: none;
}
.venue-new-list li a:hover {
  text-decoration: underline;
}

/* ── Kraków Tips ── */
.ktips-block {
  margin-top: 3.5rem;
}

.ktips-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #c9980a;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ktips-heading a {
  color: inherit;
  text-decoration: none;
}
.ktips-heading a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Fun facts grid: 2x4 cards */
.ktips-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px dashed rgba(201,152,10,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.ktips-fact {
  padding: 1.6rem 1.5rem;
  border-right: 1px dashed rgba(201,152,10,0.15);
  border-bottom: 1px dashed rgba(201,152,10,0.15);
  background: rgba(201,152,10,0.03);
}
.ktips-fact:nth-child(4n) { border-right: none; }
.ktips-fact:nth-last-child(-n+4) { border-bottom: none; }

.ktips-fact strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.ktips-fact p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* Attractions / Day trips: card grid */
.ktips-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.ktips-card {
  background: rgba(201,152,10,0.06);
  border: 1px dashed rgba(201,152,10,0.25);
  border-radius: 2px;
  padding: 1.6rem 1.5rem;
}

.ktips-card strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.ktips-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* Three-col override for culture/nature/food */
.ktips-three-col {
  grid-template-columns: repeat(3, 1fr);
}

/* Resource pills */
.ktips-resources {
  text-align: center;
}

.ktips-resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.ktips-resource-pill {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: #c9980a;
  text-decoration: none;
  border: 2px solid #c9980a;
  border-radius: 2px;
  padding: 0.8rem 2rem;
  transition: background 0.15s, color 0.15s;
}
.ktips-resource-pill:hover {
  background: #c9980a;
  color: #100d08;
}

/* ── Green theme variants (for Discover Kraków section) ── */
.ktips-heading--green { color: #2ecc71; }

.ktips-facts-grid--green {
  border-color: rgba(46,204,113,0.3);
}
.ktips-fact--green {
  border-right-color: rgba(46,204,113,0.15);
  border-bottom-color: rgba(46,204,113,0.15);
  background: rgba(46,204,113,0.04);
}

.ktips-card--green {
  background: rgba(46,204,113,0.05);
  border-color: rgba(46,204,113,0.25);
}

.ktips-resource-pill--green {
  color: #2ecc71;
  border-color: #2ecc71;
}
.ktips-resource-pill--green:hover {
  background: #2ecc71;
  color: #0d1a0a;
}

/* ── ktips-list: green-themed info lists ── */
.ktips-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ktips-list-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.ktips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px dashed rgba(46,204,113,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.ktips-list-heading {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px dashed rgba(46,204,113,0.2);
  background: rgba(46,204,113,0.06);
}

.ktips-list-heading strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #2ecc71;
}

.ktips-list li {
  padding: 0.9rem 1.6rem;
  border-bottom: 1px dashed rgba(46,204,113,0.12);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.ktips-list li:last-child { border-bottom: none; }

.ktips-list li strong {
  color: var(--cream);
}

.ktips-list li a {
  color: #2ecc71;
  text-decoration: none;
}
.ktips-list li a:hover {
  text-decoration: underline;
}

.krakow-block {
  position: relative;
}

.krakow-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.krakow-attractions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.krakow-attractions li {
  background: rgba(255,69,0,0.1);
  border-left: 5px solid var(--orange);
  padding: 0.85rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #f0ede8;
  transition: none;
}

.krakow-attractions li:hover {
  background: var(--orange);
  color: var(--bg);
}

.venue-sticker-1 {
  width: 300px; height: 300px;
  top: -50px; left: -30px;
  transform: rotate(-11deg);
}
.venue-sticker-2 {
  width: 200px; height: 200px;
  bottom: -10px; right: -10px;
  transform: rotate(6deg);
}

/* =============================================
   FAQ NEW SECTION
   ============================================= */
.faq-section {
  background: #070b14;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.faq-inner { /* inherits sec-inner */ }

.faq-left {
  margin-bottom: 2.5rem;
}

.faq-label { color: var(--acid); }

.faq-title { line-height: 0.9; }

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.faq-item {
  padding: 1.6rem 1.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.faq-a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

.faq-a a {
  color: var(--acid);
  text-decoration: none;
}

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

.faq-sticker-1 {
  width: 260px; height: 260px;
  top: 20px; right: 3%;
  transform: rotate(14deg);
}

/* =============================================
   CONNECT SECTION
   ============================================= */
.connect-section {
  background: #0a0a12;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.connect-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.connect-inner { /* inherits sec-inner */ }

.connect-header { /* inherits sec-header */ }

.connect-label { color: var(--acid); }

.connect-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.connect-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.connect-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
}

.connect-block {
  padding: 2rem 2.5rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  text-align: center;
}

.connect-block:last-child { border-bottom: none; }

.connect-block-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.connect-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.connect-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 1.5rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
}

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

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

.connect-newsletter-form {
  display: inline-flex;
  gap: 0;
  margin-top: 0.5rem;
}

.connect-newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 2px 0 0 2px;
  color: var(--white);
  outline: none;
}

.connect-newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.connect-newsletter-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #fff;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.connect-newsletter-btn:hover { opacity: 0.85; }

.connect-newsletter-note {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.8rem;
  line-height: 1.5;
}

.connect-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.connect-contact-col {
  padding: 1rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
}

.connect-contact-col:last-child {
  border-right: none;
}

.connect-contact-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.connect-contact-col a {
  color: var(--acid);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
}

.connect-contact-col a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .connect-block {
    padding: 1.5rem 1.5rem;
  }
  .connect-newsletter-form {
    flex-direction: column;
  }
  .connect-newsletter-input {
    border-right: 1px dashed rgba(255,255,255,0.15);
    border-radius: 2px 2px 0 0;
  }
  .connect-newsletter-btn {
    border-radius: 0 0 2px 2px;
  }
  .connect-contact-grid {
    grid-template-columns: 1fr;
  }
  .connect-contact-col {
    border-right: none;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
  }
  .connect-contact-col:last-child {
    border-bottom: none;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark3);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.footer-flowers-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.04;
  filter: brightness(1.5) saturate(0.3);
  will-change: transform;
}

.footer-flowers-bg img {
  position: absolute;
  top: var(--t);
  left: var(--l);
  width: var(--w);
  transform: rotate(var(--r, 0deg));
}

.footer-inner { padding: 0; }

.footer-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  color: var(--orange);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.footer-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  border-top: 3px solid #333;
  padding-top: 2rem;
  margin-top: 1rem;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: none;
}
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-url {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* =============================================
   FOLK DIVIDER — row of full-colour flowers
   ============================================= */
.folk-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.2rem 2rem;
  overflow: hidden;
}
.folk-divider img {
  height: 72px;
  width: auto;
  opacity: 0.82;
  display: block;
  flex-shrink: 0;
}
.folk-divider img:nth-child(1) { transform: rotate(-11deg) scale(0.88); }
.folk-divider img:nth-child(2) { transform: rotate(6deg); }
.folk-divider img:nth-child(3) { transform: rotate(-2deg) scale(1.18); }
.folk-divider img:nth-child(4) { transform: rotate(9deg); }
.folk-divider img:nth-child(5) { transform: rotate(-8deg) scale(0.92); }

.folk-divider-dense {
  gap: 0.1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
}
.folk-divider-dense img {
  height: 44px;
  opacity: 0.5;
  transform: none !important;
}

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

/* =============================================
   HAMBURGER TOGGLE BUTTON
   ============================================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE (≤900px)
   ============================================= */
@media (max-width: 900px) {
  .prog-grid { grid-template-columns: 1fr; }
  .prog-keynoters-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-keynoter:nth-child(3n) { border-right: 1px dashed rgba(255,255,255,0.1); }
  .prog-keynoter:nth-child(2n) { border-right: none; }
  .prog-keynoter:nth-last-child(-n+3) { border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .prog-keynoter:nth-last-child(-n+2) { border-bottom: none; }
  .ep25-title { font-size: clamp(2rem, 5vw, 3rem); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  nav {
    padding: 0.55rem 1rem;
    white-space: normal;
    transition: transform 0.3s ease;
  }
  nav.nav-hidden {
    transform: translateY(-100%);
  }

  .nav-toggle { display: flex; order: 10; }
  .nav-search-btn { display: none; }

  /* CTA stays in bar, shrinks a bit */
  .nav-cta {
    order: 11;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    padding: 4.5rem 1.5rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    white-space: normal;
  }

  .nav-links.open {
    display: flex;
  }

  /* Keep hamburger above the overlay */
  .nav-toggle {
    position: relative;
    z-index: 10000;
  }

  .nav-item > a {
    font-size: 1.1rem;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: normal;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding-top: 0;
    min-width: auto;
  }

  .nav-dropdown.nav-dropdown-wide {
    min-width: auto;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .nav-item.open .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-inner {
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.25rem 0;
  }

  .nav-dropdown-columns { grid-template-columns: 1fr; }
  .nav-dropdown-col:not(:last-child) { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .nav-dropdown.nav-dropdown-wide { min-width: auto; }

  .nav-dropdown li a {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
    white-space: normal;
  }

  /* Sections: general mobile polish */
  .tickets-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-card:nth-child(2n) { border-right: none; }
  .tickets-notes { grid-template-columns: repeat(2, 1fr); }
  .ticket-note:nth-child(2n) { border-right: none; }
  .tickets-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .tickets-addons { grid-template-columns: 1fr; }
  .ticket-addon { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .ticket-addon:last-child { border-bottom: none; }
  .ticket-common { grid-template-columns: 1fr; gap: 1.5rem; }
  .ticket-addl-grid { grid-template-columns: 1fr; }

  .finaid-grid { grid-template-columns: 1fr; }
  .finaid-card { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .finaid-card:last-child { border-bottom: none; }
  .finaid-footer { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }

  .visa-grid { grid-template-columns: 1fr; }
  .visa-card { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .visa-card:last-child { border-bottom: none; }
  .visa-footer { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }

  .volunteering-grid { grid-template-columns: repeat(2, 1fr); }
  .volunteering-card { border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .volunteering-card:nth-child(2n) { border-right: none; }
  .volunteering-card:nth-last-child(-n+2) { border-bottom: none; }
  .volunteering-perks-grid { grid-template-columns: 1fr; }
  .volunteering-perk { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .volunteering-perk:last-child { border-bottom: none; }
  .volunteering-footer { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }

  .euroscipy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .orgsummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .orgsummit-left { position: static; }
  .pyladies-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pyladies-left { position: static; }

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

  .langsummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .langsummit-left { position: static; }
  .capisummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .capisummit-left { position: static; }
  .pkgsummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pkgsummit-left { position: static; }
  .rustsummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .rustsummit-left { position: static; }
  .wasmsummit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .wasmsummit-left { position: static; }

  .spack-stats { grid-template-columns: repeat(2, 1fr); }
  .spack-stat:nth-child(3n) { border-right: 1px dashed rgba(255,255,255,0.1); }
  .spack-stat:nth-child(2n) { border-right: none; }
  .spack-stat:nth-last-child(-n+3) { border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .spack-stat:nth-last-child(-n+2) { border-bottom: none; }
  .spack-benefits-grid { grid-template-columns: 1fr; }
  .ktips-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .ktips-fact:nth-child(4n) { border-right: 1px dashed rgba(201,152,10,0.15); }
  .ktips-fact:nth-child(2n) { border-right: none; }
  .ktips-fact:nth-last-child(-n+4) { border-bottom: 1px dashed rgba(201,152,10,0.15); }
  .ktips-fact:nth-last-child(-n+2) { border-bottom: none; }
  .ktips-list-grid { grid-template-columns: 1fr; }
  .ktips-list-grid--3 { grid-template-columns: 1fr; }
  .spack-benefit { border-right: none; }
  .spack-grid--2 { grid-template-columns: 1fr; }
  .spack-grid--3 { grid-template-columns: 1fr; }
  .spack-discounts-grid { grid-template-columns: 1fr; }
  .spack-discount-card { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .spack-discount-card:last-child { border-bottom: none; }
  .spack-footer { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }

  .community-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cp-logo { padding: 0.75rem 0.5rem; }
  .cp-logo img { height: 70px; }
  .sponsor-tier-logos { grid-template-columns: repeat(2, 1fr); }
  .tier-platinum .sponsor-tier-logos { grid-template-columns: repeat(2, 1fr); }
  .sponsor-logo { padding: 1rem 0.5rem; }
}

@media (max-width: 600px) {
  .section-inner { padding: 3rem 1rem; }
  .section-number { display: none; }
  .section-title { margin-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .prog-keynoters-grid { grid-template-columns: 1fr; }
  .prog-keynoter { border-right: none !important; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .prog-keynoter:last-child { border-bottom: none; }

  .tickets-grid { grid-template-columns: 1fr; }
  .ticket-card { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .ticket-card:last-child { border-bottom: none; }
  .tickets-notes { grid-template-columns: 1fr; }
  .ticket-note { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); }
  .ticket-note:last-child { border-bottom: none; }
  .tickets-grid.three-col { grid-template-columns: 1fr; }
  .ticket-late-bird { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }

  /* EP25 grid: always 5 columns, scale to fit */
  .ep25-inner { padding-left: 0.5rem; padding-right: 0.5rem; }
  .ep25-grid {
    max-width: 100%;
    grid-template-columns: repeat(5, 1fr);
  }
  .ep25-box { padding: 0.8rem 0.2rem; min-height: auto; word-break: break-word; }
  .ep25-box-year { font-size: clamp(1rem, 3.5vw, 1.5rem); }
  .ep25-box-city { font-size: clamp(0.7rem, 2.2vw, 1rem); }

  .venue-new-right { grid-template-columns: 1fr; }
  .ktips-three-col { grid-template-columns: 1fr; }
  .ktips-facts-grid { grid-template-columns: 1fr; }
  .ktips-fact { border-right: none !important; }

  .spack-stats { grid-template-columns: 1fr; }
  .spack-stat { border-right: none !important; }

  .sponsor-tier-logos { grid-template-columns: repeat(2, 1fr); }
  .tier-platinum .sponsor-tier-logos { grid-template-columns: 1fr; }

  .hero-date-main { font-size: 2.5rem; }
  .hero-dates { gap: 0.5rem; }
  .hero-date-block { padding: 0.6rem 0.8rem; }

  .faq-inner { padding-left: 0.75rem; padding-right: 0.75rem; }
  .faq-item { padding: 1.4rem 1rem; }

  .volunteering-grid { grid-template-columns: 1fr; }
  .volunteering-card { border-right: none; }
}

@media (max-width: 768px) {
  .hero-main {
    padding: 5rem 1.2rem 3rem;
    min-height: auto;
  }
  .hero-content-block {
    max-width: 100%;
  }
  .hero-schedule {
    font-size: 1rem;
  }
  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
  }
}

/* Nav logo spans */
.nav-logo-ep { color: #fff; }
.nav-logo-year { color: #d62020; }

/* Footer top row */
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.footer-top-row .footer-title { margin-bottom: 0.3rem; }
.footer-top-row .footer-subtitle { margin-bottom: 0; }
.footer-title-ep { color: #fff; }
.footer-title-year { color: var(--orange); }
.footer-eps-link { flex-shrink: 0; }
.footer-eps-logo { height: 140px; }

/* Ticket misc */
.ticket-vat-suffix {
  font-size: 1.3rem;
  font-family: -apple-system, sans-serif;
  font-weight: 400;
}
.ticket-info-icon { font-size: 1.3rem; }

/* Other one-offs */
.ep25-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.folk-divider--spaced { margin-top: 3rem; }
.link-acid { color: var(--acid); }

/* Community/Sponsors shared label */
.cp-label { color: var(--orange); }
.ticket-addl-title--center { text-align: center; }
.ticket-info-paragraph { margin-top: 1rem; }

.keyboard-nav a:focus,
.keyboard-nav button:focus,
.keyboard-nav input:focus {
  outline: 4px solid var(--acid) !important;
  outline-offset: 2px;
}

/* =============================================
   PAGE BANNER (sub-page breadcrumb)
   ============================================= */
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.4rem max(2rem, calc((100% - 1200px) / 2 + 2rem));
  padding-top: 4.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  background: rgba(10, 10, 20, 0.95);
}

.page-breadcrumb-btn {
  color: var(--acid);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  border: 2px solid var(--acid);
  border-radius: 2px;
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.page-breadcrumb-btn:hover {
  background: var(--acid);
  color: var(--bg);
}

.page-breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.page-breadcrumb-current {
  color: rgba(255,255,255,0.7);
}

/* =============================================
   SPONSOR PACKAGES SECTION
   ============================================= */
.spack-section {
  background: #2a0d1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.spack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(210,30,60,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(160,20,60,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.spack-inner {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.spack-label { color: var(--orange); }

.spack-header {
  margin-bottom: 3.5rem;
}

/* ── Tier grids ── */
.spack-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 0;
}

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

/* ── Tier cards ── */
.spack-card {
  background: #3d1a2a;
  color: var(--cream);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.spack-card--featured {
}

.spack-card-head {
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-top: 5px solid #888;
}

/* Tier ribbon colours */
.spack-card--patron  .spack-card-head { border-top-color: #6a9f3f; }
.spack-card--bronze  .spack-card-head { border-top-color: #cd7f32; }
.spack-card--silver  .spack-card-head { border-top-color: #8e9aaf; }
.spack-card--gold    .spack-card-head { border-top-color: #d4a520; }
.spack-card--platinum .spack-card-head { border-top-color: #5c6bc0; }
.spack-card--diamond .spack-card-head { border-top-color: #00bcd4; }
.spack-card--keystone .spack-card-head { border-top-color: #e53935; }

.spack-tier-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  color: #f0c4d0;
  margin-bottom: 0.3rem;
}

.spack-tier-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.4rem;
  color: var(--acid);
  line-height: 1.2;
}

.spack-tier-slots {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

.spack-card-body {
  padding: 1.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spack-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  margin-bottom: 1.2rem;
}

.spack-highlights li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}

.spack-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.spack-cta {
  display: inline-block;
  margin-top: auto;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  border-radius: 2px;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.spack-cta:hover { opacity: 0.85; }

/* ── Add-ons ── */
.spack-addons {
  margin-top: 4rem;
  text-align: center;
}

.spack-addons-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.spack-addons-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.spack-addon-pill {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--acid);
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,149,0,0.35);
  border-radius: 2px;
  padding: 0.6em 1.3em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.spack-addon-pill:hover {
  background: var(--acid);
  color: var(--bg);
  border-color: var(--acid);
}

.spack-addons-note {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.spack-addons-note a {
  color: var(--acid);
  text-decoration: none;
}
.spack-addons-note a:hover {
  text-decoration: underline;
}

/* ── Discounts ── */
.spack-discounts {
  margin-top: 4rem;
}

.spack-discounts-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-align: center;
}

.spack-discounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.spack-discount-card {
  padding: 2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
}
.spack-discount-card:last-child { border-right: none; }

.spack-discount-card h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.spack-discount-card p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.spack-discount-card p strong {
  color: var(--cream);
}

/* ── CTA footer ── */
.spack-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding: 1.8rem 2.4rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}

.spack-footer p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.spack-footer p a {
  color: var(--acid);
  text-decoration: none;
}
.spack-footer p a:hover {
  text-decoration: underline;
}

.spack-footer-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #d62020, #8a0020);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.spack-footer-cta:hover { opacity: 0.85; }

/* ── Stats row ── */
.spack-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 3.5rem;
}

.spack-stat {
  text-align: center;
  padding: 2.2rem 1.2rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.spack-stat:nth-child(3n) { border-right: none; }
.spack-stat:nth-last-child(-n+3) { border-bottom: none; }

.spack-stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  color: var(--acid);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.spack-stat-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ── Video embed ── */
.spack-video {
  margin-bottom: 3.5rem;
  text-align: center;
}

.spack-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
}

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

.spack-video-caption {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* ── Benefits grid ── */
.spack-benefits {
  margin-bottom: 4rem;
  text-align: center;
}

.spack-benefits-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.spack-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.spack-benefit {
  padding: 2rem 1.8rem;
  border-right: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  text-align: left;
}
.spack-benefit:nth-child(3n) { border-right: none; }

.spack-benefit h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #f0c4d0;
  margin-bottom: 0.5rem;
}

.spack-benefit p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ── Tier group labels ── */
.spack-tier-group {
  margin-top: 3rem;
}

.spack-group-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-align: center;
}

/* ── Outline-only pills (additional opps) ── */
.spack-addon-pill--outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.spack-addon-pill--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.spack-addons--extra {
  margin-top: 2.5rem;
}

/* ── Mission statement ── */
.spack-mission {
  margin-top: 3rem;
  padding: 2rem 2.4rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.spack-mission p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.spack-mission p strong {
  color: var(--cream);
}

/* =============================================
   SPEAKERS GRID
   ============================================= */
.spkrs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.spkrs-card-link {
  text-decoration: none;
  color: var(--white);
  padding: 1.4rem 1.6rem;
}

.spkrs-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.spkrs-empty,
.sess-empty {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
}

.spkrs-empty code,
.sess-empty code {
  color: var(--acid);
}

/* =============================================
   SESSIONS GRID
   ============================================= */
.sess-section {
  background: #080f1a;
}

.sess-filters {
  display: flex;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.sess-search {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.sess-search::placeholder {
  color: rgba(255,255,255,0.4);
}

.sess-search:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}

.sess-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}

.sess-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.6rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: border-color 0.15s, background 0.15s;
}

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

.sess-track-select {
  width: 280px;
  flex-shrink: 0;
  padding: 0.8rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

.sess-track-select:focus {
  border-color: var(--orange);
  background-color: rgba(255,255,255,0.08);
}

.sess-track-select option {
  background: #1a0008;
  color: var(--white);
}

.sess-topic-group {
  margin-bottom: 3rem;
  scroll-margin-top: 6rem;
}

.sess-topic-heading {
  font-family: 'Archivo', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  text-align: center;
}

.sess-topic-heading a {
  color: var(--acid);
  text-decoration: none;
}

.sess-topic-heading a:hover {
  text-decoration: underline;
}

.sess-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.sess-speakers {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.sess-card-bottom {
  margin-top: auto;
}

.sess-track-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--acid);
  padding-top: 0.4rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.sess-no-results {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2rem;
}

/* =============================================
   SCHEDULE
   ============================================= */
.sched-section {
  background:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(135deg, #0c1628 0%, #142744 40%, #1a1a3a 70%, #0f1a2e 100%);
  background-size: 24px 24px, 100% 100%;
}

.sched-inner {
  max-width: 1400px;
}

.sched-section .sec-subtitle {
  font-size: 1.35rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sched-notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.sched-notice-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.sched-notice-card:hover {
  border-color: var(--acid);
  background: rgba(255,255,255,0.05);
}

.sched-notice-card strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.sched-notice-card span {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.sched-notice-date {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem !important;
  color: var(--acid) !important;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .sched-notice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .sched-notice-grid {
    grid-template-columns: 1fr;
  }
}

/* Day tabs */
.sched-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sched-tab {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sched-tab:hover {
  border-color: var(--acid);
  color: var(--white);
}

.sched-tab--active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--bg);
}

.sched-tab-short { display: none; }
.sched-tab-full { display: inline; }

/* Day container */
.sched-day {
  display: none;
}

.sched-day--active {
  display: block;
}

/* Room headers row */
.sched-room-headers {
  display: grid;
  grid-template-columns: 70px repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  position: sticky;
  top: 60px;
  z-index: 10;
  padding: 0.6rem 0;
}

.sched-room-header {
  background: #1e3456;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Time column */
.sched-time-col {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--acid);
  padding-top: 0.6rem;
  text-align: right;
  padding-right: 0.5rem;
  min-width: 70px;
}

/* Grid rows */
.sched-row {
  display: grid;
  grid-template-columns: 70px repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

/* Spanning rows */
.sched-row--spanning {
  grid-template-columns: 70px 1fr;
}

.sched-spanning-entry {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  text-align: center;
}

.sched-row--break .sched-spanning-entry {
  background: rgba(255,150,0,0.06);
  border-color: rgba(255,150,0,0.18);
}

/* Entry cards */
.sched-cell {
  min-height: 80px;
}

.sched-cell--empty {
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
}

.sched-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: border-color 0.2s, background 0.2s;
}

.sched-card:hover {
  border-color: var(--acid);
  background: rgba(255,255,255,0.07);
}

.sched-entry-type {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--acid);
}

.sched-row--spanning .sched-entry-type {
  color: var(--cream);
}

.sched-row--break .sched-entry-type {
  color: rgba(255,255,255,0.65);
}

.sched-entry-title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.sched-entry-title a {
  color: inherit;
  text-decoration: none;
}

.sched-entry-title a:hover {
  text-decoration: underline;
}

.sched-entry-speakers {
  margin-top: 0.3rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}

.sched-entry-meta {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.65);
  margin-top: auto;
}

.sched-entry-room {
  font-weight: 600;
}

/* ── Schedule mobile ── */
@media (max-width: 900px) {
  .sched-tab-short { display: inline; }
  .sched-tab-full { display: none; }

  .sched-room-headers {
    display: none;
  }

  .sched-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
  }

  .sched-row .sched-time-col {
    text-align: left;
    padding: 1rem 0 0.2rem;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .sched-row--spanning {
    display: flex;
    flex-direction: column;
  }

  .sched-cell--empty {
    display: none;
  }

  .sched-card {
    padding: 0.8rem 1rem;
  }

  .sched-spanning-entry {
    text-align: left;
  }
}

/* =============================================
   DETAIL PAGES (session & speaker)
   ============================================= */
.detail-section {
  background: #080f1a;
  padding: 1.5rem 0 4rem;
  min-height: 60vh;
}

.detail-header {
  margin-bottom: 2.5rem;
}

.detail-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.detail-subtitle {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--acid);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.detail-meta-item {
  background: var(--indigo);
  color: var(--cream);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 1rem;
}

.detail-speakers,
.detail-abstract,
.detail-bio,
.detail-schedule-info,
.detail-links,
.detail-session-list,
.detail-social-links {
  margin-bottom: 2.5rem;
}

.detail-speaker-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.detail-speaker-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark2);
  border: 2px solid var(--indigo);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: border-color 0.2s;
}
.detail-speaker-card:hover {
  border-color: var(--acid);
}

.detail-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.detail-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--indigo);
}

.detail-speaker-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.detail-affiliation {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

.detail-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 72ch;
}
.detail-text a,
.detail-text a:visited {
  color: var(--acid);
}

.detail-link-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.2s;
}
.detail-link-btn:hover {
  background: var(--magenta);
}

.detail-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.detail-social-link {
  display: inline-block;
  background: var(--dark2);
  border: 2px solid var(--indigo);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.detail-social-link:hover {
  border-color: var(--acid);
}

.detail-session-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.detail-session-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark2);
  border: 2px solid var(--indigo);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s;
}
.detail-session-item:hover {
  border-color: var(--acid);
}
.detail-session-item-title {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Related sessions (parallel / after) */
.detail-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 3rem 0;
}
.detail-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.detail-related-col {
  min-width: 0;
}
@media (max-width: 700px) {
  .detail-related {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Session card title link */
.sess-title-link {
  color: inherit;
  text-decoration: none;
}
.sess-title-link:hover {
  color: var(--acid);
}

@media (max-width: 600px) {
  .detail-speaker-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .detail-avatar {
    width: 80px;
    height: 80px;
  }
}

/* =============================================
   TALK SELECTION PROCESS — TIMELINE
   ============================================= */
.selection-section {
  background: #080f1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.selection-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(60,120,200,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(40,80,160,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.selection-timeline {
  position: relative;
  padding-left: 3.5rem;
  margin-top: 3rem;
}
.selection-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--acid), rgba(255,149,0,0.15));
  border-radius: 2px;
}
.selection-phase {
  position: relative;
  margin-bottom: 3rem;
}
.selection-phase:last-child {
  margin-bottom: 0;
}
.selection-phase-marker {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--acid);
  color: #0d1a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 2;
}
.selection-phase-content {
  padding: 0.5rem 0 0 0;
}
.selection-phase-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--acid);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.selection-phase-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.selection-phase-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.selection-phase-details {
  list-style: none;
  padding: 0;
}
.selection-phase-details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.selection-phase-details li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--acid);
}
.selection-phase-details li strong {
  color: rgba(255,255,255,0.9);
}
.selection-parallel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.selection-parallel-track {
  padding: 0;
}
.selection-parallel-heading {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.selection-parallel-date {
  font-weight: 400;
  font-size: 1rem;
  color: var(--acid);
  margin-left: 0.5rem;
}
.selection-phase-philosophy {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--acid);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.selection-link {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.selection-link:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .selection-timeline {
    padding-left: 2.5rem;
  }
  .selection-timeline::before {
    left: 0.85rem;
  }
  .selection-phase-marker {
    left: -2.5rem;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
  }
  .selection-parallel {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SPEAKER GUIDELINES
   ============================================= */
.guidelines-section {
  background: #080f1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.guidelines-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(60,120,200,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(40,80,160,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.guidelines-grid {
  margin-top: 3rem;
}
.guidelines-card {
  margin-bottom: 2.5rem;
}
.guidelines-card:last-child {
  margin-bottom: 0;
}
.guidelines-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.guidelines-list {
  list-style: none;
  padding: 0;
}
.guidelines-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.guidelines-list li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--acid);
}
.guidelines-list li strong {
  color: var(--white);
}

/* =============================================
   SPEAKER MENTORSHIP
   ============================================= */
.mentorship-section {
  background: #080f1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mentorship-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(60,120,200,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(40,80,160,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.mentorship-grid {
  margin-top: 3rem;
}
.mentorship-card {
  margin-bottom: 2.5rem;
}
.mentorship-card:last-child {
  margin-bottom: 0;
}
.mentorship-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.mentorship-card-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.mentorship-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mentorship-role {
  padding: 0;
}
.mentorship-role-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.mentorship-role-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.mentorship-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}
.mentorship-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.mentorship-list li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--acid);
}
.mentorship-cta {
  display: inline-block;
  background: linear-gradient(to bottom, #f5a623, #d48b10);
  color: #0d1a2a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mentorship-cta:hover {
  opacity: 0.85;
}
.mentorship-workshop {
  margin-bottom: 2rem;
}
.mentorship-workshop:last-child {
  margin-bottom: 0;
}
.mentorship-workshop-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.mentorship-workshop-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.mentorship-workshop-meta {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--acid);
}

.mentorship-video {
  margin-top: 1.25rem;
}
.mentorship-video-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.75rem;
}
.mentorship-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .mentorship-roles {
    grid-template-columns: 1fr;
  }
}
