:root {
  color-scheme: light only;
  --bg: #f6f8fc;
  --accent: #4ae6d7;
  --dark: #323232;
  --line: #e0e6f0;
}

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

/* Farben auch dann festhalten, wenn das System auf Dunkelmodus steht */
@media (prefers-color-scheme: dark) {
  html, body { background: #f6f8fc; color: #323232; }
  .card, .ticket, .phase-card, .faq-item, .modal { background: #fff; }
  .faq-item summary, .ticket h3, .ticket-price, .phase-headline,
  section h2, .hero-date, .countdown-number { color: #323232; }
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Navigation ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 60px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

nav.scrolled {
  background: rgba(246, 248, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 60px;
  box-shadow: 0 2px 24px rgba(50, 50, 50, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav-logo img {
  height: 26px;
  width: auto;
  transition: height 0.35s ease;
}

nav.scrolled .nav-logo img { height: 23px; }

.nav-menu {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
  justify-self: center;
}

.nav-menu a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
}

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

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

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(246, 248, 252, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 92px 30px 34px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 12px 34px rgba(50, 50, 50, 0.12);
  display: none;
}

body.menu-open .mobile-menu { transform: translateY(0); }

.mobile-menu a {
  display: block;
  padding: 15px 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(50, 50, 50, 0.1);
}

.mobile-menu a:last-child { border-bottom: none; }

.nav-cta {
  white-space: nowrap;
  padding: 13px 38px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 230, 215, 0.45);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('assets/wallpaper.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 40px 70px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(246,248,252,0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  width: 100%;
}

.hero-logo {
  width: min(620px, 88%);
  margin: 0 auto 10px;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--dark);
  margin: 6px 0 10px;
  line-height: 1.2;
}

.hero-date::before,
.hero-date::after {
  content: '';
  width: clamp(24px, 6vw, 70px);
  height: 2px;
  background: var(--dark);
  opacity: 0.35;
}

.hero-place {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(50, 50, 50, 0.7);
  margin-bottom: 42px;
}

.countdown-container {
  margin: 0 auto 44px;
  max-width: 620px;
}

.countdown {
  --cd-gap: clamp(22px, 3.6vw, 54px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--cd-gap);
}

.countdown-item {
  text-align: center;
  position: relative;
}

.countdown-item + .countdown-item::before {
  content: '';
  position: absolute;
  left: calc(var(--cd-gap) / -2);
  top: 14%;
  height: 56%;
  width: 1px;
  background: rgba(50, 50, 50, 0.22);
}

.countdown-number {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(50, 50, 50, 0.6);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 260px;
  padding-left: 24px;
  padding-right: 24px;
}

.btn {
  padding: 15px 46px;
  border: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-primary { background: var(--accent); color: var(--dark); }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(74, 230, 215, 0.5);
}

.btn-secondary {
  background: var(--dark);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(50, 50, 50, 0.28);
}

/* ---------- Sections ---------- */
section {
  padding: 100px 60px;
  max-width: 1360px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: #8a94a6;
  margin-bottom: 34px;
}

section h2 {
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.45;
  margin: 0 auto 54px;
  max-width: 900px;
}

.pillars-sub {
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.6;
  color: var(--dark);
  margin: -14px 0 58px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card { background: none; border: none; }

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e8eef7 center / cover no-repeat;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover .card-image {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(50, 50, 50, 0.14);
}

.card-content { padding: 26px 10px 0; text-align: center; }

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.card p { font-size: 14px; line-height: 1.8; color: #666; }
.card p strong { color: var(--dark); font-weight: 700; }

/* Aftermovie (9:16 Reel) */
.reel-stage {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(18, 18, 18, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}

body.reel-focus .reel-stage {
  opacity: 1;
  visibility: visible;
}

.reel {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 26px 60px rgba(50, 50, 50, 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

body.reel-focus .reel {
  position: relative;
  z-index: 1500;
  transform: scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.reel-sound {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 16px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.reel-sound:hover { transform: translateX(-50%) translateY(-2px); }

.reel-sound svg { width: 17px; height: 17px; }

.reel-sound .icon-loud { display: none; }
.reel.sound-on .reel-sound .icon-loud { display: block; }
.reel.sound-on .reel-sound .icon-muted { display: none; }

.reel.sound-on .reel-sound {
  background: rgba(255, 255, 255, 0.55);
  opacity: 0.75;
}

/* Info */
.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 50px 44px;
  margin: 0 auto 32px;
  max-width: 860px;
}

.info-box h3 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.info-box p { font-size: 15px; line-height: 1.85; color: #666; }
.info-box p + p { margin-top: 18px; }
.info-box strong { color: var(--dark); font-weight: 700; }

.lead-text {
  max-width: 1100px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a6270;
}

.lead-text p + p { margin-top: 34px; }
.lead-text strong { color: var(--dark); font-weight: 700; }

.mbr { display: none; }
.sep { display: inline; }
.faq-answer strong { color: var(--dark); font-weight: 700; }

.terms-link {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  cursor: pointer;
}

.terms-link:hover { color: #1e8f85; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
}

.info-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.info-item p { font-size: 14px; color: #666; }
.info-item small { color: #9aa5b5; }

/* Tickets */
.phase-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 32px 34px;
  text-align: center;
}

.phase-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1e8f85;
  margin-bottom: 12px;
}

.phase-headline {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.phase-text {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.ticket {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 38px 28px 34px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.ticket:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 42px rgba(74, 230, 215, 0.18);
  transform: translateY(-6px);
}

.ticket-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.ticket h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.ticket-subtitle {
  font-size: 12px;
  color: #9aa5b5;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.ticket-price {
  font-size: 38px;
  font-weight: 700;
  margin: 18px 0 26px;
  color: var(--dark);
}

.ticket-features { list-style: none; margin: 26px 0 32px; }

.ticket-features li {
  font-size: 13.5px;
  padding: 11px 0;
  color: #666;
  border-bottom: 1px solid var(--line);
}

.ticket-features li:last-child { border-bottom: none; }

.ticket-features li:before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.tickets-note {
  color: #666;
  font-size: 14px;
  margin-top: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

body.terms-open .modal-overlay { display: flex; }
body.terms-open { overflow: hidden; }

.modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 780px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--dark);
}

.modal-close {
  border: none;
  background: var(--bg);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.modal-close:hover { background: var(--accent); }

.modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}

.modal-meta {
  font-size: 12px;
  color: #9aa5b5;
  margin-bottom: 24px;
}

.modal-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 26px 0 8px;
}

.modal-body h4:first-of-type { margin-top: 0; }
.modal-body p + p { margin-top: 10px; }

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(74, 230, 215, 0.13);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 58px 24px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq-answer {
  padding: 0 28px 26px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.faq-answer p + p { margin-top: 14px; }

/* Partner & Footer */
.footer-band {
  position: relative;
  width: 100%;
  background-image: url('assets/wallpaper-footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 40px 70px;
  text-align: center;
  overflow: hidden;
}

.footer-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(246,248,252,0) 100%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-band h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 50px;
}

.sponsors-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 46px);
}

.sponsors-grid a { display: flex; align-items: center; }

.sponsors-grid img {
  height: clamp(14px, 1.5vw, 21px);
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sponsors-grid img[alt="SUB60"] { height: clamp(11px, 1.15vw, 16px); }
.sponsors-grid img[alt="THE ONE"] { height: clamp(11px, 1.2vw, 17px); }
.sponsors-grid img[alt="ESN"] { height: clamp(19px, 2.1vw, 29px); }
.sponsors-grid img[alt="TRAINDOO"] { height: clamp(12px, 1.3vw, 18px); }
.sponsors-grid img[alt="GARMIN"] { height: clamp(12px, 1.35vw, 19px); }

.sponsors-grid img:hover { opacity: 1; transform: translateY(-2px); }

.footer-meta {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(50, 50, 50, 0.15);
  color: rgba(50, 50, 50, 0.65);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.footer-links a:hover { color: #1e8f85; }

.footer-meta a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(50, 50, 50, 0.35);
  font-weight: 600;
}

.footer-meta a:hover { text-decoration-color: var(--accent); }

.footer-meta p + p { margin-top: 8px; }

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark);
  margin-bottom: 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-ig svg { width: 21px; height: 21px; }

.footer-ig:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  nav, nav.scrolled { padding: 16px 22px; }
  .nav-cta { padding: 10px 14px; font-size: 9px; letter-spacing: 0.8px; }
  .nav-logo img { height: 22px; }
  nav.scrolled .nav-logo img { height: 20px; }
  .hero { padding: 110px 22px 60px; }
  .hero-date { letter-spacing: 2.5px; gap: 10px; }
  .hero-place { letter-spacing: 2px; margin-bottom: 32px; }
  .countdown-number { font-size: 32px; margin-bottom: 6px; }
  .countdown-label { font-size: 8.5px; letter-spacing: 1px; }
  .countdown-container { margin-bottom: 34px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn {
    width: var(--cd-span, 50%);
    transform: translateX(var(--cd-offset, 0px));
    padding: 13px 10px;
    font-size: 9.5px;
    letter-spacing: 1.2px;
    white-space: nowrap;
  }
  .hero-buttons .btn:hover { transform: translateX(var(--cd-offset, 0px)) translateY(-3px); }
  .btn { padding: 14px 24px; }
  .mbr { display: inline; }
  .sep { display: none; }
  section { padding: 64px 22px; }
  section h2 { letter-spacing: 2.5px; margin-bottom: 36px; }
  .section-label { margin-bottom: 24px; }
  .lead-text { font-size: 14px; margin-bottom: 40px; }
  .cards-grid .card-image { width: 55%; margin: 0 auto; }
  .cards-grid { gap: 22px; }
  .tickets-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ticket { padding: 26px 12px 24px; }
  .ticket h3 { font-size: 11px; letter-spacing: 1.5px; }
  .ticket-price { font-size: 25px; margin: 14px 0 20px; }
  .ticket .btn { display: block; width: 100%; padding: 12px 6px; font-size: 9px; letter-spacing: 0.8px; white-space: nowrap; }
  .phase-card { padding: 26px 22px; }
  .phase-headline { font-size: 15.5px; }
  .phase-text { font-size: 13.5px; }
  .pillars-sub { font-size: 14px; letter-spacing: 2.5px; line-height: 1.7; margin: -12px 0 40px; }
  .faq-item summary { padding: 20px 46px 20px 20px; font-size: 15px; }
  .faq-item summary::after { right: 20px; }
  .faq-answer { padding: 0 20px 22px; font-size: 14px; }
  .hero-buttons .btn { min-width: 0; }
  .info-box { padding: 32px 24px; }
  .footer-band { padding: 110px 22px 50px; }
  .footer-band h3 { margin-bottom: 34px; letter-spacing: 2px; }
  .sponsors-grid { flex-wrap: wrap; gap: 26px 32px; }
  .sponsors-grid img { height: 19px; }
  .sponsors-grid img[alt="SUB60"] { height: 14px; }
  .sponsors-grid img[alt="THE ONE"] { height: 15px; }
  .sponsors-grid img[alt="ESN"] { height: 26px; }
  .sponsors-grid img[alt="TRAINDOO"] { height: 16px; }
  .sponsors-grid img[alt="GARMIN"] { height: 17px; }
  .lb { display: none; }
  .footer-meta { margin-top: 50px; }
}
