:root {
  --ink: #071323;
  --navy: #031a46;
  --blue: #087ed8;
  --cyan: #16b8f3;
  --lime: #d8ff31;
  --paper: #f4f6f0;
  --white: #ffffff;
  --line: rgba(7, 19, 35, 0.16);
  --shell: min(1420px, calc(100vw - 64px));
  --header-h: 84px;
  --ease: cubic-bezier(0.2, 0.78, 0.22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--navy); background: var(--lime); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 140px 0; }

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--lime); }

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(22, 184, 243, 0.13), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 32px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .4s ease, height .4s ease, color .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(244, 246, 240, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px rgba(2, 16, 48, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 38px;
  color: white;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
}
.brand-mark > span { color: var(--lime); margin: 0 3px 0 5px; }
.site-header.scrolled .brand-mark { color: var(--navy); }
.brand-copy { font-size: 9px; font-weight: 800; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.desktop-nav a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), background .3s ease;
}
.header-cta:hover { transform: translateY(-3px); background: white; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  background:
    linear-gradient(115deg, rgba(2, 19, 60, .96) 0%, rgba(3, 36, 101, .95) 52%, rgba(7, 126, 216, .87) 100%),
    linear-gradient(135deg, #061a45, #008fd7);
  overflow: hidden;
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 78%);
}
.hero::after {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 47vw;
  height: 140%;
  border-left: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(90deg, rgba(0,180,255,.02), rgba(0,180,255,.25));
  content: "";
  transform: skewX(-14deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  min-height: calc(100vh - 52px);
  padding-top: calc(var(--header-h) + 52px);
  padding-bottom: 118px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 2px; background: var(--lime); content: ""; }
.hero h1 { margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(63px, 7.4vw, 128px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.title-line { display: block; }
.title-line:nth-child(2) { transition-delay: .08s; }
.title-line:nth-child(3) { transition-delay: .16s; }
.title-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.74); }
.hero-lead { max-width: 650px; margin: 36px 0 0; color: rgba(255,255,255,.76); font-size: clamp(18px, 1.5vw, 24px); line-height: 1.45; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-width: 220px;
  padding: 17px 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), color .3s ease, background .3s ease;
}
.button:hover { transform: translateY(-4px); }
.button-primary { color: var(--navy); background: var(--lime); }
.button-primary:hover { background: white; }
.text-link { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 800; }
.text-link span { margin-left: 16px; color: var(--lime); }

.hero-visual { position: relative; width: min(640px, 44vw); aspect-ratio: 1 / 1; margin-left: auto; transform: translate3d(calc(var(--mx, 0) * 10px), calc(var(--my, 0) * 10px), 0); transition: transform .25s ease-out; }
.hero-image-wrap {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 16%;
  width: 67%;
  height: 82%;
  overflow: hidden;
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}
.hero-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,24,72,.05), rgba(0,18,56,.45)); content: ""; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-number { position: absolute; z-index: 1; top: -12%; right: -3%; color: rgba(255,255,255,.035); font-family: "Arial Black", Impact, sans-serif; font-size: 22vw; font-weight: 900; letter-spacing: -.12em; line-height: 1; }
.orbit { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.orbit::after { position: absolute; top: 13%; left: 11%; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 24px var(--lime); content: ""; }
.orbit-one { inset: 5%; }
.orbit-two { inset: 17%; border-style: dashed; animation-duration: 13s; animation-direction: reverse; }
.speed-lines { position: absolute; z-index: 4; right: 1%; bottom: 17%; display: grid; gap: 10px; width: 42%; transform: rotate(-13deg); }
.speed-lines i { display: block; height: 2px; background: linear-gradient(90deg, transparent, var(--lime)); animation: linePulse 2.4s ease-in-out infinite; }
.speed-lines i:nth-child(2) { width: 77%; margin-left: auto; animation-delay: .2s; }
.speed-lines i:nth-child(3) { width: 54%; margin-left: auto; animation-delay: .4s; }
.speed-lines i:nth-child(4) { width: 34%; margin-left: auto; animation-delay: .6s; }
.visual-tag { position: absolute; z-index: 6; padding: 10px 14px; border: 1px solid rgba(255,255,255,.3); background: rgba(2,18,55,.55); backdrop-filter: blur(12px); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.visual-tag span { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.tag-top { top: 12%; right: 1%; }
.tag-bottom { bottom: 8%; left: 3%; }
.tag-bottom strong { color: var(--lime); }

.event-facts {
  position: absolute;
  z-index: 4;
  bottom: 76px;
  left: 0;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.25);
}
.event-facts > div { min-width: 164px; padding: 15px 28px 0 0; }
.event-facts span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.54); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.event-facts strong { font-size: 13px; letter-spacing: .03em; }
.hero-ticker { position: absolute; z-index: 5; bottom: 0; width: 100%; overflow: hidden; color: var(--navy); background: var(--lime); transform: rotate(-1deg) scale(1.02); }
.ticker-track { display: flex; align-items: center; width: max-content; animation: marquee 30s linear infinite; }
.ticker-track span { padding: 14px 25px; font-family: "Arial Black", Impact, sans-serif; font-size: 16px; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.ticker-track b { font-size: 13px; }

.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 60px; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker span { display: grid; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; place-items: center; font-size: 9px; }
.section-title { margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(54px, 6vw, 102px); font-weight: 900; letter-spacing: -.07em; line-height: .91; text-transform: uppercase; }
.section-title em { color: var(--blue); font-family: Georgia, serif; font-size: .92em; font-weight: 400; letter-spacing: -.055em; text-transform: none; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; align-items: end; }
.about-copy { max-width: 590px; padding-bottom: 6px; }
.about-copy p { color: rgba(7,19,35,.66); font-size: 17px; }
.about-copy .large-copy { margin-top: 0; color: var(--ink); font-size: clamp(22px, 2vw, 31px); line-height: 1.38; }
.arrow-link { display: inline-flex; justify-content: space-between; gap: 44px; margin-top: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); font-size: 12px; font-weight: 900; }
.arrow-link span { color: var(--blue); font-size: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 110px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { display: flex; align-items: flex-end; gap: 19px; min-height: 180px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { color: var(--blue); font-family: "Arial Black", Impact, sans-serif; font-size: clamp(72px, 6vw, 110px); letter-spacing: -.08em; line-height: .75; }
.stat span { padding-bottom: 2px; font-size: 10px; font-weight: 900; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

.themes { background: white; }
.section-heading { display: grid; grid-template-columns: 1fr 380px; gap: 8vw; align-items: end; margin-bottom: 80px; }
.section-heading .section-kicker { margin-bottom: 44px; }
.section-intro { margin: 0; padding-left: 22px; border-left: 2px solid var(--lime); color: rgba(7,19,35,.65); font-size: 17px; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #dce0db; }
.theme-card {
  position: relative;
  min-height: 430px;
  padding: 24px;
  color: white;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
}
.theme-card:nth-child(2) { color: var(--navy); background: var(--lime); }
.theme-wide { grid-column: span 2; }
.theme-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .8s var(--ease), filter .5s ease; }
.theme-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(0,22,65,.08) 5%, rgba(0,18,52,.9) 100%); }
.theme-card:hover img { transform: scale(1.07); filter: saturate(1.2); }
.theme-no { position: absolute; top: 24px; left: 24px; font-family: "Arial Black", Impact, sans-serif; font-size: 13px; }
.theme-card-copy { position: absolute; right: 28px; bottom: 28px; left: 28px; transform: translateZ(24px); }
.theme-card small { color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.theme-card:nth-child(2) small { color: var(--blue); }
.theme-card h3 { max-width: 520px; margin: 7px 0 12px; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(28px, 2.5vw, 44px); letter-spacing: -.055em; line-height: .98; text-transform: uppercase; }
.theme-card p { max-width: 420px; margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
.theme-card:nth-child(2) p { color: rgba(3,26,70,.7); }
.theme-arrow { position: absolute; top: 20px; right: 22px; font-size: 22px; transition: transform .3s var(--ease); }
.theme-card:hover .theme-arrow { transform: translate(5px,-5px); }
.track-graphic { position: absolute; inset: 7% -8% auto auto; width: 90%; height: 60%; transform: rotate(-13deg); }
.track-graphic i { position: absolute; inset: calc(var(--n, 0) * 30px); border: 1px solid rgba(3,26,70,.25); border-radius: 50%; }
.track-graphic i:nth-child(2) { --n: 1; }
.track-graphic i:nth-child(3) { --n: 2; }

.program { color: white; background: var(--navy); }
.program .section-title em { color: var(--lime); }
.section-kicker-light span { border-color: rgba(255,255,255,.3); }
.program-head { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.program-meta { display: grid; min-width: 270px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.program-meta span { color: rgba(255,255,255,.55); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.program-meta strong { margin: 5px 0 22px; font-size: 25px; }
.program-meta a { width: fit-content; color: var(--lime); font-size: 11px; font-weight: 900; }
.program-filters { display: flex; gap: 4px; margin: 78px 0 24px; overflow-x: auto; scrollbar-width: none; }
.program-filters::-webkit-scrollbar { display: none; }
.program-filters button { flex: 0 0 auto; padding: 12px 18px; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.18); background: transparent; cursor: pointer; font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.program-filters button:hover, .program-filters button.active { color: var(--navy); border-color: var(--lime); background: var(--lime); }
.schedule { border-top: 1px solid rgba(255,255,255,.22); }
.schedule-item { border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s ease, opacity .3s ease; }
.schedule-item[hidden] { display: none; }
.schedule-button {
  display: grid;
  grid-template-columns: 160px 170px 1fr 50px;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 26px 12px;
  color: white;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.schedule-item:hover, .schedule-item.open { background: rgba(255,255,255,.055); }
.schedule-time { color: var(--lime); font-family: "Arial Black", Impact, sans-serif; font-size: 17px; letter-spacing: -.02em; }
.schedule-tag { width: fit-content; padding: 7px 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 30px; color: rgba(255,255,255,.6); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.schedule-title { font-family: "Arial Black", Impact, sans-serif; font-size: clamp(18px, 1.7vw, 27px); letter-spacing: -.03em; line-height: 1.05; text-transform: uppercase; }
.schedule-toggle { display: grid; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; place-items: center; font-size: 20px; transition: transform .35s var(--ease), color .25s ease, background .25s ease; }
.schedule-item.open .schedule-toggle { color: var(--navy); background: var(--lime); transform: rotate(45deg); }
.schedule-details { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .45s var(--ease), opacity .35s ease; }
.schedule-details > div { overflow: hidden; }
.schedule-item.open .schedule-details { grid-template-rows: 1fr; opacity: 1; }
.schedule-detail-inner { display: grid; grid-template-columns: 354px 1fr; gap: 24px; padding: 0 62px 32px 12px; }
.schedule-description { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.schedule-people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 28px; margin: 0; padding: 0; list-style: none; }
.schedule-people li { color: rgba(255,255,255,.72); font-size: 12px; }
.schedule-people li::before { margin-right: 9px; color: var(--lime); content: "↳"; }
.schedule-moderator { grid-column: 2; margin: 16px 0 0; color: var(--lime); font-size: 11px; }

.speakers { overflow: hidden; background: var(--paper); }
.speaker-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.speaker-card { position: relative; min-height: 310px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.speaker-card::before { position: absolute; right: -35px; bottom: -65px; color: rgba(8,126,216,.055); font-family: "Arial Black", Impact, sans-serif; font-size: 190px; font-weight: 900; letter-spacing: -.14em; content: attr(data-initials); transition: transform .5s var(--ease), color .4s ease; }
.speaker-card:hover::before { color: rgba(8,126,216,.13); transform: translate(-10px,-12px) rotate(-6deg); }
.speaker-card-no { font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.speaker-card-content { position: absolute; right: 25px; bottom: 24px; left: 25px; }
.speaker-card h3 { margin: 0 0 12px; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(24px, 2.1vw, 36px); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.speaker-card p { margin: 0; color: rgba(7,19,35,.62); font-size: 11px; line-height: 1.45; }
.speaker-card-tag { position: absolute; top: 22px; right: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(216,255,49,.22); }
.speakers-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; }
.speakers-foot p { font-family: "Arial Black", Impact, sans-serif; font-size: 16px; text-transform: uppercase; }
.button-dark { color: white; background: var(--navy); }
.button-dark:hover { color: var(--navy); background: var(--lime); }
.names-ticker { width: 100%; margin-top: 100px; overflow: hidden; color: white; background: var(--blue); transform: rotate(1.5deg) scale(1.03); }
.names-track { display: flex; align-items: center; width: max-content; padding: 17px 0; animation: marqueeReverse 36s linear infinite; }
.names-track span { padding: 0 34px; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(20px, 2.3vw, 34px); letter-spacing: -.04em; text-transform: uppercase; }
.names-track i { color: var(--lime); font-size: 30px; }

.manifesto { position: relative; min-height: 850px; padding: 130px 0; color: white; background: #031334; overflow: hidden; }
.manifesto::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,19,52,.99) 0%, rgba(3,19,52,.9) 55%, rgba(3,19,52,.3)); content: ""; }
.manifesto-image { position: absolute; top: 0; right: 0; width: 56%; height: 100%; opacity: .62; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-grid { position: relative; z-index: 2; }
.manifesto blockquote { max-width: 1150px; margin: 90px 0 120px; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(44px, 5.4vw, 92px); font-style: normal; font-weight: 900; letter-spacing: -.065em; line-height: .98; text-transform: uppercase; }
.manifesto blockquote em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.manifesto-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1000px; }
.manifesto-points > div { padding: 22px; border: 1px solid rgba(255,255,255,.18); background: rgba(3,19,52,.54); backdrop-filter: blur(8px); }
.manifesto-points span { color: var(--lime); font-size: 9px; font-weight: 900; }
.manifesto-points h3 { margin: 32px 0 10px; font-family: "Arial Black", Impact, sans-serif; font-size: 24px; text-transform: uppercase; }
.manifesto-points p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }

.venue-grid { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 650px; background: white; }
.venue-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px; }
.venue-label { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.venue-copy .section-title { margin: 24px 0 30px; }
.venue-copy > p:not(.venue-label) { max-width: 400px; color: rgba(7,19,35,.62); }
.venue-copy .button { margin-top: 28px; }
.venue-visual { position: relative; min-height: 650px; overflow: hidden; }
.venue-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,26,70,.3), transparent 60%); content: ""; }
.venue-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.venue-visual:hover img { transform: scale(1.035); }
.map-pin { position: absolute; z-index: 2; top: 40%; left: 52%; display: flex; align-items: center; gap: 10px; color: white; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.map-pin i { position: relative; display: block; width: 15px; height: 15px; border: 4px solid var(--lime); border-radius: 50%; box-shadow: 0 0 0 12px rgba(216,255,49,.18), 0 0 28px rgba(216,255,49,.7); animation: pinPulse 2s infinite; }
.venue-coordinate { position: absolute; z-index: 2; right: 25px; bottom: 25px; padding: 12px; color: var(--lime); border-left: 1px solid var(--lime); font-family: monospace; font-size: 11px; }

.final-cta { position: relative; padding: 145px 0; color: white; background: linear-gradient(105deg, #086fca, #029fe2); overflow: hidden; }
.final-cta::before { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 120px 100%; content: ""; }
.final-lines { position: absolute; top: -30%; right: -5%; width: 50%; height: 160%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.final-lines::before, .final-lines::after { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.final-lines::before { inset: 9%; }
.final-lines::after { inset: 19%; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 { max-width: 1000px; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(76px, 10vw, 170px); font-weight: 900; letter-spacing: -.085em; line-height: .75; text-transform: uppercase; }
.final-cta h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.final-actions { display: flex; align-items: center; gap: 48px; margin-top: 70px; }
.button-lime { color: var(--navy); background: var(--lime); }
.button-lime:hover { background: white; }
.final-actions p { margin: 0; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.final-actions p a { display: inline-block; margin-top: 5px; color: white; font-size: 14px; }

footer { padding: 75px 0 25px; color: white; background: #020c20; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 70px; padding-bottom: 70px; }
.footer-brand { display: flex; gap: 18px; align-items: flex-start; }
.footer-brand p { margin: 3px 0 0; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-label { margin-bottom: 12px; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid a { font-size: 11px; }
.eagle-logo { width: 110px; border-radius: 8px; }
.footer-top { justify-self: end; }
.footer-top a { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.4); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.12); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes linePulse { 0%,100% { opacity: .2; transform: scaleX(.5); transform-origin: right; } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marqueeReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes pinPulse { 50% { box-shadow: 0 0 0 20px rgba(216,255,49,0), 0 0 35px rgba(216,255,49,.9); } }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1080px); }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 10px; }
  .hero-grid { grid-template-columns: 1fr .8fr; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-wide { grid-column: span 1; }
  .speaker-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-button { grid-template-columns: 125px 145px 1fr 40px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --shell: calc(100vw - 36px); }
  .section { padding: 100px 0; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 110; display: grid; width: 44px; height: 44px; padding: 13px 9px; border: 1px solid rgba(255,255,255,.35); background: transparent; place-content: center; gap: 7px; }
  .site-header.scrolled .menu-toggle { border-color: var(--line); }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .35s var(--ease); }
  .menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 90; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 120px 24px 35px; color: white; background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease); }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-family: "Arial Black", Impact, sans-serif; font-size: clamp(29px, 8vw, 55px); font-weight: 900; letter-spacing: -.05em; text-transform: uppercase; }
  .mobile-menu nav span { color: var(--lime); font-family: Arial, sans-serif; font-size: 9px; letter-spacing: normal; }
  .mobile-menu > p { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; }
  .menu-open .site-header { color: white; background: var(--navy); }
  .menu-open .site-header .brand-mark { color: white; }

  .hero-grid { display: block; min-height: 100vh; padding-top: 130px; padding-bottom: 160px; }
  .hero h1 { font-size: clamp(56px, 12vw, 100px); }
  .hero-copy { position: relative; z-index: 5; }
  .hero-lead { max-width: 560px; }
  .hero-visual { width: 56vw; margin-top: -20px; opacity: .68; }
  .event-facts { right: 0; bottom: 65px; justify-content: space-between; }
  .event-facts > div { min-width: auto; }
  .about-grid, .section-heading, .program-head, .venue-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { gap: 45px; }
  .section-intro { max-width: 520px; }
  .program-meta { min-width: 0; max-width: 360px; margin-top: 20px; }
  .schedule-button { grid-template-columns: 105px 1fr 38px; gap: 14px; }
  .schedule-tag { display: none; }
  .schedule-detail-inner { grid-template-columns: 1fr; padding-right: 20px; }
  .schedule-moderator { grid-column: 1; }
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-image { width: 75%; }
  .manifesto-points { grid-template-columns: 1fr; max-width: 580px; }
  .venue-copy { padding: 50px 35px; }
  .venue-visual { min-height: 520px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { justify-self: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 82px 0; }
  .brand-copy { display: none; }
  .hero-grid { padding-top: 118px; }
  .hero h1 { font-size: clamp(42px, 13.2vw, 70px); line-height: .86; }
  .hero-lead { margin-top: 26px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .button { width: 100%; }
  .hero-visual { position: absolute; right: -26%; bottom: 110px; width: 92vw; opacity: .45; }
  .event-facts { bottom: 62px; gap: 16px; width: 100%; }
  .event-facts > div { padding-right: 0; }
  .event-facts strong { font-size: 10px; }
  .event-facts span { font-size: 7px; }
  .ticker-track span { font-size: 13px; }
  .section-kicker { margin-bottom: 38px; }
  .section-title { font-size: clamp(47px, 14vw, 70px); }
  .about-grid { gap: 40px; }
  .stats-grid { margin-top: 65px; }
  .stat { align-items: flex-start; flex-direction: column; justify-content: flex-end; min-height: 150px; padding: 18px; }
  .stat strong { font-size: 64px; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card { min-height: 390px; }
  .program-filters { margin-top: 55px; }
  .schedule-button { grid-template-columns: 78px 1fr 34px; padding: 20px 5px; }
  .schedule-time { font-size: 13px; }
  .schedule-title { font-size: 17px; }
  .schedule-detail-inner { padding: 0 5px 24px; }
  .schedule-people { grid-template-columns: 1fr; }
  .speaker-grid { grid-template-columns: 1fr; }
  .speaker-card { min-height: 250px; }
  .speakers-foot { align-items: flex-start; flex-direction: column; gap: 18px; }
  .manifesto { padding: 90px 0; }
  .manifesto blockquote { margin: 60px 0 80px; }
  .manifesto-image { width: 100%; opacity: .32; }
  .venue-copy { padding: 40px 24px; }
  .venue-visual { min-height: 430px; }
  .final-cta { padding: 110px 0; }
  .final-cta h2 { font-size: 21vw; }
  .final-actions { align-items: flex-start; flex-direction: column; gap: 28px; margin-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@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; }
}
