@font-face {
  font-family: "Righteous";
  src: url("assets/fonts/righteous-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --black: #0d0c0c;
  --ink: #191919;
  --paper: #d5d9e1;
  --card: #f7f7f7;
  --orange: #ff5903;
  --orange-dark: #e94800;
  --pink: #d46196;
  --purple: #9566b8;
  --blue: #78a5fb;
  --muted: #797b7f;
  --muted-light: #a7aab0;
  --line: rgba(25, 25, 25, .28);
  --container: 1232px;
  --wide-container: 1300px;
  --font: Arial, Helvetica, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--black);
}

html::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, input {
  letter-spacing: 0;
}

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

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

a[aria-disabled="true"] {
  cursor: default;
}

button, a {
  font: inherit;
}

button {
  color: inherit;
}

h1, h2, h3, p {
  margin: 0;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.content-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.agenda-container {
  width: min(calc(100% - 48px), var(--wide-container));
  margin-inline: auto;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.light-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.gradient-text {
  background-color: #d06196;
  background-image:
    url("assets/dom/gradient-blur.png"),
    linear-gradient(90deg, #f06b4d 0%, #d06196 34%, #9066b7 67%, #73a7f9 100%);
  background-position: center 24%, left center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, 100% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#summit-title,
#speakers-title,
#agenda-title {
  --gradient-box: 1000px;
}

#audience-title {
  --gradient-box: 600px;
}

#tickets-title {
  --gradient-box: 620px;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  background-position: -24px 24%, -24px center;
  background-size: 620px auto, 620px 100%;
}

#about-title {
  --gradient-box: 340px;
  background-position: -32px 24%, -32px center;
  background-size: 340px auto, 340px 100%;
}

#faq-title {
  --gradient-box: 160px;
  background-position: -45px 24%, -45px center;
  background-size: 180px auto, 180px 100%;
}

.ticket-sponsor h3 {
  width: min(485px, 100%);
}

.section-title {
  width: min(var(--gradient-box, 100%), 100%);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: none;
}

.section-header > p,
.intro-copy > p,
.about-header > p {
  margin-top: 14px;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.button--small {
  min-height: 36px;
  padding-inline: 18px;
  font-size: 14px;
}

.button--primary {
  background: var(--orange);
  color: #fff;
}

.button--primary:hover {
  background: var(--orange-dark);
}

.button--outline {
  border-color: var(--orange);
  color: var(--orange);
}

.button--outline:hover {
  background: var(--orange);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--gradient {
  overflow: hidden;
  padding-inline: 27px;
  border: 0;
  background-color: #db6793;
  background-image: linear-gradient(90deg, #db6793 0%, #7fa7ff 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-clip: border-box;
  clip-path: inset(0 round 999px);
  color: #fff;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 71px;
  background: rgba(13, 12, 12, .96);
  color: #fff;
}

.header-inner {
  width: min(calc(100% - 160px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 162px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 10px;
  font-size: 16px;
}

.primary-nav a {
  opacity: .92;
}

.primary-nav a:hover {
  color: var(--orange);
}

.header-cta {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

/* Hero */
.hero {
  height: 898px;
}

.hero::after,
.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.hero-texture {
  position: absolute;
  inset: 70px 0 0;
  background:
    radial-gradient(ellipse 52% 36% at 76% 2%, rgba(111, 118, 211, .58), transparent 74%),
    radial-gradient(ellipse 52% 34% at 44% 110%, rgba(87, 131, 214, .5), transparent 70%),
    radial-gradient(ellipse 40% 35% at 29% 7%, rgba(181, 85, 127, .26), transparent 72%),
    #0d0c0c;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 208px), var(--container));
  height: 100%;
  margin-inline: auto;
}

.hero-copy {
  position: absolute;
  top: 188px;
  left: 0;
  width: 650px;
}

.hero-lockup {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-year {
  position: absolute;
  top: -30px;
  left: 484px;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.hero-title-image {
  display: block;
  width: min(605px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-tagline {
  margin-top: 23px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-description {
  max-width: 520px;
  margin-top: 25px;
  color: #d0d1d5;
  font-size: 14px;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.hero-meta > span {
  display: inline-flex;
  width: 143px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 14px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  color: #000;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-meta i {
  display: inline-grid;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  place-items: center;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-actions .button {
  min-height: 55px;
  padding-inline: 21px;
}

.countdown-panel {
  position: absolute;
  top: 285px;
  right: -5px;
  width: 527px;
  min-height: 290px;
  padding: 25px 26px 22px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 8px;
  background: rgba(31, 31, 31, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.countdown-label {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 11px;
}

.countdown > div {
  height: 80px;
  display: grid;
  place-content: center;
  border-radius: 8px;
  background: var(--orange);
  text-align: center;
}

.countdown strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 28px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid rgba(255, 255, 255, .32);
}

.hero-stat strong {
  display: block;
  font-size: 30px;
  line-height: .9;
}

.hero-stat span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.1;
}

.logo-proof {
  position: absolute;
  right: 0;
  bottom: 62px;
  left: 0;
  text-align: center;
}

.logo-proof > p {
  margin-bottom: 16px;
  color: #a6a7ab;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-viewport {
  width: 100%;
  overflow: hidden;
  padding-left: 0;
}

.logo-track {
  --logo-duration: 64s;
  --logo-half-gap: 7.5px;
  display: flex;
  width: max-content;
  gap: 15px;
}

.logo-track.is-marquee {
  animation: logo-marquee var(--logo-duration) linear infinite;
  will-change: transform;
}

.logo-viewport:is(:hover, :focus-within, :active) .logo-track {
  animation-play-state: paused;
}

.logo-viewport:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.logo-track img {
  width: 139px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes logo-marquee {
  to {
    transform: translateX(calc(-50% - var(--logo-half-gap)));
  }
}

/* Intro */
.intro {
  height: 859px;
  background:
    radial-gradient(ellipse 48% 48% at 83% 0%, rgba(244, 239, 255, .88), transparent 72%),
    var(--paper);
}

.intro-copy {
  width: min(calc(100% - 194px), 1246px);
  margin-inline: auto;
  padding-top: 120px;
}

.intro-copy > p {
  max-width: 720px;
  margin-top: 12px;
  white-space: pre-line;
}

.intro .section-title {
  font-size: 52px;
  transform: translateX(2px) scaleX(1.04);
  transform-origin: left center;
}

.gallery {
  position: absolute;
  top: 308px;
  right: 0;
  left: 0;
  width: min(calc(100% - 194px), 1246px);
  margin-inline: auto;
  display: grid;
  gap: 35px;
  overflow: hidden;
}

.gallery-row {
  --gallery-duration: 78s;
  --gallery-half-gap: 7.5px;
  display: flex;
  width: max-content;
  gap: 15px;
}

.gallery-row.is-marquee {
  animation: gallery-marquee var(--gallery-duration) linear infinite;
  will-change: transform;
}

#gallery-row-two {
  --gallery-duration: 88s;
  animation-direction: reverse;
}

.gallery:is(:hover, :focus-within, :active) .gallery-row {
  animation-play-state: paused;
}

.gallery:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

@keyframes gallery-marquee {
  to {
    transform: translateX(calc(-50% - var(--gallery-half-gap)));
  }
}

.gallery-card {
  width: 277px;
  height: 159px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #b7bbc3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Speakers */
.speakers {
  min-height: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

.speakers-directory {
  width: 100%;
  min-height: 720px;
  background: #07070b;
}

.speakers-directory.is-ready {
  min-height: 0;
}

.speakers-directory .spk-section--embedded {
  width: 100%;
}

.speakers-directory__fallback {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.speakers-archive-link {
  position: relative;
  display: grid;
  width: min(397px, calc(100% - 48px));
  min-height: 56px;
  place-items: center;
  margin: 0 auto 96px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8618d 0%, #bc71b0 48%, #76a5f7 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.speakers-archive-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.speakers-archive-link:active {
  transform: none;
}

@media (max-width: 600px) {
  .speakers-archive-link {
    min-height: 44px;
    margin-bottom: 52px;
    padding: 9px 18px;
    font-size: 15px;
  }
}

/* Agenda */
.agenda {
  height: 820px;
}

.agenda-container {
  padding-top: 60px;
}

.agenda .section-header > p {
  max-width: none;
  white-space: nowrap;
}

.agenda-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 42px;
  margin-top: 44px;
}

.agenda-item {
  min-height: 85px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(25, 25, 25, .44);
}

.agenda-number {
  font-size: 24px;
  font-weight: 700;
}

.agenda-item h3 {
  font-size: 16px;
  line-height: 1.2;
}

.agenda-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.agenda-note {
  margin-top: 36px;
  font-size: 15px;
}

/* Audience */
.audience {
  min-height: 700px;
}

.audience .content-container {
  padding-top: 34px;
  padding-bottom: 16px;
}

.audience-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 0;
}

.bar-chart h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(25, 25, 25, .42);
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.chart-title-sub,
.chart-title-separator {
  color: #77797e;
  font-weight: 400;
}

.chart-order {
  margin-top: 8px;
  color: #989ba3;
  font-size: 16px;
  line-height: 1.2;
}

.bar-row {
  display: grid;
  grid-template-columns: 335px 1fr 72px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-size: 18px;
  font-weight: 700;
}

.bar-track {
  height: 26px;
}

.bar-fill {
  display: block;
  height: 100%;
  background: var(--orange);
}

.bar-value {
  text-align: right;
}

.audience-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-top: 10px;
}

.highlight-card {
  min-height: 137px;
  padding: 20px 18px;
  border-radius: 8px;
  background: var(--card);
}

.highlight-card strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.highlight-card p {
  margin-top: 17px;
  font-size: 16px;
  line-height: 1.35;
}

.audience-takeaway {
  max-width: 1180px;
  margin-top: 80px;
}

.audience-takeaway h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.audience-takeaway em {
  color: var(--orange);
  font-style: normal;
}

.audience-takeaway p {
  margin-top: 26px;
  color: #77797e;
  font-size: 20px;
  line-height: 1.3;
}

/* Tickets */
.tickets {
  height: 860px;
}

.tickets-container {
  padding-top: 67px;
}

.ticket-viewport {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  padding: 16px 0;
}

.ticket-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.ticket-card {
  position: relative;
  min-width: 0;
  min-height: 356px;
  display: flex;
  flex-direction: column;
  padding: 18px 15px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--card);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ticket-card.is-selected {
  border-color: var(--orange);
  box-shadow: 0 12px 18px rgba(255, 89, 3, .24);
}

.ticket-select-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.ticket-select-control {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  cursor: pointer;
}

.ticket-card > :not(.ticket-select-input):not(.ticket-select-control):not(.ticket-badge) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.ticket-badge {
  position: absolute;
  z-index: 3;
  top: -17px;
  right: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 7px 12px rgba(255, 89, 3, .24);
}

.ticket-card h3 {
  font-size: 16px;
  line-height: 1.2;
}

.ticket-availability {
  min-height: 32px;
  margin-top: 3px;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.35;
}

.ticket-price {
  margin-top: 14px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.ticket-price-note {
  min-height: 32px;
  margin-top: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.ticket-perks {
  margin: 2px 0 12px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}

.ticket-perks li {
  position: relative;
  margin-top: 7px;
  padding-left: 20px;
}

.ticket-perks li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.ticket-card .button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  border-color: #d4d7dd;
  background: transparent;
  color: var(--ink);
  pointer-events: auto;
}

.ticket-card.is-selected .button {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.sponsor-banner {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 48px 27px 24px;
  margin-top: 23px;
  background: #000;
  color: #fff;
}

.sponsor-banner h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

.sponsor-banner p {
  max-width: 570px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.sponsor-stats {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.sponsor-stats span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 23px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* About */
.about {
  height: 910px;
}

.about .content-container {
  padding-top: 48px;
}

.about-header > p {
  max-width: 860px;
}

.about-stats {
  height: 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-top: 48px;
  padding: 0 24px;
  background: linear-gradient(90deg, #f16f48, #d45d91 38%, #8b68bb 72%, #77a7ff);
  color: #fff;
}

.about-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.15;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin-top: 24px;
}

.channel-card {
  height: 472px;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 25px;
  border-radius: 8px;
  background: var(--card);
}

.channel-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.channel-card h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.2;
}

.channel-description {
  margin-top: 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.channel-metric {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #d2d5da;
  color: var(--muted-light);
  font-size: 16px;
}

.channel-card .button {
  width: 100%;
  min-height: 56px;
  margin-top: 25px;
  border-color: #d2d5da;
  color: var(--ink);
}

/* FAQ */
.faq-section {
  min-height: 680px;
}

.faq-section .content-container {
  padding-top: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 32px;
  margin-top: 62px;
}

.faq-column {
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(25, 25, 25, .32);
}

.faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  max-width: 560px;
  padding: 7px 8px 20px;
  font-size: 16px;
  line-height: 1.5;
}

.section-dots {
  position: absolute;
  top: 192px;
  right: 36px;
  display: grid;
  gap: 24px;
}

.section-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8e8e93;
}

.section-dots i.active {
  background: #111;
}

.section-count {
  position: absolute;
  bottom: 31px;
  left: 32px;
  color: #8e8e93;
  font-size: 12px;
}

/* Closing */
.closing {
  height: 807px;
}

.closing-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 27% at 55% 0%, rgba(187, 87, 162, .72), transparent 72%),
    radial-gradient(ellipse 48% 31% at 78% 2%, rgba(85, 125, 219, .72), transparent 70%),
    radial-gradient(ellipse 35% 28% at 19% 0%, rgba(239, 98, 47, .65), transparent 70%),
    radial-gradient(ellipse 40% 26% at 56% 98%, rgba(86, 131, 218, .5), transparent 72%),
    #0d0c0c;
}

.closing-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 68px;
  text-align: center;
}

.closing-inner > h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.closing-inner > p {
  margin-top: 30px;
  color: #e0e0e3;
  font-size: 16px;
}

.closing-inner > .button {
  margin-top: 47px;
}

.closing-sponsor {
  width: min(calc(100% - 48px), 850px);
  height: 330px;
  margin: 64px auto 0;
  padding: 28px 28px 24px;
  border: 1px solid #fff;
  border-radius: 28px;
  background: rgba(17, 17, 17, .78);
}

.closing-sponsor > span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.closing-sponsor h3 {
  margin-top: 7px;
  font-size: 36px;
  line-height: 1.2;
}

.closing-sponsor p {
  max-width: 790px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.4;
}

.closing-sponsor .button {
  min-height: 56px;
  margin-top: 37px;
  height: auto;
  padding-top: 0;
}

.site-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .52);
  color: #c8c9cc;
  font-size: 12px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.site-footer nav img {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  max-width: none;
}

/* Keep the desktop composition intact on wide screens, but stack the hero
   before the copy and countdown panel can run into each other. */
@media (min-width: 1100px) and (max-width: 1399px) {
  .hero {
    height: auto;
    min-height: 1100px;
  }

  .hero-inner {
    width: min(calc(100% - 80px), 1180px);
    height: auto;
    padding-top: 150px;
    padding-bottom: 160px;
  }

  .hero-copy,
  .countdown-panel,
  .logo-proof {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-copy {
    top: auto;
    max-width: 100%;
  }

  .hero-lockup {
    display: block;
    width: 100%;
  }

  .hero-title-image {
    width: 100%;
  }

  .countdown-panel {
    width: min(100%, 527px);
    margin-top: 68px;
  }

  .logo-proof {
    margin-top: 90px;
  }
}

@media (max-width: 1099px) {
  .content-container,
  .agenda-container,
  .intro-copy,
  .hero-inner {
    width: min(calc(100% - 40px), 760px);
  }

  .section-title {
    font-size: 38px;
  }

  .intro .section-title {
    font-size: 38px;
    transform: none;
  }

  .site-header {
    position: absolute;
    height: 64px;
  }

  .header-inner {
    width: calc(100% - 40px);
  }

  .brand-logo {
    width: 162px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 56px;
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: #171717;
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 11px 12px;
  }

  .header-cta {
    min-height: 38px;
    margin-left: 12px;
    padding-inline: 15px;
  }

  .hero,
  .intro,
    .agenda,
  .audience,
  .tickets,
  .about,
  .faq-section,
  .closing {
    height: auto;
  }

  .hero {
    min-height: 1180px;
  }

  .hero-inner {
    padding-top: 135px;
    padding-bottom: 170px;
  }

  .hero-copy,
  .countdown-panel,
  .logo-proof {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-copy {
    top: auto;
    max-width: 100%;
  }

  .hero-lockup {
    display: block;
    width: 100%;
  }

  .hero-title-image {
    width: 100%;
  }

  .hero-title {
    font-size: 76px;
    transform: none;
  }

  .hero-year {
    top: -31px;
    left: 330px;
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 38px;
  }

  .countdown-panel {
    margin-top: 68px;
  }

  .logo-proof {
    margin-top: 90px;
  }

  .logo-proof > p {
    padding-inline: 20px;
  }

  .logo-viewport {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .intro {
    min-height: 650px;
    padding: 75px 0 70px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-copy > p {
    white-space: normal;
  }

  .gallery {
    position: relative;
    inset: auto;
    width: min(calc(100% - 40px), 760px);
    margin: 44px auto 0;
    padding-left: 0;
    overflow: hidden;
  }

  .gallery-card {
    width: 235px;
    height: 135px;
  }

  .gallery-row {
    --gallery-duration: 67s;
  }

  #gallery-row-two {
    --gallery-duration: 76s;
  }

  .agenda,
  .audience {
    padding: 75px 0 19px;
  }

  .tickets,
  .about {
    padding: 38px 0;
  }

  .faq-section {
    padding: 15px 0 75px;
  }

  .agenda-container,
  .audience .content-container,
  .tickets-container,
  .about .content-container,
  .faq-section .content-container {
    padding-top: 0;
  }

  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 0;
    column-gap: 24px;
    row-gap: 48px;
  }

  .speaker-section-title {
    font-size: 40px;
  }

  .speaker-card {
    width: auto;
  }

  .speaker-card img {
    width: min(204px, 100%);
    height: auto;
    aspect-ratio: 204 / 240;
  }

  .speaker-grid--pending .speaker-card:nth-child(5),
  .speaker-grid--pending .speaker-card:nth-child(6) {
    grid-column: auto;
  }

  .agenda-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .agenda .section-header > p {
    white-space: normal;
  }

  .audience-charts,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .audience-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: max(20px, calc((100vw - 760px) / 2));
    overflow-x: auto;
  }

  .ticket-row {
    grid-template-columns: repeat(5, 226px);
    width: max-content;
  }

  .sponsor-banner {
    height: auto;
    min-height: 220px;
    gap: 30px;
    margin-top: 18px;
  }

  .about-stats {
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
    padding-block: 28px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    height: auto;
    min-height: 430px;
  }

  .section-dots,
  .section-count {
    display: none;
  }

  .closing {
    min-height: 850px;
    padding-bottom: 73px;
  }

  .closing-inner {
    height: auto;
    padding: 70px 20px 0;
  }

  .closing-inner > h2 {
    font-size: 58px;
  }

  .closing-sponsor {
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .content-container,
  .agenda-container,
  .intro-copy,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .section-title {
    font-size: 32px;
  }

  .gallery {
    width: calc(100% - 32px);
  }

  .intro .section-title {
    font-size: 32px;
  }

  #tickets-title {
    font-size: 26px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 1120px;
  }

  .closing {
    min-height: 910px;
  }

  .hero-inner {
    padding-top: 124px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-year {
    top: -24px;
    left: 235px;
    font-size: 30px;
  }

  .hero-tagline {
    margin-top: 22px;
    font-size: 31px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-meta,
  .hero-actions,
  .sponsor-stats {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .countdown-panel {
    padding: 22px 16px;
  }

  .countdown {
    gap: 7px;
  }

  .countdown > div {
    height: 70px;
  }

  .countdown strong {
    font-size: 25px;
  }

  .hero-stats {
    gap: 15px;
  }

  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .speaker-card img {
    width: min(170px, 100%);
    height: auto;
  }

  .speaker-card h3,
  .speaker-card p {
    font-size: 14px;
  }

  .speaker-section-title {
    font-size: 32px;
  }

  .bar-row {
    grid-template-columns: 140px 1fr 42px;
    min-height: 34px;
    gap: 8px;
    font-size: 13px;
  }

  .bar-chart h3 {
    font-size: 16px;
  }

  .chart-order {
    font-size: 14px;
  }

  .bar-track {
    height: 17px;
  }

  .audience-takeaway {
    margin-top: 48px;
  }

  .audience-takeaway h3 {
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.25;
  }

  .audience-takeaway p {
    margin-top: 18px;
    font-size: 15px;
  }

  .audience-highlights {
    grid-template-columns: 1fr;
  }

  .sponsor-banner {
    display: block;
    padding: 26px 20px;
  }

  .sponsor-banner h3 {
    font-size: 29px;
  }

  .sponsor-banner .button {
    width: 100%;
    margin-top: 28px;
  }

  .sponsor-stats span {
    padding-inline: 14px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat strong {
    font-size: 28px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .closing-inner > h2 {
    font-size: 44px;
  }

  .closing-sponsor {
    padding: 24px 18px;
  }

  .closing-sponsor h3 {
    font-size: 29px;
  }

  .closing-sponsor .button {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
    text-align: center;
  }

  .site-footer {
    height: auto;
    min-height: 73px;
    display: block;
    padding: 12px 16px;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Keep the countdown below the copy whenever the desktop columns are too
   narrow to sit side by side without covering the headline. */
@media (max-width: 1399px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-inner {
    height: auto;
    padding-top: 150px;
    padding-bottom: 160px;
  }

  .hero-copy,
  .countdown-panel,
  .logo-proof {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-copy {
    top: auto;
  }

  .countdown-panel {
    width: min(100%, 527px);
    margin-top: 68px;
  }

  .logo-proof {
    margin-top: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: .01ms !important;
  }

  .gallery {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .logo-viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .logo-track.is-marquee {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .logo-track img[aria-hidden="true"] {
    display: none;
  }

  .gallery-row.is-marquee {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .gallery-card[aria-hidden="true"] {
    display: none;
  }
}
