@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("./fonts/PPNeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial Old";
  src: url("./fonts/PPEditorialOld-Ultrabold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #070606;
  --ticket: #fde5df;
  --accent: #ff6973;
  --accent-deep: #dc3f49;
  --ink: #070606;
  --paper: #eae7dd;
  --muted: rgba(255, 105, 115, 0.68);
  --font-sans: "PP Neue Montreal", system-ui, sans-serif;
  --font-display: "PP Editorial Old", Georgia, serif;
  --guest-page-max-width: 1000px;
  --guest-table-width: 490px;
  --guest-card-column-width: 420px;
  --guest-card-column-min: 390px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

html.guest-list-first,
html.guest-list-first body {
  overflow-x: clip;
}

button,
a {
  font: inherit;
}

@keyframes guest-skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@keyframes guest-venue-rule-reveal {
  to {
    opacity: 0.38;
    transform: none;
  }
}

.ambient-light {
  --ambient-scale: 1.16;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.8;
  contain: layout paint style;
}

.ambient-light__wash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 162vw;
  height: 162vh;
  min-width: 162vw;
  min-height: 162vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: screen;
  will-change: transform;
}

.ambient-light__wash--left {
  background-image: url("./img/speak-light-left.webp");
  opacity: 0.34;
  transform-origin: 18% 84%;
  transform: translate3d(-62%, -52%, 0) scale(var(--ambient-scale)) rotate(-2deg);
}

.ambient-light__wash--right {
  background-image: url("./img/speak-light-right.webp");
  opacity: 0.5;
  transform-origin: 82% 84%;
  transform: translate3d(-27%, -62%, 0) scale(var(--ambient-scale)) rotate(4deg);
}

.guest-page {
  --guest-skeleton-fill: rgba(255, 255, 255, 0.05);
  --guest-skeleton-sheen: rgba(255, 255, 255, 0.14);
  --guest-skeleton-rule: rgba(255, 255, 255, 0.05);
  --guest-skeleton-bar: linear-gradient(
    90deg,
    var(--guest-skeleton-fill) 0%,
    var(--guest-skeleton-fill) 32%,
    var(--guest-skeleton-sheen) 50%,
    var(--guest-skeleton-fill) 68%,
    var(--guest-skeleton-fill) 100%
  );
  --guest-skeleton-radius: 3px;
  --guest-skeleton-copy-line: calc(clamp(20px, 1.5vw, 22px) * 1.36);
  --guest-skeleton-heading-line: calc(clamp(68px, 5.7vw, 80px) * 0.94);
  --guest-skeleton-heading-lines: 2;
  --guest-skeleton-heading-width: min(clamp(257px, 21.6vw, 311px), 100%);
  --guest-skeleton-heading-first-line: 93%;
  --guest-skeleton-heading-second-line: 100%;
  min-height: 100svh;
  width: min(calc(100% - 40px), var(--guest-page-max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(390px, var(--guest-table-width)) minmax(var(--guest-card-column-min), 1fr);
  gap: clamp(32px, 4vw, 50px);
  align-items: start;
  overflow: visible;
  padding: 26px 0 220px;
  position: relative;
}

.guest-page--first-screen {
  min-height: 100svh;
}

.guest-board,
.guest-cards {
  position: relative;
  z-index: 1;
}

.guest-board {
  width: min(100%, var(--guest-table-width));
}

.guest-board__head {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  width: min(100%, var(--guest-table-width));
  margin: 0 auto 45px;
  text-align: left;
  position: relative;
}

.guest-board__head-skeleton {
  display: none;
  opacity: 1;
  transition: opacity 200ms ease;
}

.guest-page[data-guest-load-state="loading"] .guest-board__head > :not(.guest-board__head-skeleton) {
  visibility: hidden;
}

.guest-page[data-guest-load-state="loading"] .guest-board__head-skeleton,
.guest-page[data-guest-load-state="revealing"] .guest-board__head-skeleton {
  display: grid;
  gap: 12px;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.guest-page[data-guest-load-state="revealing"] .guest-board__head-skeleton {
  opacity: 0;
}

.guest-skeleton-copy {
  height: calc(var(--guest-skeleton-copy-line) * 2);
  display: grid;
  gap: 7px;
  align-content: start;
}

.guest-skeleton-copy::before,
.guest-skeleton-copy::after {
  content: "";
  display: block;
  height: 22px;
  border-radius: var(--guest-skeleton-radius);
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
}

.guest-skeleton-copy--date::before {
  width: 112px;
}

.guest-skeleton-copy--date::after {
  width: min(252px, 72%);
}

.guest-skeleton-copy--stats::before {
  width: min(372px, 92%);
}

.guest-skeleton-copy--stats::after {
  width: min(338px, 84%);
}

.guest-skeleton-heading {
  width: var(--guest-skeleton-heading-width);
  height: calc(var(--guest-skeleton-heading-line) * var(--guest-skeleton-heading-lines));
  border-radius: 5px;
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  -webkit-mask:
    linear-gradient(#000, #000) 0 0 / var(--guest-skeleton-heading-first-line) var(--guest-skeleton-heading-line) no-repeat,
    linear-gradient(#000, #000) 0 var(--guest-skeleton-heading-line) / var(--guest-skeleton-heading-second-line) var(--guest-skeleton-heading-line) no-repeat;
  mask:
    linear-gradient(#000, #000) 0 0 / var(--guest-skeleton-heading-first-line) var(--guest-skeleton-heading-line) no-repeat,
    linear-gradient(#000, #000) 0 var(--guest-skeleton-heading-line) / var(--guest-skeleton-heading-second-line) var(--guest-skeleton-heading-line) no-repeat;
}

.guest-board__date,
.guest-board__stats {
  margin: 0;
  font-size: clamp(20px, 1.5vw, 22px);
  line-height: 1.36;
}

.guest-board__date strong,
.guest-board__stats strong {
  font-weight: 700;
}

.guest-board__date > span {
  display: block;
  color: var(--accent);
}

.guest-board__venue-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  color: inherit;
  text-decoration: none;
}

.guest-board__venue-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%202C8.13%202%205%205.13%205%209c0%205.25%207%2013%207%2013s7-7.75%207-13c0-3.87-3.13-7-7-7Zm0%209.5A2.5%202.5%200%201%201%2012%206a2.5%202.5%200%200%201%200%205.5Z%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M12%202C8.13%202%205%205.13%205%209c0%205.25%207%2013%207%2013s7-7.75%207-13c0-3.87-3.13-7-7-7Zm0%209.5A2.5%202.5%200%201%201%2012%206a2.5%202.5%200%200%201%200%205.5Z%27/%3E%3C/svg%3E") center / contain no-repeat;
}

.guest-board__venue-text {
  display: inline-block;
  position: relative;
}

.guest-board__venue-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.03em;
  height: 1px;
  background: var(--muted);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.guest-page[data-guest-load-state="revealing"] .guest-board__venue-rule {
  animation: guest-venue-rule-reveal 170ms ease forwards;
}

.guest-page[data-guest-load-state="ready"] .guest-board__venue-rule {
  animation: none;
  opacity: 0.38;
  transform: none;
}

.guest-board__venue-link:hover,
.guest-board__venue-link:focus-visible {
  opacity: 0.72;
  outline: none;
}

.guest-reveal-word {
  display: inline-block;
}

.guest-board__context {
  width: min(100%, var(--guest-table-width));
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.guest-board__context[hidden] {
  display: none !important;
}

.guest-board__context p {
  margin: 0;
}

.guest-board__context-block {
  display: grid;
  gap: 4px;
  color: var(--accent);
}

.guest-board__context-block[hidden] {
  display: none !important;
}

.guest-board__context-copy {
  max-width: none;
  color: var(--accent);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.74;
}

.guest-board__context-copy--hidden {
  padding: 10px 0 4px;
  opacity: 1;
}

.guest-board__context-copy--featured {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  opacity: 1;
}

.guest-board__context-copy--hidden [data-guest-context-hidden-count],
.guest-board__context-copy--hidden [data-guest-context-private-count],
.guest-board__context-copy--featured [data-guest-context-full-count] {
  font-weight: 700;
}

.guest-board__context-copy-muted {
  opacity: 0.74;
}

[data-guest-context-private-note] {
  margin-left: 0.22em;
}

.guest-board h1 {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(68px, 5.7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
  white-space: nowrap;
}

.guest-list-block {
  display: grid;
  gap: 18px;
  align-content: start;
  width: min(100%, var(--guest-table-width));
  margin-inline: auto;
}

.guest-list-block + .guest-list-block {
  margin-top: 30px;
}

.guest-list-block__title {
  margin: 0;
  color: var(--accent);
  font-size: clamp(20px, 1.5vw, 22px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 700;
}

.guest-page[data-guest-load-state="loading"] .guest-list-block__title {
  color: transparent;
  position: relative;
}

.guest-page[data-guest-load-state="loading"] .guest-list-block__title::before,
.guest-page[data-guest-load-state="revealing"] .guest-list-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(180px, 52%);
  height: 21px;
  border-radius: var(--guest-skeleton-radius);
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  opacity: 1;
  transition: opacity 200ms ease;
}

.guest-page[data-guest-load-state="revealing"] .guest-list-block__title::before {
  opacity: 0;
}

.guest-board__extra-lists {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.guest-board__extra-lists[hidden] {
  display: none !important;
}

.guest-board__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: min(100%, var(--guest-table-width));
  margin-inline: auto;
  position: relative;
}

.guest-skeleton-table {
  display: grid;
  gap: 28px;
  width: 100%;
  opacity: 1;
  transition: opacity 200ms ease;
}

.guest-skeleton-table--overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.guest-page[data-guest-load-state="revealing"] .guest-skeleton-table {
  opacity: 0;
}

.guest-page[data-guest-load-state="ready"] .guest-skeleton-table {
  display: none;
}

.guest-cards__skeleton {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: min(70vw, 620px);
  min-height: 540px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  filter: blur(26px);
  transform-origin: 50% 50%;
  transition: opacity 200ms ease;
}

.guest-page[data-guest-load-state="loading"] .guest-cards__skeleton,
.guest-page[data-guest-load-state="revealing"] .guest-cards__skeleton {
  display: block;
}

.guest-page[data-guest-load-state="revealing"] .guest-cards__skeleton {
  opacity: 0;
}

.guest-page[data-guest-load-state="ready"] .guest-cards__skeleton {
  display: none;
}

.guest-card-skeleton {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 544px;
  border-radius: 16px;
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  opacity: 0.72;
  overflow: hidden;
}

.guest-card-skeleton::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  -webkit-mask:
    linear-gradient(#000, #000) 0 0 / 112px 34px no-repeat,
    linear-gradient(#000, #000) 0 64px / 240px 96px no-repeat,
    linear-gradient(#000, #000) 0 178px / 168px 36px no-repeat,
    linear-gradient(#000, #000) 0 244px / 252px 42px no-repeat,
    linear-gradient(#000, #000) 0 318px / 100% 3px no-repeat,
    linear-gradient(#000, #000) 0 354px / 156px 38px no-repeat,
    linear-gradient(#000, #000) 172px 354px / 68px 30px no-repeat;
  mask:
    linear-gradient(#000, #000) 0 0 / 112px 34px no-repeat,
    linear-gradient(#000, #000) 0 64px / 240px 96px no-repeat,
    linear-gradient(#000, #000) 0 178px / 168px 36px no-repeat,
    linear-gradient(#000, #000) 0 244px / 252px 42px no-repeat,
    linear-gradient(#000, #000) 0 318px / 100% 3px no-repeat,
    linear-gradient(#000, #000) 0 354px / 156px 38px no-repeat,
    linear-gradient(#000, #000) 172px 354px / 68px 30px no-repeat;
  opacity: 0.62;
}

.guest-card-skeleton--front {
  transform: translate(-50%, -48%) rotate(0deg);
}

.guest-card-skeleton--back {
  transform: translate(-42.8%, -49.6%) rotate(2.5deg) scale(0.965);
  opacity: 0.5;
}

.guest-skeleton-industry {
  display: grid;
  gap: 20px;
}

.guest-skeleton-industry__heading {
  height: 26px;
  border-top: 1px solid var(--guest-skeleton-rule);
  padding-top: 10px;
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  -webkit-mask:
    linear-gradient(#000, #000) 0 10px / min(190px, 58%) 15px no-repeat,
    linear-gradient(#000, #000) 100% 10px / 16px 15px no-repeat;
  mask:
    linear-gradient(#000, #000) 0 10px / min(190px, 58%) 15px no-repeat,
    linear-gradient(#000, #000) 100% 10px / 16px 15px no-repeat;
}

.guest-skeleton-industry__rows {
  display: grid;
  gap: 20px;
}

.guest-skeleton-row {
  --guest-skeleton-name-width: 154px;
  --guest-skeleton-name-short-width: 116px;
  --guest-skeleton-title-x: calc(var(--guest-skeleton-name-width) + clamp(14px, 2vw, 22px));
  --guest-skeleton-title-width: min(288px, calc(100% - var(--guest-skeleton-title-x) - 36px));
  --guest-skeleton-title-short-width: min(230px, calc(100% - var(--guest-skeleton-title-x) - 36px));
  height: 45px;
  background: var(--guest-skeleton-bar);
  background-size: 220% 100%;
  animation: guest-skeleton-shimmer 1.55s linear infinite;
  -webkit-mask:
    linear-gradient(#000, #000) 0 1px / var(--guest-skeleton-name-width) 20px no-repeat,
    linear-gradient(#000, #000) 0 24px / var(--guest-skeleton-name-short-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 1px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 24px / var(--guest-skeleton-title-short-width) 20px no-repeat;
  mask:
    linear-gradient(#000, #000) 0 1px / var(--guest-skeleton-name-width) 20px no-repeat,
    linear-gradient(#000, #000) 0 24px / var(--guest-skeleton-name-short-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 1px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 24px / var(--guest-skeleton-title-short-width) 20px no-repeat;
}

.guest-skeleton-row--tall {
  height: 67px;
  -webkit-mask:
    linear-gradient(#000, #000) 0 1px / var(--guest-skeleton-name-width) 20px no-repeat,
    linear-gradient(#000, #000) 0 24px / var(--guest-skeleton-name-short-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 1px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 24px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 48px / var(--guest-skeleton-title-short-width) 20px no-repeat;
  mask:
    linear-gradient(#000, #000) 0 1px / var(--guest-skeleton-name-width) 20px no-repeat,
    linear-gradient(#000, #000) 0 24px / var(--guest-skeleton-name-short-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 1px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 24px / var(--guest-skeleton-title-width) 20px no-repeat,
    linear-gradient(#000, #000) var(--guest-skeleton-title-x) 48px / var(--guest-skeleton-title-short-width) 20px no-repeat;
}

.guest-board__columns--compact {
  gap: 24px;
}

.guest-industry-group {
  display: grid;
  gap: 20px;
}

.guest-industry-group.is-expanding {
  transition: height 420ms cubic-bezier(0.33, 1, 0.68, 1);
}

.guest-industry-group__list {
  display: grid;
  gap: 20px;
}

.guest-industry-group__heading {
  margin: 0;
  border-top: 1px solid rgba(255, 105, 115, 0.38);
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.guest-industry-group__count {
  font-weight: 400;
  opacity: 0.68;
}

.guest-industry-group__see-all {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32em;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 105, 115, 0.1);
  color: var(--accent);
  padding: 6px 10px 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .guest-industry-group__see-all:hover {
    background: rgba(255, 105, 115, 0.15);
    transform: translateY(-1px);
  }
}

.guest-industry-group__see-all:focus-visible {
  outline: 1px solid rgba(255, 105, 115, 0.72);
  outline-offset: 4px;
}

.guest-person {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(154px, 0.4fr) minmax(0, 1fr) 24px;
  column-gap: clamp(14px, 2vw, 22px);
  align-items: start;
  color: var(--accent);
  text-decoration: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

a.guest-person,
a.guest-person:visited {
  color: var(--accent);
}

.guest-person--entering {
  opacity: 0;
}

.guest-person--linked {
  cursor: pointer;
}

.guest-person--linked:focus-visible {
  outline: 1px solid rgba(255, 105, 115, 0.72);
  outline-offset: 4px;
}

.guest-person__name,
.guest-person__title,
.guest-board__loading {
  margin: 0;
}

.guest-person__name {
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
  transition: opacity 160ms ease;
}

.guest-person__title {
  margin-top: 0;
  color: var(--accent);
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 400;
  line-height: 1.18;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.guest-person__arrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 500;
  line-height: 0.9;
  text-align: right;
  opacity: 0;
  transform: translateX(-2px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.guest-person--linked .guest-person__arrow {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .guest-person--linked:hover .guest-person__title,
  .guest-person--linked:hover .guest-person__arrow {
    opacity: 1;
  }

  .guest-person--linked:hover .guest-person__arrow {
    transform: translateX(2px);
  }
}

.guest-board__loading {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 18px;
}

.guest-cards {
  width: min(100%, var(--guest-card-column-width));
  height: 100%;
  min-width: var(--guest-card-column-min);
  min-height: 100svh;
  justify-self: end;
  align-self: start;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  touch-action: pan-y;
}

.guest-cards__motion {
  position: sticky;
  top: 26px;
  width: 100%;
  height: min(70vw, 620px);
  min-height: 540px;
  opacity: 0;
  filter: blur(80px);
  transform: scale(1);
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  perspective: 1400px;
  will-change: opacity, transform, filter;
  transition:
    opacity 1.1s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.1s cubic-bezier(0.33, 1, 0.68, 1),
    filter 1.1s cubic-bezier(0.33, 1, 0.68, 1);
}

.guest-cards.is-revealed .guest-cards__motion {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.ticket-card {
  width: 300px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  justify-content: flex-start;
  padding: 12px 12px 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: none;
  will-change: transform;
}

.ticket-card--program {
  background: var(--ticket);
  color: var(--ink);
}

.ticket-card--invite {
  background: linear-gradient(195.82deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}

.guest-page[data-active-card="program"] .ticket-card--program {
  z-index: 2;
  transform: translate(-50%, -48%) rotate(0deg);
}

.guest-page[data-active-card="program"] .ticket-card--invite {
  z-index: 1;
  transform: translate(-42.8%, -49.6%) rotate(2.5deg) scale(0.965);
}

.guest-page[data-active-card="invite"] .ticket-card--invite {
  z-index: 2;
  transform: translate(-50%, -50%) rotate(0deg);
}

.guest-page[data-active-card="invite"] .ticket-card--program {
  z-index: 1;
  transform: translate(-42.8%, -49.6%) rotate(2.5deg) scale(0.965);
}

.ticket-card__svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.ticket-card__svg--logo {
  width: 100%;
}

.ticket-card__svg--body {
  width: 100%;
}

.ticket-card__body-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.ticket-card__body-copy--program {
  gap: 20px;
  padding-top: 12px;
}

.ticket-card__body-copy--invite {
  gap: 12px;
  padding: 12px 0 24px;
}

.ticket-card__headline,
.ticket-card__mini-columns p,
.ticket-card__note {
  margin: 0;
}

.ticket-card__headline {
  color: currentColor;
  font-size: 18.56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.ticket-card__mini-columns {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  padding-bottom: 12px;
}

.ticket-card__mini-columns p {
  color: currentColor;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.ticket-card__mini-columns p:first-child {
  width: 79.12px;
  flex: 0 0 79.12px;
}

.ticket-card__mini-columns p:not(:first-child) {
  flex: 1;
}

.ticket-card__mini-columns strong,
.ticket-card__mini-columns span {
  display: block;
}

.ticket-card__mini-columns strong {
  font-weight: 700;
}

.ticket-card__mini-columns span {
  font-weight: 400;
}

.ticket-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  padding-bottom: 16px;
}

.ticket-card__dots {
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background-image: radial-gradient(circle, #000 1.325px, transparent 1.4px);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 5.96px 3px;
}

.ticket-card__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.ticket-card__button {
  border: 0.66px solid rgba(0, 0, 0, 0.15);
  border-radius: 7.94px;
  background: #000;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6.4px 15.88px 7.68px;
  font-size: 18.56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease;
}

.ticket-card__button:hover,
.ticket-card__button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.ticket-card__note {
  display: grid;
  gap: 2.59px;
  font-size: 10.24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ticket-card__note strong {
  font-weight: 700;
}

.ticket-card__note span {
  font-weight: 400;
}

.ticket-card--program .ticket-card__note {
  color: var(--ink);
}

.ticket-card--invite .ticket-card__note,
.ticket-card--invite .ticket-card__headline {
  color: #fff;
}

.ticket-card.is-copied .ticket-card__button {
  transform: translateY(-1px);
}

.guest-break-logo {
  width: min(300px, 82vw);
  margin: clamp(24px, 5.6vw, 61px) auto clamp(56px, 9vw, 112px);
  position: relative;
  z-index: 1;
}

.guest-break-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 943px) {
  .guest-page {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
    padding: 24px 0 48px;
  }

  .guest-page--first-screen {
    height: auto;
  }

  .guest-board {
    width: 100%;
  }

  .guest-cards {
    width: min(100%, 680px);
    height: 560px;
    min-width: 0;
    min-height: 560px;
    justify-self: center;
    position: relative;
    top: auto;
    order: -1;
  }

  .guest-page > .guest-cards {
    margin: 0 auto 36px;
  }

  .guest-cards__motion {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .guest-cards__skeleton {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .guest-page[data-active-card="program"] .ticket-card--program {
    transform: translate(-50%, -48%) rotate(0deg);
  }

  .guest-page[data-active-card="program"] .ticket-card--invite {
    transform: translate(-42.8%, -50.8%) rotate(2.5deg) scale(0.965);
  }

  .guest-page[data-active-card="invite"] .ticket-card--invite {
    transform: translate(-50%, -52%) rotate(0deg);
  }

  .guest-page[data-active-card="invite"] .ticket-card--program {
    transform: translate(-42.8%, -50.8%) rotate(2.5deg) scale(0.965);
  }

  .guest-break-logo {
    width: min(210px, 57.4vw);
    margin-top: clamp(60px, 14vw, 152px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guest-skeleton-copy::before,
  .guest-skeleton-copy::after,
  .guest-skeleton-heading,
  .guest-page[data-guest-load-state="loading"] .guest-list-block__title::before,
  .guest-page[data-guest-load-state="revealing"] .guest-list-block__title::before,
  .guest-card-skeleton,
  .guest-card-skeleton::after,
  .guest-skeleton-industry__heading,
  .guest-skeleton-row {
    animation: none;
  }

  .guest-cards__motion {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .guest-industry-group.is-expanding,
  .guest-person {
    transition: none;
  }
}

@media (min-width: 944px) and (max-width: 1120px) {
  .guest-page {
    --guest-skeleton-heading-line: calc(clamp(62px, 6.9vw, 78px) * 0.94);
  }

  .guest-board h1 {
    font-size: clamp(62px, 6.9vw, 78px);
  }
}

@media (max-width: 720px) {
  .ambient-light__wash {
    width: 210vw;
    height: 190vh;
  }

  .guest-page {
    --guest-skeleton-heading-line: calc(clamp(68px, 21vw, 92px) * 0.94);
    --guest-skeleton-heading-width: 100%;
    --guest-skeleton-heading-first-line: 84%;
    --guest-skeleton-heading-second-line: 90%;
    width: 100%;
    padding: 18px;
  }

  .guest-board__head {
    margin-bottom: 30px;
  }

  .guest-board h1 {
    font-size: clamp(68px, 21vw, 92px);
    white-space: normal;
  }

  .guest-skeleton-heading {
    width: var(--guest-skeleton-heading-width);
  }

  .guest-skeleton-copy--stats {
    height: calc(var(--guest-skeleton-copy-line) * 4);
    background: var(--guest-skeleton-bar);
    background-size: 220% 100%;
    animation: guest-skeleton-shimmer 1.55s linear infinite;
    -webkit-mask:
      linear-gradient(#000, #000) 0 0 / 88% 22px no-repeat,
      linear-gradient(#000, #000) 0 var(--guest-skeleton-copy-line) / 72% 22px no-repeat,
      linear-gradient(#000, #000) 0 calc(var(--guest-skeleton-copy-line) * 2) / 82% 22px no-repeat,
      linear-gradient(#000, #000) 0 calc(var(--guest-skeleton-copy-line) * 3) / 91% 22px no-repeat;
    mask:
      linear-gradient(#000, #000) 0 0 / 88% 22px no-repeat,
      linear-gradient(#000, #000) 0 var(--guest-skeleton-copy-line) / 72% 22px no-repeat,
      linear-gradient(#000, #000) 0 calc(var(--guest-skeleton-copy-line) * 2) / 82% 22px no-repeat,
      linear-gradient(#000, #000) 0 calc(var(--guest-skeleton-copy-line) * 3) / 91% 22px no-repeat;
  }

  .guest-skeleton-copy--stats::before,
  .guest-skeleton-copy--stats::after {
    content: none;
  }

  .guest-skeleton-row {
    --guest-skeleton-name-width: 128px;
    --guest-skeleton-name-short-width: 102px;
    --guest-skeleton-title-x: calc(var(--guest-skeleton-name-width) + clamp(12px, 4.8vw, 20px));
    --guest-skeleton-title-width: min(195px, calc(100% - var(--guest-skeleton-title-x) - 36px));
    --guest-skeleton-title-short-width: min(155px, calc(100% - var(--guest-skeleton-title-x) - 36px));
  }

  .guest-board__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guest-person {
    grid-template-columns: minmax(128px, 0.34fr) minmax(0, 1fr) 24px;
    column-gap: clamp(12px, 4.8vw, 20px);
  }

  .guest-cards {
    width: 100%;
    height: 620px;
    min-height: 620px;
    margin: 0 auto 32px;
    overflow: visible;
  }

  .ticket-card {
    width: min(300px, 82vw);
    left: 50%;
    top: calc(55% - 20px);
  }

  .guest-card-skeleton {
    width: min(300px, 82vw);
    height: auto;
    aspect-ratio: 300 / 544;
    top: calc(55% - 20px);
  }

  .guest-list-block + .guest-list-block {
    margin-top: 26px;
  }

  .guest-page[data-active-card="program"] .ticket-card--program {
    transform: translate(-50%, -48%) rotate(0deg);
  }

  .guest-page[data-active-card="program"] .ticket-card--invite {
    transform: translate(-43.4%, -52.2%) rotate(2.4deg) scale(0.965);
  }

  .guest-page[data-active-card="invite"] .ticket-card--invite {
    transform: translate(-48%, -54%) rotate(2deg);
  }

  .guest-page[data-active-card="invite"] .ticket-card--program {
    transform: translate(-43.4%, -52.2%) rotate(2.4deg) scale(0.965);
  }
}
