@charset "UTF-8";
:root {
  --font-display: 'Museo Sans Display', 'Museo Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Museo Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --navy: #0e0d13;
  --navy-2: #15172d;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: #151629;
  --line: rgba(237, 157, 28, 0.30);
  --line-soft: rgba(255, 255, 255, 0.10);
  --gold: #c8920f;
  --gold-bright: #d4a017;
  --gold-light: #c9a227;
  --gold-hover: #9a6e08;
  --gold-grad-start: #f0c040;
  --gold-grad-end: #a06c0a;
  --cream: #ffffff;
  --cream-bright:#ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --muted-2: rgba(255, 255, 255, 0.45);
}

@keyframes shine-sweep {
  0% {
    left: -120%;
  }
  45%, 100% {
    left: 160%;
  }
}
@keyframes gold-pulse {
  0%, 100% {
    box-shadow: 0 14px 40px rgba(237, 157, 28, 0.35), 0 0 0 6px rgba(237, 157, 28, 0.06);
  }
  50% {
    box-shadow: 0 16px 46px rgba(237, 157, 28, 0.5), 0 0 0 9px rgba(237, 157, 28, 0.12);
  }
}
* {
  box-sizing: border-box;
}

.page-bg,
body {
  background-color: var(--navy);
}

body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--cream);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3,
.serif,
.museo-sans-display {
  font-family: var(--font-display);
  color: var(--cream-bright);
  font-weight: normal;
  letter-spacing: 0;
  margin: 0;
}

p {
  margin: 0 0 1.1rem;
}

a {
  color: var(--gold-bright);
}

em {
  font-style: italic;
  color: var(--gold-light);
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat,
.cat-card,
.section-banner,
.dates-box {
  border-radius: var(--radius-md);
}

.btn,
.btn-shine {
  border-radius: 999px;
}

@supports (-webkit-background-clip: text) {
  .gold-ko {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@supports not (-webkit-background-clip: text) {
  .gold-ko {
    color: var(--gold-bright);
  }
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.section {
  padding: 60px 0 50px 0;
  position: relative;
}

.center {
  text-align: center;
}

.gold-rule {
  width: 150px;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 2rem;
  cursor: pointer;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  line-height: 1.2;
}
.btn.disabled {
  filter: grayscale(1);
  cursor: not-allowed;
}
.btn.disabled:hover {
  transform: none;
  filter: grayscale(1);
}

.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-shine {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 800;
  padding: 1.25rem 3rem;
  border-radius: 0.75rem;
  cursor: pointer;
  line-height: 1.2;
  color: #ffffff;
  border: 2px solid #ffffff;
  background: linear-gradient(306deg, #3d2a08 0%, var(--gold) 100%);
  box-shadow: 0 14px 40px rgba(200, 146, 15, 0.4), 0 0 0 6px rgba(200, 146, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: gold-pulse 3s ease-in-out infinite;
}
.btn-shine:hover {
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
  box-shadow: 0 20px 55px rgba(200, 146, 15, 0.55), 0 0 0 8px rgba(200, 146, 15, 0.12);
}
.btn-shine .star {
  width: 22px;
  height: 22px;
  color: #ffffff;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 3.4s ease-in-out infinite;
}
.btn-shine.disabled {
  background: var(--card-2);
  border-color: var(--line);
  color: var(--muted);
  box-shadow: none;
  animation: none;
  cursor: not-allowed;
  filter: grayscale(1);
}
.btn-shine.disabled::after {
  display: none;
}
.btn-shine.disabled .star {
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .btn-shine {
    animation: none;
  }
  .btn-shine::after {
    animation: none;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #0e0d13;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--line-soft);
}
.nav .btn-gold {
  background: linear-gradient(160deg, #d4a017 0%, #9a6e08 100%);
  border-color: #d4a017;
  box-shadow: 0 4px 16px rgba(200, 146, 15, 0.25);
}
.nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav .nav-brand span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream-bright);
}
.nav .nav-count {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .nav .nav-count {
    display: none;
  }
}
.nav .btn {
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .nav .nav-brand span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .nav .btn {
    padding: 12px 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 560px) {
  .nav .nav-inner {
    height: 64px;
  }
  .nav .btn {
    padding: 8px 12px;
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

.nav-ticker {
  display: none;
  background: rgba(200, 146, 15, 0.1);
  border-top: 1px solid rgba(200, 146, 15, 0.25);
  text-align: center;
  padding: 7px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  overflow: hidden;
  max-height: 40px;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}
.nav-ticker.nav-ticker--hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
@media (max-width: 760px) {
  .nav-ticker {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 140px 0 100px;
  background-color: #0a0a14;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.6) 0%, rgba(5, 8, 20, 0.25) 45%, rgba(5, 8, 20, 0.9) 100%), radial-gradient(ellipse at center, transparent 50%, rgba(5, 8, 20, 0.55) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("../img/hero-bg-poster.jpg") center bottom/cover no-repeat;
  mask-image: linear-gradient(180deg, transparent 30%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, black 100%);
}
.hero .eyebrow {
  background: linear-gradient(160deg, #f0c040 0%, #d4a017 45%, #a06c0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  margin-bottom: 1.5rem;
}
@supports not (-webkit-background-clip: text) {
  .hero .eyebrow {
    color: var(--gold);
    background: none;
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--cream-bright);
}
.hero h1 em {
  display: block;
  font-style: italic;
  background: linear-gradient(160deg, #f0c040 0%, #d4a017 45%, #a06c0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .hero h1 em {
    color: var(--gold-bright);
    background: none;
  }
}
.hero .year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.55em;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.4rem;
}
.hero .year::before, .hero .year::after {
  content: "";
  width: 60px;
  height: 1px;
}
.hero .year::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero .year::after {
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-left: -0.55em;
}

.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

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

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.64rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  z-index: 2;
}

.about h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.about {
  background: linear-gradient(to bottom, #100e13, transparent);
}

.about-copy {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--cream);
}
.about-copy strong {
  color: var(--gold-light);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 3.5rem auto 0;
}
@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat .lbl {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.cats h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.cats-intro {
  max-width: 640px;
  margin: 1.6rem auto 0;
  text-align: center;
  color: var(--cream);
}
.cats-intro strong {
  color: var(--gold-light);
  font-weight: 600;
}

.section-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(237, 157, 28, 0.08), rgba(21, 22, 41, 0.6));
  padding: 22px 26px;
  margin: 56px 0 28px;
}
.section-banner .badge {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #0e0d13;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}
.section-banner .s-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream-bright);
  line-height: 1.1;
}
.section-banner .s-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 760px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(200, 146, 15, 0.12);
}
.cat-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.04);
  background: var(--card);
  transition: border-color 0.25s, transform 0.25s;
}
.cat-card:hover {
  border-color: var(--gold);
}

.cat-head {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  color: inherit;
  font-family: inherit;
  position: relative;
}
.cat-head.active1 .cat-toggle {
  transform: rotate(45deg);
  background: rgba(237, 157, 28, 0.14);
}

.cat-no {
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(237, 157, 28, 0.28);
  line-height: 1;
}

.cat-titles {
  padding-top: 44px;
  grid-column: 1/2;
}

.cat-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.05;
}

.cat-sub {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.cat-toggle {
  grid-column: 2/3;
  align-self: start;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.25s;
}
.cat-toggle svg {
  width: 18px;
  height: 18px;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.cat-body {
  padding: 0 28px 30px;
}

.cat-desc {
  color: var(--cream);
  font-size: 0.98rem;
}

.cat-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--gold);
  margin: 1.1rem 0 0.7rem;
}

.cat-list li {
  position: relative;
  padding-left: 22px;
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.cat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.pinnacle {
  padding: 56px 0 0 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(ellipse at center, rgba(237, 157, 28, 0.07), transparent 70%);
}

.pinnacle-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.pinnacle-inner img {
  margin: 0 auto;
  max-width: 260px;
  filter: drop-shadow(0 10px 40px rgba(237, 157, 28, 0.25));
}
.pinnacle-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.pinnacle-inner h2 em {
  display: inline;
}
@media (max-width: 760px) {
  .pinnacle-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .pinnacle-inner img {
    max-width: 180px;
  }
}

.countdown {
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0d0c18;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.countdown canvas.cd-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.countdown .container {
  position: relative;
  z-index: 1;
}
.countdown .eyebrow {
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.countdown h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 2.8rem;
  color: var(--cream-bright);
}
.countdown h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-grad-start), var(--gold-grad-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timer-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0.6rem;
}

.t-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: clamp(70px, 12vw, 120px);
  justify-content: flex-start;
}
@media (max-width: 480px) {
  .t-unit {
    height: 58px;
  }
}

.t-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(245, 200, 66, 0.45), 0 0 80px rgba(245, 200, 66, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  width: clamp(70px, 16vw, 130px);
  text-align: center;
  display: block;
}
@media (max-width: 480px) {
  .t-num {
    font-size: 3rem;
    width: 54px;
  }
}

.t-lbl {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
}

.t-sep {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: rgba(200, 146, 15, 0.6);
  line-height: 1;
  padding: 0 8px 0 4px;
  align-self: center;
  margin-bottom: 0.25em;
  margin-left: 0.25em;
}

.tickets-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid #fff;
  border-radius: 1rem;
  background: linear-gradient(306deg, #7a5200 0%, var(--gold) 100%);
  padding: 3rem 2rem;
  margin-top: 28px;
}
.tickets-band .t-lbl {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.tickets-band .t-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.1;
}
.tickets-band .t-title em {
  color: #fff;
  font-style: italic;
}
.tickets-band .btn-gold {
  color: var(--gold);
  border-color: #fff;
}
.tickets-band .btn-gold:hover {
  background-color: #0e0d13;
  color: #fff;
}

.step .ic {
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
}
.step .ic svg {
  width: 30px;
  height: 30px;
}
.step h3 {
  font-size: 1.65rem;
}
.step p {
  font-size: 1.05rem;
}

.info .ic {
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
}
.info .ic svg {
  width: 30px;
  height: 30px;
}
.info h3 {
  font-size: 1.65rem;
}
.info p {
  font-size: 1.05rem;
}

.about-copy p,
.cats-intro,
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
}

.cat-desc {
  font-size: 1.05rem;
}

.cat-list li {
  font-size: 1.02rem;
}

.dates-box .d-val {
  font-size: 1.15rem;
}
.dates-box .d-lbl {
  font-size: 0.68rem;
}

@media (max-width: 560px) {
  .hero-sub {
    font-size: 0.9rem;
  }
  .hero-btns {
    gap: 12px;
  }
  .nav-logo {
    height: 28px !important;
    width: auto !important;
    max-height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
    align-self: center;
  }
}
.ec-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.ec-modal.modal-open {
  display: block;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 16, 0.72);
  backdrop-filter: blur(12px);
}

.modal-outer {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.modal-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), inset 0 1px rgba(255, 255, 255, 0.05);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.25s;
}
.modal-close:hover {
  color: white;
  border-color: rgba(212, 157, 25, 0.5);
  background: rgba(212, 157, 25, 0.08);
}

.modal-contents {
  padding: 3.25rem;
  text-align: center;
}
.modal-contents .eyebrow {
  margin-bottom: 0.9rem;
}
.modal-contents h2 {
  margin-bottom: 1rem;
  padding: 0 0.2rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.modal-contents h2 em {
  background: linear-gradient(160deg, #f0c040 0%, #d4a017 45%, #a06c0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.modal-contents .gold-rule {
  margin: 0 auto 2rem;
}

.modal-note {
  max-width: 440px;
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.ec-form .row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .ec-form .row2 {
    grid-template-columns: 1fr;
  }
}
.ec-form input {
  width: 100%;
  margin-bottom: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.25s;
}
.ec-form input::-moz-placeholder {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.ec-form input::placeholder {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.ec-form input:focus {
  outline: none;
  border-color: rgba(212, 157, 25, 0.7);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(212, 157, 25, 0.12);
}
.ec-form .btn {
  margin-top: 0.75rem;
  padding: 18px;
  font-size: 1rem;
}

.modal-inner::before {
  content: "";
  position: absolute;
  inset: -120px;
  z-index: -1;
  background: radial-gradient(circle, rgba(212, 157, 25, 0.16), transparent 70%);
}

.choose-header {
  padding: 3rem 0 1rem;
}
.choose-header h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}
.choose-header h1 em {
  background: linear-gradient(160deg, #f0c040 0%, #d4a017 45%, #a06c0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.choose-header .gold-rule {
  margin: 1.5rem auto;
}

.choose-copy {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.entrant-summary {
  max-width: 760px;
  margin: 3rem auto 4rem;
}

.entrant-card {
  padding: 2rem 2.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.05);
}
.entrant-card h3 {
  margin: 0.25rem 0;
}
.entrant-card p {
  color: var(--muted);
  margin: 0;
}

.entrant-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.entrant-reset {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-light);
  text-decoration: none;
  transition: 0.25s;
}
.entrant-reset:hover {
  opacity: 0.8;
}

.general-details {
  margin: 5rem 0;
}

.general-card {
  padding: 2.75rem;
}
@media (max-width: 768px) {
  .general-card {
    padding: 1.5rem;
  }
}
.general-card {
  border-radius: 28px;
}
@media (max-width: 768px) {
  .general-card {
    border-radius: 20px;
  }
}
.general-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.05);
}
.general-card label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}
.general-card label span {
  color: var(--gold-light);
}
.general-card label em {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.general-card input,
.general-card select,
.general-card textarea {
  width: 100%;
  padding: 16px;
}
@media (max-width: 768px) {
  .general-card input,
  .general-card select,
  .general-card textarea {
    padding: 14px;
  }
}
.general-card input,
.general-card select,
.general-card textarea {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  transition: 0.25s;
}
.general-card input::-moz-placeholder, .general-card select::-moz-placeholder, .general-card textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.general-card input::placeholder,
.general-card select::placeholder,
.general-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.general-card input:focus,
.general-card select:focus,
.general-card textarea:focus {
  outline: none;
  border-color: rgba(212, 157, 25, 0.65);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(212, 157, 25, 0.12);
}
.general-card .select-container {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
}
.general-card .select-container select {
  width: 100%;
  margin-bottom: 0;
  padding-right: 56px;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
}
.general-card .select-container::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  border-top: 0 !important;
  border-left: 0 !important;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.upload-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem;
  border-radius: 20px;
  border: 2px dashed rgba(212, 157, 25, 0.25);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.upload-card:hover {
  border-color: var(--gold);
  background: rgba(212, 157, 25, 0.08);
  transform: translateY(-2px);
}
.upload-card input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}

input[type=file]::file-selector-button {
  display: none;
}

input[type=file]::-webkit-file-upload-button {
  display: none;
}

.upload-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(212, 157, 25, 0.12);
  color: var(--gold);
  font-size: 1.4rem;
  flex: none;
}

.upload-text {
  flex: 1;
  min-width: 0;
}
.upload-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.upload-text span {
  display: block;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.upload-card.has-file {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(212, 157, 25, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.form-group {
  min-width: 0;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-grid > .form-group:only-child {
  flex: 1 1 100%;
}

#ownerProxy {
  display: none;
  margin-bottom: 2rem;
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 157, 25, 0.18);
  background: rgba(212, 157, 25, 0.05);
}

.choose-form .general-card .select-container::after {
  border: none !important;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold-light) !important;
  border-bottom: 2px solid var(--gold-light) !important;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-65%) rotate(45deg);
}

.award-section {
  margin: 5rem 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: 0;
}
.section-heading p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  border: 1px solid rgba(212, 157, 25, 0.3);
  background: rgba(212, 157, 25, 0.08);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}
@media (max-width: 900px) {
  .award-grid {
    grid-template-columns: 1fr;
  }
}

.award-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 157, 25, 0.28);
}

.award-card-header {
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.award-number {
  flex: none;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-light);
}

.award-heading h3 {
  margin: 0;
  font-size: 1.45rem;
}
.award-heading p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.award-card-header {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.award-heading {
  flex: 1;
}

.award-chevron {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  transition: 0.35s;
}

.award-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 2rem;
}

.award-card.expanded .award-details {
  max-height: 600px;
  padding: 2rem;
  padding-top: 0;
}
.award-card.expanded .award-chevron {
  transform: rotate(180deg);
  border-color: rgba(212, 157, 25, 0.45);
  background: rgba(212, 157, 25, 0.12);
}

.award-description {
  color: var(--muted);
}

.award-eyebrow {
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--gold-light);
}

.award-points {
  margin: 1rem 0 2rem;
  padding-left: 1.2rem;
  color: var(--cream);
}
.award-points li {
  margin-bottom: 0.6rem;
}

.award-select {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

.award-status {
  display: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 157, 25, 0.12);
  border: 1px solid rgba(212, 157, 25, 0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  white-space: nowrap;
}

.award-card.selected .award-status {
  display: inline-flex;
  align-items: center;
}
.award-card.selected .award-status::before {
  content: "✓";
  margin-right: 0.45rem;
  font-weight: 700;
}
.award-card.selected {
  border-color: rgba(212, 157, 25, 0.75);
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(212, 157, 25, 0.25), 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(212, 157, 25, 0.18);
}

.award-card.selected .award-select {
  background: var(--gold);
  color: #111;
}

.selection-summary {
  margin: 5rem auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
}

.summary-card {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}
.summary-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.summary-card strong {
  display: block;
  font-size: 1.15rem;
}

.choose-actions {
  margin: 4rem 0 6rem;
  text-align: center;
}
.choose-actions .btn {
  min-width: 340px;
}
@media (max-width: 640px) {
  .choose-actions .btn {
    min-width: 100%;
  }
}

.choose-form input,
.choose-form select,
.choose-form textarea {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font: inherit;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: block;
  height: 42px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-logo {
    transform: scale(0.95);
    transform-origin: left center;
  }
}
@media (max-width: 768px) {
  .pinnacle-inner {
    display: flex;
    flex-direction: column;
  }
  .pinnacle-inner img {
    order: 2;
  }
  .pinnacle-inner > div {
    order: 1;
  }
}
.choose-form input[type=number] {
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.choose-form input[type=number]::-webkit-inner-spin-button,
.choose-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.choose-form select {
  color: var(--cream) !important;
  background-color: rgba(255, 255, 255, 0.045) !important;
}

.choose-form select option {
  color: #111;
  background: #fff;
}

@media (max-width: 768px) {
  .general-details {
    margin: 3rem 0;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .section-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
  .choose-form {
    overflow-x: hidden;
  }
}/*# sourceMappingURL=26styles.css.map */