:root {
  --ink: #000000;
  --paper: #f3f3f3;
  --white: #ffffff;
  --orange: #000000;
  --lime: #ffffff;
  --line: rgba(0, 0, 0, .18);
  --muted: #666666;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .91;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { display: block; width: 122px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  padding: 11px 17px;
  color: var(--white) !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav-toggle { display: none; color: white; background: transparent; border: 0; font-size: 26px; }

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: #000000;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 56px 0;
  isolation: isolate;
}
.hero-copy-panel {
  position: relative;
  z-index: 3;
  width: min(470px, 68%);
  padding: 32px 0 18px;
}
.hero-copy-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 54%;
  left: 34%;
  width: 165%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,.98) 0%,
    rgba(0,0,0,.96) 42%,
    rgba(0,0,0,.82) 58%,
    rgba(0,0,0,.36) 76%,
    transparent 100%);
  pointer-events: none;
}
.hero h1 { max-width: 470px; font-size: clamp(44px, 5.8vw, 76px); }
.hero h1 span { display: block; color: var(--lime); }
.hero-copy { max-width: 440px; margin: 18px 0 24px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.65; }
.hero .kicker { margin-bottom: 10px; font-size: 10px; }
.hero .button { min-height: 43px; padding: 0 16px; font-size: 11px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--ink);
  background: rgba(0,0,0,.055);
  border: 1px solid rgba(0,0,0,.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.button:hover, .button:focus-visible { background: rgba(0,0,0,.12); }
.button.primary { color: inherit; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.button.light { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.button.dark { color: var(--white); background: rgba(0,0,0,.72); border-color: rgba(255,255,255,.16); }
.hero .button, .page-hero .button, .dark .button, .cta .button {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.hero .button:hover, .page-hero .button:hover, .dark .button:hover, .cta .button:hover {
  background: rgba(255,255,255,.16);
}
.photobooth-wrap {
  position: absolute;
  z-index: 0;
  inset: 42px -4vw;
}
.photobooth-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.36), transparent 28%, transparent 80%, rgba(0,0,0,.36)),
    linear-gradient(0deg, rgba(0,0,0,.65), transparent 18%, transparent 82%, rgba(0,0,0,.65));
  pointer-events: none;
}
.photobooth-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-block;
  margin: 0;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.photobooth {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  padding: 34px;
  background: var(--ink);
  border: 3px solid var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.backdrop-brand, .sponsor-slot {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.12);
}
.backdrop-brand img { width: 88%; max-height: 62px; object-fit: contain; }
.sponsor-slot img { display: block; width: 100%; max-height: 68px; object-fit: contain; }
.sponsor-slot a { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; }
.sponsor-slot.available {
  flex-direction: column;
  color: rgba(255,255,255,.7);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px);
  border: 1px dashed rgba(255,255,255,.3);
  text-align: center;
}
.sponsor-slot.available span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-slot.available small { margin-top: 5px; font-size: 9px; }
.photobooth-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.photobooth-note span { width: 8px; height: 8px; background: var(--white); box-shadow: 0 0 0 5px rgba(255,255,255,.12); }

.marquee { overflow: hidden; padding: 15px 0; color: var(--white); background: var(--ink); border-block: 1px solid rgba(255,255,255,.16); }
.marquee-track { width: max-content; font-family: "Manrope", Arial, sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 104px 0; }
.section.dark { color: var(--white); background: var(--ink); }
.section.orange { background: var(--paper); }
.section-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; margin-bottom: 56px; }
.section-head h2 { max-width: 850px; font-size: clamp(50px, 7vw, 94px); }
.section-head p { max-width: 640px; margin: 20px 0 0; color: var(--muted); line-height: 1.7; }
.dark .section-head p { color: rgba(255,255,255,.65); }

.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.event-grid.single { grid-template-columns: minmax(0, 760px); }
.event-card { min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; padding: 36px; border: 1px solid rgba(0,0,0,.15); background: rgba(255,255,255,.55); backdrop-filter: blur(20px) saturate(130%); }
.event-card.orange { color: var(--ink); background: rgba(255,255,255,.55); }
.event-card.orange .number { color: rgba(0,0,0,.14); }
.event-card.orange .event-stats { border-color: var(--line); }
.event-card.orange .event-stats span { color: #555555; }
.event-card .number { font-family: "Manrope"; font-size: 100px; font-weight: 700; line-height: .8; color: rgba(0,0,0,.14); }
.event-card h3 { margin: 0 0 12px; font-family: "Manrope"; font-size: clamp(42px, 5vw, 68px); font-weight: 700; line-height: .95; text-transform: uppercase; }
.event-meta { margin: 0 0 24px; line-height: 1.65; }
.event-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.event-stats strong { display: block; font-size: 25px; }
.event-stats span { color: #555555; font-size: 12px; text-transform: uppercase; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.22); }
.step { min-height: 320px; padding: 34px; background: var(--ink); }
.step-index { display: block; margin-bottom: 76px; color: var(--lime); font-family: "Manrope"; font-size: 42px; font-weight: 700; }
.step h3 { margin: 0 0 14px; font-size: 24px; }
.step p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }

.tier-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tier { padding: 28px; background: rgba(255,255,255,.55); border: 1px solid rgba(0,0,0,.16); backdrop-filter: blur(20px) saturate(130%); }
.tier.featured { color: var(--white); background: var(--ink); transform: translateY(-10px); }
.tier.featured li { border-color: rgba(255,255,255,.3); }
.tier-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.tier-price { margin: 18px 0 24px; font-family: "Manrope"; font-size: 55px; font-weight: 700; }
.tier ul { margin: 0; padding: 0; list-style: none; }
.tier li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.4; }
.tier li::before { content: "✓"; margin-right: 9px; font-weight: 900; }
.tier-note { margin-top: 28px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(20px) saturate(120%);
}
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-right: 1px solid rgba(0,0,0,.09);
  border-bottom: 1px solid rgba(0,0,0,.12);
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
}
.comparison-table th:last-child,
.comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table thead th { color: var(--white); background: var(--ink); }
.comparison-table thead th:first-child { width: 32%; min-width: 245px; text-align: left; }
.comparison-table .package-name { display: block; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.comparison-table .package-price { display: block; margin-top: 5px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 600; }
.comparison-table tbody th { text-align: left; font-weight: 600; }
.comparison-table tbody tr:hover { background: rgba(0,0,0,.035); }
.comparison-table .yes { font-size: 17px; font-weight: 800; }
.comparison-table .no { color: rgba(0,0,0,.24); }
.comparison-table .slot-row th,
.comparison-table .slot-row td { font-weight: 800; background: rgba(0,0,0,.045); }

.report-grid, .job-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.report-item, .job-card { padding: 30px; border: 1px solid rgba(255,255,255,.2); }
.report-item strong { display: block; margin-bottom: 9px; color: var(--lime); font-size: 38px; font-family: "Manrope"; font-weight: 700; }
.report-item p, .job-card p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.6; }
.job-card { color: var(--ink); background: rgba(255,255,255,.55); border: 1px solid rgba(0,0,0,.16); backdrop-filter: blur(20px) saturate(130%); }
.job-card h3 { margin: 0 0 18px; font-family: "Manrope"; font-size: 38px; font-weight: 700; text-transform: uppercase; }
.job-card p { color: var(--muted); }
.job-list { padding-left: 19px; line-height: 1.75; }

.page-hero { padding: 100px 0 80px; color: var(--white); background: var(--ink); }
.page-hero h1 { max-width: 1000px; font-size: clamp(64px, 10vw, 140px); }
.page-hero p { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.7; }
.event-switcher { display: flex; gap: 10px; margin: 35px 0 0; }
.event-switcher button { cursor: pointer; }
.event-switcher button.active { color: var(--white); background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); }
.event-panel { display: none; }
.event-panel.active { display: block; }
.details-bar { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(0,0,0,.16); background: rgba(255,255,255,.55); backdrop-filter: blur(20px) saturate(130%); }
.detail { padding: 25px; border-right: 1px solid var(--line); }
.detail:last-child { border-right: 0; }
.detail span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.cta { padding: 90px 0; color: var(--white); background: var(--ink); border-block: 1px solid rgba(255,255,255,.16); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta h2 { max-width: 720px; font-size: clamp(48px, 7vw, 90px); }
.contact-stack { display: grid; gap: 12px; }

.site-footer { padding: 40px 0; color: var(--white); background: var(--ink); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-row img { width: 130px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 24px 20px; background: var(--ink); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid { min-height: 610px; grid-template-columns: 1fr; padding: 48px 0; }
  .hero-copy-panel { width: min(470px, 78%); }
  .photobooth-wrap { inset: 34px -12vw; width: auto; margin: 0; }
  .photobooth { grid-template-columns: repeat(3, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 5px; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .tier.featured { transform: none; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero, .hero-grid { min-height: auto; }
  .hero { min-height: 560px; }
  .hero-grid { min-height: 560px; padding: 30px 0; }
  .hero h1 { font-size: 44px; }
  .hero-copy-panel { width: 88%; padding: 28px 0 12px; }
  .hero-copy-panel::before { top: 54%; left: 48%; width: 215%; height: 190%; }
  .photobooth-wrap { inset: 24px 10px; width: auto; }
  .photobooth { padding: 12px; grid-template-columns: repeat(3, 1fr); }
  .backdrop-brand, .sponsor-slot { padding: 7px; }
  .section { padding: 75px 0; }
  .event-grid, .steps, .tier-grid, .report-grid, .job-grid, .details-bar { grid-template-columns: 1fr; }
  .event-card { min-height: 400px; padding: 26px; }
  .detail { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta-row, .footer-row { align-items: flex-start; flex-direction: column; }
  .event-switcher { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}

.gateway-page { color: var(--white); background: var(--ink); }
.gateway {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(28px, 5vw, 70px);
}
.gateway-logo { width: clamp(135px, 14vw, 220px); }
.gateway-question {
  width: min(100%, 1080px);
  align-self: center;
  justify-self: center;
  padding: 70px 0;
}
.gateway-question h1 {
  margin: 0 0 52px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .95;
  letter-spacing: -.045em;
}
.gateway-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gateway-options a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.gateway-options a:hover,
.gateway-options a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}
.gateway-options span { font-size: clamp(30px, 4vw, 56px); font-weight: 700; letter-spacing: -.035em; }
.gateway-options small { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .68; }

@media (max-width: 650px) {
  .gateway-options { grid-template-columns: 1fr; }
  .gateway-options a { min-height: 150px; }
}
