:root {
  --bg: #0b1019;
  --bg-soft: #111722;
  --card: #151c27;
  --card-2: #1b222e;
  --gold: #c8b75f;
  --gold-light: #e4d985;
  --gold-dark: #9c8b3f;
  --text: #f7f6ef;
  --muted: #aeb5c0;
  --line: rgba(255, 255, 255, .1);
  --danger: #ff6b6b;
  --success: #63d69d;
  --radius: 6px;
  --container: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -100px; padding: 12px 18px; background: var(--gold); color: var(--bg); font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0;
}
.site-header.is-sticky {
  position: fixed;
  padding: 13px 0;
  background: rgba(8, 12, 19, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: slideDown .25s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } }
.header-inner, .main-nav, .brand { display: flex; align-items: center; }
.header-inner { justify-content: space-between; gap: 34px; }
.brand { position: relative; min-width: 230px; height: 70px; line-height: 1; overflow: hidden; }
.brand-logo-crop { position: relative; width: 230px; height: 70px; display: block; overflow: hidden; }
.brand-logo-crop img { position: absolute; width: 132%; height: auto; max-width: none; left: -16%; top: -159%; }
.main-nav { justify-content: flex-end; gap: clamp(19px, 2.5vw, 39px); font-size: 16px; font-weight: 650; }
.main-nav a { position: relative; padding: 9px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 42px; padding: 10px; border: 1px solid var(--line); background: var(--bg); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--text); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #0b1019;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 12px 30px rgba(200, 183, 95, .2); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 10px 24px; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; isolation: isolate; overflow: hidden; }
.hero-image, .hero-overlay, .hero-lights { position: absolute; inset: 0; }
.hero-image { z-index: -3; background: url("./images/hero.png") center 43% / cover no-repeat; transform: scale(1.02); }
.hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(7, 11, 18, .98) 0%, rgba(7, 11, 18, .87) 37%, rgba(7, 11, 18, .38) 74%, rgba(7, 11, 18, .75) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 26%); }
.hero-lights { z-index: -1; opacity: .36; background: radial-gradient(circle at 8% 3%, rgba(236, 216, 100, .32), transparent 15%), radial-gradient(circle at 73% -8%, rgba(236, 216, 100, .18), transparent 22%); }
.hero-content { padding-top: 88px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(44px, 5.5vw, 76px); line-height: .98; letter-spacing: -.05em; }
.hero-subtitle { max-width: 820px; margin: 28px 0 18px; font-size: clamp(19px, 2.15vw, 30px); font-weight: 600; line-height: 1.2; }
.event-date { color: var(--gold-light); font-size: 16px; font-weight: 700; }
.hero-cta { margin-top: 34px; }

.section { padding: 110px 0; }
.section-heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .program-heading h2, .faq-grid h2, .partners-section h2 { margin: 0; color: var(--gold); font-size: clamp(36px, 5vw, 61px); line-height: 1; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 18px; }

.speakers-section { position: relative; padding-top: 60px; background: var(--bg); }
.speakers-section::before { content: ""; position: absolute; top: 15%; right: -15%; width: 500px; height: 500px; border: 1px solid rgba(200, 183, 95, .08); border-radius: 50%; }
.carousel-controls { display: flex; justify-content: flex-end; gap: 9px; margin: -30px 0 16px; }
.carousel-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--card); cursor: pointer; }
.carousel-button:hover { border-color: var(--gold); color: var(--gold); }
.speakers-track { --carousel-edge-fade: 52px; display: grid; grid-auto-columns: calc((100% - 54px) / 4); grid-auto-flow: column; gap: 18px; overflow-x: auto; padding: 8px 3px 30px; scroll-padding-inline: 3px; scrollbar-width: none; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--carousel-edge-fade), #000 calc(100% - var(--carousel-edge-fade)), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 var(--carousel-edge-fade), #000 calc(100% - var(--carousel-edge-fade)), transparent 100%); }
.speakers-track::-webkit-scrollbar { display: none; }
.speaker-card { min-width: 0; min-height: 100%; display: flex; flex-direction: column; padding: 18px 18px 20px; border: 1px solid rgba(200,183,95,.2); border-radius: 16px; background: linear-gradient(155deg, rgba(255,255,255,.035), transparent 42%), var(--card); scroll-snap-align: start; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.speaker-card:hover, .speaker-card:focus-within { border-color: rgba(228,217,133,.68); box-shadow: 0 20px 48px rgba(0,0,0,.3); transform: translateY(-5px); }
.speaker-photo-wrap { position: relative; aspect-ratio: 1; padding: 5px; border: 3px solid var(--gold-dark); border-radius: 50%; background: var(--bg); overflow: hidden; }
.speaker-photo-wrap::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; pointer-events: none; }
.speaker-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: grayscale(1); transition: filter .3s, transform .3s; }
.speaker-photo-placeholder { display: grid; place-items: center; background: radial-gradient(circle at 35% 28%, #39414d, #111722 70%); color: var(--gold-light); font-size: clamp(48px, 6vw, 72px); font-weight: 800; letter-spacing: -.05em; }
.speaker-card:hover .speaker-photo, .speaker-card:focus-within .speaker-photo { filter: grayscale(0); transform: scale(1.035); }
.speaker-card-copy { flex: 1; display: flex; flex-direction: column; }
.speaker-card h3 { min-height: 44px; margin: 17px 0 9px; color: var(--gold-light); font-size: 18px; line-height: 1.2; text-align: center; }
.speaker-card p { display: -webkit-box; min-height: 84px; margin: 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.5; text-align: center; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.speaker-bio-button { align-self: center; margin-top: 17px; padding: 6px 2px; border: 0; border-bottom: 1px solid rgba(200,183,95,.45); background: transparent; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.speaker-bio-button span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.speaker-bio-button:hover span, .speaker-bio-button:focus-visible span { transform: translate(2px, -2px); }

.why-section { position: relative; min-height: 850px; overflow: hidden; background: radial-gradient(circle at 76% 33%, rgba(200, 183, 95, .07), transparent 24%), var(--bg); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 130px); min-height: 520px; }
.why-title { position: relative; align-self: center; }
.why-title h2 { position: relative; z-index: 1; margin: 0; color: var(--gold); font-size: clamp(48px, 6vw, 76px); line-height: .95; letter-spacing: -.055em; }
.giant-word { position: absolute; z-index: 0; left: -16px; top: 40%; color: rgba(255,255,255,.035); font-size: 170px; font-weight: 900; transform: rotate(-90deg) translateX(-55%); transform-origin: left top; }
.why-content { align-self: center; }
.benefits { display: grid; gap: 18px; margin: 20px 0 0; padding: 0; list-style: none; }
.benefits li { position: relative; padding-left: 27px; color: var(--muted); font-size: 16px; }
.benefits li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--gold); }
.benefits strong { color: var(--gold-light); }
.approval { margin-top: 74px; padding: 40px 0 40px 20%; border-top: 1px solid var(--line); }
.approval strong { display: block; font-size: clamp(24px, 4vw, 45px); line-height: 1.15; }
.approval strong span { color: var(--gold); }
.approval p { max-width: 610px; margin: 9px 0 0; color: var(--muted); }

.program-section { position: relative; background: linear-gradient(180deg, #0d121b, #0b1019); }
.program-section::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: radial-gradient(rgba(200,183,95,.28) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, transparent, black 30%, transparent); }
.program-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.program-heading-meta { display: grid; justify-items: end; max-width: 310px; text-align: right; }
.program-experience-mark { position: relative; isolation: isolate; display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px 12px 11px; overflow: hidden; border: 1px solid rgba(228,217,133,.72); border-radius: 999px; background: linear-gradient(120deg, rgba(228,217,133,.16), rgba(200,183,95,.045) 56%, rgba(228,217,133,.13)); box-shadow: 0 16px 40px rgba(0,0,0,.32), 0 0 28px rgba(200,183,95,.1), inset 0 1px rgba(255,255,255,.1); text-align: left; cursor: pointer; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.program-experience-mark::before { content: ""; position: absolute; z-index: -1; inset: -100% 45%; width: 30px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent); transform: rotate(20deg); animation: experienceShine 4.8s ease-in-out infinite; }
.program-experience-mark:hover { border-color: var(--gold-light); box-shadow: 0 18px 46px rgba(0,0,0,.36), 0 0 35px rgba(200,183,95,.18), inset 0 1px rgba(255,255,255,.14); transform: translateY(-3px); }
.program-experience-mark.is-active { border-color: var(--gold-light); background: linear-gradient(120deg, rgba(228,217,133,.3), rgba(200,183,95,.13)); box-shadow: 0 18px 48px rgba(0,0,0,.38), 0 0 40px rgba(200,183,95,.2), inset 0 0 0 1px rgba(255,255,255,.1); }
.program-experience-mark:disabled { cursor: wait; }
.program-experience-mark svg { width: 32px; height: 32px; padding: 7px; border-radius: 50%; background: linear-gradient(145deg, var(--gold-light), var(--gold)); fill: var(--bg); box-shadow: 0 5px 16px rgba(200,183,95,.25); }
.program-experience-mark span { display: grid; line-height: 1; }
.program-experience-mark small { color: #d8d2b1; font-size: 8px; font-weight: 850; letter-spacing: .18em; }
.program-experience-mark strong { color: #fff7c5; font-size: 14px; letter-spacing: .03em; }
.program-experience-mark .program-experience-arrow { display: block; margin-left: 4px; color: var(--gold-light); font-size: 17px; transition: transform .25s ease; }
.program-experience-mark:hover .program-experience-arrow { transform: translate(2px, 2px); }
.program-experience-mark.is-active .program-experience-arrow { transform: rotate(180deg); }
@keyframes experienceShine { 0%, 68% { transform: translateX(-240px) rotate(20deg); } 88%, 100% { transform: translateX(240px) rotate(20deg); } }
.program-schedule { will-change: opacity, transform; }
.program-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.program-tabs.is-agenda-plus { grid-template-columns: repeat(2, 1fr); }
.program-tab { min-height: 60px; padding: 13px; border: 1px solid var(--line); background: #121923; color: var(--muted); font-size: 14px; font-weight: 800; cursor: pointer; }
.program-tab.active { border-color: var(--gold); background: var(--gold); color: var(--bg); }
.program-list { display: grid; margin-top: 12px; border: 1px solid var(--line); background: rgba(24, 31, 43, .88); }
.program-list.is-agenda-plus { border-color: rgba(228,217,133,.48); background: linear-gradient(135deg, rgba(200,183,95,.09), rgba(24,31,43,.9) 42%); box-shadow: 0 24px 60px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.035); }
.program-item { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 25px 30px; border-bottom: 1px solid var(--line); }
.program-item:last-child { border-bottom: 0; }
.program-time { color: var(--gold); font-size: 17px; font-weight: 900; }
.program-content { min-width: 0; }
.program-item h3 { margin: 0 0 5px; font-size: 18px; line-height: 1.35; }
.program-item p { margin: 0; color: var(--muted); font-size: 15px; }
.program-speaker { display: flex; flex-wrap: wrap; gap: 5px 9px; margin-top: 10px !important; color: var(--text) !important; font-weight: 650; }
.program-speaker span { color: var(--gold-light); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.program-speaker.is-pending { color: #929aa6 !important; font-weight: 500; font-style: italic; }
.program-tracks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.program-tracks li { display: grid; gap: 3px; min-width: 0; padding: 14px 15px; border: 1px solid var(--line); background: rgba(8, 13, 21, .46); }
.program-tracks li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.program-tracks strong { color: var(--gold-light); font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.program-tracks span { color: var(--muted); font-size: 13px; }
.program-tracks small { overflow-wrap: anywhere; color: var(--text); font-size: 13px; font-weight: 750; }
.program-tracks small.is-pending { color: #8f98a4; font-weight: 500; font-style: italic; }
.program-note { margin: 13px 0 0; color: #8f98a4; font-size: 12px; text-align: right; }

.testimonials-section { background: #0b1019; }
.testimonials-title { max-width: 550px; margin: 0 auto 50px; font-size: clamp(29px, 4vw, 46px); line-height: 1.06; text-align: center; }
.testimonials-title span { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testimonial { min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 35px 28px; border: 1px solid rgba(255,255,255,.06); background: #101620; }
.testimonial blockquote { margin: 0; color: #d4d7dc; font-size: 16px; font-style: italic; }
.testimonial figcaption { color: var(--gold); font-size: 13px; font-weight: 800; }

.attractions-section { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, #202734, #0b1019 48%); }
.attractions-section::before, .attractions-section::after { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(200,183,95,.14); border-radius: 50%; }
.attractions-section::before { left: -220px; top: 70px; }
.attractions-section::after { right: -180px; bottom: -150px; }
.attractions-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 120px; }
.attractions-grid h2 { margin: 0; color: var(--gold); font-size: clamp(65px, 8vw, 112px); line-height: .78; letter-spacing: -.07em; text-align: right; }
.attractions-grid h2 span { font-size: 1.08em; }
.attractions-grid h2 small { font-size: .48em; }
.attractions-copy { max-width: 470px; color: var(--muted); font-size: 18px; }
.attractions-copy .button { margin-top: 22px; }

.experience-section { position: relative; overflow: hidden; background: radial-gradient(circle at 72% 15%, rgba(200,183,95,.12), transparent 25%), linear-gradient(180deg, #0b1019, #11151d); }
.experience-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(200,183,95,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(200,183,95,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at center, black, transparent 73%); }
.experience-heading { position: relative; max-width: 920px; margin: 0 auto 42px; text-align: center; }
.experience-heading h2 { margin: 0; color: var(--text); font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; text-transform: uppercase; }
.experience-heading h2::first-line { color: var(--gold-light); }
.experience-heading > p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 16px; letter-spacing: .03em; text-transform: uppercase; }
.experience-comparison { position: relative; width: min(100%, 980px); margin-inline: auto; }
.experience-table { overflow: hidden; border: 1px solid rgba(200,183,95,.55); border-radius: 18px; background: rgba(13,17,24,.82); box-shadow: 0 34px 90px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.experience-row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(150px, .82fr) minmax(170px, .92fr); min-height: 46px; border-bottom: 1px solid rgba(200,183,95,.35); }
.experience-row:last-child { border-bottom: 0; }
.experience-row > * { min-width: 0; display: flex; align-items: center; padding: 10px 18px; }
.experience-row > * + * { justify-content: center; border-left: 1px solid rgba(200,183,95,.4); text-align: center; }
.experience-row:nth-child(odd):not(.experience-table-head) { background: rgba(255,255,255,.018); }
.experience-table-head { min-height: 82px; background: linear-gradient(90deg, rgba(156,139,63,.08), rgba(200,183,95,.12)); }
.experience-plan-title { gap: 10px; color: var(--text); font-size: 14px; font-weight: 900; letter-spacing: .03em; line-height: 1.05; text-transform: uppercase; }
.experience-plan-title svg { width: 28px; height: 28px; flex: 0 0 auto; padding: 4px; border: 1px solid var(--gold); border-radius: 8px; fill: none; stroke: var(--gold-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.experience-plan-title.is-premium { color: var(--gold-light); }
.experience-benefit { position: relative; gap: 10px; color: #d9dbe0; font-size: 14px; }
.experience-benefit::before { content: "✦"; flex: 0 0 auto; color: var(--gold); font-size: 11px; }
.experience-yes span:first-child { color: #f0c052; font-size: 31px; font-weight: 900; line-height: 1; text-shadow: 0 0 16px rgba(240,192,82,.22); transform: rotate(-6deg); }
.experience-no span:first-child { color: rgba(200,183,95,.5); font-size: 22px; font-weight: 300; }
.experience-prices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; width: min(100% - 80px, 760px); margin: 38px auto 0; }
.experience-price-card { position: relative; display: grid; justify-items: center; gap: 9px; min-height: 145px; padding: 22px 28px; border: 1px solid rgba(200,183,95,.65); border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(9,13,20,.74)); box-shadow: 0 22px 48px rgba(0,0,0,.22); text-align: center; }
.experience-price-card.is-premium { border-color: var(--gold-light); box-shadow: 0 22px 55px rgba(0,0,0,.26), 0 0 28px rgba(200,183,95,.08); }
.experience-price-name { display: flex; align-items: center; color: var(--text); font-size: 14px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.experience-price-name::before { content: "♢"; margin-right: 9px; color: var(--gold); font-size: 24px; line-height: 1; }
.experience-price-value { width: 100%; padding-top: 8px; border-top: 1px solid rgba(200,183,95,.42); color: var(--text); font-size: clamp(36px, 5vw, 54px); font-weight: 350; line-height: 1; letter-spacing: -.04em; }
.experience-price-value small { color: var(--text); font-size: .3em; font-weight: 500; letter-spacing: 0; }
.experience-price-value sup { font-size: .4em; font-weight: 450; vertical-align: super; }
.experience-limited { position: absolute; top: -24px; right: -28px; width: 66px; height: 66px; display: grid; place-items: center; padding: 8px; border: 2px solid var(--gold-light); border-radius: 50%; background: radial-gradient(circle at 35% 28%, #fff4af, #d99b2e 70%); color: #2a1a05; font-size: 9px; font-weight: 950; line-height: 1.05; text-transform: uppercase; box-shadow: 0 0 0 3px #5e4318, 0 8px 24px rgba(0,0,0,.35); transform: rotate(4deg); }
.experience-signature { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 32px; margin-top: 24px; color: #a9a18a; font-size: 13px; }
.experience-signature span::before { content: "✦"; margin-right: 8px; color: var(--gold); }

.tickets-section { background: linear-gradient(180deg, #0b1019, #0e141e); }
.tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 420px)); justify-content: center; gap: 20px; }
.ticket-card { position: relative; min-height: 300px; display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(200,183,95,.24); border-radius: var(--radius); background: linear-gradient(145deg, #171e29, #0e141e); box-shadow: var(--shadow); }
.ticket-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.045); pointer-events: none; }
.ticket-badge { align-self: flex-start; padding: 5px 9px; background: rgba(200,183,95,.13); color: var(--gold-light); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ticket-card h3 { margin: 28px 0 8px; font-size: 25px; }
.ticket-price { margin-bottom: 26px; color: var(--gold); font-size: 34px; font-weight: 900; }
.ticket-card .button { position: relative; z-index: 1; width: 100%; margin-top: auto; }
.ticket-skeleton { width: min(100%, 420px); height: 300px; margin: auto; background: linear-gradient(90deg, #111823 25%, #1a222e 50%, #111823 75%); background-size: 200% 100%; animation: loading 1.4s infinite; }
@keyframes loading { to { background-position: -200% 0; } }
.tickets-error { padding: 30px; border: 1px solid rgba(255,107,107,.3); color: #ffb0b0; text-align: center; }

.faq-section { background: #0e141e; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 10px; color: var(--gold); font-size: 24px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 45px 25px 0; color: var(--muted); font-size: 16px; }

.partners-section { min-height: 500px; text-align: center; background: var(--bg); }
.partners-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; width: min(1100px, 100%); margin: 42px auto 0; }
.partner-logo-card { min-height: 170px; display: grid; place-items: center; padding: 35px 42px; border: 1px solid rgba(200,183,95,.22); border-radius: 10px; background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 48%), #101620; }
.partner-logo { width: min(100%, 340px); max-height: 82px; object-fit: contain; }
.partner-logo-zoe { width: min(100%, 240px); max-height: 90px; }
.partner-logo-crop { position: relative; display: block; width: min(100%, 340px); overflow: hidden; }
.partner-logo-crop-newpc { aspect-ratio: 1895 / 365; }
.partner-logo-crop-newpc img { position: absolute; width: 105.54%; max-width: none; height: auto; left: -3.69%; top: -127.67%; }

.site-footer { padding: 70px 0 24px; border-top: 1px solid var(--line); background: #080c12; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.25fr .8fr; gap: 70px; }
.brand-footer { width: 260px; height: 79px; color: var(--text); }
.brand-footer .brand-logo-crop { width: 260px; height: 79px; }
.site-footer h2 { margin: 0 0 18px; color: var(--text); font-size: 14px; letter-spacing: .13em; text-transform: uppercase; }
.site-footer p, .site-footer address, .site-footer a { display: block; margin: 5px 0; font-size: 14px; font-style: normal; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { position: relative; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; text-align: center; }
.footer-social { position: absolute; top: 16px; right: 0; display: flex; gap: 8px; }
.site-footer .footer-social-link { width: 34px; height: 34px; display: grid; place-items: center; margin: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.025); cursor: default; transition: border-color .2s, background .2s; }
.site-footer a.footer-social-link { cursor: pointer; }
.footer-social-link:hover { border-color: var(--gold-dark); background: rgba(200,183,95,.08); }
.footer-social-link img { width: 16px; height: 16px; opacity: .82; }

.floating-cta { position: fixed; z-index: 15; right: 20px; bottom: 20px; display: none; min-height: 45px; padding: 10px 18px; border: 0; background: var(--gold); color: var(--bg); font-size: 13px; font-weight: 900; text-transform: uppercase; box-shadow: var(--shadow); }

.speaker-modal { width: min(760px, calc(100% - 32px)); max-height: min(820px, calc(100dvh - 30px)); padding: 0; border: 1px solid rgba(200,183,95,.45); border-radius: 12px; background: #101720; color: var(--text); box-shadow: 0 45px 130px rgba(0,0,0,.8); overflow: hidden; }
.speaker-modal::backdrop { background: rgba(2,5,9,.82); backdrop-filter: blur(7px); }
.speaker-modal-shell { position: relative; max-height: min(820px, calc(100dvh - 30px)); padding: 45px 48px 48px; overflow-y: auto; }
.speaker-modal-header { min-height: 112px; display: flex; align-items: center; gap: 22px; margin: 0 50px 24px 0; }
.speaker-modal-portrait { width: 112px; height: 112px; flex: 0 0 112px; display: grid; place-items: center; padding: 4px; overflow: hidden; border: 2px solid var(--gold-dark); border-radius: 50%; background: radial-gradient(circle at 35% 28%, #39414d, #0b1019 72%); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.speaker-modal-portrait img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center top; filter: grayscale(1); }
.speaker-modal-portrait span { color: var(--gold-light); font-size: 32px; font-weight: 850; letter-spacing: -.04em; }
.speaker-modal-title { min-width: 0; }
.speaker-modal-title .eyebrow { margin-bottom: 10px; }
.speaker-modal h2 { margin: 0; color: var(--gold-light); font-size: clamp(31px, 5vw, 48px); line-height: 1.05; letter-spacing: -.035em; }
.speaker-modal-bio { padding-top: 23px; border-top: 1px solid var(--line); }
.speaker-modal-bio p { margin: 0 0 18px; color: #c9ced6; font-size: 16px; line-height: 1.72; }
.speaker-modal-bio p:last-child { margin-bottom: 0; }

.plan-comparison-modal { width: min(860px, calc(100% - 32px)); max-height: min(820px, calc(100dvh - 30px)); padding: 0; border: 1px solid rgba(200,183,95,.5); border-radius: 10px; background: #101720; color: var(--text); box-shadow: 0 45px 130px rgba(0,0,0,.86); overflow: hidden; }
.plan-comparison-modal::backdrop { background: rgba(2,5,9,.78); backdrop-filter: blur(6px); }
.plan-comparison-shell { position: relative; max-height: min(820px, calc(100dvh - 30px)); padding: 38px 40px 40px; overflow-y: auto; }
.plan-comparison-heading { margin: 0 48px 24px 0; }
.plan-comparison-heading .eyebrow { margin-bottom: 7px; }
.plan-comparison-heading h2 { margin: 0; font-size: clamp(27px, 4vw, 38px); line-height: 1.08; }
.plan-comparison-heading > p:last-child { margin: 9px 0 0; color: var(--muted); font-size: 14px; }

.registration-modal { width: min(900px, calc(100% - 32px)); max-height: min(880px, calc(100dvh - 30px)); padding: 0; border: 1px solid rgba(200,183,95,.45); border-radius: 8px; background: #101720; color: var(--text); box-shadow: 0 45px 130px rgba(0,0,0,.8); overflow: hidden; }
.registration-modal::backdrop { background: rgba(2, 5, 9, .82); backdrop-filter: blur(7px); }
.modal-shell { position: relative; max-height: min(880px, calc(100dvh - 30px)); padding: 40px; overflow-y: auto; }
.modal-close { position: absolute; z-index: 1; top: 14px; right: 17px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--muted); font-size: 31px; cursor: pointer; }
.modal-close:hover { color: var(--text); }
.modal-heading { padding-right: 35px; }
.modal-heading h2 { margin: 0; font-size: clamp(30px, 4vw, 36px); line-height: 1; }
.modal-heading > p:last-child { display: none; }
.modal-progress { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 25px 0 4px; padding: 0; list-style: none; }
.modal-progress::before { content: ""; position: absolute; z-index: 0; top: 17px; left: 25%; right: 25%; height: 1px; background: var(--line); }
.modal-progress li { position: relative; z-index: 1; display: grid; justify-items: center; gap: 6px; color: #7f8996; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.modal-progress li span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #101720; color: var(--muted); font-size: 13px; }
.modal-progress li.is-active, .modal-progress li.is-complete { color: var(--gold-light); }
.modal-progress li.is-active span { border-color: var(--gold); background: var(--gold); color: var(--bg); }
.modal-progress li.is-complete span { border-color: var(--gold-dark); color: var(--gold-light); }
.registration-modal [hidden] { display: none !important; }
.modal-status { display: none; margin: 19px 0; padding: 14px 16px; border: 1px solid var(--line); font-size: 14px; }
.modal-status.is-error, .modal-status.is-success, .modal-status.is-info { display: block; }
.modal-status.is-error { border-color: rgba(255,107,107,.5); background: rgba(255,107,107,.08); color: #ffb0b0; }
.modal-status.is-success { border-color: rgba(99,214,157,.45); background: rgba(99,214,157,.08); color: #9df0c5; }
.modal-status.is-info { border-color: rgba(200,183,95,.38); color: var(--gold-light); }
.lot-selection-stage { display: grid; gap: 22px; margin-top: 26px; }
.lot-selection-stage[hidden] { display: none; }
.modal-plan-guide { text-align: center; }
.modal-plan-guide .eyebrow { margin-bottom: 6px; }
.modal-plan-guide h3 { margin: 0; font-size: clamp(22px, 3vw, 30px); }
.modal-plan-guide > p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.modal-experience-comparison .experience-table { border-radius: 10px; box-shadow: none; backdrop-filter: none; }
.modal-experience-comparison .experience-row { grid-template-columns: minmax(0, 1.25fr) minmax(120px, .7fr) minmax(135px, .8fr); min-height: 38px; }
.modal-experience-comparison .experience-table-head { min-height: 66px; }
.modal-experience-comparison .experience-row > * { padding: 7px 12px; }
.modal-experience-comparison .experience-benefit { font-size: 12px; }
.modal-experience-comparison .experience-yes span:first-child { font-size: 24px; }
.modal-experience-comparison .experience-no span:first-child { font-size: 18px; }
.modal-experience-comparison .experience-plan-title { font-size: 11px; }
.modal-experience-comparison .experience-plan-title svg { width: 24px; height: 24px; }
.registration-modal form { display: grid; gap: 19px; margin-top: 26px; }
.registration-modal fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.registration-modal legend, .field-label { display: block; margin-bottom: 8px; color: #e2e4e8; font-size: 15px; font-weight: 700; }
.modal-lots { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 9px; }
.lot-option { position: relative; }
.lot-option input { position: absolute; opacity: 0; pointer-events: none; }
.lot-option label { min-height: 82px; display: flex; flex-direction: column; justify-content: center; padding: 13px 54px 13px 15px; border: 1px solid var(--line); background: #151d28; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.lot-option label:hover { border-color: rgba(200,183,95,.55); background: #18212d; transform: translateY(-1px); }
.lot-option label strong { font-size: 15px; }
.lot-option label span { color: var(--gold); font-size: 14px; font-weight: 800; }
.lot-option input:checked + label { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.lot-option input:focus-visible + label { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.lot-info-button { position: absolute; z-index: 1; top: 11px; right: 11px; width: 30px; height: 30px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(200,183,95,.55); border-radius: 50%; background: rgba(11,17,26,.76); color: var(--gold-light); font-size: 15px; font-weight: 850; line-height: 1; cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.lot-info-button:hover, .lot-info-button:focus-visible { border-color: var(--gold-light); background: var(--gold); color: var(--bg); transform: scale(1.06); outline: 0; }
.dynamic-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.required-mark { color: var(--gold); }
.registration-modal input:not([type="checkbox"]), .registration-modal select, .registration-modal textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 2px; background: #0b111a; color: var(--text); }
.registration-modal textarea { min-height: 90px; resize: vertical; }
.registration-modal input[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 16px; margin: 4px 0 0; color: #ff9e9e; font-size: 12px; }
.legal-check { display: grid; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 13px; }
.legal-check input { width: 17px; height: 17px; accent-color: var(--gold); }
.submit-button { width: 100%; }
.submit-button:disabled { opacity: .55; cursor: wait; transform: none; }

.payment-step { display: grid; gap: 22px; margin-top: 26px; }
.payment-step[hidden], .payment-methods[hidden], .payment-panel[hidden], .payment-complete[hidden], .payment-qr[hidden] { display: none; }
.payment-back { justify-self: start; padding: 4px 0; border: 0; border-bottom: 1px solid rgba(200,183,95,.42); background: transparent; color: var(--gold-light); font-size: 13px; font-weight: 750; cursor: pointer; }
.payment-back:disabled { display: none; }
.payment-summary { display: flex; justify-content: space-between; gap: 20px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 6px; background: #0b111a; }
.payment-summary > div { display: grid; gap: 3px; }
.payment-summary span { color: var(--muted); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.payment-summary strong { color: var(--text); font-size: 15px; }
.payment-summary-price { min-width: 135px; text-align: right; }
.payment-summary-price strong { color: var(--gold-light); font-size: 22px; }
.payment-heading .eyebrow { margin-bottom: 7px; }
.payment-heading h3 { margin: 0; font-size: clamp(25px, 4vw, 32px); line-height: 1.1; }
.payment-heading > p:last-child { max-width: 680px; margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.payment-method { min-height: 82px; display: grid; place-content: center; gap: 3px; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #151d28; color: var(--text); text-align: center; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.payment-method:hover, .payment-method:focus-visible, .payment-method.is-active { border-color: var(--gold); background: rgba(200,183,95,.1); transform: translateY(-2px); }
.payment-method strong { color: var(--gold-light); font-size: 16px; }
.payment-method span { color: var(--muted); font-size: 12px; }
.payment-method:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.payment-checkout-status { display: none; padding: 14px 16px; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; }
.payment-checkout-status.is-info, .payment-checkout-status.is-error, .payment-checkout-status.is-success { display: block; }
.payment-checkout-status.is-info { border-color: rgba(200,183,95,.38); color: var(--gold-light); }
.payment-checkout-status.is-error { border-color: rgba(255,107,107,.5); background: rgba(255,107,107,.08); color: #ffb0b0; }
.payment-checkout-status.is-success { border-color: rgba(99,214,157,.45); background: rgba(99,214,157,.08); color: #9df0c5; }
.payment-panel { min-width: 0; }
#card-payment-panel { padding: 18px; border-radius: 7px; background: #fff; color-scheme: light; }
.payment-code-panel { display: grid; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: #0b111a; }
.payment-code-panel label { color: var(--text); font-size: 14px; font-weight: 700; }
.payment-code-panel > p { margin: 0; color: var(--muted); font-size: 13px; }
.payment-qr { width: min(240px, 100%); margin: 0 auto 8px; padding: 10px; border-radius: 6px; background: #fff; }
.payment-copy-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.payment-copy-row textarea { min-height: 68px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 3px; background: #111a26; color: var(--text); font-size: 12px; resize: none; }
.payment-copy { min-width: 86px; border: 1px solid var(--gold); border-radius: 3px; background: transparent; color: var(--gold-light); font-size: 13px; font-weight: 800; cursor: pointer; }
.payment-complete { padding: 28px 20px; border: 1px solid rgba(99,214,157,.35); border-radius: 8px; background: rgba(99,214,157,.07); text-align: center; }
.payment-complete > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: var(--success); color: #07130d; font-size: 29px; font-weight: 900; }
.payment-complete h3 { margin: 0 0 7px; color: #aef3ce; font-size: 25px; }
.payment-complete p { margin: 0; color: var(--muted); font-size: 14px; }
.payment-complete.is-pending { border-color: rgba(200,183,95,.4); background: rgba(200,183,95,.08); }
.payment-complete.is-pending > span { background: var(--gold); color: #111; }
.payment-complete.is-pending h3 { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .site-header { padding: 18px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 77px; left: 20px; right: 20px; display: none; padding: 22px; background: rgba(8,12,19,.98); border: 1px solid var(--line); box-shadow: var(--shadow); text-align: center; }
  .main-nav.is-open { display: grid; grid-template-columns: 1fr; justify-items: center; justify-content: stretch; }
  .main-nav a:not(.button) { width: max-content; }
  .main-nav .button { width: min(100%, 220px); }
  .speakers-track { grid-auto-columns: calc((100% - 36px) / 3); }
  .why-grid { grid-template-columns: 1fr 1.2fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-prices { width: min(100% - 50px, 760px); }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-logo-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand { min-width: 205px; width: 205px; height: 62px; }
  .brand-logo-crop { width: 205px; height: 62px; }
  .hero { min-height: 720px; align-items: end; }
  .hero-image { background-position: 59% center; }
  .hero-overlay { background: linear-gradient(0deg, var(--bg) 0%, rgba(7,11,18,.96) 28%, rgba(7,11,18,.46) 76%, rgba(7,11,18,.72) 100%); }
  .hero-content { padding: 0 0 85px; }
  .hero h1 { font-size: clamp(42px, 12vw, 59px); }
  .hero-subtitle { font-size: 18px; }
  .speakers-track { grid-auto-columns: 76%; }
  .speakers-track { --carousel-edge-fade: 28px; }
  .carousel-controls { margin-top: -25px; }
  .why-section { min-height: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 46px; }
  .why-title h2 { font-size: 56px; }
  .approval { margin-top: 55px; padding-left: 0; }
  .program-heading, .attractions-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
  .program-heading-meta { justify-items: start; max-width: none; text-align: left; }
  .program-tabs { grid-template-columns: 1fr; }
  .program-item { grid-template-columns: 1fr; gap: 7px; padding: 22px 20px; }
  .program-tracks { grid-template-columns: 1fr; }
  .program-tracks li:last-child:nth-child(odd) { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { min-height: 220px; }
  .attractions-grid h2 { font-size: 76px; text-align: left; }
  .experience-heading { margin-bottom: 30px; }
  .experience-heading > p:last-child { font-size: 13px; }
  .experience-table { border-radius: 12px; }
  .experience-row { grid-template-columns: minmax(0, 1.35fr) minmax(74px, .62fr) minmax(84px, .72fr); min-height: 44px; }
  .experience-row > * { padding: 9px 8px; }
  .experience-table-head { min-height: 80px; }
  .experience-plan-title { display: grid; justify-items: center; gap: 6px; font-size: 9px; letter-spacing: 0; }
  .experience-plan-title svg { width: 24px; height: 24px; }
  .experience-benefit { gap: 6px; font-size: 11px; line-height: 1.25; }
  .experience-benefit::before { display: none; }
  .experience-yes span:first-child { font-size: 24px; }
  .experience-no span:first-child { font-size: 18px; }
  .experience-prices { grid-template-columns: 1fr; width: min(100% - 18px, 430px); gap: 16px; margin-top: 30px; }
  .experience-price-card { min-height: 125px; }
  .experience-limited { top: -15px; right: -8px; }
  .experience-signature { display: grid; justify-content: start; width: min(100% - 28px, 390px); margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-logo-card:last-child:nth-child(odd) { grid-column: auto; }
  .partner-logo-card { min-height: 145px; padding: 30px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid > :first-child { grid-column: auto; }
  .brand-footer { width: 215px; min-width: 215px; height: 65px; }
  .brand-footer .brand-logo-crop { width: 215px; height: 65px; }
  .footer-social { position: static; width: max-content; margin: 16px auto 0; }
  .floating-cta { display: block; }
  .speaker-modal-shell { padding: 40px 22px 30px; }
  .speaker-modal-header { min-height: 84px; gap: 14px; margin-right: 30px; }
  .speaker-modal-portrait { width: 84px; height: 84px; flex-basis: 84px; }
  .speaker-modal-portrait span { font-size: 25px; }
  .speaker-modal-title .eyebrow { margin-bottom: 7px; font-size: 10px; letter-spacing: .13em; }
  .speaker-modal h2 { font-size: clamp(27px, 8vw, 36px); }
  .speaker-modal-bio p { font-size: 15px; line-height: 1.65; }
  .plan-comparison-shell { padding: 38px 16px 22px; }
  .plan-comparison-heading { margin-left: 4px; }
  .modal-shell { padding: 38px 20px 25px; }
  .modal-experience-comparison .experience-row { grid-template-columns: minmax(0, 1.25fr) minmax(74px, .58fr) minmax(84px, .68fr); }
  .modal-experience-comparison .experience-row > * { padding: 7px 6px; }
  .modal-experience-comparison .experience-benefit { font-size: 10px; }
  .modal-experience-comparison .experience-plan-title { font-size: 8px; }
  .dynamic-fields { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .payment-methods { grid-template-columns: 1fr; }
  .payment-method { min-height: 66px; }
  .payment-summary { align-items: end; }
  .payment-summary-price { min-width: 100px; }
  .payment-copy-row { grid-template-columns: 1fr; }
  .payment-copy { min-height: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
