/* =========================================================
   UNTERNEHMER AUFBRUCH – Landing Page
   Dark / Gold · Cinematic · Outfit
   ========================================================= */

:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --bg-3: #15151a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f6;
  --text-2: #b9b9c1;
  --text-3: #7a7a85;
  --gold-1: #f5d27c;
  --gold-2: #e2b157;
  --gold-3: #b8842f;
  --gold-4: #6e4d18;
  --grad-gold: linear-gradient(135deg, #f5d27c 0%, #e2b157 35%, #b8842f 70%, #6e4d18 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(245, 210, 124, 0.25), rgba(184, 132, 47, 0.05));
  --shadow-gold: 0 16px 60px -10px rgba(226, 177, 87, 0.45);
  --shadow-card: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 8px 24px -10px rgba(0, 0, 0, 0.6);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold-2); color: #000; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Prefer a smoother, GPU-friendly text rendering pipeline */
  text-rendering: optimizeSpeed;
}
body { min-height: 100dvh; }

/* Containment hints – isolate paint/layout for big sections to avoid full-page reflows */
section { contain: layout style; }   /* no paint contain – avoids clipping of children that escape (e.g. map pins) */
.hero { contain: layout style; }
.speaker, .package, .pillar, .stat-card, .agenda__day, .faq__item {
  contain: layout paint style;
}
.venue-pin { contain: layout style; }
/* Hotels section: no contain at all – pins must render freely outside the rounded map box */
section.hotels { contain: none; }

/* Reduce-motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__canvas { display: none; }
  .grain { display: none; }
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-2); }

button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
input, select, textarea { font: inherit; }

em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }

/* ---------------------------- GRAIN ---------------------------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ---------------------------- CURSOR ---------------------------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate3d(-50%,-50%,0);
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor__inner {
  position: absolute; inset: 0; margin: auto;
  width: 4px; height: 4px;
  background: var(--gold-2); border-radius: 50%;
}
.cursor.is-hover { width: 60px; height: 60px; background: rgba(226, 177, 87, 0.08); }
@media (max-width: 900px) { .cursor { display: none; } }

/* ---------------------------- LOADER ---------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__brand {
  position: absolute; bottom: 9%; left: 0; right: 0;
  text-align: center;
  font-weight: 700; letter-spacing: 0.4em; font-size: 14px;
  color: var(--text-3);
}
.loader__brand span { background: var(--grad-gold); -webkit-background-clip: text; color: transparent; margin-left: 0.6em; }
.loader__bar {
  width: min(60vw, 360px); height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--grad-gold);
  animation: load 1.6s var(--ease-in-out) forwards;
}
@keyframes load { 0%{width:0} 70%{width:90%} 100%{width:100%} }

/* ---------------------------- NAV ---------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,10,12,0.85), rgba(10,10,12,0.45));
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,12,0.85);
  border-color: var(--line);
  padding: 12px 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; max-width: 360px; flex-shrink: 0; }
.nav__logo { height: 72px; width: auto; max-width: 320px; object-fit: contain; transform: translateY(0); }
@media (max-width: 900px) { .nav__logo { height: 52px; max-width: 220px; } }
.nav__links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
.nav__links a { position: relative; color: var(--text-2); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold-2); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; width: 32px; height: 22px; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.nav__burger span { display: block; height: 2px; background: var(--text); transition: 0.3s var(--ease); border-radius: 1px; }
.nav__burger span:nth-child(1) { width: 100%; }
.nav__burger span:nth-child(2) { width: 75%; }
.nav__burger span:nth-child(3) { width: 90%; }
.nav__burger:hover span { background: var(--gold-2); }
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ---------------------------- BUTTONS ---------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  overflow: hidden; isolation: isolate;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: var(--grad-gold); color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff2c8 0%, #f5d27c 35%, #e2b157 70%, #b8842f 100%);
  opacity: 0; transition: opacity 0.3s var(--ease); z-index: -1;
}
.btn--gold:hover { transform: translateY(-2px); color: #1a1206; }
.btn--gold:hover::before { opacity: 1; }

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-2); color: var(--gold-1); }

.btn--sm  { padding: 10px 18px; font-size: 13px; }
.btn--md  { padding: 13px 24px; font-size: 14.5px; }
.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--xl  { padding: 22px 44px; font-size: 18px; }
.btn--block { width: 100%; }
/* Slightly bigger Nav-CTA so it stands out more */
.nav__cta { padding: 14px 28px; font-size: 15px; }

/* ---------------------------- HERO ---------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Top padding reduced by 30px → headline closer to top */
  padding: 110px 24px 80px;
}
@media (max-width: 700px) { .hero { padding: 90px 18px 60px; } }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}
.hero__glow--1 { top: -10%; left: -5%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(226,177,87,0.55), rgba(226,177,87,0) 70%); }
.hero__glow--2 { bottom: -20%; right: -10%; width: 70vw; height: 70vw; background: radial-gradient(circle, rgba(184,132,47,0.4), rgba(184,132,47,0) 70%); }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 75%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; text-align: center; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.05em;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 12px var(--gold-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }

.hero__title {
  font-weight: 700;
  font-size: clamp(40px, 7.4vw, 108px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__title .line { display: block; overflow: hidden; padding: 0.18em 0 0.08em; }
.hero__title .line > span { display: inline-block; will-change: transform; line-height: 1; }
.hero__title strong { font-weight: 700; }
.hero__title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* HUGE hero brand title – "UNTERNEHMER AUFBRUCH" – flush left/right edges */
.hero__title--huge {
  /* Break out of .hero__inner max-width to use the full viewport */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(58px, 13.2vw, 220px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
  padding-inline: 16px;
}
.hero__title--huge .line {
  /* tighter top/bottom – pulls AUFBRUCH closer to UNTERNEHMER */
  padding: 0.02em 0 0.01em;
  text-align: center;
  overflow: visible;
}
.hero__title--huge .line:nth-child(2) {
  /* visually pull line 2 closer to line 1 by ~20px */
  margin-top: -0.18em;
}
.hero__title--huge .line > span {
  display: inline-block;
}
/* Line 2 (AUFBRUCH) is shorter (8 chars) than line 1 (UNTERNEHMER, 11 chars).
   We scale font-size up by ~11/8 = 1.375 so both words have the same visual width. */
.hero__title--huge .line:nth-child(2) > span {
  font-size: 1.42em;
  letter-spacing: -0.055em;
  display: inline-block;
  line-height: 0.82;
}
@media (max-width: 600px) {
  .hero__title--huge { font-size: clamp(54px, 14vw, 96px); letter-spacing: -0.04em; }
  .hero__title--huge .line:nth-child(2) { margin-top: -0.14em; }
}
.hero__title--huge .line > span {
  display: inline-block;
  /* Use filter drop-shadow instead of text-shadow so it works with background-clip:text */
  filter:
    drop-shadow(0 0 60px rgba(245, 210, 124, 0.18))
    drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero__sub--lead {
  font-size: clamp(33px, 3.4vw, 48px);
  font-weight: 400;
  color: var(--text);
  max-width: 1280px;
  /* Pulled tighter to the headline (-20px) and to the CTA */
  margin: -8px auto 18px;
  line-height: 1.3;
}
.hero__sub--lead em { font-style: normal; }
.hero__sub--lead strong { font-weight: 600; color: var(--text); }

/* CTA pulled up another 30-40px closer to the subline */
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: -44px 0 18px; }

.hero__meta {
  display: inline-flex; align-items: center; gap: 36px;
  padding: 22px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  margin-bottom: 60px;
}
.hero__meta-num {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; letter-spacing: -0.03em;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.hero__meta-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.hero__divider { width: 1px; height: 32px; background: var(--line-strong); }

.hero__venue {
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin: -20px auto 50px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  font-size: 14px; color: var(--text-2);
}
.hero__venue-line { display: inline-flex; align-items: center; gap: 8px; }
.hero__venue-line svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; }
.hero__venue-sep { color: var(--gold-2); }
@media (max-width: 600px) {
  .hero__venue { font-size: 13px; gap: 10px; padding: 10px 16px; }
  .hero__venue-sep { display: none; }
}

/* === Hero combined trio image (replaces the 3-figure cast) === */
.hero__cast--combined {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 24px auto -40px;
  pointer-events: none;
}
.hero__cast-combined-img {
  width: 100%;
  height: auto;
  display: block;
  /* Same belly fade so the bottom of the trio dissolves into the page bg */
  -webkit-mask-image: linear-gradient(180deg,
    #000 0%,
    #000 70%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.4)  92%,
    rgba(0,0,0,0)    100%);
          mask-image: linear-gradient(180deg,
    #000 0%,
    #000 70%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.4)  92%,
    rgba(0,0,0,0)    100%);
  animation: castIn 1.4s var(--ease) 0.4s backwards;
}
.hero__cast--combined .hero__cast-fade {
  position: absolute;
  left: -10%; right: -10%;
  bottom: -1px;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--bg) 70%);
  pointer-events: none;
  z-index: 2;
}

/* === Legacy Hero Speaker Row (kept for safety / fallback) === */
.hero__cast {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 44px auto 0;
  pointer-events: none;
}
.hero__cast-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  justify-items: center;
  /* Negative gap → figures touch/slightly overlap WITHOUT covering face/edges */
  gap: 0;
}
/* Closer together but no z-index war that would crop face on neighbours */
.hero__cast-fig--left   { margin-right: -3%; z-index: 2; }
.hero__cast-fig--center { z-index: 1; }       /* center placed in back so its edges are covered by neighbours' empty area – Otto's photo content stays visible because center is widest */
.hero__cast-fig--right  { margin-left: -3%; z-index: 2; }
.hero__cast-fig {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0;
  aspect-ratio: 3/4;
  display: block;
  overflow: hidden;
  /* Belly fade – top of head fully visible, bottom dissolves to transparent */
  -webkit-mask-image: linear-gradient(180deg,
    #000 0%,
    #000 58%,
    rgba(0,0,0,0.88) 72%,
    rgba(0,0,0,0.4)  86%,
    rgba(0,0,0,0)    100%);
          mask-image: linear-gradient(180deg,
    #000 0%,
    #000 58%,
    rgba(0,0,0,0.88) 72%,
    rgba(0,0,0,0.4)  86%,
    rgba(0,0,0,0)    100%);
  /* drop-shadow is GPU-expensive; cheaper background-glow does the same visually */
  animation: castIn 1.4s var(--ease) backwards;
  contain: layout paint;
}
.hero__cast-fig::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 5%;
  height: 14%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), rgba(0,0,0,0));
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.hero__cast-fig img,
.hero__cast-fig picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__cast-fig img {
  object-fit: cover;
  object-position: center top;
}
/* Otto: zoom slightly to match Höller's framing (head stays anchored at top) */
.hero__cast-fig--center img {
  transform: scale(1.18);
  transform-origin: center top;
}
/* IP: anchor focal point slightly left so the head is not cropped on the left edge */
.hero__cast-fig--right img {
  object-position: 38% top;
  transform: scale(1.05);
  transform-origin: center top;
}
.hero__cast-silh {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__cast-silh svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__cast-fig figcaption {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-1);
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  background: rgba(10,10,12,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,210,124,0.25);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.hero__cast-fig:hover figcaption { opacity: 1; }

.hero__cast-fig--left   { animation-delay: 0.45s; }
.hero__cast-fig--center { animation-delay: 0.55s; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7)); }
.hero__cast-fig--right  { animation-delay: 0.65s; }

/* Bottom fade band covering everything – hides the mask edge */
.hero__cast-fade {
  position: absolute;
  left: -10%; right: -10%;
  bottom: -1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--bg) 70%);
  pointer-events: none;
  z-index: 4;
}

@keyframes castIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .hero__cast { margin-top: 28px; }
  .hero__cast-stage { gap: 6px; }
  .hero__cast-fig figcaption { font-size: 9px; letter-spacing: 0.14em; padding: 3px 8px; }
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-3);
}
.hero__scroll-line { display: block; width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold-2), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 700px) {
  .hero__meta { flex-wrap: wrap; gap: 18px; padding: 16px 20px; }
  .hero__divider { display: none; }
}

/* ---------------------------- MARQUEE ---------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(226,177,87,0.04), transparent);
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex; gap: 32px;
  white-space: nowrap;
  font-weight: 700; font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.18em;
  color: var(--text-2);
  animation: marquee 38s linear infinite;
}
.marquee__track .dot-sep { color: var(--gold-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------- COMMON SECTION ---------------------------- */
section { position: relative; padding: 140px 0; }
.section__head { max-width: 720px; margin-bottom: 72px; }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 24px; }
.eyebrow .bar { display: inline-block; width: 36px; height: 1px; background: var(--gold-2); }
.eyebrow--center { justify-content: center; }

.h2 {
  font-weight: 700;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.06; letter-spacing: -0.025em;
}
.h2--center { text-align: center; }
.h2 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

.reveal-line { display: block; overflow: hidden; padding: 0.18em 0 0.22em; will-change: transform; }
.reveal-line > * { display: inline-block; will-change: transform; line-height: 1; padding-bottom: 0.08em; }
/* Smaller modifier (e.g. positioning sub-line) */
.reveal-line--small { padding-top: 0; padding-bottom: 0.18em; margin-top: -0.32em; }
.reveal-line--small > * { font-size: 0.62em; line-height: 1.1; opacity: 0.9; }
/* No CSS transition here — GSAP fully controls reveal-line transforms */
.no-js .reveal-line { transform: translateY(0); }

.lead { color: var(--text-2); font-size: clamp(15px, 1.3vw, 18px); max-width: 640px; margin-top: 20px; }
.lead--center { margin-inline: auto; text-align: center; }

/* ---------------------------- STATS ---------------------------- */
.stats__head { max-width: 760px; margin-bottom: 72px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.stat-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(226,177,87,0.18), transparent 50%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.stat-card:hover { border-color: rgba(226,177,87,0.4); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }
.stat-card__num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.stat-card__label { font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.stat-card__desc { font-size: 14px; color: var(--text-3); }

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

/* ---------------------------- SPEAKERS ---------------------------- */
.speakers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.speaker {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  transition: transform 0.6s var(--ease), border-color 0.4s var(--ease), box-shadow 0.6s var(--ease);
  isolation: isolate;
  height: 100%;
}
.speaker:hover { transform: translateY(-6px); border-color: rgba(226,177,87,0.35); box-shadow: var(--shadow-card); }
.speaker__media {
  position: relative; aspect-ratio: 4/5;
  background: radial-gradient(ellipse at 50% 30%, #1a1a20, #000);
  overflow: hidden;
  flex-shrink: 0;
}
.speaker__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 8%; transition: transform 1s var(--ease); }
/* Variant for tall portraits where head must remain visible:
   crop FROM THE BOTTOM (object-position: top) so the head is preserved */
.speaker__media--headroom { aspect-ratio: 4/5; }
.speaker__media--headroom img { object-fit: cover; object-position: center top; }

/* Zoom variant – makes the subject visually larger by scaling up from the top
   (head is anchored, lower body extends out of frame and is cropped) */
.speaker__media--zoom img {
  transform: scale(1.22);
  transform-origin: center top;
}
.speaker:hover .speaker__media--zoom img { transform: scale(1.26); }

/* Mystery / IP card variant uses same headroom logic */
.speaker--ip .speaker__media { background: radial-gradient(ellipse at 50% 25%, #1c1c22, #000); }
.speaker:hover .speaker__media img { transform: scale(1.04); }
.speaker__shine {
  position: absolute; inset: -50%;
  background: linear-gradient(120deg, transparent 35%, rgba(245,210,124,0.18) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform 1s var(--ease);
}
.speaker:hover .speaker__shine { transform: translateX(100%); }
.speaker__badge, .speaker__mystery-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--grad-gold); color: #1a1206;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.speaker__mystery-tag { background: rgba(255,255,255,0.08); color: var(--gold-1); border: 1px solid var(--gold-3); }
.speaker--mystery .speaker__media { background: linear-gradient(180deg, #131318, #0a0a0c); }
.speaker--mystery .speaker__media img { filter: brightness(0.65) contrast(1.2); object-fit: contain; padding: 18%; }

.speaker__body {
  display: flex; flex-direction: column;
  padding: 28px 28px 32px;
  flex: 1;
}
.speaker__role { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.speaker__cats {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
  font-weight: 300;
}
.speaker__name { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; padding-bottom: 0.06em; line-height: 1.1; }
.speaker__name .qmark { color: var(--gold-2); }
.speaker__bio { color: var(--text-2); font-size: 15px; margin-bottom: 18px; flex: 1; }
.speaker__tags { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.speaker__tags li { font-size: 12px; padding: 5px 12px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text-2); }

@media (max-width: 960px) { .speakers__grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------------------------- PILLARS ---------------------------- */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  padding: 38px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(226,177,87,0.4); }
.pillar__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-gold-soft);
  border: 1px solid rgba(226,177,87,0.25);
  color: var(--gold-1);
  margin-bottom: 22px;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.pillar p { color: var(--text-2); font-size: 15px; }

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

/* ---------------------------- PACKAGES ---------------------------- */
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.package {
  position: relative;
  display: flex; flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.package:hover { transform: translateY(-6px); border-color: rgba(226,177,87,0.4); box-shadow: var(--shadow-card); }
.package--mid {
  background: linear-gradient(180deg, rgba(226,177,87,0.08), rgba(226,177,87,0.02));
  border-color: rgba(226,177,87,0.25);
}
.package--vip {
  background:
    linear-gradient(180deg, rgba(226,177,87,0.18), rgba(226,177,87,0.04)),
    radial-gradient(circle at 100% 0%, rgba(245,210,124,0.18), transparent 60%);
  border: 1px solid rgba(245,210,124,0.4);
  box-shadow: 0 30px 80px -30px rgba(226,177,87,0.4);
}
.package__flag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--gold-1);
  border: 1px solid var(--line-strong);
}
.package__flag--vip { background: var(--grad-gold); color: #1a1206; border-color: transparent; font-weight: 700; }
.package__head { margin-bottom: 26px; }
.package__name { font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.package__price {
  font-size: clamp(52px, 5.4vw, 72px); font-weight: 700; line-height: 1;
  letter-spacing: -0.03em; display: flex; align-items: flex-start; gap: 6px;
  padding-right: 0.18em;
  padding-bottom: 0.06em;
}
.package__price .currency { font-size: 0.45em; color: var(--text-2); margin-top: 0.2em; font-weight: 500; padding-right: 2px; }
.package__price .amount {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.12em;
  display: inline-block;
}
.package__sub { font-size: 13px; color: var(--text-3); margin-top: 8px; }

.package__list { list-style: none; flex: 1; margin-bottom: 26px; }
.package__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text-2);
}
.package__list li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(245,210,124)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.package__list li.no { color: var(--text-3); text-decoration: line-through; opacity: 0.6; }
.package__list li.no::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(120,120,128)' stroke-width='3' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='6' y1='18' x2='18' y2='6'/></svg>");
}

.packages__hint { text-align: center; color: var(--text-3); margin-top: 36px; font-size: 14px; }

@media (max-width: 1000px) { .packages__grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------------------------- APPLY ---------------------------- */
.apply { background: linear-gradient(180deg, var(--bg) 0%, #08080a 100%); }
.apply-form {
  max-width: 880px; margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    radial-gradient(circle at 100% 0%, rgba(226,177,87,0.08), transparent 50%);
  box-shadow: var(--shadow-card);
  position: relative;
}
.apply-form__progress {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 36px;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.step-dot span {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  font-weight: 600; font-size: 14px;
  color: var(--text-2);
  transition: 0.3s var(--ease);
}
.step-dot label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); transition: color 0.3s var(--ease); }
.step-dot.active span { background: var(--grad-gold); color: #1a1206; border-color: transparent; box-shadow: var(--shadow-gold); }
.step-dot.active label { color: var(--gold-1); }
.step-dot.done span {
  background: rgba(226,177,87,0.15); border-color: var(--gold-2); color: var(--gold-1);
}
.step-line { flex: 1; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.step-line::after { content: ""; position: absolute; inset: 0; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); }
.step-line.done::after { transform: scaleX(1); }

.apply-step { border: none; display: none; }
.apply-step.active { display: block; animation: stepIn 0.5s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.apply-step__title { font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; margin-bottom: 24px; letter-spacing: -0.01em; }
.apply-step__hint { color: var(--text-3); margin-bottom: 24px; font-size: 14px; }
.apply-step__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; flex-wrap: wrap; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 660px) { .grid-2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field > span { font-size: 13px; color: var(--text-2); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-2);
  background: rgba(226,177,87,0.05);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(226,177,87)' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; background-size: 14px; padding-right: 42px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }

.chip-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 8px 0 4px; }
.chip-row__label { font-size: 13px; color: var(--text-2); margin-right: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--text-2);
  font-size: 13px; cursor: pointer; transition: 0.3s var(--ease);
}
.chip input:checked + span { background: var(--grad-gold); color: #1a1206; border-color: transparent; }

.pkg-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.pkg-pick__option { position: relative; cursor: pointer; }
.pkg-pick__option input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-pick__card {
  padding: 20px; border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.025);
  transition: 0.3s var(--ease);
}
.pkg-pick__option input:checked + .pkg-pick__card {
  border-color: var(--gold-2);
  background: rgba(226,177,87,0.08);
  box-shadow: 0 0 0 1px rgba(226,177,87,0.4) inset;
}
.pkg-pick__name { font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.pkg-pick__name .tag { font-size: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; }
.pkg-pick__name .tag--gold { background: var(--grad-gold); color: #1a1206; }
.pkg-pick__price { font-size: 22px; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 4px; }
.pkg-pick__desc { font-size: 12px; color: var(--text-3); }
@media (max-width: 720px) { .pkg-pick { grid-template-columns: 1fr; } }

.check { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-2); margin-top: 8px; }
.check input { margin-top: 4px; accent-color: var(--gold-2); width: 18px; height: 18px; }
.check a { text-decoration: underline; text-underline-offset: 3px; }

.apply-success {
  text-align: center; padding: 24px 0;
  animation: stepIn 0.6s var(--ease);
}
.apply-success__check {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold-soft);
  color: var(--gold-1);
}
.apply-success__check svg { width: 56px; height: 56px; }
.apply-success h3 { font-size: clamp(22px, 2.4vw, 32px); margin-bottom: 12px; }
.apply-success p { color: var(--text-2); }

/* ---------------------------- AGENDA ---------------------------- */
.agenda__list { display: flex; flex-direction: column; gap: 14px; }
.agenda__day {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  transition: 0.4s var(--ease);
}
.agenda__day:hover { border-color: rgba(226,177,87,0.35); }
.agenda__day-num {
  font-size: 14px; color: var(--text-3); letter-spacing: 0.3em; text-transform: uppercase;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.agenda__day-num span { display: block; font-size: clamp(48px, 6vw, 88px); font-weight: 700; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; margin-top: 6px; }
.agenda__day-num em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--gold-2); letter-spacing: 0.18em; }
.agenda__day-body h3 { font-size: clamp(22px, 2vw, 30px); font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.agenda__day-body > p { color: var(--text-2); margin-bottom: 16px; }
.agenda__day-body ul { list-style: none; }
.agenda__day-body li { display: flex; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--text-2); }
.agenda__day-body li:first-child { border-top: none; }
.agenda__day-body li span { color: var(--gold-2); font-weight: 600; min-width: 56px; }

@media (max-width: 800px) {
  .agenda__day { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .agenda__day-num { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 14px 0; }
}

/* ---------------------------- HOTELS / VENUE MAP ---------------------------- */
.venue-map {
  position: relative;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.venue-map__canvas {
  position: relative;
  aspect-ratio: 12/7;
  /* canvas itself does NOT clip – pins (with their labels) can extend beyond the rounded background */
}
.venue-map__bg {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;            /* clip ONLY the background SVG / map decoration */
  background: linear-gradient(180deg, #0d0d12, #08080b);
  box-shadow: var(--shadow-card);
}
.venue-map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Venue (center) pulse */
.vm-pulse { transform-origin: center; transform-box: fill-box; }
.vm-pulse--1 { animation: vmpulse 2.4s var(--ease-in-out) infinite; }
.vm-pulse--2 { animation: vmpulse 2.4s var(--ease-in-out) infinite; animation-delay: 0.4s; }
.vm-pulse--3 { animation: vmpulse 2.4s var(--ease-in-out) infinite; animation-delay: 0.8s; }
@keyframes vmpulse {
  0%   { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Hotel pins */
.venue-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0; background: transparent; border: 0; cursor: pointer;
  z-index: 2;
  animation: pinDrop 0.7s var(--ease) backwards;
}
.venue-pin:nth-child(1) { animation-delay: 0.2s; }
.venue-pin:nth-child(2) { animation-delay: 0.35s; }
.venue-pin:nth-child(3) { animation-delay: 0.5s; }
.venue-pin:nth-child(4) { animation-delay: 0.65s; }
.venue-pin:nth-child(5) { animation-delay: 0.8s; }
.venue-pin:nth-child(6) { animation-delay: 0.95s; }
@keyframes pinDrop {
  0%   { opacity: 0; transform: translate(-50%, calc(-50% - 24px)); }
  60%  { opacity: 1; transform: translate(-50%, calc(-50% + 4px)); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

.venue-pin__dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 2px solid var(--gold-2);
  box-shadow: 0 0 0 6px rgba(226,177,87,0.12), 0 0 16px rgba(226,177,87,0.45);
  transition: 0.3s var(--ease);
}
.venue-pin:hover .venue-pin__dot,
.venue-pin.is-active .venue-pin__dot {
  background: var(--gold-2);
  box-shadow: 0 0 0 8px rgba(226,177,87,0.2), 0 0 22px rgba(245,210,124,0.7);
  transform: scale(1.15);
}
.venue-pin__label {
  font-size: 11px; letter-spacing: 0.06em; font-weight: 600;
  color: var(--text);
  background: rgba(15,15,18,0.85); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
  transition: 0.3s var(--ease);
}
.venue-pin:hover .venue-pin__label,
.venue-pin.is-active .venue-pin__label {
  border-color: var(--gold-2);
  color: var(--gold-1);
}
.venue-pin__star { color: var(--gold-2); font-style: normal; }

.venue-pin--featured .venue-pin__dot {
  background: var(--gold-2);
  box-shadow: 0 0 0 6px rgba(226,177,87,0.2), 0 0 22px rgba(245,210,124,0.7);
}

/* Detail card */
.venue-map__card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  display: flex; flex-direction: column; gap: 8px;
  align-self: stretch;
  min-height: 100%;
}
.venue-map__card-rating { color: var(--gold-2); letter-spacing: 0.1em; font-size: 14px; }
.venue-map__card-name { font-size: clamp(22px, 2vw, 28px); font-weight: 600; letter-spacing: -0.01em; margin: 4px 0 8px; }
.venue-map__card-desc { color: var(--text-2); font-size: 15px; margin-bottom: 12px; }
.venue-map__card-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.venue-map__card-row:first-of-type { border-top: 1px solid var(--line); }
.venue-map__card-row span:first-child { color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.venue-map__card-row span:last-child { color: var(--text); font-weight: 500; }
.venue-map__card-row span:last-child[data-card-price] { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.venue-map__card-cta { margin-top: 20px; }

.hotels__note { text-align: center; color: var(--text-3); margin-top: 36px; font-size: 14px; }

@media (max-width: 1000px) {
  .venue-map { grid-template-columns: 1fr; }
  .venue-map__canvas { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .venue-pin__label { display: none; }
  .venue-map__canvas { aspect-ratio: 1/1; }
}

/* ---------------------------- FAQ ---------------------------- */
.faq__container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .faq__container { grid-template-columns: 1fr; gap: 40px; } }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
  transition: 0.4s var(--ease);
}
.faq__item[open] { background: rgba(226,177,87,0.05); border-color: rgba(226,177,87,0.3); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-weight: 500; font-size: 16px;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex: 1; }
.faq__item summary i {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--line-strong);
  position: relative;
  transition: 0.3s var(--ease);
}
.faq__item summary i::before, .faq__item summary i::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--text-2);
}
.faq__item summary i::before { width: 12px; height: 1.5px; }
.faq__item summary i::after  { width: 1.5px; height: 12px; transition: transform 0.3s var(--ease); }
.faq__item[open] summary i { border-color: var(--gold-2); background: rgba(226,177,87,0.1); }
.faq__item[open] summary i::after { transform: rotate(90deg); }
.faq__item > div { padding: 0 26px 24px; color: var(--text-2); font-size: 15px; }

/* ---------------------------- FINALE ---------------------------- */
.finale {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}
.finale__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(226,177,87,0.18), transparent 60%),
    linear-gradient(180deg, transparent, rgba(226,177,87,0.05), transparent);
}
.finale__inner { position: relative; z-index: 2; }
.finale__title { font-size: clamp(48px, 8vw, 120px); font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 24px; }
.finale__sub { color: var(--text-2); font-size: clamp(16px, 1.4vw, 20px); margin-bottom: 40px; max-width: 560px; margin-inline: auto; }
.finale__guarantee { color: var(--text-3); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 28px; }

/* ---------------------------- FOOTER ---------------------------- */
.footer { background: #06060a; padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; }
.footer__brand img { height: 52px; margin-bottom: 18px; max-width: 280px; object-fit: contain; transform: translateX(-6px); }
.footer__brand p { color: var(--text-3); max-width: 320px; font-size: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h4 { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.footer__cols a { display: block; padding: 5px 0; color: var(--text-2); font-size: 14px; }
.footer__legal { text-align: center; color: var(--text-3); font-size: 12px; padding-top: 40px; margin-top: 60px; border-top: 1px solid var(--line); }
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; gap: 36px; } .footer__cols { grid-template-columns: 1fr 1fr; } }

/* ---------------------------- STICKY BAR ---------------------------- */
.sticky-bar {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(220%);
  z-index: 90;
  display: flex; align-items: center; gap: 22px;
  padding: 14px 18px 14px 28px;
  border-radius: 999px;
  background: rgba(15,15,18,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(226,177,87,0.22) inset;
  transition: transform 0.6s var(--ease);
  max-width: calc(100vw - 24px);
}
.sticky-bar .btn--sm { padding: 13px 22px; font-size: 14.5px; }
.sticky-bar.show { transform: translateX(-50%) translateY(0); }
.sticky-bar__msg { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-2); }
.sticky-bar__msg .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px var(--gold-2); animation: pulse 1.6s infinite; }
.sticky-bar__msg strong { color: var(--text); font-weight: 500; }

.countdown { display: flex; gap: 8px; }
.countdown > div {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 8px;
  min-width: 38px;
}
.countdown span { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 14px; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.countdown i { font-style: normal; font-size: 9px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 720px) {
  .sticky-bar { gap: 10px; padding: 10px 12px; }
  .sticky-bar__msg > span:not(.pulse) { display: none; }
  .countdown > div { min-width: 32px; padding: 3px 6px; }
}

/* ---------------------------- REVEAL UTIL ---------------------------- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ---------------------------- TEXT CUT-OFF SAFETY ---------------------------- */
/* Italic / gradient text often clips its glyphs when the parent has overflow:hidden.
   Add padding so descenders, italic tails and shadow halos never get cropped. */
.h2, .hero__title, .finale__title, .speaker__name, .agenda__day-body h3 {
  padding-right: 0.08em;
  padding-bottom: 0.08em;
}
em, .grad, strong {
  padding-right: 0.04em;
}
.reveal-line, .hero__title .line {
  padding-right: 0.12em;
  padding-bottom: 0.12em;
}

/* ---------------------------- STATS COPY BLOCK (Gemeinsam wachsen) ---------------------------- */
.stats__copy {
  max-width: 920px;
  margin: 72px auto 0;
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(226,177,87,0.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  text-align: left;
}
.stats__copy .h3 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 22px;
}
.stats__copy p {
  color: var(--text-2);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  margin-bottom: 16px;
}
.stats__copy p:last-child { margin-bottom: 0; }
.stats__copy em { font-style: normal; }
.stats__copy strong { color: var(--text); }
@media (max-width: 700px) {
  .stats__copy { padding: 36px 26px; margin-top: 48px; border-radius: 22px; }
}

/* ---------------------------- TESTIMONIALS ---------------------------- */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(226,177,87,0.08), transparent 60%);
  pointer-events: none;
}
.testimonials__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: -20px; right: 18px;
  font-family: "Outfit", serif;
  font-size: 180px; font-weight: 700;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
  opacity: 0.12;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.testimonial::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(226,177,87,0.14), transparent 50%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(226,177,87,0.45);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(226,177,87,0.15) inset;
}
.testimonial:hover::before { opacity: 0.28; transform: translateY(-4px) scale(1.08); }
.testimonial:hover::after { opacity: 1; }
.testimonial--featured {
  background:
    linear-gradient(180deg, rgba(226,177,87,0.10), rgba(226,177,87,0.02)),
    radial-gradient(circle at 100% 0%, rgba(245,210,124,0.12), transparent 60%);
  border-color: rgba(226,177,87,0.3);
}
.testimonial__quote {
  position: relative;
  color: var(--text);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.testimonial__quote strong { color: var(--gold-1); font-weight: 600; }
.testimonial__rating {
  color: var(--gold-2);
  font-size: 14px; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; letter-spacing: 0.05em;
  color: #1a1206;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 15px; line-height: 1.2; margin-bottom: 4px; }
.testimonial__role { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; }

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

/* ---------------------------- CRISIS HEADLINE BLOCK ---------------------------- */
.crisis {
  padding: 80px 24px 40px;
  text-align: center;
  position: relative;
}
.crisis__title {
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 1080px;
  margin: 0 auto;
}
.crisis__sub-line { font-size: 0.62em; font-weight: 500; color: var(--text-2); display: block; margin-top: 0.4em; }
.crisis__sub-line em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }

/* ---------------------------- INLINE SECTION CTA ---------------------------- */
.section__cta {
  display: flex; justify-content: center;
  margin: 48px 0 0;
}
.section__cta--with-headline {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section__cta-headline {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  max-width: 760px;
}

/* ---------------------------- MID CTA BANNER (replaces packages) ---------------------------- */
.mid-cta {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
.mid-cta::before {
  content: "";
  position: absolute; inset: auto 0 0; height: 60%;
  background: radial-gradient(ellipse at 50% 50%, rgba(226,177,87,0.12), transparent 70%);
  pointer-events: none;
}
.mid-cta__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.mid-cta__copy { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ---------------------------- PACKAGES (in apply form) ---------------------------- */
.packages__grid--in-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.pkg-card {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  transition: 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.pkg-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pkg-card .package__head { margin-bottom: 16px; }
.pkg-card .package__name { font-size: 12px; letter-spacing: 0.3em; }
.pkg-card .package__price { font-size: clamp(36px, 5vw, 52px); padding-bottom: 0; }
.pkg-card .package__list { font-size: 13px; flex: 1; margin-bottom: 16px; }
.pkg-card .package__list li { padding: 7px 0; font-size: 13px; }
.pkg-card__select {
  text-align: center;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-2);
  transition: 0.3s var(--ease);
}
.pkg-card:has(input:checked) {
  border-color: var(--gold-2);
  background: linear-gradient(180deg, rgba(226,177,87,0.10), rgba(226,177,87,0.02));
  box-shadow: 0 0 0 1px rgba(226,177,87,0.4) inset;
}
.pkg-card:has(input:checked) .pkg-card__select {
  background: var(--grad-gold);
  color: #1a1206;
  border-color: transparent;
  font-weight: 700;
}
.pkg-card:hover { border-color: rgba(226,177,87,0.4); transform: translateY(-2px); }
@media (max-width: 800px) { .packages__grid--in-form { grid-template-columns: 1fr; } }

/* ---------------------------- APPLY PAGE ---------------------------- */
body.page-apply { background: var(--bg); }
.nav--apply {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(14px);
  z-index: 100;
}
.nav--apply .nav__logo { height: 72px; }
@media (max-width: 700px) {
  .nav--apply { padding: 12px 18px; }
  .nav--apply .nav__logo { height: 52px; }
}
.nav__back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px; color: var(--text-2);
  transition: 0.3s var(--ease);
}
.nav__back svg { width: 16px; height: 16px; }
.nav__back:hover { color: var(--gold-1); border-color: var(--gold-2); }

.apply-page {
  position: relative;
  min-height: calc(100dvh - 90px);
  padding: 80px 24px 120px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .apply-page { padding: 60px 18px 100px; }
  .apply-page__title { font-size: clamp(28px, 9vw, 44px); }
}
.apply-page__bg { position: absolute; inset: 0; pointer-events: none; }
.apply-page__inner { position: relative; z-index: 2; }
.apply-page__title { margin-top: 18px; padding-bottom: 0.16em; }
.apply-page__legal {
  text-align: center; color: var(--text-3); font-size: 13px; margin-top: 32px;
}
.apply-page__legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------- RESPONSIVE FINE-TUNING ---------------------------- */
@media (max-width: 640px) {
  section { padding: 90px 0; }
  .section__head { margin-bottom: 48px; }
  .hero { padding: 120px 18px 100px; }
}
