@font-face {
  font-family: 'Possum Saltare NF';
  src: url('./assets/font/possum-saltare-nf/PossumSaltareNF.woff2') format('woff2'),
       url('./assets/font/possum-saltare-nf/PossumSaltareNF.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('./assets/font/lora/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('./assets/font/lora/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('./assets/font/lora/lora-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

:root {
  --background: #ad4925;
  --gold: #d19b2f;
  --icon-orange: #f28e38;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.4);
  --white-label: rgba(255, 255, 255, 0.9);
  --button-text: #30231c;
  --schedule-card-bg: #eac2b3;
  --schedule-card-text: #30231c;
  --schedule-card-border: rgba(48, 35, 28, 0.78);
  --sponsor-card-bg: #30231c;
  --sponsor-card-border: rgba(255, 255, 255, 0.2);
  --font-display: 'Possum Saltare NF', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --section-heading-size: clamp(4.25rem, 5vw, 4.5rem);
  --content-width: 74vw;

    --asset-background-left: url('./assets/img/bgleft.webp');
  --asset-background-right: url('./assets/img/bgright.webp');
  --asset-background-texture: url('./assets/img/texture.webp');
  /* The tile is 512 image px cut from a @2x source, so it is drawn at half size. */
  --texture-tile-size: 256px;

  font-family: var(--font-body);
  color: var(--white);
  background: var(--background);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  font-family: var(--font-body);
  font-size: 16px;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

main {
  position: relative;
  z-index: 1;
}

.page-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
}

.background-layers,
.background-decoration,
.background-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.background-layers {
  position: fixed;
  z-index: 0;
  overflow: hidden;
}

.background-decoration {
  z-index: 1;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.background-left {
  z-index: 2;
  background-image: var(--asset-background-left);
  background-position: left center;
}

.background-right {
  z-index: 1;
  background-image: var(--asset-background-right);
  background-position: right center;
}

.background-texture {
  z-index: 3;
  background-image: var(--asset-background-texture);
  background-position: center;
  background-size: var(--texture-tile-size) var(--texture-tile-size);
  background-repeat: repeat;
  /* No opacity here: the tile carries the source plate's alpha (~4.3%) itself. */
}

.section-content {
  position: relative;
  z-index: 3;
  min-height: inherit;
}

.site-header {
  position: fixed;
  top: 43px;
  left: 50%;
  z-index: 6;
  display: flex;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 54.6px;
  align-items: center;
  transform: translateX(-50%);
}

.site-header::before {
  position: absolute;
  z-index: -1;
  border-radius: 4px;
  background: var(--background);
  box-shadow: 0 10px 26px rgba(48, 35, 28, 0.32);
  content: '';
  inset: -13px -20px;
  opacity: 0;
  transition: opacity 160ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand-link {
  display: block;
  width: 54.6px;
  height: 54.6px;
  flex: 0 0 54.6px;
}

.mercury-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 35px;
  white-space: nowrap;
}

.primary-navigation a {
  position: relative;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 140ms ease, transform 140ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  opacity: 0.65;
  transform: scaleX(1);
}

.ticket-button {
  display: inline-flex;
  width: 99px;
  height: 31px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background: var(--gold);
  color: var(--button-text);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: filter 140ms ease;
}

.ticket-button:hover,
.ticket-button:focus-visible {
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg[hidden] {
  display: none;
}

.hero-main {
  position: relative;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
}

.hero-copy {
  position: absolute;
  top: 403px;
  left: 0;
  z-index: 5;
  width: 630px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(64px, 8.2vw, 118px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-copy h1 > .gold {
  color: var(--gold);
}

.hero-intro {
  margin: 40px 0 0 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.event-details {
  display: grid;
  gap: 10px;
  margin: 23px 0 0 10px;
  padding: 0;
  list-style: none;
}

.event-details li {
  display: grid;
  grid-template-columns: 15px 1fr;
  column-gap: 14px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  line-height: 1.15;
}

.event-details svg {
  width: 14px;
  height: 14px;
  color: var(--icon-orange);
}

.foreground-vase {
  position: absolute;
  right: -2.5vw;
  bottom: 0;
  z-index: 4;
  display: block;
  width: 354.96px;
  max-width: none;
  aspect-ratio: 37 / 54;
  object-fit: cover;
  object-position: center bottom;
  height: auto;
}

.about-vase {
  width: 390.456px;
}

.about-copy {
  position: absolute;
  top: 130px;
  left: 0;
  z-index: 5;
  width: 560px;
}

.about-heading p {
  margin: 0 0 3px;
  color: var(--white-label);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.66em;
  line-height: 1;
  text-transform: lowercase;
}

.about-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
}

.about-heading h2 > .gold {
  color: var(--gold);
}

.about-body {
  max-width: 550px;
  margin-top: 45.6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.about-body p {
  margin: 0;
}

.about-body p + p {
  margin-top: 28px;
}

.content-section-inner {
  display: grid;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  align-content: start;
  justify-items: stretch;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 96px;
}

.section-body {
  margin-top: 44px;
}

.section-heading {
  text-align: center;
}

.section-heading p {
  margin: 0 0 3px;
  color: var(--white-label);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.66em;
  line-height: 1;
  text-transform: lowercase;
  transform: translateX(0.33em);
}

.section-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 400;
  line-height: 0.95;
}

@media (max-width: 1100px) {
  .foreground-vase {
    right: -2.5vw;
    width: min(31.365vw, 328.95px);
  }

  .about-vase {
    width: min(34.5015vw, 361.845px);
  }
}

@media (max-width: 900px) {

  .site-header {
    top: 28px;
    width: calc(100% - 48px);
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .menu-toggle svg {
    width: 27px;
    height: 27px;
  }

  .primary-navigation {
    position: absolute;
    top: 52px;
    right: 0;
    display: none;
    width: min(310px, calc(100vw - 48px));
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 14px 18px;
    background: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .primary-navigation.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-navigation a {
    padding: 10px 0;
  }

  .primary-navigation a::after {
    display: none;
  }

  .ticket-button {
    margin-left: 14px;
  }

  #hero .hero-main {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding: 130px 6vw 32px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(630px, 88vw);
  }

  #hero .foreground-vase {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: unsafe center;
    width: min(289px, 51vw);
    margin: 32px auto 0;
    opacity: 1;
  }

  .about-vase {
    width: min(317.9px, 56.1vw);
  }

  .hero-main {
    width: 100%;
  }

  .about-main {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding: 130px 6vw 32px;
  }

  .about-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(560px, 88vw);
  }

  .about-vase {
    position: relative;
    right: auto;
    bottom: auto;
    left: 50%;
    align-self: flex-start;
    transform: translateX(-50%);
    margin-top: 16px;
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .page-section {
    min-height: 100svh;
  }

  .site-header {
    top: 20px;
    width: calc(100% - 32px);
  }

  .brand-link {
    width: 49.4px;
    height: 49.4px;
    flex-basis: 49.4px;
  }

  .ticket-button {
    width: 94px;
    height: 32px;
    font-size: 13px;
  }

  #hero .hero-main {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    padding: 120px 24px 28px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 14vw, 68px);
  }

  .hero-intro {
    margin-top: 16px;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.3;
  }

  .event-details {
    gap: 8px;
    margin-top: 16px;
    margin-left: 0;
  }

  .event-details li {
    font-size: 12.5px;
  }

  #hero .foreground-vase {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    align-self: unsafe center;
    width: min(272px, 69.7vw);
    margin: 28px auto 0;
    opacity: 1;
    transform: none;
  }

  .about-vase {
    right: auto;
    bottom: auto;
    left: 50%;
    align-self: flex-start;
    transform: translateX(-50%);
    width: min(299.2px, 76.67vw);
    margin: 14px auto 0;
  }

  .about-main {
    padding: 112px 24px 28px;
  }

  .about-copy {
    width: 100%;
  }

  .about-heading p {
    font-size: 10px;
    letter-spacing: 0.48em;
  }

  .about-heading h2 {
    font-size: 48px;
  }

  .about-body {
    max-width: 100%;
    margin-top: 26px;
    font-size: 15px;
    line-height: 1.55;
  }

  .about-body p + p {
    margin-top: 24px;
  }

  .background-decoration {
    opacity: 0.62;
  }

  .section-heading {
    padding: 0 20px;
  }

  .content-section-inner {
    padding-top: 120px;
  }

  .section-heading p {
    font-size: 10px;
    letter-spacing: 0.48em;
  }

  .section-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }
}

@media (min-width: 390px) and (max-width: 440px) and (min-height: 840px) {
  #hero,
  #hero .hero-main {
    height: 100svh;
    min-height: 100svh;
  }

  #hero .hero-main {
    padding-bottom: 0;
  }

  #hero .foreground-vase {
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(299.2px, 76.67vw);
    margin: 0;
    transform: translateX(-50%);
  }
}

@media (min-width: 901px) {
  :root {
    --section-heading-size: 5vw;
  }

  body {
    font-size: 1.111vw;
  }

  .site-header {
    top: 2.986vw;
    min-height: 3.792vw;
  }

  .brand-link {
    width: 3.792vw;
    height: 3.792vw;
    flex-basis: 3.792vw;
  }

  .primary-navigation {
    gap: 1.944vw;
    margin-left: 2.431vw;
  }

  .primary-navigation a {
    font-size: 1.111vw;
  }

  .ticket-button {
    width: 6.875vw;
    height: 2.153vw;
    font-size: 0.972vw;
  }

  .hero-copy {
    top: 27.986vw;
    width: 43.75vw;
  }

  .hero-copy h1 {
    font-size: 8.194vw;
  }

  .hero-intro {
    margin: 2.778vw 0 0 0.694vw;
    font-size: 1.389vw;
  }

  .event-details {
    gap: 0.694vw;
    margin: 1.597vw 0 0 0.694vw;
  }

  .event-details li {
    grid-template-columns: 1.042vw 1fr;
    column-gap: 0.972vw;
    font-size: 0.972vw;
  }

  .event-details svg {
    width: 0.972vw;
    height: 0.972vw;
  }

  .foreground-vase {
    right: -2.5vw;
    width: 24.65vw;
  }

  .about-vase {
    width: 24.4035vw;
  }

  .about-copy {
    top: 9.028vw;
    width: 38.889vw;
  }

  .about-heading p {
    margin-bottom: 0.208vw;
    font-size: 0.903vw;
  }

  .about-heading h2 {
    font-size: 4.444vw;
  }

  .about-body {
    max-width: 38.194vw;
    margin-top: 3.167vw;
    font-size: 1.111vw;
  }

  .about-body p + p {
    margin-top: 1.944vw;
  }

  .section-heading p {
    margin-bottom: 0.208vw;
    font-size: 0.833vw;
  }

  .content-section-inner {
    padding-top: 9.028vw;
  }
}

@media (min-width: 1600px) and (max-width: 2200px) {
  .hero-copy {
    top: min(27.986vw, 49.753svh);
  }

  .foreground-vase {
    right: max(-2.5vw, -4.444svh);
    width: min(24.65vw, 43.8226svh);
  }

  .about-vase {
    width: min(24.4035vw, 43.384svh);
  }

  .about-copy {
    top: min(9.028vw, 16.05svh);
  }

  .content-section-inner {
    padding-top: min(9.028vw, 16.05svh);
  }
}

.fracture-target {
  position: relative;
  isolation: isolate;
}

.fracture-overlay,
.fracture-piece,
.fracture-base {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.fracture-overlay {
  z-index: 2;
  overflow: visible;
}

.fracture-piece,
.fracture-base {
  color: var(--white);
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
  white-space: inherit;
}

.fracture-base {
  z-index: 0;
  will-change: opacity;
  animation: fracture-base-visibility var(--fracture-duration, 8350ms) linear both;
}

.fracture-base .gold,
.fracture-piece .gold {
  color: var(--gold);
}

.fracture-piece {
  transform-origin: var(--shard-origin-x) var(--shard-origin-y);
  will-change: transform;
  animation: fracture-shard var(--fracture-duration, 8350ms) linear both;
  animation-delay: var(--piece-delay, 0ms);
}

.fracture-crack-svg {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  will-change: opacity;
  animation: fracture-crack-layer var(--fracture-duration, 8350ms) linear both;
}

.fracture-crack-path {
  fill: none;
  stroke: #ffffff;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  animation: fracture-draw-path var(--crack-path-duration) linear var(--crack-path-delay) both;
}

.fracture-crack-text {
  box-sizing: border-box;
  display: block;
  margin: 0;
  color: #140804;
  filter:
    drop-shadow(0.65px 0.75px 0 rgba(255, 210, 150, 0.28))
    drop-shadow(0 0 0.35px rgba(0, 0, 0, 0.62));
}

.fracture-crack-text .gold {
  color: #140804;
}

.fracture-target.is-fracturing {
  color: transparent;
}

.fracture-target.is-fracturing > .gold {
  color: transparent;
}

@keyframes fracture-shard {
  0%,
  47.904% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  48.5%,
  50.5%,
  52.5% {
    transform: translate3d(var(--tremor-x), var(--tremor-y), 0) rotate(var(--tremor-rotation));
  }

  49.5%,
  51.5%,
  53.3% {
    transform: translate3d(var(--tremor-x-reverse), var(--tremor-y-reverse), 0) rotate(var(--tremor-rotation-reverse));
  }

  53.892% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  58.084%,
  94.012% {
    transform: translate3d(var(--shard-x), var(--shard-y), 0) rotate(var(--shard-rotation));
    animation-timing-function: cubic-bezier(0.5, 0, 0.85, 0.25);
  }

  98.802% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    animation-timing-function: cubic-bezier(0.15, 0.8, 0.25, 1);
  }

  99.401% {
    transform: translate3d(var(--impact-x), var(--impact-y), 0) rotate(var(--impact-rotation));
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes fracture-base-visibility {
  0%,
  47.904% {
    opacity: 1;
  }

  48.5%,
  100% {
    opacity: 0;
  }
}

@keyframes fracture-draw-path {
  0% {
    stroke-dashoffset: 1;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fracture-crack-layer {
  0%,
  53.892% {
    opacity: 1;
  }

  58.084%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fracture-overlay {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.schedule-section {
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
  scroll-snap-stop: normal;
}

.schedule-section-inner {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: max(134px, calc(6.778vw + 36px)) 0 128px;
}

.schedule-heading {
  text-align: left;
}

.schedule-heading p {
  margin-bottom: 3px;
  font-size: 13px;
  transform: none;
}

.schedule-heading h2 {
  font-size: var(--section-heading-size);
  line-height: 0.95;
}

.schedule-heading h2 > .gold {
  color: var(--gold);
}

.schedule-root {
  margin-top: 30px;
}

.schedule-loading,
.schedule-error,
.schedule-empty {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}

.schedule-category + .schedule-category {
  margin-top: 64px;
}

.schedule-category-title {
  margin: 0 0 29px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.ctf-card-stack {
  display: grid;
  gap: 14px;
}

.schedule-card {
  box-sizing: border-box;
  border: 1px solid var(--schedule-card-border);
  border-radius: 1px;
  background: var(--schedule-card-bg);
  color: var(--schedule-card-text);
  font-family: var(--font-body);
  text-align: left;
  text-decoration: none;
}

.schedule-card[href]:hover,
.schedule-card[href]:focus-visible {
  border-color: #1a0d09;
}

.schedule-card[href]:focus-visible,
.timeline-scroller:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.schedule-card--past {
  opacity: 0.78;
}

.schedule-card--past .schedule-card-meta {
  color: var(--schedule-card-text);
}

.schedule-card--ctf {
  display: grid;
  min-height: 86px;
  align-content: center;
  padding: 15px 16px;
}

.schedule-card-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.18;
}

.schedule-card-speaker,
.schedule-card-description {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.25;
}

.schedule-card-description {
  font-size: 12.5px;
}

.schedule-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  align-items: center;
  margin-top: 8px;
  color: rgba(48, 35, 28, 0.76);
  font-size: 10px;
  line-height: 1.15;
}

.schedule-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.schedule-meta-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: var(--icon-orange);
}

.schedule-meta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.timeline-scroller {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3px 0 12px;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.timeline-stage {
  position: relative;
  width: max(100%, var(--timeline-width));
}

.timeline-events {
  position: relative;
  min-height: 118px;
}

.schedule-card--timeline {
  position: absolute;
  display: flex;
  width: 222px;
  min-width: 222px;
  min-height: 0;
  flex-direction: column;
  padding: 14px 15px;
}

.schedule-card--timeline .schedule-card-title {
  font-size: 15px;
}

.schedule-card--timeline .schedule-card-meta {
  margin-top: auto;
  padding-top: 8px;
}

.timeline-ruler {
  position: relative;
  height: 52px;
  margin-top: 15px;
}

.timeline-marker {
  position: absolute;
  top: 0;
  width: 282px;
  color: var(--white-label);
  text-align: center;
  transform: translateX(-50%);
}

.timeline-marker-graphic {
  display: grid;
  grid-template-columns: 1fr 6px 1fr;
  gap: 7px;
  align-items: center;
  width: 100%;
}

.timeline-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
}

.timeline-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-time {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 900px) {
  .schedule-section-inner {
    width: 100%;
    padding: 112px 24px 96px;
  }

  .schedule-root {
    margin-top: 28px;
  }

  .schedule-category + .schedule-category {
    margin-top: 52px;
  }

  .schedule-category-title {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .timeline-scroller {
    width: calc(100% + 24px);
    padding-right: 24px;
  }
}

@media (max-width: 680px) {
  .schedule-section-inner {
    padding: 104px 20px 80px;
  }

  .schedule-heading p {
    font-size: 10px;
    letter-spacing: 0.48em;
  }

  .schedule-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .schedule-category-title {
    font-size: 19px;
  }

  .schedule-card--ctf {
    padding: 14px;
  }

  .timeline-scroller {
    width: calc(100% + 20px);
    padding-right: 20px;
  }
}

.skip-link {
  position: absolute;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--button-text);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 140ms ease;
}

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


.coming-soon {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 32px;
  border: 1px dashed var(--white-muted);
  text-align: center;
}

.coming-soon-eyebrow {
  margin: 0 0 14px;
  color: var(--white-label);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(0.21em);
}

.coming-soon-headline {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.coming-soon-body {
  max-width: 44ch;
  margin: 14px 0 0;
  color: var(--white-label);
  font-size: 15px;
  line-height: 1.5;
}

.coming-soon-cta {
  margin-top: 26px;
  padding: 11px 22px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease;
}

.coming-soon-cta:hover,
.coming-soon-cta:focus-visible {
  background: var(--gold);
  color: var(--button-text);
}

.cfp-banner {
  padding: 56px 24px;
  background: var(--sponsor-card-bg);
  text-align: center;
}

.cfp-inner {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.cfp-eyebrow {
  margin: 0 0 6px;
  color: var(--white-label);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.66em;
  line-height: 1;
  text-transform: lowercase;
  transform: translateX(0.33em);
}

.cfp-headline {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.cfp-body {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--white-label);
  font-size: 15px;
  line-height: 1.55;
}

.cfp-cta {
  margin-top: 26px;
  padding: 12px 26px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease;
}

.cfp-cta:hover,
.cfp-cta:focus-visible {
  background: var(--gold);
  color: var(--button-text);
}

@media (max-width: 700px) {
  .cfp-banner {
    padding: 40px 20px;
  }

  .cfp-eyebrow {
    letter-spacing: 0.42em;
    transform: translateX(0.21em);
  }
}


.sponsor-tier + .sponsor-tier {
  margin-top: 56px;
}

.sponsor-tier-title {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.sponsor-card {
  display: grid;
  border: 1px solid var(--sponsor-card-border);
  background: var(--sponsor-card-bg);
  color: var(--white);
}

.sponsor-card-link,
.sponsor-card > .sponsor-logo {
  display: grid;
  align-content: start;
  height: 100%;
  padding: 26px 24px;
  color: inherit;
  text-decoration: none;
}

.sponsor-card-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sponsor-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sponsor-logo {
  width: 100%;
  max-width: 210px;
  height: 62px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.sponsor-logo--text {
  display: flex;
  align-items: center;
  height: auto;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.sponsor-blurb {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  opacity: 0.88;
}

.sponsor-callout {
  margin: 44px 0 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  opacity: 0.86;
}

.sponsor-callout a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}


.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--schedule-card-border);
  background: var(--schedule-card-bg);
  color: var(--schedule-card-text);
}

.faq-question {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

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

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 160ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer a {
  color: #8c3d16;
  text-underline-offset: 3px;
}


.merch-grid,
.speaker-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.merch-card,
.speaker-card {
  border: 1px solid var(--schedule-card-border);
  background: var(--schedule-card-bg);
  color: var(--schedule-card-text);
}

.merch-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.merch-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.merch-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.merch-name,
.speaker-name {
  margin: 16px 22px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.merch-description,
.speaker-affiliation,
.speaker-talk,
.speaker-bio {
  margin: 6px 22px 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
}

.merch-price {
  margin: 10px 22px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.merch-card > .merch-description:last-child,
.speaker-card > :last-child {
  margin-bottom: 22px;
}


.speaker-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.speaker-photo--placeholder {
  background: rgba(48, 35, 28, 0.12);
}

.speaker-talk {
  font-style: italic;
}

.speaker-affiliation {
  opacity: 0.75;
}


.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(48, 35, 28, 0.28);
}

.site-footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 44px;
}

.footer-wordmark {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.footer-wordmark .gold {
  color: var(--gold);
}

.footer-event {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.82;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 140ms ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-base {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-acknowledgement,
.footer-affiliation {
  margin: 0;
  color: var(--white);
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.82;
}

.footer-affiliation {
  margin-top: 10px;
}

.document-main {
  position: relative;
  z-index: 1;
}

.document-inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 168px 0 96px;
}

.document-inner .section-heading {
  text-align: left;
}

.document-inner .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.document-inner h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(36px, 12vw, var(--section-heading-size));
  font-weight: 400;
  line-height: 0.95;
}

.document-body {
  max-width: 82ch;
  margin-top: 44px;
  padding: 48px 52px;
  border: 1px solid var(--schedule-card-border);
  background: var(--schedule-card-bg);
  color: var(--schedule-card-text);
}

.coc-section + .coc-section {
  margin-top: 44px;
}

.coc-heading {
  margin: 0 0 18px;
  color: var(--schedule-card-text);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.coc-points {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coc-points li {
  position: relative;
  padding-left: 22px;
  color: var(--schedule-card-text);
  font-size: 15px;
  line-height: 1.6;
}

.coc-points li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #8c3d16;
  content: '\203A';
  font-size: 18px;
  line-height: 1.45;
}

.coc-points a {
  color: #8c3d16;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.document-back {
  margin: 56px 0 0;
}

.document-back a {
    color: var(--white);
  font-size: 15px;
  text-decoration: none;
}

.document-back a:hover,
.document-back a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}


.error-main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
}

.error-inner {
  display: grid;
  justify-items: center;
  padding: 96px 0;
  text-align: center;
}

.error-emblem {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.error-code {
  margin: 26px 0 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1;
  transform: translateX(0.21em);
}

.error-title {
  margin: 14px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.error-title .gold {
  color: var(--gold);
}

.error-body {
  max-width: 46ch;
  margin: 18px 0 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.82;
}

.error-cta {
  width: auto;
  height: auto;
  margin: 32px 0 0;
  padding: 12px 26px;
}


@media (max-width: 900px) {
  .site-footer-inner {
    gap: 34px;
    grid-template-columns: 1fr 1fr;
    padding: 48px 0 36px;
  }

  .coming-soon {
    padding: 44px 24px;
  }

  .sponsor-tier + .sponsor-tier {
    margin-top: 42px;
  }

  .document-inner {
    padding: 132px 0 72px;
  }

  .document-body {
    padding: 36px 32px;
  }
}

@media (max-width: 680px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-body {
    margin-top: 32px;
  }

  .sponsor-grid,
  .merch-grid,
  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .document-inner {
    padding: 112px 0 64px;
  }

  .document-body {
    padding: 28px 22px;
  }
}

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

  .primary-navigation a::after,
  .site-header::before,
  .ticket-button,
  .skip-link,
  .coming-soon-cta,
  .cfp-cta,
  .faq-chevron,
  .footer-list a {
    transition: none;
  }
}
