@charset "UTF-8";
:root {
  --ink: #020617;
  --ink-2: #0a0f1f;
  --ink-3: #121a2e;
  --paper: #f8fafc;
  --paper-dim: #94a3b8;
  --gold: #6366f1;
  --gold-dim: #4f46e5;
  --crimson: #a5b4fc;
  --violet: #818cf8;
  --line: rgba(248, 250, 252, 0.1);
  --line-strong: rgba(248, 250, 252, 0.2);
  --display: "Anton", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --cut: 14px;
  --cut-sm: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.cut {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.cut-sm {
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
}

::-moz-selection {
  background: var(--gold);
  color: var(--ink);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 2px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section-title {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  max-width: 820px;
}

.accent {
  color: var(--gold);
}

.grad-rainbow {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f 0%, #ff8c00 22%, #b2ff00 44%, #66cc33 66%, #00e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff007f;
}

.grad-green-teal {
  display: inline-block;
  background: linear-gradient(90deg, #b2ff00, #66cc33 50%, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #66cc33;
}

.grad-teal {
  display: inline-block;
  background: linear-gradient(90deg, #00e5ff, #4ff5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #00e5ff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.btn {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  transition:
    all 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  background: transparent;
  color: var(--paper);
}

.btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.btn-solid {
  background: #ff0066;
  color: var(--ink);
  border-color: #ff0066;
  font-weight: 700;
}

.btn-solid:hover {
  background: #ff3377;
  border-color: #ff3377;
  color: var(--ink);
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--gold);
}

.btn-solid:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ink);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(14px);
  padding: 4px 0;
  border-color: var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 114px;
  width: 230px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: -28px;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
}

.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(2, 6, 23, 0.96);
  padding: 20px 32px;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 600px at 78% 18%, rgba(99, 102, 241, 0.16), transparent 60%), radial-gradient(ellipse 700px 500px at 12% 85%, rgba(165, 180, 252, 0.14), transparent 60%), var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-logo-mark {
  position: absolute;
  right: -3%;
  bottom: 6%;
  width: 46%;
  max-width: 640px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(46px, 7.6vw, 108px);
  line-height: 0.94;
  max-width: 1000px;
  margin-bottom: 28px;
}

.hero p.lede {
  font-size: 19px;
  max-width: 560px;
  color: var(--paper-dim);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.marquee {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.marquee::before {
  left: -9px;
}

.marquee::after {
  right: -9px;
}

.marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 26px 32px;
  border-left: 2px dashed var(--line-strong);
  border-right: 2px dashed var(--line-strong);
}

.marquee-label {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.countdown {
  display: flex;
  gap: 10px;
}

.countdown .unit {
  font-family: var(--mono);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  min-width: 70px;
  text-align: center;
  border-radius: 2px;
}

.countdown .unit b {
  display: block;
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
}

.countdown .unit span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

.cal-save {
  position: relative;
}

.cal-save-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cal-save-trigger::after {
  content: "▾";
  font-size: 10px;
  transition: transform 0.2s ease;
}

.cal-save.open .cal-save-trigger::after {
  transform: rotate(180deg);
}

.cal-save-menu {
  display: none;
  position: fixed;
  z-index: 1000;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.cal-save.open .cal-save-menu {
  display: block;
}

.cal-save-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  background: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 2px;
}

.cal-save-item:hover,
.cal-save-item:focus-visible {
  background: var(--ink-3);
  color: var(--gold);
  outline: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
}

.stat {
  background: var(--ink);
  padding: 38px 28px;
  grid-column: span 2;
}

.stat:nth-child(1),
.stat:nth-child(2) {
  grid-column: span 3;
}

.stat .num {
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 52px);
  color: var(--gold);
  line-height: 1;
}

.stat .lbl {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.body-copy {
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}

.body-copy p {
  margin: 0 0 16px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.body-copy h2,
.body-copy h3,
.body-copy h4 {
  font-family: var(--body);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 700;
  color: var(--paper);
  margin: 32px 0 12px;
}

.body-copy h2 {
  font-size: 22px;
}

.body-copy h3 {
  font-size: 18px;
}

.body-copy h4 {
  font-size: 15px;
}

.body-copy ul,
.body-copy ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.body-copy li {
  margin-bottom: 6px;
}

.body-copy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.about-row .body-copy {
  font-size: 17px;
  margin-top: 28px;
  max-width: 600px;
}

.about-row .body-copy + .body-copy {
  margin-top: 16px;
}

.cinema {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  padding: 6px;
  border-radius: 3px;
}

.cinema-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
}

.cinema-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.cinema iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.gala-media-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.gala-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gala-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gala-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.process-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.process-item .step-num {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
}

.process-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--body);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.process-item p {
  color: var(--paper-dim);
  max-width: 680px;
}

.year-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 44px 0 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.year-tab {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 12px 18px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: var(--paper-dim);
}

.year-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.year-tab:hover {
  color: var(--paper);
}

.year-panel {
  display: none;
}

.year-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.ticket {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.ticket:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}

.ticket .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: 2px;
}

.ticket .media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-3);
}

.ticket .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ticket:hover .media img {
  transform: scale(1.06);
}

.ticket .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 6, 23, 0.92) 100%);
}

.ticket .body {
  padding: 20px 20px 22px;
}

.ticket .title {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ticket .studio {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.perf {
  border-top: 2px dashed var(--line-strong);
  margin: 16px 0 12px;
  position: relative;
}

.perf::before,
.perf::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 14px;
  height: 14px;
  background: var(--ink);
  transform: rotate(45deg);
}

.perf::before {
  left: -30px;
}

.perf::after {
  right: -30px;
}

.nominees-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.nominees {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--paper-dim);
}

.nominees li {
  padding: 3px 0;
}

.nominees b {
  color: var(--paper);
  font-weight: 600;
}

.org-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

.map-art {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.18), transparent 45%), radial-gradient(circle at 70% 60%, rgba(165, 180, 252, 0.15), transparent 45%), var(--ink-2);
  overflow: hidden;
}

.map-art svg {
  width: 100%;
  height: 100%;
}

.org-copy p {
  color: var(--paper-dim);
  margin-bottom: 16px;
}

.org-copy p:last-child {
  margin-bottom: 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  margin-top: 50px;
}

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 13px 14px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-side .stat-mini {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.contact-side .stat-mini:first-child {
  border-top: none;
}

.contact-side .stat-mini b {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.contact-side .stat-mini span {
  color: var(--paper-dim);
  font-size: 14px;
}

.ceega-contact-form .fluentform,
.ceega-contact-form .ff-t-container {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.ceega-contact-form .ff-el-group {
  margin-bottom: 20px;
}

.ceega-contact-form label,
.ceega-contact-form .ff-el-input--label label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 8px;
}

.ceega-contact-form input[type="text"],
.ceega-contact-form input[type="email"],
.ceega-contact-form input[type="tel"],
.ceega-contact-form input[type="number"],
.ceega-contact-form textarea,
.ceega-contact-form select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 13px 14px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.25s ease;
}

.ceega-contact-form input:focus,
.ceega-contact-form textarea:focus,
.ceega-contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.ceega-contact-form .ff-row,
.ceega-contact-form .ff-grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ceega-contact-form button[type="submit"],
.ceega-contact-form .ff-btn-submit {
  width: 100%;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ff0066 !important;
  background: #ff0066 !important;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition:
    all 0.25s ease,
    box-shadow 0.25s ease;
}

.ceega-contact-form button[type="submit"]:hover,
.ceega-contact-form .ff-btn-submit:hover {
  background: #ff3377;
  border-color: #ff3377;
  box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.ceega-contact-form .error,
.ceega-contact-form .text-danger,
.ceega-contact-form .ff-errors-in-stack {
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
}

.ceega-contact-form .ff-message-success {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 13px;
}

@media (max-width: 520px) {
  .ceega-contact-form .ff-row,
  .ceega-contact-form .ff-grid_row {
    grid-template-columns: 1fr;
  }
}
footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 36px;
  background: var(--ink);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-ceega-logo {
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-divider {
  width: 1px;
  height: 56px;
  background: var(--line-strong);
  display: inline-block;
}

.footer-logos > img,
.footer-logos > a > img {
  height: 56px;
  width: auto;
}

.footer-logos img.footer-ceega-logo {
  height: 90px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 12px;
  color: var(--paper-dim);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.15em;
  color: rgba(248, 250, 252, 0.6);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-fund {
  max-width: 900px;
  margin-top: 14px;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.6);
}

body.popup-open {
  overflow: hidden;
}

.ceega-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ceega-popup[hidden] {
  display: none;
}

.ceega-popup.is-open {
  opacity: 1;
}

.ceega-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.ceega-popup-dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.65);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}

.ceega-popup.is-open .ceega-popup-dialog {
  transform: none;
}

.ceega-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ceega-popup-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ceega-popup-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 10px;
  line-height: 1.05;
}

.ceega-popup-lede {
  margin-top: 14px;
  max-width: 640px;
  color: var(--paper-dim);
}

.ceega-popup-video {
  position: relative;
  margin-top: 26px;
  aspect-ratio: 16/9;
  background: var(--ink);
  border: 1px solid var(--line-strong);
}

.ceega-popup-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ceega-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ceega-popup.is-vertical .ceega-popup-dialog {
  width: min(460px, 100%);
}

.ceega-popup.is-vertical .ceega-popup-title {
  font-size: clamp(24px, 7vw, 32px);
}

.ceega-popup.is-vertical .ceega-popup-video {
  aspect-ratio: 9/16;
  height: min(52vh, 520px);
  width: auto;
  max-width: 100%;
  margin: 18px auto 0;
}

.ceega-popup.is-vertical .ceega-popup-actions {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .ceega-popup {
    padding: 14px;
  }
  .ceega-popup-dialog {
    padding: 24px 20px 20px;
  }
  .ceega-popup-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ceega-popup {
    transition: none;
  }
  .ceega-popup-dialog {
    transform: none;
    transition: none;
  }
}
@media (max-width: 960px) {
  .year-panel.active {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gala-media-row {
    grid-template-columns: 1fr;
  }
  .org-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .section {
    padding: 52px 0;
  }
  .logo-img {
    height: 102px;
    width: 185px;
    margin-left: -24px;
  }
  .marquee-inner {
    border-left: none;
    border-right: none;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-logo-mark {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat,
  .stat:nth-child(1),
  .stat:nth-child(2) {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  .year-panel.active {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .row2 {
    grid-template-columns: 1fr;
  }
} /*# sourceMappingURL=main.css.map */
