@font-face {
  font-family: "ABC Gravity Extra Condensed";
  src:
    url("./assets/fonts/ABCGravity-ExtraCondensed.otf") format("opentype"),
    local("ABC Gravity ExtraCondensed"),
    local("ABCGravity-ExtraCondensed");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #222;
  --gray-700: #444;
  --gray-600: #666;
  --gray-400: #ccc;
  --gray-200: #e6e6e6;
  --gray-100: #f5f5f5;
  --white: #fff;
  --pink: #ff8eff;
  --pink-light: #ffbeff;
  --pink-pale: #ffe0ff;
  --red: #f22444;
  --red-light: #f7667d;
  --yellow: #fff602;
  --yellow-light: #fff966;
  --blue: #0054fd;
  --blue-light: #4d87fe;
  --green: #64e54b;
  --green-light: #93ed81;
  --purple: #c04dff;
  --orange: #ff7900;
  --orange-light: #ffa14d;
  --display: "ABC Gravity Extra Condensed", sans-serif;
  --sans: "Aeonik Pro", Aeonik, Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
  font-family: var(--sans);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
}

.brand-cursor-dot,
.brand-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
  will-change: transform;
}

.brand-cursor-dot {
  z-index: 10000;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  background: var(--white);
  border-radius: 50%;
  mix-blend-mode: difference;
}

.brand-cursor-ring {
  z-index: 9999;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
}

.brand-cursor-ring__asset {
  width: 120px;
  height: 120px;
  max-width: none;
  animation: brand-cursor-spin 10s linear infinite;
  transform-origin: center;
}

@keyframes brand-cursor-spin {
  to { transform: rotate(360deg); }
}

@media (hover: hover) and (pointer: fine) {
  html.brand-cursor-active,
  html.brand-cursor-active * {
    cursor: none !important;
  }

  html.brand-cursor-active input,
  html.brand-cursor-active textarea {
    cursor: text !important;
  }

  html.brand-cursor-active select {
    cursor: pointer !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .brand-cursor-dot,
  .brand-cursor-ring {
    display: none;
  }
}

body,
button,
a {
  font-family: var(--sans);
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-synthesis: none;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-wide {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.content-wide {
  width: min(calc(100% - 84px), 1216px);
  margin-inline: auto;
}

.section-pad {
  padding: 80px 42px;
}

.zigzag-bg {
  background-color: var(--pink-light);
}

.cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 18px 18px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease;
}

.cta:hover {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.cta:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.cta-blue {
  min-width: 278px;
  color: var(--white);
  background: var(--blue);
}

.cta-pink {
  color: var(--black);
  background: var(--pink-light);
}

.cta-white {
  color: var(--ink);
  background: var(--white);
}

.cta-green {
  color: var(--black);
  background: var(--green);
}

.cta-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.cta-blue .cta-icon {
  filter: brightness(0) invert(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--gray-100);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gray-100);
  background: var(--ink);
}

.eyebrow-dot {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
}

.eyebrow-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.eyebrow-dot.red {
  background: #eee;
}

.eyebrow-dot.red::after {
  background: var(--red);
}

.eyebrow-dot.pink {
  background: var(--pink-light);
}

.eyebrow > span:last-child {
  padding: 0 12px;
  white-space: nowrap;
}

/* Hero */
.hero {
  min-height: max(780px, 98vh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background-color: var(--pink-light);
  background-image: url("./assets/web/bg-header.svg");
  background-position: center center;
  background-size: 5760px auto;
  background-repeat: repeat-x;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.vector-section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.hero-header {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px 36px;
}

.brand {
  width: 160px;
}

.brand img {
  width: 120px;
}

.date-pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.festival-badge {
  width: 79px;
  height: 78px;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 24px;
}

.festival-title {
  width: 676px;
}

.hero-center p {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  text-transform: none;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  background: transparent;
}

.hero-bottom > p {
  max-width: 527px;
  color: var(--gray-700);
  font-size: 21px;
  line-height: 1.5;
}

@media (min-width: 621px) {
  .hero-bottom .cta {
    width: 277px;
    min-width: 277px;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* Overview */
.event-overview {
  height: 779px;
  background: var(--gray-100);
}

.event-overview .eyebrow {
  background: var(--white);
}

.overview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.section-intro {
  display: flex;
  flex-direction: column;
}

.section-intro-centered {
  align-items: center;
  gap: 18px;
  text-align: center;
}

.section-intro h2 {
  max-width: 800px;
  font-size: 40px;
  line-height: 1;
}

.section-intro > p {
  max-width: 507px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.5;
}

.date-cards {
  height: 341px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 35px;
}

.date-card {
  position: relative;
  width: 230px;
  height: 301px;
  overflow: visible;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 4px 12px rgba(0, 0, 0, 0.2);
}

.date-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10px;
  right: 0;
  width: 86px;
  height: 22px;
  border-radius: 8px 8px 0 0;
  background: inherit;
}

.date-card span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-card-blue {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: -14px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
  transform: rotate(-3deg);
}

.date-card-blue strong {
  margin: 4px 0;
  font-size: 62px;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.date-card-blue small {
  font-size: 14px;
}

.date-card-pink {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--pink-light);
  transform: rotate(3deg);
}

.date-card-pink > div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.date-card-pink > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.date-card-pink strong {
  display: block;
  margin-top: 3px;
  font-size: 46px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* Manifesto */
.manifesto {
  height: 737px;
}

.manifesto-title {
  height: 486px;
  display: flex;
  align-items: center;
  padding: 60px 48px 48px;
  overflow: hidden;
  background-color: var(--yellow);
}

.pattern-yellow {
  background-image: url("./assets/web/Pattern-01.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.manifesto-title h2 {
  max-width: 1220px;
  width: 100%;
  font-size: clamp(88px, 9.7222vw, 140px);
  line-height: 0.9;
}

.manifesto-body {
  height: 251px;
  display: grid;
  grid-template-columns: minmax(0, 2.03fr) minmax(350px, 1fr);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: 1fr 1fr 1.32fr;
  gap: 48px;
  padding: 48px;
  background: var(--gray-100);
}

.manifesto-copy p,
.text-columns p {
  padding-top: 20px;
  border-top: 1px solid var(--gray-400);
  font-size: 17px;
  line-height: 1.5;
}

.manifesto-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ink);
}

.tag-row {
  width: 254px;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tag-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-right: 12px;
  padding: 9px;
}

.tag-row.pink { background: var(--pink-light); }
.tag-row.red { background: var(--red-light); }
.tag-row.blue { background: var(--blue-light); }
.tag-row.pink .tag-icon { background: var(--pink); }
.tag-row.red .tag-icon { background: var(--red); }
.tag-row.blue .tag-icon { background: var(--blue); }

/* About */
.festival-about {
  height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 2.03fr) minmax(350px, 1fr);
}

.about-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  background: var(--white);
}

.about-main > .eyebrow {
  align-self: flex-start;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-copy h2 {
  max-width: 869px;
  font-size: 48px;
  line-height: 1;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.text-columns p {
  border-color: var(--gray-200);
  font-size: 16px;
}

.about-statement {
  overflow: hidden;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.8);
  background: var(--pink-light);
  font-family: var(--display);
  font-size: 99px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* Audience map */
.discipline-map {
  position: relative;
  height: 783px;
  overflow: hidden;
  background: var(--black);
}

.discipline-lines {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(90deg, transparent calc(38.79% - 0.5px), #fff calc(38.79% - 0.5px) calc(38.79% + 0.5px), transparent calc(38.79% + 0.5px)),
    linear-gradient(90deg, transparent calc(61.21% - 0.5px), #fff calc(61.21% - 0.5px) calc(61.21% + 0.5px), transparent calc(61.21% + 0.5px)),
    linear-gradient(0deg, transparent calc(35.32% - 0.5px), #fff calc(35.32% - 0.5px) calc(35.32% + 0.5px), transparent calc(35.32% + 0.5px)),
    linear-gradient(0deg, transparent calc(64.68% - 0.5px), #fff calc(64.68% - 0.5px) calc(64.68% + 0.5px), transparent calc(64.68% + 0.5px));
}

.discipline-tags span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-right: 12px;
  color: var(--black);
  background: var(--c);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.discipline-tags span::before {
  content: "•";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: color-mix(in srgb, var(--c), #000 30%);
}

.discipline-tags .tag-neutral {
  border: 1px solid var(--gray-700);
  color: var(--gray-700);
}

.discipline-tags .tag-neutral::before {
  width: 22px;
  height: 22px;
  background: var(--gray-700);
}

.audience-card {
  position: absolute;
  z-index: 2;
  left: 38.79%;
  top: 35.32%;
  width: 22.42%;
  height: 29.36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 34px;
  background: var(--white);
}

.audience-corner {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  display: block;
}

.audience-corner-tl {
  top: -5.5px;
  left: -5.5px;
  background: var(--blue-light);
}

.audience-corner-tr {
  top: -5.5px;
  right: -5.5px;
  background: var(--pink-pale);
}

.audience-corner-bl {
  bottom: -5.5px;
  left: -5.5px;
  background: var(--purple);
}

.audience-corner-br {
  right: -5.5px;
  bottom: -5.5px;
  background: var(--orange-light);
}

.sponsor-badge-mobile {
  display: none;
}

.audience-card h2 {
  font-size: 32px;
  line-height: 0.9;
}

.audience-card p {
  max-width: 224px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}

/* Happenings */
.happenings {
  height: 1090px;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--gray-100);
}

.happenings-heading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.happenings-heading h2 {
  grid-column: 1 / span 2;
  max-width: 533px;
  font-size: 48px;
  line-height: 1;
}

.happenings-heading p {
  grid-column: 3;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.5;
}

.happenings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.happening-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
  background: var(--white);
}

.happening-card > img {
  width: 68px;
  height: 65px;
}

.happening-card > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.happening-card h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
}

.happening-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.happenings-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.happenings-footer .cta {
  grid-column: 1;
}

.plus-pattern {
  color: rgba(0, 0, 0, 0.27);
  font-size: 28px;
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.happenings-footer .plus-pattern {
  grid-column: 3;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-align: right;
}

/* Speakers */
.speakers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  color: var(--white);
  background: var(--black);
}

.speakers-heading {
  width: min(calc(100% - 40px), 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.speakers-heading h2 {
  font-size: 40px;
  line-height: 1;
}

.speakers-grid {
  width: min(100%, 1216px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.speaker {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}

.speaker > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker:first-child > img { object-position: 50% 45%; transform: scale(1.06); }
.speaker:nth-child(4) > img { object-position: 50% 35%; }
.speaker:nth-child(5) > img { object-position: 50% 45%; }
.speaker:nth-child(10) > img { object-position: 50% 34%; }
.speaker:nth-child(13) > img { object-position: 50% 40%; }

.speaker > div {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 23px 23px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent);
}

.speaker h3 {
  font-size: 28px;
  line-height: 1;
}

.speaker p {
  display: none;
}

.speaker-cta {
  width: min(calc(100% - 40px), 468px);
}

.speaker-cta-mobile,
.platform-cta-mobile {
  display: none;
}

/* Platform */
.platform {
  height: 936px;
  display: flex;
  align-items: center;
  background: var(--ink);
}

.platform-inner {
  height: 696px;
  display: flex;
  align-items: stretch;
}

.platform-copy {
  position: relative;
  z-index: 2;
  width: 55.35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: -120px;
  padding: 80px 260px 80px 48px;
  color: var(--white);
  background-color: var(--black);
  background-image: url("./assets/web/pattern-card-black.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.platform-copy > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.platform-copy .eyebrow {
  color: var(--black);
  background: var(--white);
}

.platform-copy h2 {
  font-size: 42px;
  line-height: 1;
}

.platform-copy p {
  font-size: 14px;
  line-height: 1.5;
}

.platform-copy .cta {
  align-self: flex-start;
}

.platform-steps {
  position: relative;
  z-index: 3;
  width: 53.7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-steps li {
  display: grid;
  grid-template-columns: 334px 1fr;
  align-items: center;
  gap: 32px;
}

.step-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  color: var(--black);
  background: var(--step);
}

.step-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 68px;
  background: rgba(0, 0, 0, 0.8);
}

.step-icon b {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(0, 0, 0, 0.8);
  color: var(--black);
  background: var(--step);
  font-size: 12px;
}

.step-icon img {
  width: 36px;
  height: 36px;
}

.step-card strong {
  width: 194px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.platform-steps li > p {
  color: var(--gray-200);
  font-size: 16px;
  line-height: 1.5;
}

/* Lineup */
.lineup {
  min-height: 1956px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 48px;
  background: var(--pink-light);
}

.lineup-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lineup-heading h2 {
  font-size: 140px;
  line-height: 0.9;
}

.day-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px;
  background: var(--white);
}

.day-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--black);
}

.day-card > header h3 {
  font-size: 48px;
  line-height: 0.9;
}

.day-card > header time {
  min-width: 108px;
  padding: 10px 18px;
  border-radius: 90px;
  color: var(--white);
  background: var(--black);
  font-size: 23px;
  font-weight: 500;
  text-align: center;
}

.stage-group {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 33px;
  align-items: stretch;
}

.stage {
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  overflow: hidden;
}

.stage strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.9;
  text-transform: uppercase;
}

.stage small {
  padding: 8px 12px;
  color: var(--white);
  background: #a91930;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.stage-red {
  min-height: 312px;
  color: var(--white);
  background-color: var(--red);
  background-image: url("./assets/web/pattern-stage-main.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stage-orange {
  min-height: 0;
  color: var(--white);
  background-color: var(--orange);
  background-image: url("./assets/web/pattern-stage-freela.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stage-yellow {
  min-height: 88px;
  background-color: var(--yellow);
  background-image: url("./assets/web/pattern-stage-future.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sessions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.sessions > div {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--gray-400);
}

.sessions > div:last-child {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-400);
}

.sessions span {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.sessions time {
  min-width: 108px;
  display: flex;
  align-items: center;
  padding-right: 12px;
  background: var(--gray-100);
  font-size: 16px;
  font-weight: 500;
}

.sessions time::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-right: 8px;
  background: var(--gray-200) url("./assets/web/icon-clock.svg") center / 24px 24px no-repeat;
}

/* Ticket */
.ticket {
  --ticket-card-width: 530px;
  position: relative;
  min-height: 618px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 42px;
  background-color: var(--white);
  background-image: url("./assets/web/pattern-price-plus.svg");
  background-position: left top;
  background-size: 18.144px 18.144px;
  background-repeat: repeat;
  isolation: isolate;
}

.ticket-inner {
  position: relative;
  width: 100%;
  max-width: 1216px;
  min-height: 498px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--ticket-card-width);
  margin-inline: auto;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.ticket-copy {
  width: 484px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 48px;
}

.ticket-copy > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-kicker {
  color: var(--yellow-light);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.ticket-kicker span {
  margin: 0 10px;
}

.ticket-copy h2 {
  font-size: 48px;
  line-height: 1;
}

.ticket-copy > div > p:last-child {
  color: var(--gray-400);
  font-size: 16px;
  line-height: 1.5;
}

.ticket-copy ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.ticket-copy li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticket-copy li::before {
  content: "";
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 24px;
  background: var(--yellow-light) url("./assets/figma/check.svg") center / 12px 12px no-repeat;
}

.ticket-card {
  position: relative;
  min-height: 498px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.ticket-card-header {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.ticket-card-header-mobile {
  display: none;
}

.ticket-card-body {
  width: 100%;
  min-height: 342px;
  display: flex;
  flex: 0 0 342px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 32px;
  box-shadow: inset 0 0 0 1px var(--gray-700);
}

.price {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1;
}

.price strong {
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
}

.price small {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.ticket-card-action {
  width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ticket-card .cta {
  width: 100%;
  min-height: 60px;
  padding: 20px 20px 20px 28px;
  font-size: 18px;
}

.ticket-card .cta-icon {
  transform: scaleY(-1);
}

.payment-methods {
  width: 198px;
  height: 18px;
}

.ticket-pattern {
  width: 100%;
  height: 60px;
  flex: 0 0 60px;
  background: url("./assets/web/pattern-ticket-footer.svg") center / cover no-repeat;
}

.ticket-badge {
  position: absolute;
  top: 204.36px;
  right: calc(var(--ticket-card-width) - 39.353px);
  z-index: 2;
  width: 78.706px;
  height: 78px;
}

/* FAQ */
.faq {
  min-height: 795px;
  padding: 120px 96px;
  background: var(--white);
}

.faq > .content-wide {
  width: 1216px;
  max-width: 100%;
  margin-inline: auto;
}

.faq-heading {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  box-shadow: inset 0 -2px var(--black);
}

.faq-heading h2 {
  font-size: 48px;
  line-height: 0.9;
  transform: translateY(4px);
}

.faq-heading > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.faq-heading > span img {
  width: 24px;
  height: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) 368px;
  gap: 48px;
  margin-top: 71px;
}

.questions details {
  border: 0;
  border-bottom: 1px solid var(--gray-400);
}

.questions details:first-child {
  border-top: 1px solid var(--gray-400);
}

.questions summary {
  height: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.questions summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("./assets/figma/faq-chevron.svg") center / 21.6px 21.6px no-repeat;
  transition: transform 160ms ease;
}

.questions details[open] summary::after {
  transform: rotate(180deg);
}

.questions details > p {
  max-width: 680px;
  margin: 0;
  padding: 0 40px 20px 0;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.5;
}

.questions details > p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--gray-100);
}

.support-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green);
}

.support-icon img {
  width: 24px;
  height: 24px;
}

.support-body,
.support-copy {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.support-body {
  gap: 32px;
}

.support-copy {
  gap: 12px;
}

.support-card h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
}

.support-card p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.5;
}

.support-card .cta {
  width: 100%;
  min-height: 48px;
  padding: 14px 14px 14px 22px;
  font-size: 14px;
}

.support-card .cta-icon {
  transform: scaleY(-1);
}

/* Sponsors and footer */
.sponsors {
  position: relative;
  height: 648px;
  overflow: hidden;
  isolation: isolate;
  background: var(--white) url("./assets/web/pattern-sponsors.svg") 0 0 / 16px 16px repeat;
}

.sponsors-words {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.sponsor-row {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.sponsor-row-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 56px;
}

.sponsor-row span {
  flex: 0 0 auto;
  color: #ffe5ff;
  font-family: var(--display);
  font-size: 304.912px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.9;
  text-transform: uppercase;
  transform: translateY(-13px);
  white-space: nowrap;
}

.sponsor-row-top { top: -4.81px; }
.sponsor-row-top .sponsor-row-track { transform: translateX(-18%); }
.sponsor-row-middle { top: 220.93px; }
.sponsor-row-middle .sponsor-row-track { transform: translateX(-34%); }
.sponsor-row-bottom { top: 446.66px; }
.sponsor-row-bottom .sponsor-row-track { transform: translateX(-12%); }

.sponsor-badge {
  position: absolute;
  top: 49.36px;
  left: calc(50% - 614px);
  width: 129.158px;
  height: 128px;
  overflow: visible;
  rotate: -60deg;
}

.sponsor-logos {
  position: absolute;
  top: 275.36px;
  left: calc(50% - 284px);
  display: flex;
  align-items: center;
  gap: 60px;
}

.sponsor-logos img:first-child { width: 209.872px; height: 98px; object-fit: cover; }
.sponsor-logos img:last-child { width: 302.906px; height: 80.548px; object-fit: cover; }

.sponsor-partner-cta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px max(24px, calc((100% - 1216px) / 2));
  color: var(--white);
  background: var(--gray-700);
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease;
}

.sponsor-partner-cta strong {
  font-weight: 700;
}

.sponsor-partner-cta:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sponsor-partner-email {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  color: var(--pink-light);
  font-weight: 700;
}

.sponsor-partner-email img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transform: scaleY(-1);
  transition: translate 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .sponsor-partner-cta:hover {
    background: var(--blue);
  }

  .sponsor-partner-cta:hover .sponsor-partner-email img {
    translate: 3px -3px;
  }
}

.page-footer {
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 43px 48px;
  color: var(--white);
  background: var(--black);
}

.footer-inner {
  width: 1344px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.footer-brand {
  width: 100%;
  height: auto;
  aspect-ratio: 1344 / 247.626;
}

.footer-meta {
  min-height: 66px;
  display: grid;
  grid-template-columns: 180px 367px 180px;
  align-items: start;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.footer-legal {
  width: 180px;
}

.footer-description {
  width: 367px;
  text-align: center;
}

.footer-social {
  width: 180px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a,
.footer-social img {
  width: 40px;
  height: 40px;
}

.footer-social a {
  display: block;
}

@media (max-width: 1199px) {
  .content-wide {
    width: min(calc(100% - 64px), 1040px);
  }

  .hero-header,
  .hero-bottom,
  .manifesto-title,
  .manifesto-copy,
  .about-main {
    padding-left: 32px;
    padding-right: 32px;
  }

  .manifesto-title h2 {
    font-size: clamp(88px, 9.7222vw, 116px);
  }

  .manifesto-copy {
    gap: 28px;
  }

  .manifesto-copy p {
    font-size: 15px;
  }

  .about-copy h2 {
    font-size: 42px;
  }

  .text-columns {
    gap: 26px;
  }

  .about-statement {
    font-size: 8vw;
  }

  .happenings {
    padding-left: 32px;
    padding-right: 32px;
  }

  .platform {
    height: auto;
    padding: 90px 32px;
  }

  .platform-inner {
    width: min(100%, 1040px);
  }

  .platform-copy {
    width: 52%;
    margin-right: -70px;
    padding-right: 140px;
  }

  .platform-steps {
    width: 55%;
  }

  .platform-steps li {
    grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.8fr);
    gap: 22px;
  }

  .step-card {
    gap: 16px;
    padding: 20px;
  }

  .step-card strong {
    width: auto;
    font-size: 18px;
  }

  .platform-steps li > p {
    font-size: 14px;
  }

  .lineup {
    padding-left: 32px;
    padding-right: 32px;
  }

  .stage-group {
    grid-template-columns: 260px 1fr;
  }

  .sessions span {
    font-size: 20px;
  }

  .ticket {
    --ticket-card-width: 480px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .ticket-inner {
    width: min(100%, 1040px);
    grid-template-columns: minmax(0, 1fr) var(--ticket-card-width);
  }

  .ticket-copy {
    width: 100%;
  }

  .faq {
    padding-left: 32px;
    padding-right: 32px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .sponsors {
    height: max(430px, 45vw);
    min-height: 430px;
    max-height: 648px;
  }

  .sponsor-row span {
    font-size: 21.174vw;
  }

  .sponsor-row-track {
    gap: 3.9vw;
  }

  .sponsor-row-top { top: -0.74%; }
  .sponsor-row-middle { top: 34.09%; }
  .sponsor-row-bottom { top: 68.93%; }

  .sponsor-badge {
    top: 7.62%;
    left: 7.36%;
    width: 8.97vw;
    height: auto;
  }

  .sponsor-logos {
    top: 42.49%;
    left: 30.28%;
    gap: 4.167vw;
  }

  .sponsor-logos img:first-child { width: 14.574vw; height: auto; }
  .sponsor-logos img:last-child { width: 21.035vw; height: auto; }

  .page-footer {
    height: max(480px, 41.667vw);
    padding: 36px 32px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-meta {
    grid-template-columns: 180px minmax(240px, 367px) 180px;
  }

  .footer-description {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    height: auto;
    grid-template-rows: minmax(620px, 1fr) auto;
  }

  .hero-bottom {
    min-height: 152px;
  }

  .event-overview,
  .manifesto,
  .festival-about,
  .happenings {
    height: auto;
  }

  .event-overview {
    min-height: 760px;
  }

  .manifesto-title {
    height: 410px;
  }

  .manifesto-title h2 {
    font-size: clamp(68px, 9.7222vw, 88px);
  }

  .manifesto-body {
    height: auto;
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    min-height: 240px;
  }

  .manifesto-tags {
    min-height: 220px;
  }

  .festival-about {
    grid-template-columns: 1fr;
  }

  .about-main {
    min-height: 580px;
  }

  .about-statement {
    height: 410px;
    padding: 18px 32px;
    font-size: 10.5vw;
  }

  .discipline-map {
    height: 720px;
  }

  .audience-card {
    left: 25%;
    top: 34%;
    width: 50%;
    height: 32%;
  }

  .discipline-lines {
    background-image:
      linear-gradient(90deg, transparent calc(25% - 0.5px), #fff calc(25% - 0.5px) calc(25% + 0.5px), transparent calc(25% + 0.5px)),
      linear-gradient(90deg, transparent calc(75% - 0.5px), #fff calc(75% - 0.5px) calc(75% + 0.5px), transparent calc(75% + 0.5px)),
      linear-gradient(0deg, transparent calc(34% - 0.5px), #fff calc(34% - 0.5px) calc(34% + 0.5px), transparent calc(34% + 0.5px)),
      linear-gradient(0deg, transparent calc(66% - 0.5px), #fff calc(66% - 0.5px) calc(66% + 0.5px), transparent calc(66% + 0.5px));
  }

  .happenings {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .happenings-heading {
    grid-template-columns: 1fr 1fr;
  }

  .happenings-heading h2 {
    grid-column: 1;
  }

  .happenings-heading p {
    grid-column: 2;
  }

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

  .happenings-footer {
    grid-template-columns: 1fr 1fr;
  }

  .happenings-footer .plus-pattern {
    grid-column: 2;
  }

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

  .platform-inner {
    height: auto;
    flex-direction: column;
  }

  .platform-copy {
    width: 100%;
    min-height: 590px;
    margin: 0;
    padding: 64px;
  }

  .platform-steps {
    width: 100%;
    padding: 48px 0 0;
  }

  .lineup {
    min-height: 0;
  }

  .lineup-heading h2 {
    font-size: 100px;
  }

  .day-card {
    padding: 36px;
  }

  .stage-group {
    grid-template-columns: 210px 1fr;
    gap: 24px;
  }

  .ticket-inner {
    grid-template-columns: 1fr;
  }

  .ticket-badge {
    display: none;
  }

  .ticket-copy {
    min-height: 500px;
  }

  .ticket-card {
    width: min(100%, 530px);
    justify-self: center;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 310px;
  }

  .page-footer {
    height: 480px;
  }
}

@media (max-width: 620px) {
  html {
    scrollbar-width: none;
  }

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

  .brand-cursor-dot,
  .brand-cursor-ring {
    display: none;
  }

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

  .section-pad {
    padding: 60px 16px;
  }

  .cta {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 18px 18px 18px 26px;
    font-size: 16px;
  }

  .hero {
    width: 100%;
    height: 780px;
    min-height: 780px;
    grid-template-rows: minmax(0, 1fr) auto;
    background-position: center top;
    background-size: 2400px auto;
  }

  .hero-header {
    position: relative;
    min-height: 70px;
    align-items: center;
    padding: 0 16px;
  }

  .brand {
    width: 120px;
    padding: 0;
  }

  .brand img {
    width: 120px;
  }

  .date-pill {
    position: absolute;
    z-index: 3;
    top: 228px;
    left: 50%;
    margin: 0;
    padding: 12px 16px;
    font-size: 12px;
    translate: -50% 0;
    white-space: nowrap;
  }

  .festival-badge {
    width: 54.489px;
    height: auto;
  }

  .hero-center {
    gap: 32px;
    padding: 0 16px;
    transform: translateY(34px);
  }

  .festival-title {
    width: min(100%, 341.767px);
  }

  .hero-center p {
    font-size: 18px;
    line-height: normal;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 0 16px 16px;
  }

  .hero-bottom > p {
    max-width: none;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }

  .event-overview {
    height: 641px;
    min-height: 641px;
    padding: 60px 16px;
  }

  .section-intro h2 {
    max-width: 343px;
    font-size: 28px;
    line-height: 1;
  }

  .section-intro > p {
    max-width: 343px;
    font-size: 14px;
    line-height: 1.5;
  }

  .overview-content {
    width: 100%;
    gap: 40px;
  }

  .event-overview .eyebrow,
  .speakers-heading .eyebrow,
  .platform-copy .eyebrow {
    font-size: 12px;
  }

  .event-overview .eyebrow-dot,
  .speakers-heading .eyebrow-dot,
  .platform-copy .eyebrow-dot {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .speakers-heading .eyebrow-dot::after {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: url("./assets/web/icon-plus.svg") center / 14px 14px no-repeat;
  }

  .date-cards {
    width: 100%;
    height: 270px;
    padding-top: 12.92px;
  }

  .date-card {
    width: 181.792px;
    height: 238.602px;
    border-radius: 4.545px;
    padding: 18.179px;
  }

  .date-card::before {
    top: -8.32px;
    width: 68.172px;
    height: 17.043px;
    border-radius: 5.681px 5.681px 0 0;
  }

  .date-card-blue {
    margin-right: -4px;
  }

  .date-card-blue strong {
    font-size: 49.993px;
  }

  .date-card-blue small {
    font-size: 11.362px;
  }

  .date-card-pink {
    gap: 13.634px;
  }

  .date-card-pink > div {
    padding-bottom: 13.634px;
  }

  .date-card-pink strong {
    font-size: 36.358px;
  }

  .manifesto-title {
    height: 204px;
    min-height: 204px;
    align-items: flex-end;
    padding: 60px 16px 24px;
    background-position: center;
    background-size: cover;
  }

  .manifesto-title h2 {
    max-width: 343px;
    font-size: 44px;
    line-height: 0.9;
  }

  .manifesto-body {
    height: 555.533px;
  }

  .manifesto-copy {
    min-height: 336px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .manifesto-copy p {
    padding-top: 0;
    border-top: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .manifesto-tags {
    min-height: 219.533px;
    padding: 40px 16px;
  }

  .festival-about {
    height: 985px;
    display: flex;
    flex-direction: column;
  }

  .about-main {
    order: 2;
    min-height: 528px;
    justify-content: flex-start;
    gap: 24px;
    padding: 48px 16px 24px;
  }

  .about-copy {
    gap: 24px;
  }

  .about-copy h2 {
    max-width: 343px;
    font-size: 28px;
    line-height: 1;
  }

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

  .text-columns p {
    padding-top: 0;
    border-top: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .about-statement {
    order: 1;
    width: calc(100% + 7px);
    height: 457px;
    flex: 0 0 457px;
    padding: 0;
    font-size: 76.769px;
    line-height: 0.88;
    transform: translate(-7px, -7.533px);
  }

  .discipline-map {
    height: 600px;
  }

  .audience-card {
    left: calc(50% - 123.7625px);
    top: 211.057px;
    width: 247.525px;
    height: 176.018px;
    gap: 15.333px;
    padding: 16px;
    transform: none;
  }

  .audience-corner {
    width: 8.801px;
    height: 8.801px;
  }

  .audience-corner-tl {
    top: -4.4px;
    left: -4.4px;
    background: var(--blue-light);
  }

  .audience-corner-tr {
    top: -4.4px;
    right: -4.4px;
    background: var(--pink-pale);
  }

  .audience-corner-bl {
    bottom: -4.4px;
    left: -4.4px;
    background: var(--purple);
  }

  .audience-corner-br {
    right: -4.4px;
    bottom: -4.4px;
    background: var(--orange-light);
  }

  .audience-card h2 {
    font-size: 28px;
    line-height: 0.9;
  }

  .audience-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .discipline-lines {
    background-image:
      linear-gradient(90deg, transparent calc(50% - 123.7625px), rgba(255,255,255,.24) calc(50% - 123.7625px) calc(50% - 123.2125px), transparent calc(50% - 123.2125px)),
      linear-gradient(90deg, transparent calc(50% + 123.7625px), rgba(255,255,255,.24) calc(50% + 123.7625px) calc(50% + 124.3125px), transparent calc(50% + 124.3125px)),
      linear-gradient(0deg, transparent 211.057px, rgba(255,255,255,.24) 211.057px 211.607px, transparent 211.607px),
      linear-gradient(0deg, transparent 387.075px, rgba(255,255,255,.24) 387.075px 387.625px, transparent 387.625px);
    opacity: 1;
  }

  .discipline-tags {
    position: absolute;
    inset: 0;
  }

  .discipline-tags span {
    width: max-content;
    min-height: 17.602px;
    gap: 6.601px;
    padding-right: 8.801px;
    font-size: 7.041px;
    line-height: 9.857px;
    transform: none;
    white-space: nowrap;
  }

  .discipline-tags span::before {
    width: 17.052px;
    height: 17.602px;
  }

  .discipline-tags .tag-neutral::before {
    width: 16.502px;
    height: 16.502px;
  }

  .discipline-tags span:nth-child(1) { left: 23.467%; top: 40.444px; }
  .discipline-tags span:nth-child(2) { left: 2.133%; top: 146.4px; }
  .discipline-tags span:nth-child(3) { left: 33.867%; top: 128.511px; }
  .discipline-tags span:nth-child(4) { left: -6.133%; top: 230.451px; }
  .discipline-tags span:nth-child(5) { left: 65.867%; top: 67.4px; }
  .discipline-tags span:nth-child(6) { left: 13.867%; top: 455.531px; }
  .discipline-tags span:nth-child(7) { left: 85.333%; top: 359.513px; }
  .discipline-tags span:nth-child(8) { left: 75.733%; top: 508.4px; }
  .discipline-tags span:nth-child(9) { left: 36.533%; top: 534.519px; }
  .discipline-tags span:nth-child(10) { left: -6.133%; top: 346.448px; }
  .discipline-tags span:nth-child(11) { left: 74.4%; top: 137.467px; }
  .discipline-tags span:nth-child(12) { left: 91.733%; top: 239.616px; }
  .discipline-tags span:nth-child(13) { left: 59.733%; top: 425.451px; }

  .happenings {
    height: 1956px;
    padding: 60px 16px;
  }

  .happenings > .content-wide {
    width: 100%;
  }

  .happenings-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .happenings-heading h2,
  .happenings-heading p {
    grid-column: 1;
  }

  .happenings-heading h2 {
    font-size: 28px;
    line-height: 1;
  }

  .happenings-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  .happenings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .happening-card {
    min-height: 250px;
    padding: 24px;
  }

  .happening-card:first-child { min-height: 254px; }
  .happening-card:last-child { min-height: 229px; }

  .happening-card > div {
    gap: 12px;
  }

  .happening-card:first-child > div {
    gap: 16px;
  }

  .happening-card h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .happening-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .happenings-footer {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 40px;
  }

  .happenings-footer .cta,
  .happenings-footer .plus-pattern {
    grid-column: 1;
  }

  .happenings-footer .plus-pattern {
    display: none;
  }

  .happenings-footer .cta {
    max-width: 100%;
    overflow: hidden;
  }

  .speakers {
    gap: 40px;
    padding: 60px 0 0;
  }

  .speakers-heading {
    width: 100%;
    height: 146px;
    gap: 18px;
    padding-inline: 16px;
  }

  .speakers-heading h2 {
    width: 100%;
    font-size: 28px;
    line-height: 1;
  }

  .speakers-grid {
    width: calc(100% + 1px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker > div {
    gap: 2px;
    padding: 40px 16px 16px;
  }

  .speaker h3 {
    font-size: 20px;
    line-height: 1;
  }

  .speaker p {
    margin-top: 0;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    text-transform: none;
  }

  .speaker-cta {
    display: none;
  }

  .speaker-cta-mobile {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding: 18px 18px 18px 26px;
    font-size: 16px;
    line-height: 1.2;
  }

  .speaker-cta-mobile span {
    max-width: 144px;
  }

  .platform {
    height: auto;
    min-height: 1274px;
    align-items: stretch;
    padding: 60px 16px;
    background: var(--black);
  }

  .platform-inner {
    width: 100%;
    gap: 40px;
  }

  .platform-copy {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 0;
    background: none;
  }

  .platform-copy > div {
    gap: 0;
  }

  .platform-copy .eyebrow {
    margin-bottom: 32px;
  }

  .platform-copy h2 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1;
  }

  .platform-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .platform-copy .cta {
    display: none;
  }

  .platform-steps {
    gap: 24px;
    padding: 0;
  }

  .platform-steps li {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    min-height: 100px;
    gap: 24px;
    padding: 16px;
  }

  .step-card strong {
    width: 194px;
    font-size: 18px;
    line-height: 1.3;
  }

  .platform-steps li > p {
    padding: 0;
    color: var(--gray-200);
    font-size: 16px;
    line-height: 1.5;
  }

  .platform-cta-mobile {
    display: flex;
    flex: 0 0 56px;
  }

  .lineup {
    height: auto;
    min-height: 0;
    gap: 16px;
    padding: 60px 16px;
  }

  .lineup-heading h2 {
    font-size: 76px;
    line-height: 0.9;
  }

  .lineup-heading .plus-pattern {
    display: none;
  }

  .day-card {
    gap: 40px;
    padding: 16px;
  }

  .day-card > header h3 {
    font-size: 48px;
    line-height: 0.9;
  }

  .day-card > header time {
    min-width: 0;
    padding: 10px 20px;
    font-size: 20px;
  }

  .stage-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stage,
  .stage-red {
    min-height: 140px;
  }

  .stage {
    padding: 16px;
  }

  .stage strong {
    font-size: 24px;
    line-height: 0.9;
  }

  .sessions {
    gap: 20px;
  }

  .sessions > div {
    min-height: 0;
    gap: 12px;
    padding-top: 20px;
  }

  .sessions > div:last-child {
    padding-bottom: 20px;
  }

  .sessions span {
    font-size: 18px;
    line-height: 1;
  }

  .sessions time {
    min-width: 90px;
    flex: 0 0 90px;
    font-size: 12px;
  }

  .sessions time::before {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    background-size: 20px 20px;
  }

  .ticket {
    height: 870px;
    min-height: 870px;
    display: block;
    padding: 0;
    background: var(--black);
  }

  .ticket-inner {
    width: 100%;
    max-width: none;
    min-height: 870px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: visible;
    background: var(--black);
  }

  .ticket-copy {
    width: 100%;
    height: 364px;
    min-height: 364px;
    gap: 24px;
    padding: 48px 16px 0;
  }

  .ticket-copy > div {
    gap: 0;
  }

  .ticket-kicker {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .ticket-kicker span {
    margin: 0 10px;
  }

  .ticket-copy h2 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1;
  }

  .ticket-copy > div > p:last-child,
  .ticket-copy ul {
    font-size: 14px;
    line-height: 1.5;
  }

  .ticket-copy ul {
    gap: 16px;
  }

  .ticket-card {
    width: 100%;
    height: 458px;
    min-height: 458px;
    padding: 16px;
    background: var(--ink);
  }

  .ticket-card-header {
    display: none;
  }

  .ticket-card-header-mobile {
    width: 100%;
    height: 64px;
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid var(--gray-700);
  }

  .ticket-card-header-mobile > img {
    width: 127.347px;
    height: 32px;
  }

  .ticket-lot {
    height: 32px;
    display: flex;
    align-items: stretch;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .ticket-lot > span {
    display: grid;
    place-items: center;
  }

  .ticket-lot > span:first-child {
    padding-inline: 12px;
    background: var(--pink-light);
  }

  .ticket-lot > span:last-child {
    width: 32px;
    background: var(--pink);
  }

  .ticket-card-body {
    min-height: 0;
    flex: 1 1 auto;
    gap: 32px;
    padding: 48px 16px;
  }

  .price {
    margin: 0;
  }

  .price strong {
    font-size: 80px;
  }

  .price small {
    font-size: 32px;
  }

  .ticket-card .cta {
    min-height: 60px;
    padding: 20px 20px 20px 28px;
    font-size: 16px;
  }

  .ticket-card-action {
    width: 100%;
    gap: 16px;
  }

  .faq {
    min-height: 1132px;
    display: block;
    padding: 60px 16px;
  }

  .faq > .content-wide {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }

  .faq-heading {
    height: 64px;
    flex: 0 0 64px;
    padding-bottom: 20px;
  }

  .faq-heading h2 {
    font-size: 28px;
    line-height: 0.9;
    transform: none;
    white-space: nowrap;
  }

  .faq-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 0;
  }

  .questions summary {
    height: auto;
    min-height: 70px;
    padding: 20px 0;
    font-size: 20px;
    line-height: 1.5;
  }

  .questions summary::after {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    background-size: 20px 20px;
  }

  .questions details > p {
    max-width: none;
    padding: 0 24px 20px 0;
    font-size: 14px;
  }

  .support-card {
    width: 100%;
    height: 290px;
    min-height: 290px;
    padding: 16px;
  }

  .support-card .cta {
    min-height: 48px;
    padding: 14px 14px 14px 22px;
    font-size: 14px;
  }

  .sponsors {
    height: 498px;
    min-height: 498px;
    max-height: 498px;
  }

  .sponsor-row span {
    font-size: 80px;
    line-height: 0.9;
    text-shadow: 0 321px 0 #ffe5ff;
    transform: none;
  }

  .sponsor-row {
    overflow: visible;
  }

  .sponsor-row-track {
    gap: 0;
    transform: translateX(-6px) !important;
  }

  .sponsor-row-top { top: 0; }
  .sponsor-row-middle { top: 61px; }
  .sponsor-row-bottom { top: 122px; }

  .sponsor-badge {
    display: none;
  }

  .sponsor-badge-mobile {
    position: absolute;
    z-index: 1;
    display: block;
    top: 77.47px;
    left: 43px;
    width: 81px;
    height: 80px;
    rotate: -60deg;
  }

  .sponsor-logos {
    z-index: 1;
    top: 226px;
    left: 50%;
    width: 273.22px;
    justify-content: center;
    gap: 28.62px;
    transform: translateX(-50%);
  }

  .sponsor-logos img:first-child { width: 100.11px; height: 46.749px; }
  .sponsor-logos img:last-child { width: 144.488px; height: 38.424px; }

  .sponsor-partner-cta {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
    font-size: 15px;
  }

  .sponsor-partner-email {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .page-footer {
    height: 480px;
    min-height: 480px;
    padding: 16px;
  }

  .footer-inner {
    width: 100%;
    gap: 38px;
  }

  .footer-brand {
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 269.731;
    content: url("./assets/web/footer-leiautar-dots-mobile.svg");
  }

  .footer-meta {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
  }

  .footer-legal {
    width: auto;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-description {
    display: none;
  }

  .footer-social {
    width: 80px;
    justify-content: flex-end;
    gap: 8px;
  }

  .footer-social a,
  .footer-social img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 350px) {
  .step-card {
    gap: 12px;
  }

  .step-card strong {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
}

/* Motion system */
:root {
  --motion-fast: 250ms;
  --motion-medium: 500ms;
  --motion-slow: 700ms;
  --motion-rise: 12px;
  --motion-blur: 3px;
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-scale: cubic-bezier(0.32, 0.72, 0, 1);
  --stagger-dur: 500ms;
  --stagger-distance: 12px;
  --stagger-stagger: 40ms;
  --stagger-blur: 3px;
  --stagger-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-enabled .motion-hero-surface {
  opacity: 0;
  scale: 1.012;
  transform-origin: center;
  transition-property: opacity, scale;
  transition-duration: 700ms, 900ms;
  transition-timing-function: var(--motion-ease-out);
  will-change: opacity, scale;
}

.motion-enabled.motion-loaded .motion-hero-surface {
  opacity: 1;
  scale: 1;
}

/* Lines start translated down + blurred + invisible; .is-shown
   on the parent flips them to their resting state. The second
   line's transition-delay holds it back by --stagger-stagger
   so the eye lands on the headline first. */
.t-stagger-line {
  display: block;
  opacity: 0;
  transform: translateY(var(--stagger-distance));
  filter: blur(var(--stagger-blur));
  transition:
    opacity   var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease),
    filter    var(--stagger-dur) var(--stagger-ease);
  will-change: transform, opacity, filter;
}
.t-stagger-line--2 { transition-delay: var(--stagger-stagger); }

.t-stagger.is-shown .t-stagger-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Exit decouples from the stagger: same fade for every line,
   no Y return, no blur — so the disappearance reads as a
   single quiet fade instead of a reverse reveal. */
.t-stagger.is-hiding .t-stagger-line {
  opacity: 0;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 200ms ease,
    transform 0s linear,
    filter 0s linear;
  transition-delay: 0s;
}

html:not(.motion-enabled) .t-stagger-line {
  opacity: 1;
  transform: none;
  filter: none;
}

.motion-enabled .motion-reveal,
.motion-enabled .motion-hero-item {
  opacity: 0;
  transform: translateY(var(--motion-rise));
  filter: blur(var(--motion-blur));
  transition-property: opacity, transform, filter;
  transition-duration: var(--motion-medium);
  transition-timing-function: var(--motion-ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-enabled .motion-reveal--scale {
  transform: scale(0.96);
  filter: blur(0);
  transform-origin: center;
  transition-duration: 600ms;
  transition-timing-function: var(--motion-ease-scale);
}

.motion-enabled .motion-reveal--hero {
  transform: translateY(30px);
  filter: blur(6px);
  transition-duration: 760ms;
  transition-timing-function: var(--motion-ease-out);
}

.motion-enabled .motion-reveal--card {
  transform: translateY(18px) scale(0.985);
  filter: blur(0);
  transition-duration: 600ms;
}

.motion-enabled .motion-reveal--soft {
  transform: scale(0.98);
  filter: blur(3px);
  transition-duration: 650ms;
  transition-timing-function: var(--motion-ease-scale);
}

.motion-enabled .motion-reveal.is-visible,
.motion-enabled.motion-loaded .motion-hero-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.motion-enabled .motion-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition-property: opacity, transform;
  transition-duration: var(--motion-slow);
  transition-timing-function: var(--motion-ease-editorial);
  transition-delay: var(--word-delay, 0ms);
}

.motion-enabled .motion-words.is-visible .motion-word {
  opacity: 1;
  transform: translateY(0);
}

.cta {
  transition-property: transform, scale, filter;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.cta-icon {
  transition-property: translate, scale, filter;
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--motion-ease-out);
}

.cta:active {
  scale: 0.96;
}

.questions summary::after {
  transition-property: transform, scale, filter;
  transition-duration: var(--motion-fast);
  transition-timing-function: var(--motion-ease-out);
}

.date-card {
  transition-property: translate, box-shadow;
  transition-duration: 350ms;
  transition-timing-function: var(--motion-ease-out);
}

.happening-card > img,
.speaker > img,
.step-card,
.step-icon img,
.platform-steps li > p,
.sessions time,
.footer-social a {
  transition-duration: 350ms;
  transition-timing-function: var(--motion-ease-out);
}

.happening-card > img {
  transition-property: transform;
}

.speaker > img {
  transition-property: scale, filter;
}

.step-card {
  transition-property: transform, filter;
}

.step-icon img {
  transition-property: transform;
}

.platform-steps li > p {
  transition-property: color, transform;
}

.sessions time {
  transition-property: transform, filter;
}

.footer-social a {
  transition-property: transform, filter;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover .cta-icon,
  .cta:focus-visible .cta-icon {
    translate: 3px 3px;
  }

  .ticket-card .cta:hover .cta-icon,
  .ticket-card .cta:focus-visible .cta-icon,
  .support-card .cta:hover .cta-icon,
  .support-card .cta:focus-visible .cta-icon {
    translate: 3px -3px;
  }

  .brand:hover img {
    scale: 1.035;
  }

  .date-cards:hover .date-card-blue {
    translate: -8px -4px;
    box-shadow: 2px 9px 20px rgba(0, 0, 0, 0.22);
  }

  .date-cards:hover .date-card-pink {
    translate: 8px 4px;
    box-shadow: 2px 9px 20px rgba(0, 0, 0, 0.22);
  }

  .happening-card:hover > img {
    transform: translateY(-4px) rotate(-3deg);
  }

  .tag-row {
    transition-property: transform;
    transition-duration: var(--motion-fast);
    transition-timing-function: var(--motion-ease-out);
  }

  .tag-row .tag-icon {
    transition-property: transform;
    transition-duration: var(--motion-fast);
    transition-timing-function: var(--motion-ease-out);
  }

  .tag-row:hover {
    transform: translateX(5px);
  }

  .tag-row:hover .tag-icon {
    transform: rotate(90deg);
  }

  .discipline-tags span {
    transition-property: scale, filter;
    transition-duration: var(--motion-fast);
    transition-timing-function: var(--motion-ease-out);
  }

  .discipline-tags span:hover {
    z-index: 4;
    scale: 1.06;
    filter: brightness(1.04);
  }

  .speaker:hover > img {
    scale: 1.035;
    filter: brightness(1.04);
  }

  .platform-steps li:hover .step-card {
    transform: translateX(8px);
    filter: brightness(1.03);
  }

  .platform-steps li:hover .step-icon img {
    transform: scale(1.08);
  }

  .platform-steps li:hover > p {
    color: var(--white);
    transform: translateX(4px);
  }

  .sessions > div:hover time {
    transform: translateX(-4px);
    filter: brightness(0.96);
  }

  .footer-social a:hover,
  .footer-social a:focus-visible {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-stagger-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .motion-reveal,
  .motion-hero-item,
  .motion-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .cta:hover,
  .cta:active,
  .cta-icon,
  .date-card,
  .happening-card > img,
  .tag-row,
  .tag-row .tag-icon,
  .discipline-tags span,
  .speaker > img,
  .speaker > div,
  .step-card,
  .step-icon img,
  .platform-steps li > p,
  .sessions time,
  .footer-social a {
    transform: none !important;
    translate: none !important;
    scale: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .brand-cursor-ring__asset { animation: none; }
}
