:root {
  --color-white-100: #FFFDF9;
  --color-white-80: #F5F0E8;

  --color-black-100: #151618;
  --color-black-80: #313236;
  --color-black-60: #4D5053;
  --color-black-40: #94999D;
  --color-black-20: #99A3AC;

  --color-orange-100: #FA521A;
  --color-orange-80: #F76E41;
  --color-orange-60: #F28460;
  --color-orange-20: #FFDACE;

  --nav-glass-background: rgba(21, 22, 24, 0.72);
  --nav-glass-border: 1px solid rgba(255, 253, 249, 0.08);
  --nav-glass-shadow: 0 18px 46px rgba(21, 22, 24, 0.18);
  --nav-glass-blur: blur(18px) saturate(135%);
  --anchor-offset: 170px;

  --type-heading-1-font-family: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --type-heading-1-font-size: 88px;
  --type-heading-1-line-height: 1;
  --type-heading-1-letter-spacing: -0.02em;
  --type-heading-2-font-family: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --type-heading-2-letter-spacing: -0.015em;

  --type-subheading-1-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-subheading-1-font-size: 48px;
  --type-subheading-1-line-height: 0.88;
  --type-subheading-1-letter-spacing: -0.08em;
  --type-subheading-2-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-subheading-2-font-size: 32px;
  --type-subheading-2-line-height: 1.1;
  --type-subheading-2-letter-spacing: -0.08em;
  --type-subheading-3-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-subheading-3-font-size: 25px;
  --type-subheading-3-line-height: 1.1;
  --type-subheading-3-letter-spacing: -0.08em;
  --type-subheading-4-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-subheading-4-font-size: clamp(23px, 2vw, 30px);
  --type-subheading-4-line-height: 1;
  --type-subheading-4-letter-spacing: -0.08em;

  --type-body-1-font-family: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --type-body-1-font-size: 24px;
  --type-body-1-line-height: 1.1;
  --type-body-1-letter-spacing: -0.04em;
  --type-body-2-font-family: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --type-body-2-font-size: 20px;
  --type-body-2-line-height: 1.1;
  --type-body-2-letter-spacing: -0.04em;
  --type-body-3-font-family: "Funnel Sans", "Helvetica Neue", Arial, sans-serif;
  --type-body-3-font-size: 18px;
  --type-body-3-line-height: 1.1;
  --type-body-3-letter-spacing: -0.04em;

  --type-label-1-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-label-1-font-size: 20px;
  --type-label-1-line-height: 1.1;
  --type-label-1-letter-spacing: -0.08em;
  --type-label-2-font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Courier New", monospace;
  --type-label-2-font-size: 16px;
  --type-label-2-line-height: 1.1;
  --type-label-2-letter-spacing: -0.08em;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: var(--anchor-offset);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white-100);
  color: var(--color-black-60);
  font-family: var(--type-body-1-font-family);
  font-size: var(--type-body-1-font-size);
  font-weight: 300;
  line-height: var(--type-body-1-line-height);
  letter-spacing: var(--type-body-1-letter-spacing);
}

.heading,
.heading-1 {
  font-family: var(--type-heading-1-font-family);
  font-size: var(--type-heading-1-font-size);
  font-weight: 300;
  line-height: var(--type-heading-1-line-height);
  letter-spacing: var(--type-heading-1-letter-spacing);
}

.sub-heading,
.sub-heading-1 {
  font-family: var(--type-subheading-1-font-family);
  font-size: var(--type-subheading-1-font-size);
  font-weight: 300;
  line-height: var(--type-subheading-1-line-height);
  letter-spacing: var(--type-subheading-1-letter-spacing);
}

.label,
.label-1 {
  font-family: var(--type-label-1-font-family);
  font-size: var(--type-label-1-font-size);
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.label-2 {
  font-family: var(--type-label-2-font-family);
  font-size: var(--type-label-2-font-size);
  font-weight: 300;
  line-height: var(--type-label-2-line-height);
  letter-spacing: var(--type-label-2-letter-spacing);
}

.body-1 {
  font-family: var(--type-body-1-font-family);
  font-size: var(--type-body-1-font-size);
  font-weight: 300;
  line-height: var(--type-body-1-line-height);
  letter-spacing: var(--type-body-1-letter-spacing);
}

.body-2 {
  font-family: var(--type-body-2-font-family);
  font-size: var(--type-body-2-font-size);
  font-weight: 300;
  line-height: var(--type-body-2-line-height);
  letter-spacing: var(--type-body-2-letter-spacing);
}

.body,
.body-3 {
  font-family: var(--type-body-3-font-family);
  font-size: var(--type-body-3-font-size);
  font-weight: 300;
  line-height: var(--type-body-3-line-height);
  letter-spacing: var(--type-body-3-letter-spacing);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 98px;
  --topbar-padding-inline: 40px;
  padding: 0 var(--topbar-padding-inline);
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-weight: 300;
}

.nav-glass {
  background: var(--nav-glass-background);
  border-bottom: var(--nav-glass-border);
  box-shadow: var(--nav-glass-shadow);
  -webkit-backdrop-filter: var(--nav-glass-blur);
  backdrop-filter: var(--nav-glass-blur);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 3.5vw, 74px);
  font-size: var(--type-label-1-font-size);
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.main-nav a {
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms ease;
}

.main-nav a[aria-current="page"],
.main-nav a[aria-current="location"] {
  color: var(--color-white-100);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-white-100);
}

.event-date {
  justify-self: end;
  margin: 0 46px 0 0;
  color: var(--color-white-100);
  font-size: var(--type-label-1-font-size);
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
  white-space: nowrap;
}

.event-date span {
  display: block;
}

.event-date .event-date-separator {
  display: none;
}

.ticket-button,
.speaker-button {
  --cta-button-height: 48px;
  --cta-button-padding-inline: 18px;
  --cta-button-gap: 20px;
  --cta-arrow-size: 17px;
  display: inline-grid;
  grid-template-columns: max-content var(--cta-arrow-size);
  gap: var(--cta-button-gap);
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: var(--cta-button-height);
  min-height: var(--cta-button-height);
  padding: 0 var(--cta-button-padding-inline);
  background-color: var(--color-orange-100);
  color: var(--color-white-100);
  font-family: var(--type-label-1-font-family);
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.ticket-button,
.speaker-button {
  font-size: var(--type-label-1-font-size);
}

.ticket-button:hover,
.ticket-button:focus-visible,
.speaker-button:hover,
.speaker-button:focus-visible {
  background-color: var(--color-orange-80);
  box-shadow: 0 12px 34px rgba(250, 82, 26, 0.34);
  transform: translateY(-2px);
}

.ticket-button:active,
.speaker-button:active {
  transform: translateY(0);
}

.ticket-button span,
.speaker-button span {
  white-space: nowrap;
}

.cta-arrow {
  width: var(--cta-arrow-size);
  height: var(--cta-arrow-size);
  align-self: center;
  pointer-events: none;
}

.menu-button {
  display: none;
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  position: absolute;
  left: 3px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-black-20);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-button span:nth-child(2) {
  transform: translateY(-1px);
}

.menu-button span:nth-child(3) {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(-1px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  --hero-nav-offset: 98px;
  --hero-height: 760px;
  position: relative;
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
  isolation: isolate;
  background: var(--color-black-100);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  background: var(--color-black-100) url("../images/hero-bg.png") center / cover no-repeat;
  pointer-events: none;
}

.hero-mark-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(780px, 64vw, 920px);
  max-width: none;
  pointer-events: none;
  transform-origin: right center;
  transform: none;
}

.hero-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  opacity: 0.96;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(76px, 8vh, 96px);
  padding: var(--hero-nav-offset) 0 0 clamp(40px, 4.8vw, 96px);
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: clamp(670px, 48vw, 760px);
  height: auto;
  aspect-ratio: 1498 / 292;
  object-fit: contain;
}

.hero-hosts {
  width: 360px;
  max-width: calc(100vw - 80px);
  height: auto;
  aspect-ratio: 676 / 219;
  object-fit: contain;
}

.hero-logo-mobile,
.hero-hosts-mobile {
  display: none;
}

.section-light {
  background: var(--color-white-100);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1101px) and (max-width: 1439px) {
  .topbar {
    grid-template-rows: 92px auto;
    grid-template-columns: 40px 1fr auto;
    height: auto;
    min-height: 92px;
  }

  .menu-button {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 calc(var(--topbar-padding-inline) * -1);
    padding: 20px var(--topbar-padding-inline);
    font-weight: 300;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: var(--nav-glass-border);
    font-weight: 300;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .event-date {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0 0 0 38px;
    font-size: 16px;
  }

  .event-date span,
  .event-date .event-date-separator {
    display: inline;
  }

  .ticket-button,
  .speaker-button {
    --cta-button-height: 44px;
    --cta-button-padding-inline: 16px;
    --cta-button-gap: 16px;
    --cta-arrow-size: 16px;
    font-size: 16px;
  }

  .ticket-button {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    --hero-nav-offset: 92px;
  }
}

.page-wrap {
  width: calc(100% - 160px);
  max-width: 1280px;
  margin: 0 auto;
}

.about {
  padding: 0 0 142px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 135px;
  padding-top: 119px;
}

.section-heading {
  margin: 0;
  color: var(--color-orange-100);
  font-family: var(--type-subheading-1-font-family);
  font-size: var(--type-subheading-1-font-size);
  font-weight: 300;
  line-height: var(--type-subheading-1-line-height);
  letter-spacing: var(--type-subheading-1-letter-spacing);
}

#home,
#tickets,
#schedule,
#meet-speakers,
#where-to-stay,
#venue-info-title,
#kuala-lumpur-title {
  scroll-margin-top: var(--anchor-offset);
}

.intro-copy {
  max-width: 706px;
  margin: 8px 0 0;
  color: var(--color-black-60);
  font-size: var(--type-body-1-font-size);
  font-weight: 300;
  letter-spacing: var(--type-body-1-letter-spacing);
  line-height: var(--type-body-1-line-height);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  scroll-margin-top: 130px;
  margin-top: 196px;
}

.ticket-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.price-card {
  --ticket-card-padding-top: 36px;
  --ticket-card-padding-inline: 46px;
  --ticket-card-padding-bottom: 44px;
  --ticket-title-size: clamp(24px, 2.5vw, 30px);
  --ticket-subtitle-size: clamp(16px, 1.5vw, 18px);
  --ticket-price-size: clamp(44px, 4.7vw, 56px);
  --ticket-feature-size: clamp(18px, 1.4vw, 20px);
  --ticket-feature-gap: clamp(28px, 3vw, 42px);
  --ticket-feature-max: 240px;
  --ticket-logo-width: clamp(100px, 33%, 132px);
  --ticket-logo-right: -1px;
  --ticket-logo-bottom: -1px;
  position: relative;
  min-height: 572px;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--ticket-background-color);
  background-image: var(--ticket-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: var(--type-label-1-font-family);
  isolation: isolate;
  transform: translateY(0) scale(1);
  transition:
    box-shadow 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ticket-glow);
  pointer-events: none;
}

.price-card-orange {
  --ticket-background-color: #FA521A;
  --ticket-background-image: url("../images/ticket-early.png");
  --ticket-glow: none;
  --ticket-logo: url("../images/guxs-logo-vert-white.svg");
  --ticket-logo-opacity: 0.92;
  color: var(--color-white-100);
}

.price-card-orange::before {
  inset: 0;
  filter: none;
  opacity: 1;
  transform: none;
}

.price-card-orange::after {
  display: none;
}

.price-card-dark {
  --ticket-background-color: #151618;
  --ticket-background-image: url("../images/ticket-regular.png");
  --ticket-glow: none;
  --ticket-logo: url("../images/guxs-logo-vert-orange.svg");
  --ticket-logo-opacity: 1;
  color: var(--color-black-20);
}

.price-card-student {
  --ticket-background-color: #151618;
  --ticket-background-image: url("../images/ticket-student.png");
  --ticket-glow: none;
  --ticket-logo: url("../images/guxs-logo-vert-grey.svg");
  --ticket-logo-opacity: 0.78;
  color: var(--color-black-20);
}

.price-card-dark h2 {
  color: var(--color-orange-100);
}

.price-card-orange h2,
.price-card-orange .price {
  color: var(--color-white-100);
}

.price-card-orange .card-subtitle,
.price-card-orange li {
  color: var(--color-orange-20);
}

.price-content {
  position: relative;
  z-index: 2;
  padding:
    var(--ticket-card-padding-top)
    var(--ticket-card-padding-inline)
    var(--ticket-card-padding-bottom);
}

.price-card h2 {
  margin: 0 0 10px;
  font-family: var(--type-subheading-4-font-family);
  font-size: var(--ticket-title-size);
  font-weight: 300;
  line-height: var(--type-subheading-4-line-height);
  letter-spacing: var(--type-subheading-4-letter-spacing);
}

.card-subtitle {
  margin: 0;
  color: var(--color-orange-20);
  font-family: var(--type-label-2-font-family);
  font-size: var(--ticket-subtitle-size);
  font-weight: 300;
  line-height: var(--type-label-2-line-height);
  letter-spacing: var(--type-label-2-letter-spacing);
}

.price-card-dark .card-subtitle,
.price-card-student .card-subtitle {
  color: var(--color-black-40);
}

.subtitle-compact {
  display: none;
}

.price {
  margin: 45px 0 54px;
  color: var(--color-white-100);
  font-family: var(--type-subheading-1-font-family);
  font-size: var(--ticket-price-size);
  font-weight: 300;
  line-height: 1;
  letter-spacing: var(--type-subheading-1-letter-spacing);
}

.price-card ul {
  display: grid;
  gap: var(--ticket-feature-gap);
  max-width: var(--ticket-feature-max);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--type-label-1-font-family);
  font-size: var(--ticket-feature-size);
  font-weight: 300;
  letter-spacing: var(--type-label-1-letter-spacing);
  line-height: 1.1;
}

.price-card li {
  position: relative;
  padding-left: 34px;
}

@media (min-width: 1280px) {
  .price-card li:nth-child(n + 3) {
    white-space: nowrap;
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  .price-card {
    --ticket-title-size: 32px;
    --ticket-subtitle-size: 20px;
    --ticket-price-size: 58px;
    --ticket-feature-size: 20px;
    --ticket-feature-gap: 36px;
    --ticket-feature-max: 170px;
    --ticket-logo-width: clamp(92px, 29%, 112px);
  }
}

.price-card li::before,
.bullet-arrow {
  width: 16px;
  height: 16px;
  clip-path: polygon(0 0, 64% 0, 100% 50%, 64% 100%, 0 100%);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: currentColor;
}

.price-card-orange li::before {
  background: var(--color-white-100);
}

.price-card-dark li::before {
  background: var(--color-orange-100);
}

.price-card-student li::before {
  background: var(--color-black-20);
}

.mark-bg {
  position: absolute;
  right: var(--ticket-logo-right);
  bottom: var(--ticket-logo-bottom);
  z-index: 1;
  display: block;
  width: var(--ticket-logo-width);
  height: auto;
  aspect-ratio: 136 / 283;
  background-color: transparent;
  background-image: var(--ticket-logo);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: normal;
  opacity: var(--ticket-logo-opacity);
  pointer-events: none;
  transform-origin: right bottom;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.price-card-orange .mark-bg {
  opacity: var(--ticket-logo-opacity);
}

.price-card-dark .mark-bg {
  opacity: var(--ticket-logo-opacity);
}

.price-card-student .mark-bg {
  opacity: var(--ticket-logo-opacity);
}

.schedule {
  padding: 0 0 154px;
}

.schedule .section-heading {
  margin-bottom: 111px;
}

.schedule-list {
  width: calc(100% - 232px);
  margin-left: 116px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 135px;
  padding: 0 0 59px;
  border-bottom: 1px solid var(--color-white-80);
}

.schedule-item + .schedule-item {
  padding-top: 62px;
}

.schedule-item:last-child {
  border-bottom: 0;
}

.schedule-item-large {
  grid-template-columns: 20px 18px 262px 135px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 62px 0;
  min-height: auto;
}

.schedule-item-large .schedule-date,
.schedule-item-large .schedule-copy {
  display: contents;
}

.schedule-item-large .schedule-date .bullet-arrow {
  grid-column: 1;
  grid-row: 1;
}

.schedule-item-large .schedule-date > div {
  grid-column: 3;
  grid-row: 1;
}

.schedule-item-large .schedule-date .evening {
  grid-column: 3;
  grid-row: 2;
  margin-top: 0;
}

.schedule-item-large .schedule-copy > div:first-child {
  grid-column: 5;
  grid-row: 1;
}

.schedule-item-large .schedule-copy > div:last-child {
  grid-column: 5;
  grid-row: 2;
}

.schedule-date {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 18px;
  align-content: start;
}

.bullet-arrow {
  display: block;
  margin-top: 5px;
  background: var(--color-orange-100);
}

.schedule-date h3 {
  margin: 0 0 12px;
  color: var(--color-orange-100);
  font-family: var(--type-label-1-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.schedule-date p {
  margin: 0;
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-size: 20px;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.schedule-date .evening {
  grid-column: 2;
  font-size: 24px;
}

.schedule-copy {
  display: grid;
  align-content: start;
  gap: 60px;
}

.schedule-copy h4 {
  margin: 0 0 23px;
  color: var(--color-black-80);
  font-family: var(--type-subheading-3-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: var(--type-subheading-3-line-height);
  letter-spacing: var(--type-subheading-3-letter-spacing);
}

.schedule-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--color-black-20);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: var(--type-body-1-letter-spacing);
  line-height: var(--type-body-1-line-height);
}

.speakers-cta {
  padding: 0 0 154px;
}

.speakers-cta .section-heading {
  margin-bottom: 70px;
}

.speakers-callout {
  position: relative;
  display: grid;
  min-height: 248px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white-80);
  isolation: isolate;
}

.speakers-callout-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
}

.speakers-callout .speaker-button {
  position: relative;
  z-index: 1;
}

.organisers {
  padding: 0 0 188px;
}

.organisers .section-heading {
  margin-bottom: 104px;
}

.organiser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.organiser-card {
  color: var(--color-black-60);
}

.organiser-media {
  display: grid;
  width: 100%;
  aspect-ratio: 414 / 260;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white-80);
}

.organiser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organiser-media--logo img {
  width: var(--organiser-logo-width);
  max-width: var(--organiser-logo-max-width);
  height: auto;
  max-height: 58%;
  object-fit: contain;
}

.organiser-media--logo {
  background: #E3E3E3;
}

.organiser-media--ps-logo {
  --organiser-logo-width: 58%;
  --organiser-logo-max-width: 198px;
}

.organiser-media--levelup-logo {
  --organiser-logo-width: 28%;
  --organiser-logo-max-width: 118px;
}

.organiser-card h3 {
  margin: 34px 0 4px;
  font-family: var(--type-subheading-2-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: var(--type-subheading-2-line-height);
  letter-spacing: var(--type-subheading-2-letter-spacing);
}

.organiser-card .role {
  margin: 0 0 14px;
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-size: 18px;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.organiser-card p:not(.role) {
  margin: 0 0 38px;
  font-family: var(--type-body-1-font-family);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: var(--type-body-1-letter-spacing);
  line-height: var(--type-body-1-line-height);
}

.organiser-card h3 + p:not(.role) {
  margin-top: 43px;
}

.organiser-card p:last-child {
  margin-bottom: 0;
}

.organiser-website {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.18em;
}

.details {
  min-height: 1024px;
  padding: 140px 0 48px;
  background: var(--color-black-100);
  color: var(--color-black-20);
}

.details .section-heading {
  margin-bottom: 111px;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 112px;
  width: 100%;
  margin-left: 0;
}

.details-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 135px;
  padding: 0;
}

.details-row + .details-row {
  padding-top: 0;
}

.details-row-location {
  display: block;
}

.details-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 18px;
  align-content: start;
}

.details-label h3 {
  margin: 0;
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.details-row p {
  max-width: 600px;
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: var(--type-body-1-letter-spacing);
  line-height: var(--type-body-1-line-height);
}

.details-row a {
  color: var(--color-black-40);
  display: inline-flex;
  gap: 0.28em;
  align-items: baseline;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.24em;
  transition: color 140ms ease;
}

.details-row .conduct-link {
  color: var(--color-orange-100);
}

.details-row a[href^="mailto:"] {
  color: var(--color-black-20);
}

.venue-card {
  margin-top: 24px;
}

.venue-image {
  display: block;
  width: 100%;
  aspect-ratio: 2038 / 430;
  object-fit: cover;
}

.venue-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
}

.details-row .venue-name {
  max-width: none;
  margin: 0;
  color: var(--color-white-100);
  font-family: var(--type-label-2-font-family);
  font-size: 20px;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: var(--type-label-2-letter-spacing);
}

.details-row .venue-more {
  margin-top: 16px;
  color: var(--color-black-40);
  font-family: var(--type-label-2-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: var(--type-label-2-letter-spacing);
}

@media (min-width: 1101px) and (hover: hover) {
  .details-row .venue-more:hover,
  .details-row a[href^="mailto:"]:hover {
    color: var(--color-white-100);
  }
}

.details-row .venue-directions {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-width: 164px;
  min-height: 48px;
  gap: 16px;
  padding: 7px 10px;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  font-family: var(--type-label-2-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: var(--type-label-2-letter-spacing);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.details-row .venue-directions-link {
  display: none;
}

.details-row .venue-directions-link:hover,
.details-row .venue-directions-link:focus-visible {
  background: var(--color-orange-80);
  box-shadow: 0 12px 34px rgba(250, 82, 26, 0.34);
  color: var(--color-white-100);
  transform: translateY(-2px);
}

.venue-directions img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.details-row-hotels {
  display: block;
  overflow: visible;
  scroll-margin-top: 130px;
}

.details-row-hotels .details-label {
  margin-bottom: 24px;
}

.hotel-carousel {
  --hotel-inline-start: max(80px, calc((100vw - 1280px) / 2));
  --hotel-gap: 16px;
  --hotel-card-width: 305px;
  --hotel-peek: 0px;
  --hotel-slide-distance: calc(var(--hotel-card-width) + var(--hotel-gap) + var(--hotel-card-width) + var(--hotel-gap));
  position: relative;
  left: 50%;
  width: 100vw;
  box-sizing: border-box;
  margin-left: -50vw;
  padding-left: var(--hotel-inline-start);
  overflow: hidden;
}

.hotel-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hotel-carousel[data-hotel-page="1"] .hotel-track {
  transform: translate3d(calc(0px - var(--hotel-slide-distance)), 0, 0);
}

.hotel-card-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--hotel-gap);
  padding-right: 0;
}

.hotel-card-set--clone {
  display: none;
}

.hotel-card {
  display: flex;
  flex: 0 0 var(--hotel-card-width);
  min-width: 0;
  flex-direction: column;
  color: var(--color-black-40);
  font-family: var(--type-label-2-font-family);
  font-weight: 300;
}

.hotel-card picture {
  display: block;
  width: 100%;
}

.hotel-image {
  width: 100%;
  aspect-ratio: 305 / 214;
  border-radius: 6px;
  object-fit: cover;
}

.hotel-card h4 {
  margin: 20px 0 9px;
  color: var(--color-white-100);
  font-family: var(--type-label-2-font-family);
  font-size: 20px;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
}

.mobile-title-break {
  display: none;
}

.details-row .hotel-card p {
  max-width: none;
  padding-left: 0;
  font-family: var(--type-label-2-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.details-row .hotel-distance {
  margin: 0;
  color: var(--color-black-20);
}

.details-row .hotel-price {
  margin: 7px 0 0;
  color: var(--color-black-60);
}

.details-row .hotel-description {
  margin: 22px 0 0;
  color: var(--color-black-20);
}

.details-row .hotel-more {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-black-20);
  font-family: var(--type-label-2-font-family);
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.details-row .hotel-more:hover,
.details-row .hotel-more:focus-visible {
  color: var(--color-white-100);
}

.hotel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.hotel-dot {
  display: block;
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-black-60);
  cursor: pointer;
  transition:
    background-color 320ms ease,
    opacity 320ms ease;
}

.hotel-dot.is-active,
.hotel-dot[aria-current="true"] {
  background: var(--color-white-100);
}

.hotel-dot:focus-visible {
  outline: 2px solid var(--color-orange-100);
  outline-offset: 4px;
}

.kuala-lumpur {
  margin-top: 178px;
}

.kuala-lumpur-media {
  position: relative;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  transform: translateX(-50%);
}

.kuala-lumpur-media img {
  width: 100%;
  height: auto;
  display: block;
}

.kuala-lumpur-copy {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 135px;
  padding-top: 76px;
}

.kuala-lumpur-copy p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--color-black-20);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: var(--type-body-1-letter-spacing);
  line-height: var(--type-body-1-line-height);
}

@media (min-width: 1101px) {
  .section-heading,
  .schedule .section-heading,
  .speakers-cta .section-heading,
  .organisers .section-heading,
  .details .section-heading,
  .kuala-lumpur-copy .section-heading {
    font-size: 48px;
    margin-bottom: 56px;
  }

  .details-row .hotel-card .hotel-distance,
  .details-row .hotel-card .hotel-description {
    font-size: 18px;
  }

  .details-row .hotel-more {
    font-size: 16px;
  }
}

.site-footer {
  --footer-divider-offset: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 25px;
  align-items: center;
  margin-top: 178px;
  padding-top: 32px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: var(--footer-divider-offset);
  left: 50%;
  width: 100vw;
  border-top: var(--nav-glass-border);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-logo {
  width: 80px;
}

.site-footer p {
  margin: 0;
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-size: var(--type-label-1-font-size);
  line-height: var(--type-label-1-line-height);
  letter-spacing: var(--type-label-1-letter-spacing);
}

.social-links {
  display: flex;
  gap: 28px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--color-black-20);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.social-links a[aria-label="Instagram"] {
  display: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-orange-100);
  transform: translateY(-2px);
}

.social-links svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .ticket-button,
  .speaker-button,
  .price-card,
  .mark-bg,
  .hotel-track,
  .social-links a {
    transition: none;
  }

  .hotel-track {
    transition: none;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

}

@media (max-width: 1100px) {
  :root {
    --anchor-offset: 136px;
  }

  .topbar {
    grid-template-rows: 92px auto;
    grid-template-columns: 40px 1fr auto;
    height: auto;
    min-height: 92px;
  }

  .menu-button {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 calc(var(--topbar-padding-inline) * -1);
    padding: 20px var(--topbar-padding-inline);
    font-weight: 300;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: var(--nav-glass-border);
    font-weight: 300;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .event-date {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0 0 0 38px;
    font-size: 16px;
  }

  .event-date span,
  .event-date .event-date-separator {
    display: inline;
  }

  .ticket-button,
  .speaker-button {
    --cta-button-height: 44px;
    --cta-button-padding-inline: 16px;
    --cta-button-gap: 16px;
    --cta-arrow-size: 16px;
    font-size: 16px;
  }

  .ticket-button {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    --hero-nav-offset: 92px;
    --hero-height: 760px;
  }

  .hero-inner {
    gap: 64px;
    padding: var(--hero-nav-offset) 0 0 clamp(40px, 4.8vw, 60px);
  }

  .hero-mark-wrap {
    z-index: 1;
    right: clamp(-130px, calc((100vw - 1100px) * 0.65), 0px);
    width: 780px;
  }

  .hero-mark {
    opacity: 0.82;
  }

  .hero-logo {
    width: min(670px, calc(100vw - 80px));
  }

  .hero-hosts {
    width: 360px;
  }

  .page-wrap {
    width: calc(100% - 80px);
  }

  .intro-grid {
    grid-template-columns: 210px 1fr;
    gap: 60px;
    padding-top: 61px;
  }

  .section-heading {
    font-size: 30px;
  }

  .intro-copy {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.1;
  }

  .about {
    padding-bottom: 98px;
  }

  .ticket-grid {
    gap: 12px;
    scroll-margin-top: 120px;
    margin-top: 119px;
  }

  .ticket-cta {
    margin-top: 40px;
  }

  .price-card {
    --ticket-card-padding-top: 33px;
    --ticket-card-padding-inline: 28px;
    --ticket-card-padding-bottom: 33px;
    --ticket-title-size: 18px;
    --ticket-subtitle-size: 16px;
    --ticket-price-size: 31px;
    --ticket-feature-size: 16px;
    --ticket-feature-gap: 20px;
    --ticket-feature-max: 132px;
    --ticket-logo-width: clamp(72px, 30%, 96px);
    --ticket-logo-right: -1px;
    --ticket-logo-bottom: -1px;
    min-height: 321px;
    border-radius: 10px;
  }

  .subtitle-desktop {
    display: none;
  }

  .subtitle-compact {
    display: inline;
  }

  .price {
    margin: 34px 0 31px;
  }

  .price-card li {
    padding-left: 16px;
  }

  .price-card li::before {
    width: 9px;
    height: 9px;
  }

  .bullet-arrow {
    width: 14px;
    height: 14px;
  }

  .schedule {
    padding-bottom: 114px;
  }

  .schedule .section-heading {
    margin-bottom: 83px;
  }

  .schedule-list {
    width: calc(100% - 120px);
    margin-left: 60px;
  }

  .details-list {
    gap: 84px;
    width: 100%;
    margin-left: 0;
  }

  .schedule-item {
    grid-template-columns: 210px 1fr;
    gap: 60px;
    padding-bottom: 58px;
  }

  .schedule-item + .schedule-item {
    padding-top: 58px;
  }

  .schedule-item-large {
    grid-template-columns: 14px 20px 178px 60px minmax(0, 1fr);
    gap: 46px 0;
    min-height: auto;
  }

  .schedule-date {
    grid-template-columns: 14px 1fr;
    column-gap: 20px;
  }

  .schedule-date h3 {
    margin-bottom: 10px;
  }

  .schedule-date h3 {
    font-size: 16px;
  }

  .schedule-date p {
    font-size: 16px;
  }

  .schedule-date .evening {
    font-size: 16px;
  }

  .schedule-copy {
    gap: 46px;
  }

  .schedule-copy h4 {
    margin-bottom: 17px;
    font-size: 16px;
  }

  .schedule-copy p {
    font-size: 16px;
  }

  .speakers-cta {
    padding-bottom: 119px;
  }

  .speakers-cta .section-heading {
    margin-bottom: 52px;
  }

  .speakers-callout {
    min-height: 148px;
    border-radius: 5px;
  }

  .organisers {
    padding-bottom: 119px;
  }

  .organisers .section-heading {
    margin-bottom: 86px;
  }

  .organiser-grid {
    gap: 20px;
  }

  .organiser-media {
    aspect-ratio: 414 / 218;
    border-radius: 5px;
  }

  .organiser-card h3 {
    margin-top: 32px;
    font-size: 18px;
  }

  .organiser-card .role {
    margin-bottom: 13px;
    font-size: 16px;
  }

  .organiser-card p:not(.role) {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.1;
  }

  .organiser-card h3 + p:not(.role) {
    margin-top: 34px;
  }

  .details {
    min-height: 902px;
    padding: 105px 0 36px;
  }

  .details .section-heading {
    margin-bottom: 83px;
  }

  .details-list {
    gap: 84px;
    width: 100%;
    margin-left: 0;
  }

  .details-row {
    grid-template-columns: 210px 1fr;
    gap: 60px;
    padding-bottom: 0;
  }

  .hotel-carousel {
    --hotel-inline-start: 40px;
    --hotel-gap: 16px;
    --hotel-card-width: calc((100vw - (var(--hotel-inline-start) * 2) - (var(--hotel-gap) * 3)) / 4);
    --hotel-peek: 0px;
  }

  .hotel-card h4 {
    font-size: 16px;
    line-height: 1.08;
  }

  .details-row .hotel-card p,
  .details-row .hotel-more {
    font-size: 14px;
  }

  .details-row + .details-row {
    padding-top: 0;
  }

  .details-label {
    grid-template-columns: 14px 1fr;
    column-gap: 20px;
  }

  .details-label h3 {
    font-size: 18px;
  }

  .details-row p {
    font-size: 16px;
  }

  .venue-card {
    margin-top: 15px;
  }

  .details-row .venue-directions-static {
    display: none;
  }

  .details-row .venue-directions-link {
    display: inline-flex;
  }

  .venue-details {
    margin-top: 16px;
  }

  .details-row .venue-name {
    font-size: 16px;
  }

  .details-row .venue-more {
    margin-top: 10px;
    font-size: 14px;
  }

  .details-row .venue-directions {
    justify-content: space-between;
    min-width: 164px;
    min-height: 44px;
    padding: 7px 12px;
    font-size: 16px;
  }

  .venue-directions img {
    width: 16px;
    height: 16px;
  }

  .kuala-lumpur {
    margin-top: 137px;
  }

  .kuala-lumpur-copy {
    grid-template-columns: 210px 1fr;
    gap: 60px;
    padding-top: 50px;
  }

  .kuala-lumpur-copy p {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.1;
  }

  .site-footer {
    grid-template-columns: 74px 1fr auto;
    gap: 26px;
    margin-top: 137px;
  }

  .footer-logo {
    width: 74px;
  }

  .site-footer p {
    font-size: 16px;
  }

  .social-links {
    gap: 24px;
  }

  .section-heading,
  .schedule .section-heading,
  .speakers-cta .section-heading,
  .organisers .section-heading,
  .details .section-heading,
  .kuala-lumpur-copy .section-heading {
    margin-bottom: 36px;
  }

  body,
  .heading,
  .heading-1,
  .sub-heading,
  .sub-heading-1,
  .label,
  .label-1,
  .label-2,
  .body,
  .body-1,
  .body-2,
  .body-3,
  .main-nav,
  .main-nav a,
  .event-date,
  .ticket-button,
  .speaker-button,
  .section-heading,
  .intro-copy,
  .price-card h2,
  .card-subtitle,
  .price,
  .price-card ul,
  .schedule-date h3,
  .schedule-date p,
  .schedule-date .evening,
  .schedule-copy h4,
  .schedule-copy p,
  .organiser-card h3,
  .organiser-card .role,
  .organiser-card p:not(.role),
  .details-label h3,
  .details-row p,
  .kuala-lumpur-copy p,
  .site-footer p {
    font-weight: 350;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hotel-card h4 {
    white-space: nowrap;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .price-card {
    --ticket-feature-max: 146px;
    --ticket-logo-width: clamp(70px, 26%, 84px);
  }

  .price-card li:nth-child(n + 3) {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .ticket-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(20px, 3vw, 28px);
    margin-top: clamp(80px, 12vw, 112px);
  }

  .price-card {
    --ticket-card-padding-top: 44px;
    --ticket-card-padding-inline: 32px;
    --ticket-card-padding-bottom: 60px;
    --ticket-title-size: clamp(22px, 3vw, 24px);
    --ticket-subtitle-size: 16px;
    --ticket-price-size: clamp(40px, 5vw, 44px);
    --ticket-feature-size: clamp(16px, 2.4vw, 18px);
    --ticket-feature-gap: clamp(18px, 3vw, 24px);
    --ticket-feature-max: min(210px, 58%);
    --ticket-logo-width: clamp(108px, 30%, 126px);
    --ticket-logo-right: -1px;
    --ticket-logo-bottom: -1px;
    width: min(100%, 420px);
    min-height: auto;
    border-radius: 10px;
  }

  .price {
    margin: 35px 0 40px;
  }

  .price-card li {
    padding-left: 28px;
  }

  .price-card li::before {
    top: 4px;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-nav-offset: 124px;
    --hero-height: 760px;
  }

  .hero-inner {
    align-items: center;
    justify-content: center;
    gap: 48px;
    min-height: 100%;
    padding: var(--hero-nav-offset) 0 64px;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-mark-wrap {
    display: none;
  }

  .hero-logo {
    width: clamp(196px, 52vw, 212px);
    aspect-ratio: 203 / 375;
  }

  .hero-hosts {
    width: 202px;
    max-width: calc(100vw - 32px);
    aspect-ratio: 393 / 160;
  }

  .hero-logo-desktop,
  .hero-hosts-desktop {
    display: none;
  }

  .hero-logo-mobile,
  .hero-hosts-mobile {
    display: block;
  }

  .details-row-hotels {
    overflow: visible;
  }

  .hotel-carousel {
    --hotel-gap: 16px;
    left: auto;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    overflow: visible;
  }

  .hotel-carousel[data-hotel-page] .hotel-track {
    display: block;
    width: auto;
    transform: none;
  }

  .hotel-card-set {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 38px var(--hotel-gap);
    padding-right: 0;
  }

  .hotel-card {
    flex: none;
    height: 100%;
  }

  .hotel-pagination {
    display: none;
  }

  .hotel-image {
    aspect-ratio: 148 / 154;
  }

  .hotel-card h4 {
    margin: 16px 0 10px;
    font-size: 16px;
    line-height: 1.08;
  }

  .mobile-title-break {
    display: block;
  }

  .details-row .hotel-card p {
    font-size: 14px;
    line-height: 1.1;
  }

  .details-row .hotel-price {
    margin-top: 8px;
  }

  .details-row .hotel-description {
    margin-top: 16px;
  }

  .details-row .hotel-more {
    margin-top: 18px;
    padding-top: 0;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  :root {
    --anchor-offset: 124px;
  }

  .topbar {
    --topbar-padding-inline: 16px;
    grid-template-columns: 40px 1fr;
  }

  .menu-button {
    align-self: center;
  }

  .event-date {
    display: none;
  }

  .ticket-button {
    grid-column: 2;
    justify-self: end;
    font-size: 16px;
  }

  .main-nav {
    padding: 18px 16px;
  }

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

  .about {
    padding-bottom: 84px;
  }

  .intro-grid {
    display: block;
    padding-top: 39px;
  }

  .section-heading {
    font-size: 29px;
    line-height: 0.92;
  }

  .intro-copy {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.1;
  }

  .ticket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    scroll-margin-top: 112px;
    margin-top: 80px;
  }

  .ticket-cta {
    margin-top: 34px;
  }

  .price-card {
    min-height: 363px;
    border-radius: 10px;
  }

  .price-content {
    padding: 46px 30px;
  }

  .price-card h2 {
    font-size: 18px;
  }

  .card-subtitle {
    font-size: 16px;
  }

  .price {
    margin: 31px 0 37px;
    font-size: 36px;
  }

  .price-card ul {
    gap: 18px;
    max-width: 185px;
    font-size: 16px;
  }

  .price-card li {
    padding-left: 28px;
  }

  .price-card li::before {
    top: 2px;
    width: 15px;
    height: 15px;
  }

  .mark-bg {
    right: -18%;
    bottom: -1%;
    width: 50%;
    height: 74%;
  }

  .schedule {
    padding-bottom: 103px;
  }

  .schedule .section-heading {
    margin-bottom: 69px;
  }

  .schedule-list {
    width: calc(100% - 58px);
    margin-left: 29px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 46px;
  }

  .schedule-item + .schedule-item {
    padding-top: 47px;
  }

  .schedule-item-large {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .schedule-item-large .schedule-date,
  .schedule-item-large .schedule-copy {
    display: grid;
  }

  .schedule-item-large .schedule-date .bullet-arrow,
  .schedule-item-large .schedule-date > div,
  .schedule-item-large .schedule-date .evening,
  .schedule-item-large .schedule-copy > div,
  .schedule-item-large .schedule-copy > div:first-child,
  .schedule-item-large .schedule-copy > div:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .schedule-date {
    grid-template-columns: 14px 1fr;
    column-gap: 16px;
  }

  .bullet-arrow {
    width: 14px;
    height: 14px;
  }

  .schedule-date h3 {
    margin-bottom: 13px;
  }

  .schedule-date h3 {
    font-size: 18px;
  }

  .schedule-date p {
    font-size: 16px;
  }

  .schedule-date .evening {
    display: none;
  }

  .schedule-copy {
    gap: 39px;
    padding-left: 31px;
  }

  .schedule-copy h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .masterclass-ticket-note {
    display: block;
  }

  .schedule-copy p {
    font-size: 16px;
    line-height: 1.1;
  }

  .speakers-cta {
    padding-bottom: 89px;
  }

  .speakers-cta .section-heading {
    margin-bottom: 30px;
  }

  .speakers-callout {
    min-height: 138px;
    border-radius: 5px;
  }

  .ticket-button,
  .speaker-button {
    --cta-button-height: 42px;
    --cta-button-padding-inline: 14px;
    --cta-button-gap: 12px;
    --cta-arrow-size: 15px;
    font-size: 16px;
  }

  .organisers {
    padding-bottom: 89px;
  }

  .organisers .section-heading {
    margin-bottom: 50px;
  }

  .organiser-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .organiser-media {
    aspect-ratio: 343 / 176;
    border-radius: 6px;
  }

  .organiser-card h3 {
    margin: 33px 0 4px;
    font-size: 20px;
  }

  .organiser-card .role {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .organiser-card p:not(.role) {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.1;
  }

  .organiser-card h3 + p:not(.role) {
    margin-top: 34px;
  }

  .organiser-card .role + p:not(.role) {
    margin-top: 34px;
  }

  .details {
    min-height: 785px;
    padding: 69px 0 38px;
  }

  .details .section-heading {
    margin-bottom: 76px;
  }

  .details-list {
    gap: 84px;
    width: 100%;
    margin-left: 0;
  }

  .details-row {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-bottom: 0;
  }

  .details-row-hotels {
    overflow: visible;
  }

  .details-row-hotels .details-label {
    margin-bottom: 24px;
  }

  .hotel-carousel {
    --hotel-gap: 16px;
    width: 100%;
    margin-left: 0;
    overflow: visible;
  }

  .hotel-track {
    display: block;
    width: auto;
    animation: none;
    transform: none;
  }

  .hotel-card-set {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 38px var(--hotel-gap);
    padding-right: 0;
  }

  .hotel-card-set--clone {
    display: none;
  }

  .hotel-card {
    flex: none;
    height: 100%;
  }

  .hotel-image {
    aspect-ratio: 148 / 154;
  }

  .hotel-card h4 {
    margin: 16px 0 10px;
    font-size: 16px;
    line-height: 1.08;
  }

  .mobile-title-break {
    display: block;
  }

  .details-row .hotel-card p {
    font-size: 14px;
    line-height: 1.1;
  }

  .details-row .hotel-price {
    margin-top: 8px;
  }

  .details-row .hotel-description {
    margin-top: 16px;
  }

  .details-row .hotel-more {
    margin-top: 18px;
    padding-top: 0;
    font-size: 14px;
  }

  .details-row + .details-row {
    padding-top: 0;
  }

  .details-label {
    grid-template-columns: 14px 1fr;
    column-gap: 16px;
  }

  .details-label h3 {
    font-size: 18px;
  }

  .details-row p {
    padding-left: 0;
    font-size: 16px;
    line-height: 1.1;
  }

  .details-row-safety p {
    margin-left: 30px;
  }

  .venue-card {
    margin-top: 16px;
  }

  .venue-image {
    height: 145px;
    aspect-ratio: auto;
  }

  .venue-details {
    display: block;
    margin-top: 16px;
  }

  .details-row .venue-name {
    padding-left: 0;
    font-size: 16px;
    line-height: 0.96;
  }

  .details-row .venue-more {
    margin-top: 10px;
    font-size: 14px;
  }

  .details-row .venue-directions {
    display: flex;
    width: 196.45px;
    min-width: 0;
    min-height: 42px;
    margin: 31px auto 0;
    justify-content: space-between;
    padding: 7px 12px;
    font-size: 16px;
  }

  .details-row .venue-directions-static {
    display: none;
  }

  .details-row .venue-directions-link {
    display: flex;
  }

  .kuala-lumpur {
    margin-top: 72px;
  }

  .kuala-lumpur-media {
    height: clamp(210px, 62vw, 260px);
  }

  .kuala-lumpur-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .kuala-lumpur-copy {
    display: block;
    padding-top: 40px;
  }

  .kuala-lumpur-copy .section-heading {
    margin-bottom: 0;
  }

  .kuala-lumpur-copy p {
    max-width: none;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.1;
  }

  .site-footer {
    --footer-divider-offset: 128px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    margin-top: 31px;
    padding-top: 160px;
    text-align: center;
  }

  .footer-logo {
    width: 77px;
  }

  .site-footer p {
    max-width: 278px;
    font-size: 16px;
    line-height: 1.1;
  }

  .social-links {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .page-wrap.ticket-grid {
    width: calc(100% - 32px);
  }

  .ticket-grid {
    justify-items: stretch;
    gap: 20px;
    margin-top: 80px;
  }

  .price-card {
    --ticket-card-padding-top: 48px;
    --ticket-card-padding-inline: 36px;
    --ticket-card-padding-bottom: 38px;
    --ticket-title-size: 22px;
    --ticket-subtitle-size: 16px;
    --ticket-price-size: 40px;
    --ticket-feature-size: 16px;
    --ticket-feature-gap: 24px;
    --ticket-feature-max: min(300px, 100%);
    --ticket-logo-width: clamp(82px, 26%, 112px);
    --ticket-logo-right: -1px;
    --ticket-logo-bottom: -1px;
    width: 100%;
    min-height: 442px;
    border-radius: 10px;
  }

  .price-content {
    padding:
      var(--ticket-card-padding-top)
      var(--ticket-card-padding-inline)
      var(--ticket-card-padding-bottom);
  }

  .price-card h2 {
    font-size: var(--ticket-title-size);
  }

  .card-subtitle {
    font-size: var(--ticket-subtitle-size);
  }

  .price {
    margin: 31px 0 34px;
  }

  .price-card ul {
    gap: var(--ticket-feature-gap);
    max-width: var(--ticket-feature-max);
    font-size: var(--ticket-feature-size);
  }

  .mark-bg {
    right: var(--ticket-logo-right);
    bottom: var(--ticket-logo-bottom);
    width: var(--ticket-logo-width);
    height: auto;
    aspect-ratio: 136 / 283;
    background-size: contain;
  }

  .price-card li {
    padding-left: 26px;
  }

  .price-card li::before {
    top: 3px;
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 375px) and (max-width: 640px) {
  .price-card li {
    white-space: nowrap;
  }
}

.ve-title-break {
  display: none;
}

@media (max-width: 767px) {
  .ve-title-break {
    display: block;
  }
}

.venue-page {
  background: var(--color-black-100);
  color: var(--color-black-20);
}

.venue-page .scroll-reveal {
  opacity: 1;
  transform: none;
}

.venue-page .venue-hero {
  --hero-height: 683px;
  --venue-header-offset: 98px;
  height: var(--hero-height);
  min-height: var(--hero-height);
  background: var(--color-black-100);
}

.venue-hero picture,
.venue-hero img {
  display: block;
  width: 100%;
  height: 100%;
}

.venue-hero picture {
  height: 100%;
}

.venue-hero img {
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.venue-info {
  padding: 60px 0 48px;
  background: var(--color-black-100);
  color: var(--color-black-20);
}

.venue-info-wrap {
  --venue-label-column: 300px;
  --venue-column-gap: 135px;
}

.venue-title {
  margin-bottom: 60px;
}

.venue-info-row {
  display: grid;
  grid-template-columns: var(--venue-label-column) minmax(0, 1fr);
  gap: var(--venue-column-gap);
  align-items: start;
}

.venue-info-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 18px;
  align-content: start;
}

.venue-info-label h2 {
  margin: 0;
  color: var(--color-black-20);
  font-family: var(--type-label-1-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: var(--type-label-1-line-height);
  letter-spacing: 0;
}

.venue-info-copy {
  max-width: 610px;
}

.venue-info-copy p,
.grab-info p {
  margin: 0;
  color: var(--color-black-20);
  font-family: var(--type-body-1-font-family);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.venue-directions-block + .venue-directions-block {
  margin-top: 64px;
}

.venue-directions-block h3 {
  margin: 0 0 24px;
  color: var(--color-white-100);
  font-family: var(--type-label-1-font-family);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.venue-directions-block p + p {
  margin-top: 28px;
}

.venue-directions-block ul {
  margin: 28px 0 0;
  padding-left: 28px;
  color: var(--color-white-100);
}

.venue-directions-block li {
  padding-left: 4px;
  font-family: var(--type-body-1-font-family);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.venue-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--color-black-20);
  font-family: var(--type-label-2-font-family);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.24em;
  transition: color 140ms ease;
}

.venue-text-link:hover,
.venue-text-link:focus-visible {
  color: var(--color-white-100);
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 80px;
}

.venue-gallery picture {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}

.venue-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-getting-row {
  margin-top: 84px;
}

.venue-map {
  width: min(847px, calc(100% - var(--venue-label-column) - var(--venue-column-gap)));
  margin: 72px 0 0 calc(var(--venue-label-column) + var(--venue-column-gap));
}

.venue-map img {
  width: 100%;
  height: auto;
}

.grab-info {
  max-width: 610px;
  margin: 92px 0 0 calc(var(--venue-label-column) + var(--venue-column-gap));
}

.grab-logo {
  width: 112px;
  height: auto;
  margin-bottom: 28px;
}

.grab-info h2 {
  margin: 0 0 28px;
  color: var(--color-white-100);
  font-family: var(--type-body-1-font-family);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.grab-info p + p {
  margin-top: 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 54px;
}

.store-badges a {
  display: block;
  width: 189px;
}

.store-badges img {
  width: 100%;
  height: auto;
}

.venue-page .venue-footer {
  --footer-divider-offset: 0px;
  margin-top: 195px;
  padding-top: 32px;
}

@media (max-width: 1100px) {
  .venue-page .venue-hero {
    --hero-height: 684px;
    --venue-header-offset: 92px;
  }

  .venue-info {
    padding-top: 63px;
    padding-bottom: 36px;
  }

  .venue-info-wrap {
    --venue-label-column: 210px;
    --venue-column-gap: 60px;
  }

  .venue-title {
    margin-bottom: 68px;
  }

  .venue-info-label {
    grid-template-columns: 14px 1fr;
    column-gap: 20px;
  }

  .venue-info-copy p,
  .venue-directions-block li,
  .grab-info h2,
  .grab-info p {
    font-size: 16px;
    line-height: 1.1;
  }

  .venue-directions-block + .venue-directions-block {
    margin-top: 48px;
  }

  .venue-directions-block h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .venue-directions-block p + p,
  .venue-directions-block ul {
    margin-top: 12px;
  }

  .venue-info-label h2 {
    font-size: 18px;
  }

  .grab-info h2 {
    color: var(--color-white-100);
  }

  .venue-text-link {
    margin-top: 24px;
    font-size: 16px;
  }

  .venue-gallery {
    margin-top: 42px;
  }

  .venue-getting-row {
    margin-top: 84px;
  }

  .venue-map {
    width: min(847px, calc(100% - var(--venue-label-column) - var(--venue-column-gap)));
    margin-top: 70px;
  }

  .grab-info {
    margin-top: 76px;
  }

  .grab-logo {
    width: 102px;
    margin-bottom: 26px;
  }

  .store-badges {
    gap: 28px;
    margin-top: 50px;
  }

  .store-badges a {
    width: 140px;
  }

  .venue-page .venue-footer {
    margin-top: 165px;
  }
}

@media (max-width: 600px) {
  .venue-page .topbar {
    grid-template-rows: 80px auto;
    min-height: 80px;
  }

  .venue-page .venue-hero {
    --hero-height: 402px;
    --venue-header-offset: 80px;
  }

  .venue-info {
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .venue-info-wrap {
    --venue-label-column: 0px;
    --venue-column-gap: 0px;
  }

  .venue-title {
    margin-bottom: 32px;
  }

  .venue-info-row {
    display: block;
  }

  .venue-info-label {
    margin-bottom: 24px;
    grid-template-columns: 14px 1fr;
    column-gap: 16px;
  }

  .venue-info-label h2 {
    font-size: 18px;
  }

  .venue-info-label h2 br {
    display: block;
  }

  .venue-info-copy,
  .grab-info {
    max-width: none;
  }

  .venue-info-copy {
    margin-left: 30px;
  }

  .venue-info-copy p,
  .venue-directions-block li,
  .grab-info h2,
  .grab-info p {
    font-size: 16px;
    line-height: 1.1;
  }

  .venue-text-link {
    margin-top: 21px;
    font-size: 14px;
  }

  .venue-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 68px;
  }

  .venue-getting-row {
    margin-top: 68px;
  }

  .venue-directions-block + .venue-directions-block {
    margin-top: 48px;
  }

  .venue-map {
    width: 100%;
    margin: 72px 0 0;
  }

  .grab-info {
    margin: 92px 0 0;
  }

  .grab-logo {
    width: 91px;
    margin-bottom: 26px;
  }

  .grab-info h2 {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 24px;
    overflow: visible;
    clip: auto;
    color: var(--color-white-100);
    white-space: normal;
  }

  .grab-copy p + p {
    margin-top: 24px;
  }

  .store-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 50px;
  }

  .store-badges a {
    width: 100%;
  }

  .venue-page .venue-footer {
    margin-top: 102px;
  }
}
