@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap");
footer#footerWrapper {
    display: none;
}

div#fullscreenContainer {
    display: none;
}
:root {
  --navy: #124263;
  --navy-dark: #071f2d;
  --cyan: #48dfeb;
  --white: #fff;
  --ink: #091b23;
  --paper: #f3f7f6;
  --muted: #b8c8ce;
  --line: rgba(255, 255, 255, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 5rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.3s,
    backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(7, 31, 45, 0.88);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand > span > span {
  color: var(--cyan);
}
.brand-mark {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-content: center;
  position: relative;
}
.brand-mark i {
  display: block;
  position: absolute;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  inset: 3px;
}
.brand-mark i:nth-child(2) {
  transform: rotate(60deg);
  border-radius: 45%;
}
.brand-mark i:nth-child(3) {
  transform: rotate(-60deg);
  border-radius: 45%;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.25vw, 1.5rem);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a {
  text-decoration: none;
  position: relative;
}
.site-nav > a:not(.nav-ticket):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s;
}
.site-nav > a:hover:after {
  width: 100%;
}
.nav-ticket {
  padding: 0.75rem 1rem;
  background: var(--cyan);
  color: #051217;
  font-weight: 700;
}
.nav-ticket span {
  margin-left: 1rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.8rem;
  height: 2.8rem;
  position: relative;
}
.menu-toggle i {
  position: absolute;
  left: 0.5rem;
  width: 1.8rem;
  height: 1px;
  background: #fff;
  transition: 0.25s;
}
.menu-toggle i:first-of-type {
  top: 1rem;
}
.menu-toggle i:last-of-type {
  top: 1.65rem;
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-video,
.hero-wash,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  object-fit: cover;
  opacity: 0.5;
}
.hero-wash {
  background:
    linear-gradient(
      90deg,
      rgba(7, 31, 45, 0.96) 0%,
      rgba(7, 31, 45, 0.65) 45%,
      rgba(7, 31, 45, 0.28) 72%
    ),
    linear-gradient(0deg, rgba(7, 31, 45, 0.9), transparent 55%);
}
.hero-grid,
.tickets-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(72, 223, 235, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 223, 235, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - var(--pad) * 2));
  margin: 6.5rem auto 10rem;
}
.eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow:before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}
.hero-eyebrow {
  color: var(--cyan);
}
.hero h1,
.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4rem, 9.2vw, 9rem);
  max-width: 900px;
}
.hero h1 em,
.themes h2 em,
.tickets h2 em {
  font-weight: 500;
  color: var(--cyan);
}
.hero-kicker {
  margin: 1.1rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: clamp(2rem, 5vh, 4rem);
  gap: 2rem;
}
.event-facts {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
}
.fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.fact svg {
  width: 1.35rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}
.fact p {
  font-size: 0.87rem;
  margin: 0;
}
.fact p span {
  display: block;
  color: var(--cyan);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 13.5rem;
  padding: 1rem 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--cyan);
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.button-primary {
  background: var(--cyan);
  color: #06161c;
}
.button span {
  font-size: 1.25rem;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(72, 223, 235, 0.25);
}
.countdown-shell {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 2rem;
  background: rgba(4, 22, 31, 0.72);
  border: 1px solid rgba(72, 223, 235, 0.25);
  backdrop-filter: blur(14px);
  padding: 0.8rem 1rem;
}
.countdown-shell > p {
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.45rem;
  color: var(--muted);
}
.countdown-shell > p span {
  color: var(--cyan);
  float: right;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.countdown div {
  min-width: 3rem;
  text-align: center;
}
.countdown strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}
.countdown div span {
  font-size: 0.5rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.countdown i {
  width: 1px;
  height: 1.9rem;
  background: var(--line);
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-cue i {
  width: 4.5rem;
  height: 1px;
  background: var(--cyan);
  position: relative;
}
.scroll-cue i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  transform: rotate(-45deg);
}
.hero-orbit {
  position: absolute;
  right: -8vw;
  top: 12vh;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(72, 223, 235, 0.25);
  border-radius: 50%;
  animation: orbit 25s linear infinite;
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(72, 223, 235, 0.15);
  border-radius: 45%;
  transform: rotate(35deg);
}
.hero-orbit:after {
  inset: 30%;
  transform: rotate(-35deg);
}
.hero-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  top: 8%;
  left: 25%;
  box-shadow: 0 0 20px var(--cyan);
}
.section {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}
.section-number {
  position: absolute;
  right: var(--pad);
  top: 4rem;
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 1;
  color: rgba(18, 66, 99, 0.07);
}
.section-number.light {
  color: rgba(255, 255, 255, 0.05);
}
.section-head h2,
.venue h2,
.highlights h2 {
  font-size: clamp(3.3rem, 7vw, 7rem);
  color: var(--navy);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
}
.about .section-head {
  align-self: start;
}
.about-copy {
  padding-top: clamp(3rem, 8vw, 8rem);
  max-width: 32rem;
}
.about-copy .lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.25;
  color: var(--navy);
  margin-top: 0;
}
.about-copy > p:not(.lead) {
  color: #52656c;
  max-width: 27rem;
}
.data-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.data-line span {
  border: 1px solid #b7c9cb;
  padding: 0.5rem 0.75rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.about-image {
  grid-column: 1/-1;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  height: clamp(320px, 48vw, 650px);
  position: relative;
}
.about-image img {
  grid-column: 1/-1;
  grid-row: 1;
}
.about-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 66, 99, 0.24), transparent);
}
.about-image figcaption {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 1.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0 1.25rem 1.25rem;
}
.themes {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
}
.themes:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 10% 80%,
    rgba(72, 223, 235, 0.16),
    transparent 32%
  );
}
.themes-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.themes h2 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}
.themes-intro > p:last-child {
  color: var(--muted);
  max-width: 23rem;
  margin-top: 2rem;
}
.theme-list {
  position: relative;
}
.theme-card {
  min-height: 12.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  transition:
    padding 0.3s,
    background 0.3s;
}
.theme-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-card > span {
  font-family: var(--serif);
  color: var(--cyan);
}
.theme-card p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}
.theme-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 500;
  margin: 0;
}
.theme-card > i {
  font-style: normal;
  font-size: 1.5rem;
  color: var(--cyan);
  opacity: 0.3;
}
.theme-card:hover {
  padding-left: 1rem;
  background: rgba(72, 223, 235, 0.06);
}
.theme-card:hover > i {
  opacity: 1;
}
.venue {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0;
  background: #e7efee;
}
.venue-image {
  min-height: 720px;
  position: relative;
  overflow: hidden;
}
.venue-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 66, 99, 0.05),
    rgba(18, 66, 99, 0.4)
  );
}
.map-lines {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(72, 223, 235, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 223, 235, 0.24) 1px, transparent 1px);
  background-size: 80px 80px;
  mix-blend-mode: screen;
}
.venue-pin {
  position: absolute;
  z-index: 3;
  left: 64%;
  top: 45%;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 12px rgba(72, 223, 235, 0.15),
    0 0 40px rgba(72, 223, 235, 0.4);
}
.venue-pin i {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--cyan);
  border-radius: 50%;
}
.venue-copy {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.venue-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 3rem 0 0.25rem;
}
.venue address {
  font-style: normal;
  font-size: 1rem;
}
.venue-copy > p:not(.eyebrow):not(.venue-name) {
  color: #55676d;
  margin-top: 1.5rem;
}
.text-link {
  margin-top: 2rem;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 0.5rem;
}
.text-link span {
  margin-left: 2rem;
}
.highlights {
  overflow: hidden;
}
.highlights .section-head {
  max-width: 800px;
}
.highlights-copy {
  position: absolute;
  right: var(--pad);
  top: clamp(9rem, 17vw, 15rem);
  max-width: 22rem;
  color: #52656c;
}
.gallery {
  margin-top: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 300px 340px;
  gap: 1.25rem;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 45, 0.7), transparent 50%);
  pointer-events: none;
}
.gallery img {
  transition: transform 0.7s;
}
.gallery figure:hover img {
  transform: scale(1.035);
}
.gallery figcaption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.gallery-main {
  grid-row: 1/3;
}
.gallery-tall {
  grid-row: 1;
}
.gallery-small {
  grid-row: 2;
}
.tickets {
  min-height: 720px;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tickets-bg,
.tickets-grid {
  position: absolute;
  inset: 0;
}
.tickets-bg {
  opacity: 0.22;
  filter: saturate(0.6);
}
.tickets:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 31, 45, 0.97),
    rgba(7, 31, 45, 0.72) 58%,
    rgba(7, 31, 45, 0.38)
  );
}
.tickets-content {
  z-index: 2;
  position: relative;
  max-width: 700px;
}
.tickets h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}
.tickets-content > p:not(.eyebrow):not(.booking-note) {
  color: var(--muted);
  max-width: 31rem;
  font-size: 1.05rem;
  margin: 2rem 0;
}
.booking-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.booking-note {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.ticket-orb {
  position: absolute;
  z-index: 2;
  right: 6vw;
  width: min(35vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(72, 223, 235, 0.25);
  border-radius: 50%;
  animation: orbit 28s linear infinite;
}
.ticket-orb i {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(72, 223, 235, 0.35);
  border-radius: 45%;
  transform: rotate(45deg);
}
.ticket-orb i:nth-child(2) {
  transform: rotate(-15deg);
}
.ticket-orb i:nth-child(3) {
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 223, 235, 0.3), transparent 65%);
  box-shadow: 0 0 80px rgba(72, 223, 235, 0.25);
}
.reveal {
  opacity: 0;
  animation: reveal 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.delay-1 {
  animation-delay: 0.12s;
}
.delay-2 {
  animation-delay: 0.24s;
}
.delay-3 {
  animation-delay: 0.36s;
}
.delay-4 {
  animation-delay: 0.48s;
}
.observe {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.observe.in-view {
  opacity: 1;
  transform: none;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 5rem 0 auto;
    background: rgba(7, 31, 45, 0.98);
    padding: 2rem var(--pad) 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.35s;
    pointer-events: none;
  }
  .site-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }
  .nav-ticket {
    padding: 1rem !important;
    margin-top: 1rem;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle[aria-expanded="true"] i:first-of-type {
    top: 1.35rem;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] i:last-of-type {
    top: 1.35rem;
    transform: rotate(-45deg);
  }
  .hero-content {
    margin-top: 7rem;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 12vw, 7rem);
  }
  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .countdown-shell {
    right: var(--pad);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-copy {
    padding-top: 0;
  }
  .themes {
    grid-template-columns: 1fr;
  }
  .themes-intro {
    position: relative;
    top: auto;
  }
  .venue {
    grid-template-columns: 1fr;
  }
  .venue-image {
    min-height: 500px;
  }
  .highlights-copy {
    position: static;
    margin-top: 2rem;
  }
  .ticket-orb {
    right: -12vw;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 4.5rem;
  }
  .site-nav {
    top: 4.5rem;
  }
  .hero {
    min-height: 900px;
  }
  .hero-content {
    width: calc(100% - 2.5rem);
    margin: 6rem auto 13rem;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }
  .hero-kicker {
    font-size: 1rem;
  }
  .event-facts {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero-bottom {
    margin-top: 2.5rem;
  }
  .button {
    width: 100%;
  }
  .countdown-shell {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 3.8rem;
  }
  .countdown {
    justify-content: space-between;
    gap: 0.3rem;
  }
  .countdown div {
    min-width: 2.3rem;
  }
  .countdown strong {
    font-size: 1.5rem;
  }
  .scroll-cue {
    display: none;
  }
  .hero-orbit {
    width: 80vw;
    right: -30vw;
  }
  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .section-head h2,
  .venue h2,
  .highlights h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .about-image {
    height: 330px;
  }
  .themes {
    gap: 3rem;
  }
  .theme-card {
    min-height: 10rem;
    grid-template-columns: 2rem 1fr auto;
  }
  .theme-card h3 {
    font-size: 1.55rem;
  }
  .venue-image {
    min-height: 350px;
  }
  .venue-copy {
    padding: 5rem 1.25rem;
  }
  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
  }
  .gallery figure {
    flex: 0 0 83vw;
    height: 390px;
    scroll-snap-align: start;
  }
  .gallery-main {
    grid-row: auto;
  }
  .tickets {
    min-height: 680px;
  }
  .ticket-orb {
    width: 80vw;
    opacity: 0.55;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video {
    display: none;
  }
  .observe {
    opacity: 1;
    transform: none;
  }
}

.why-attend {
  background: #f3f7f6;
  overflow: hidden;
}
.why-glow {
  position: absolute;
  width: 45rem;
  height: 45rem;
  right: -22rem;
  top: -22rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(72, 223, 235, 0.22),
    transparent 68%
  );
  pointer-events: none;
}
.why-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.why-heading h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  color: var(--navy);
}
.why-heading h2 em {
  font-weight: 500;
}
.why-heading > p {
  color: #52656c;
  font-size: 1.02rem;
  max-width: 28rem;
  margin: 0 0 0.5rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18, 66, 99, 0.22);
  border: 1px solid rgba(18, 66, 99, 0.22);
}
.benefit-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(310px, 34vw, 500px);
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
}
.benefit-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition:
    transform 0.65s,
    filter 0.65s;
  filter: saturate(0.72) contrast(1.06);
}
.benefit-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 31, 45, 0.1) 20%,
      rgba(7, 31, 45, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(18, 66, 99, 0.32), transparent);
}
.benefit-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--cyan);
  transition: width 0.45s;
}
.benefit-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.06);
}
.benefit-card:hover:before {
  width: 100%;
}
.benefit-index {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  backdrop-filter: blur(8px);
}
.benefit-card h3 {
  position: absolute;
  left: clamp(1.25rem, 2.3vw, 2.25rem);
  right: clamp(1.25rem, 2.3vw, 2.25rem);
  bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.benefit-card h3 strong {
  color: var(--cyan);
  font-weight: 500;
}
.why-closing {
  margin: clamp(3rem, 6vw, 6rem) 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  max-width: 850px;
  align-items: start;
}
.why-closing > span {
  color: var(--cyan);
  background: var(--navy);
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.why-closing p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}
.why-closing strong {
  font-weight: 600;
}
@media (max-width: 900px) {
  .why-heading {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    min-height: 360px;
  }
  .why-closing {
    grid-template-columns: 1fr;
  }
}
/* Ticket shop */
.ticket-shop {
  display: block;
  min-height: auto;
  padding: clamp(6rem, 10vw, 9rem) var(--pad);
  background: var(--navy-dark);
}
.ticket-shop:after {
  background: linear-gradient(
    115deg,
    rgba(4, 20, 29, 0.98),
    rgba(7, 31, 45, 0.92) 55%,
    rgba(18, 66, 99, 0.76)
  );
}
.ticket-shop-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: auto;
}
.ticket-shop-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.ticket-shop-heading .eyebrow {
  grid-column: 1/-1;
  color: var(--cyan);
  margin-bottom: -1rem;
}
.ticket-shop-heading h2 {
  font-size: clamp(4rem, 8vw, 8rem);
  white-space: nowrap;
}
.ticket-shop-heading > p:last-child {
  color: var(--muted);
  max-width: 30rem;
  margin: 0 0 0.8rem;
}
.account-panel {
  border: 1px solid rgba(72, 223, 235, 0.3);
  background: rgba(18, 66, 99, 0.32);
  backdrop-filter: blur(18px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1px;
}
.account-icon {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(72, 223, 235, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.account-icon:before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  transform: translateY(-0.45rem);
}
.account-icon i {
  position: absolute;
  width: 1.8rem;
  height: 0.9rem;
  border: 1.5px solid var(--cyan);
  border-bottom: 0;
  border-radius: 2rem 2rem 0 0;
  transform: translateY(0.8rem);
}
.account-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 0.3rem;
}
.account-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 38rem;
}
.account-actions {
  display: flex;
  gap: 0.75rem;
}
.account-actions .button {
  min-width: auto;
  white-space: nowrap;
}
.button-outline {
  background: transparent;
  color: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(72, 223, 235, 0.24);
  border: 1px solid rgba(72, 223, 235, 0.24);
}
.price-card {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: rgba(7, 31, 45, 0.92);
  position: relative;
  overflow: hidden;
}
.price-card-featured {
  background: rgba(18, 66, 99, 0.9);
}
.price-card:after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(72, 223, 235, 0.14);
  border-radius: 50%;
  right: -6rem;
  bottom: -7rem;
}
.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.price-type {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.price-badge {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  border: 1px solid rgba(72, 223, 235, 0.35);
  padding: 0.4rem 0.6rem;
}
.price {
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8vw, 8rem);
  line-height: 1;
  color: var(--cyan);
  margin: 2rem 0 0.8rem;
}
.price sup {
  font-family: var(--sans);
  font-size: 0.25em;
  vertical-align: top;
  position: relative;
  top: 0.5em;
  margin-right: 0.15em;
}
.price-detail {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0 0 2rem;
}
.basket-action {
  min-width: 12.75rem;
  position: relative;
  z-index: 2;
}
.basket-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 0.25s ease;
}
.basket-label {
  margin-right: auto;
  font-size: inherit !important;
}
.basket-arrow {
  transition: transform 0.25s ease;
}
.basket-action:not(.is-loading):not(.is-complete):hover .basket-icon {
  transform: translateY(-2px);
}
.basket-action:not(.is-loading):not(.is-complete):hover .basket-arrow {
  transform: translate(2px, -2px);
}
.basket-spinner {
  display: none;
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid rgba(6, 22, 28, 0.28);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: basket-spin 0.7s linear infinite;
}
.basket-action.is-loading {
  cursor: wait;
  pointer-events: none;
}
.basket-action.is-loading .basket-icon,
.basket-action.is-loading .basket-arrow {
  display: none;
}
.basket-action.is-loading .basket-spinner {
  display: block;
}
.basket-action.is-complete {
  background: #dff7e9;
  border-color: #dff7e9;
  color: #0e5038;
}
.basket-action.is-complete .basket-icon {
  transform: scale(0.88);
}
.location {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: stretch;
  background: var(--navy);
  color: #fff;
}
.location-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location .eyebrow {
  color: var(--cyan);
}
.location h2 {
  font-size: clamp(3.6rem, 6vw, 6.4rem);
}
.location h2 em {
  color: var(--cyan);
}
.location-address {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.05rem;
  align-items: center;
  width: 100%;
  padding: 1.35rem 0;
  margin-top: clamp(2.25rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.location-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  background: rgba(72, 223, 235, 0.12);
}
.location-icon svg {
  width: 1.5rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
}
.location-address h3 {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}
.location-address p,
.location-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 1.4rem 0 2.25rem;
}
.location-details p + p {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.location-details strong,
.location-details span {
  display: block;
}
.location-details strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.location-details span {
  margin-top: 0.15rem;
}
.location-directions {
  min-width: 12.5rem;
  margin-top: auto;
  background: var(--cyan);
  color: #06161c;
}
.location-map {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border: 1px solid rgba(72, 223, 235, 0.32);
  background: #0b2435;
}
#venue-map {
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.location-map-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  background: rgba(7, 31, 45, 0.88);
  border: 1px solid rgba(72, 223, 235, 0.28);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.location-map-label span {
  display: block;
  margin-top: 0.18rem;
  color: var(--cyan);
  font-size: 0.58rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .location {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 28rem;
  }
  .location-directions {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .location-map {
    min-height: 22rem;
  }
  .location-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .location-details p + p {
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }
}
.toast-container {
  position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    width: min(24rem, calc(100vw - 2rem));
    pointer-events: none;
}
.basket-toast {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.15rem;
  color: var(--white);
  background: var(--navy-dark);
  border: 1px solid rgba(72, 223, 235, 0.55);
  border-left: 4px solid var(--cyan);
  box-shadow: 0 1rem 2rem rgba(7, 31, 45, 0.28);
  animation: basket-toast-enter 0.25s ease-out both;
}
.basket-toast-message {
  margin: 0;
  font-size: 0.85rem;
}
.basket-toast-close {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  place-items: center;
  color: var(--cyan);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.basket-toast-close:hover,
.basket-toast-close:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
@keyframes basket-toast-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes basket-spin {
  to {
    transform: rotate(360deg);
  }
}
.ticket-action[aria-disabled="true"],
.basket-action[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.5);
}
.ticket-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 1.5rem 0 0;
}
.ticket-footnote span {
  color: var(--cyan);
  margin: 0 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .basket-toast {
    animation: none;
  }
}
@media (max-width: 1000px) {
  .account-panel {
    grid-template-columns: auto 1fr;
  }
  .account-actions {
    grid-column: 1/-1;
  }
  .ticket-shop-heading {
    grid-template-columns: 1fr;
  }
  .ticket-shop-heading h2 {
    white-space: normal;
  }
  .ticket-shop-heading .eyebrow {
    margin-bottom: -1.5rem;
  }
}
@media (max-width: 700px) {
  .account-panel {
    grid-template-columns: 1fr;
  }
  .account-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  .account-actions {
    flex-direction: column;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .account-actions .button,
  .basket-action {
    width: 100%;
  }
  .ticket-shop-heading h2 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }
  .price-card {
    padding: 2rem 1.5rem;
  }
  .ticket-footnote {
    line-height: 1.8;
  }
}
/* About CISI conference */
.about-cisi {
  background: var(--cyan);
  color: var(--ink);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
}
.about-cisi-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(18, 66, 99, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 66, 99, 0.38) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, #000, transparent 68%);
}
.about-cisi-heading,
.about-cisi-story,
.about-cisi-proof {
  position: relative;
  z-index: 1;
}
.about-cisi-heading {
  align-self: start;
}
.about-cisi .eyebrow {
  color: var(--navy);
}
.about-cisi h2 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin: 0;
}
.about-cisi h2 em {
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 0 rgba(18, 66, 99, 0.08);
}
.about-cisi-story {
  padding-top: clamp(2rem, 6vw, 6rem);
}
.about-cisi-story p {
  max-width: 35rem;
  color: #173d4c;
}
.about-cisi-story .about-cisi-lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.3;
  color: var(--navy);
  margin-top: 0;
}
.about-cisi-proof {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  min-height: clamp(380px, 48vw, 650px);
  background: var(--navy);
}
.about-cisi-proof figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.about-cisi-proof figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 66, 99, 0.1),
    rgba(18, 66, 99, 0.48)
  );
}
.about-cisi-proof img {
  filter: saturate(0.82);
  transition: transform 0.7s;
}
.about-cisi-proof:hover img {
  transform: scale(1.025);
}
.about-cisi-proof figcaption {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 0.8rem;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: space-between;
}
.attendance-stat {
  padding: clamp(2rem, 4.5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.attendance-stat:before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(72, 223, 235, 0.2);
  border-radius: 50%;
  right: -9rem;
  top: -9rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.8;
  color: var(--cyan);
  letter-spacing: -0.06em;
}
.stat-number sup {
  font-family: var(--sans);
  font-size: 0.2em;
  vertical-align: top;
  position: relative;
  top: 0.25em;
}
.attendance-stat > p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  margin: 1.2rem 0;
}
.attendance-stat i {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 1rem 0 1.5rem;
}
.attendance-stat small {
  color: var(--muted);
  font-size: 0.75rem;
  max-width: 18rem;
}
@media (max-width: 900px) {
  .about-cisi {
    grid-template-columns: 1fr;
  }
  .about-cisi-story {
    padding-top: 0;
  }
  .about-cisi-proof {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-cisi-proof figure {
    height: 460px;
  }
  .attendance-stat {
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .about-cisi h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
  .about-cisi-proof figure {
    height: 340px;
  }
  .attendance-stat {
    min-height: 350px;
  }
  .about-cisi-story .about-cisi-lead {
    font-size: 1.4rem;
  }
}
/* Contact and sponsors */
.support-sponsors {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--navy-dark);
  color: #fff;
}
.support-panel,
.sponsors-panel {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) var(--pad);
  overflow: hidden;
}
.support-panel {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.support-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72, 223, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 223, 235, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(135deg, #000, transparent 75%);
}
.support-panel > *:not(.support-orbit) {
  position: relative;
  z-index: 2;
}
.support-panel .eyebrow {
  color: var(--cyan);
}
.support-panel h2,
.sponsors-panel h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
}
.support-panel h2 em,
.sponsors-panel h2 em {
  font-weight: 500;
  color: var(--cyan);
}
.support-panel > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 28rem;
  margin: 2rem 0;
}
.email-button {
  gap: 1rem;
  width: auto;
  min-width: min(100%, 22rem);
}
.email-button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.support-email {
  margin-top: 1.2rem;
  color: var(--cyan);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-underline-offset: 0.35rem;
}
.support-orbit {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(72, 223, 235, 0.15);
  border-radius: 50%;
  right: -11rem;
  bottom: -11rem;
}
.support-orbit i {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(72, 223, 235, 0.22);
  border-radius: 42%;
  transform: rotate(45deg);
}
.support-orbit i:last-child {
  transform: rotate(-15deg);
}
.sponsors-panel {
  background: #071f2d;
}
.sponsors-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.sponsors-heading .eyebrow {
  color: var(--cyan);
  align-self: start;
}
.sponsors-heading h2 {
  text-align: right;
  font-size: clamp(3rem, 5vw, 5.5rem);
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.sponsor-slot {
  aspect-ratio: 1/0.9;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.sponsor-slot:last-child {
  border-right: 0;
}
.sponsor-slot:hover {
  background: var(--cyan);
  color: var(--ink);
}
.sponsor-slot strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 500;
}
.sponsor-slot small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.52rem;
  color: var(--muted);
}
.sponsor-slot:hover small {
  color: var(--navy);
}
.sponsor-symbol {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: block;
}
.sponsor-symbol i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}
.sponsor-symbol i:last-child {
  transform: scale(0.65);
  background: rgba(72, 223, 235, 0.12);
}
.sponsor-slot:hover .sponsor-symbol i {
  border-color: var(--navy);
}
.sponsor-symbol-square i {
  border-radius: 2px;
  transform: rotate(45deg);
}
.sponsor-symbol-square i:last-child {
  transform: rotate(45deg) scale(0.65);
}
.sponsor-symbol-lines i {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  transform: rotate(45deg);
}
.sponsor-symbol-lines i:last-child {
  transform: rotate(-45deg);
}
.sponsor-note {
  color: #69808a;
  font-size: 0.6rem;
  text-align: right;
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 1000px) {
  .support-sponsors {
    grid-template-columns: 1fr;
  }
  .support-panel,
  .sponsors-panel {
    min-height: 600px;
  }
}
@media (max-width: 600px) {
  .support-panel,
  .sponsors-panel {
    min-height: auto;
    padding: 5rem 1.25rem;
  }
  .support-panel h2,
  .sponsors-panel h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }
  .sponsors-heading {
    display: block;
  }
  .sponsors-heading h2 {
    text-align: left;
    margin-top: 1.5rem;
  }
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-slot {
    aspect-ratio: 2/1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .sponsor-slot:last-child {
    border-bottom: 0;
  }
  .sponsor-note {
    text-align: left;
    line-height: 1.6;
  }
}
.sponsor-slot > img {
  position: relative;
  z-index: 2;
  width: min(72%, 12rem);
  height: min(42%, 5.5rem);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition:
    filter 0.35s,
    transform 0.35s,
    opacity 0.35s;
}
.sponsor-slot:hover > img {
  filter: brightness(1) invert(0);
  transform: scale(1.06);
  opacity: 1;
}
.sponsor-slot:first-child > img {
  filter: brightness(0) invert(1);
  opacity: 0.72;
}
.sponsor-slot:first-child:hover > img {
  filter: brightness(1) invert(0);
  opacity: 1;
}

/* Section rhythm: each adjacent chapter uses a distinct surface. */
.about-cisi {
  border-top: 10px solid var(--cyan);
}
.highlights {
  background: #fff;
  border-top: 1px solid rgba(18, 66, 99, 0.16);
  border-bottom: 1px solid rgba(18, 66, 99, 0.16);
  isolation: isolate;
}
.highlights:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 66, 99, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 66, 99, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(135deg, #000, transparent 62%);
}
.why-attend {
  background: #0b3042;
  color: #fff;
  border-top: 10px solid var(--cyan);
}
.why-attend .why-heading h2,
.why-attend .why-closing p {
  color: #fff;
}
.why-attend .why-heading > p {
  color: #c3d2d5;
}
.why-attend .why-closing {
  border-color: rgba(255, 255, 255, 0.24);
}
.why-attend .why-closing .why-closing-mark {
  background: #0b3042;
  color: var(--cyan);
}
.why-attend .why-closing strong {
  color: var(--cyan);
}
.section.agenda {
  background: #e3eeef;
  border-top: 1px solid rgba(18, 66, 99, 0.24);
}
.ticket-shop {
  border-top: 10px solid var(--navy);
}
.support-sponsors {
  border-top: 10px solid var(--cyan);
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(2rem, 3vw, 2.65rem);
  object-fit: contain;
}

/* Conference agenda */
.agenda {
  background: var(--paper);
  overflow: hidden;
}
.agenda-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(18, 66, 99, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 66, 99, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(135deg, #000 0%, transparent 55%);
}
.agenda-heading,
.agenda-day {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-inline: auto;
}
.agenda-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.agenda-heading .eyebrow {
  color: var(--navy);
}
.agenda-heading h2 {
  font-size: clamp(3.8rem, 7.5vw, 8rem);
  color: var(--navy);
}
.agenda-heading h2 em {
  color: var(--cyan);
  font-weight: 500;
}
.agenda-intro {
  padding-bottom: 0.7rem;
}
.agenda-intro > p {
  color: #52656c;
  font-size: 1rem;
  margin: 0 0 1.6rem;
  max-width: 31rem;
}
.agenda-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--navy);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 0.45rem;
}
.agenda-link span {
  color: var(--cyan);
  font-size: 1.05rem;
  transition: transform 0.25s;
}
.agenda-link:hover span {
  transform: translate(3px, -3px);
}
.agenda-day {
  border-top: 1px solid rgba(18, 66, 99, 0.22);
}
.agenda-period {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2.5rem 0 1rem;
  color: var(--navy);
}
.agenda-period span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 0.9rem;
}
.agenda-period p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.agenda-item {
  position: relative;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(18, 66, 99, 0.18);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.agenda-item:last-child {
  border-bottom: 1px solid rgba(18, 66, 99, 0.18);
}
.agenda-item summary,
.agenda-item-compact,
.agenda-break,
.agenda-reception {
  display: grid;
  grid-template-columns: clamp(5rem, 10vw, 8rem) 1fr auto;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.4rem, 2.7vw, 2.3rem);
  list-style: none;
  cursor: pointer;
}
.agenda-item summary::-webkit-details-marker {
  display: none;
}
.agenda-item summary:hover,
.agenda-item[open] summary {
  background: rgba(72, 223, 235, 0.08);
}
.agenda-item time {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--navy);
  line-height: 1;
}
.agenda-type {
  margin: 0 0 0.45rem;
  color: #56717d;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}
.agenda-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.8vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.agenda-subtitle {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: #3b6675;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  margin-top: 0.45rem;
}
.agenda-speakers {
  display: block;
  color: #647b84;
  font-size: 0.7rem;
  line-height: 1.55;
  margin-top: 0.75rem;
}
.agenda-item summary > em {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(18, 66, 99, 0.3);
  border-radius: 50%;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.agenda-item summary > em:before,
.agenda-item summary > em:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1px;
  background: var(--navy);
  transform: translate(-50%, -50%);
}
.agenda-item summary > em:after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}
.agenda-item[open] summary > em {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 0.3rem rgba(72, 223, 235, 0.14);
}
.agenda-item[open] summary > em:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.agenda-detail {
  display: grid;
  grid-template-columns: clamp(5rem, 10vw, 8rem) 1fr auto;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: 0 clamp(1.4rem, 2.7vw, 2.3rem) clamp(1.8rem, 3vw, 2.8rem);
  background: rgba(72, 223, 235, 0.08);
}
.agenda-detail:before {
  content: "";
}
.agenda-detail p {
  max-width: 54rem;
  margin: 0;
  color: #405b65;
  font-size: 0.9rem;
  line-height: 1.75;
}
.agenda-detail strong {
  color: var(--navy);
  font-weight: 700;
}
.agenda-featured {
  border-left: 3px solid var(--cyan);
  background: #fff;
}
.agenda-featured .agenda-type {
  color: #0f7180;
}
.agenda-item-compact {
  cursor: default;
}
.agenda-break {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  cursor: default;
}
.agenda-break time,
.agenda-break .agenda-type {
  color: var(--cyan);
}
.agenda-break h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}
.agenda-break > span {
  align-self: center;
  border: 1px solid rgba(72, 223, 235, 0.4);
  padding: 0.45rem 0.7rem;
  color: var(--cyan);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.agenda-lunch {
  background: #174f6f;
}
.agenda-reception {
  margin-top: 1px;
  background: var(--cyan);
  border: 0;
  cursor: default;
}
.agenda-reception .agenda-type {
  color: var(--navy);
}
.agenda-reception p:last-child {
  max-width: 40rem;
  color: #24556a;
  font-size: 0.82rem;
}
.agenda-reception-mark {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--navy);
}
@media (max-width: 800px) {
  .agenda-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .agenda-heading h2 {
    font-size: clamp(3.5rem, 14vw, 5.7rem);
  }
  .agenda-item summary,
  .agenda-item-compact,
  .agenda-break,
  .agenda-reception {
    grid-template-columns: 4.5rem 1fr;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .agenda-item summary > em,
  .agenda-break > span,
  .agenda-reception-mark {
    grid-column: 2;
    margin-top: 0.75rem;
  }
  .agenda-item summary > em {
    width: 2.2rem;
    height: 2.2rem;
  }
  .agenda-detail {
    grid-template-columns: 4.5rem 1fr;
    padding: 0 1rem 1.7rem;
    gap: 1rem;
  }
  .agenda-item h3 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .agenda-speakers {
    font-size: 0.66rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .agenda-item summary > em,
  .agenda-link span {
    transition: none;
  }
}

/* Centered closing statement */
.why-closing {
  position: relative;
  max-width: 1050px;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5rem);
  display: block;
  text-align: center;
  border-top: 1px solid rgba(18, 66, 99, 0.22);
  border-bottom: 1px solid rgba(18, 66, 99, 0.22);
}
.why-closing:before,
.why-closing:after {
  content: "";
  position: absolute;
  top: -1px;
  width: clamp(2.5rem, 7vw, 6rem);
  height: 3px;
  background: var(--cyan);
}
.why-closing:before {
  left: 0;
}
.why-closing:after {
  right: 0;
}
.why-closing .why-closing-mark {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -48%;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}
.why-closing p {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}
.why-closing strong {
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 600px) {
  .why-closing {
    padding-inline: 0;
  }
  .why-closing p {
    max-width: 19ch;
  }
}
