:root {
	--lpt-black: #050608;
	--lpt-coal: #0c1015;
	--lpt-panel: #121820;
	--lpt-gold: #e7a62b;
	--lpt-gold-light: #ffd77a;
	--lpt-blue: #2469ff;
	--lpt-white: #f7f5ef;
	--lpt-muted: #a9adb5;
	--lpt-line: rgb(255 255 255 / 12%);
	--lpt-max: 80rem;
	--lpt-radius: 1.5rem;
}

body.lpt-event-page {
	background: var(--lpt-black);
	color: var(--lpt-white);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

.lpt-event-page::before {
	position: fixed;
	z-index: -1;
	inset: 0;
	background:
		radial-gradient(circle at 10% 20%, rgb(231 166 43 / 8%), transparent 30rem),
		radial-gradient(circle at 90% 55%, rgb(36 105 255 / 5%), transparent 26rem),
		var(--lpt-black);
	content: "";
}

.lpt-event-page a {
	color: inherit;
}

.lpt-event-page h1,
.lpt-event-page h2,
.lpt-event-page h3,
.lpt-event-page p {
	margin-block-start: 0;
}

.lpt-event-page h1,
.lpt-event-page h2,
.lpt-event-page h3 {
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.lpt-event-page h2 {
	max-width: 15ch;
	font-size: clamp(2.75rem, 6vw, 6.5rem);
}

.lpt-event-page :focus-visible {
	outline: 3px solid var(--lpt-gold-light);
	outline-offset: 4px;
}

.lpt-event-nav {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	min-height: 5.25rem;
	padding: 1rem max(1.25rem, calc((100% - var(--lpt-max)) / 2));
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid transparent;
	transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.lpt-event-nav.is-scrolled,
.lpt-event-nav.is-open {
	border-color: var(--lpt-line);
	background: rgb(5 6 8 / 88%);
	backdrop-filter: blur(1.25rem);
}

.lpt-event-nav__brand {
	display: grid;
	color: var(--lpt-white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.lpt-event-nav__brand strong {
	margin-top: 0.25rem;
	color: var(--lpt-gold);
	font-size: 1rem;
}

.lpt-event-nav__menu {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.lpt-event-nav__menu > a:not(.lpt-button) {
	color: #d6d5d1;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.lpt-event-nav__toggle {
	display: none;
}

.lpt-event-landing {
	overflow-x: clip;
}

.lpt-section {
	width: min(calc(100% - 2.5rem), var(--lpt-max));
	margin-inline: auto;
	padding-block: clamp(6rem, 12vw, 11rem);
}

.lpt-section__intro {
	margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.lpt-section__intro--center {
	display: grid;
	justify-items: center;
	text-align: center;
}

.lpt-section__intro--center p:not(.lpt-eyebrow) {
	max-width: 42rem;
	color: var(--lpt-muted);
}

.lpt-eyebrow {
	margin-bottom: 1.25rem;
	color: var(--lpt-gold);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.lpt-button {
	display: inline-flex;
	min-height: 3.5rem;
	padding: 0.8rem 1.4rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--lpt-gold);
	border-radius: 999px;
	background: var(--lpt-gold);
	color: #080706 !important;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.lpt-button:hover {
	transform: translateY(-2px);
	background: var(--lpt-gold-light);
}

.lpt-button--hero {
	position: relative;
	overflow: hidden;
	gap: 0.75rem;
	box-shadow: 0 0 0 1px rgb(255 197 77 / 20%), 0 0.75rem 2.5rem rgb(231 166 43 / 18%);
	animation: lpt-cta-float 2.8s ease-in-out infinite;
}

.lpt-button--hero::before {
	position: absolute;
	top: -50%;
	left: -45%;
	width: 28%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 70%), transparent);
	content: "";
	transform: rotate(18deg);
	animation: lpt-cta-shine 3.5s ease-in-out infinite;
}

.lpt-button--hero span,
.lpt-button--hero i {
	position: relative;
	z-index: 1;
}

.lpt-button--hero i {
	font-size: 1.1rem;
	font-style: normal;
	transition: transform 180ms ease;
}

.lpt-button--hero:hover i,
.lpt-button--hero:focus-visible i {
	transform: translateX(0.4rem);
}

.lpt-button--hero:focus-visible {
	outline: 3px solid var(--lpt-white);
	outline-offset: 4px;
}

.lpt-button--small {
	min-height: 2.75rem;
	padding-inline: 1.1rem;
}

.lpt-button--ghost {
	border-color: rgb(255 255 255 / 38%);
	background: rgb(5 6 8 / 35%);
	color: var(--lpt-white) !important;
	backdrop-filter: blur(0.5rem);
}

.lpt-button--ghost:hover {
	border-color: var(--lpt-white);
	background: var(--lpt-white);
	color: var(--lpt-black) !important;
}

.lpt-button--discover {
	position: relative;
	overflow: hidden;
	gap: 0.75rem;
	box-shadow: inset 0 0 0 0 rgb(255 255 255 / 0%), 0 0.75rem 2rem rgb(0 0 0 / 18%);
	animation: lpt-discover-pulse 3.4s ease-in-out infinite;
}

.lpt-button--discover::before {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(110deg, transparent 20%, rgb(255 255 255 / 13%) 48%, transparent 76%);
	content: "";
	transform: translateX(-110%);
	animation: lpt-discover-shine 4s ease-in-out infinite 0.7s;
}

.lpt-button--discover span,
.lpt-button--discover i {
	position: relative;
	z-index: 1;
}

.lpt-button--discover i {
	font-style: normal;
	transition: transform 220ms ease;
	animation: lpt-discover-arrow 1.8s ease-in-out infinite;
}

.lpt-button--discover:hover i,
.lpt-button--discover:focus-visible i {
	transform: translateY(0.25rem);
}

.lpt-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.lpt-hero {
	position: relative;
	display: block;
	min-height: 100svh;
	isolation: isolate;
	background: var(--lpt-black);
}

.lpt-hero::before,
.lpt-hero::after {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	content: "";
	filter: blur(1px);
}

.lpt-hero::before {
	bottom: 15%;
	left: 8%;
	width: 5px;
	height: 5px;
	box-shadow: 2rem -4rem #e7a62b, 8rem 1rem #e7a62b, 16rem -2rem #e7a62b, 24rem 3rem #e7a62b, 33rem -5rem #e7a62b;
	animation: lpt-embers 6s ease-in-out infinite alternate;
}

.lpt-hero::after {
	inset: 0;
	border-radius: 0;
	background: linear-gradient(110deg, transparent 45%, rgb(231 166 43 / 8%) 70%, transparent 88%);
	pointer-events: none;
}

.lpt-hero__media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	background-image: var(--lpt-hero-image);
	background-position: var(--lpt-hero-position, center);
	background-repeat: no-repeat;
	background-size: cover;
	transform-origin: center;
	animation: lpt-hero-arrival 1.9s cubic-bezier(0.16, 0.72, 0.2, 1) both;
}

.lpt-hero [data-cinematic-eyebrow] {
	animation: lpt-cinematic-label-arrival 1.1s cubic-bezier(0.16, 0.72, 0.2, 1) 350ms both;
}

.lpt-hero__media::before {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / var(--lpt-hero-overlay, 0.45));
	content: "";
	pointer-events: none;
}

.lpt-hero.is-align-center .lpt-hero__content {
	margin-inline: auto;
	text-align: center;
}

.lpt-hero.is-align-center .lpt-actions {
	justify-content: center;
}

.lpt-hero.is-align-right .lpt-hero__content {
	margin-left: auto;
	text-align: right;
}

.lpt-hero.is-align-right .lpt-actions {
	justify-content: flex-end;
}

.lpt-hero__motto {
	color: var(--lpt-gold-light);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-hero__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 16%;
	background: linear-gradient(transparent, var(--lpt-black));
	content: "";
	pointer-events: none;
}

.lpt-hero__editorial {
	position: relative;
	display: grid;
	min-height: 27rem;
	margin-top: -1px;
	padding: 3.5rem max(1.25rem, calc((100% - var(--lpt-max)) / 2)) 5rem;
	align-items: center;
	background:
		radial-gradient(circle at 18% 15%, rgb(231 166 43 / 12%), transparent 34rem),
		var(--lpt-black);
}

.lpt-hero__glow {
	position: absolute;
	z-index: -1;
	bottom: -12rem;
	left: 32%;
	width: 45rem;
	height: 24rem;
	border-radius: 50%;
	background: rgb(231 126 20 / 14%);
	filter: blur(5rem);
}

.lpt-hero__content {
	position: relative;
	max-width: 61rem;
	padding-left: 1.5rem;
}

.lpt-hero__content::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	background: linear-gradient(transparent, var(--lpt-gold-light) 18%, var(--lpt-gold) 82%, transparent);
	content: "";
	box-shadow: 0 0 1.5rem rgb(231 166 43 / 50%);
	animation: lpt-event-data-glow 2.8s ease-in-out infinite;
}

.lpt-hero h1 {
	max-width: 18ch;
	margin-bottom: 1rem;
	font-size: clamp(2.8rem, 5.4vw, 5.75rem);
	text-wrap: balance;
}

.lpt-hero__lead {
	max-width: 36rem;
	margin-bottom: 2rem;
	color: #d6d5d1;
	font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.lpt-hero__meta {
	display: flex;
	margin-bottom: 2.25rem;
	gap: 0.6rem;
	flex-wrap: wrap;
	color: var(--lpt-white);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lpt-hero__meta span {
	position: relative;
	padding: 0.65rem 1rem 0.65rem 2.45rem;
	border: 1px solid rgb(231 166 43 / 24%);
	border-radius: 999px;
	background: linear-gradient(120deg, rgb(255 255 255 / 7%), rgb(231 166 43 / 5%));
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
	animation: lpt-meta-rise 3.8s ease-in-out infinite;
}

.lpt-hero__meta span:first-child {
	padding-left: 2.45rem;
}

.lpt-hero__meta span:nth-child(2) {
	animation-delay: 180ms;
}

.lpt-hero__meta span:nth-child(3) {
	animation-delay: 360ms;
}

.lpt-hero__meta span::before {
	position: absolute;
	top: 50%;
	left: 0.9rem;
	color: var(--lpt-gold-light);
	font-size: 1rem;
	line-height: 1;
	text-shadow: 0 0 0.85rem rgb(231 166 43 / 65%);
	transform: translateY(-50%);
}

.lpt-hero__meta span:nth-child(1)::before {
	content: "◫";
}

.lpt-hero__meta span:nth-child(2)::before {
	content: "◷";
}

.lpt-hero__meta span:nth-child(3)::before {
	content: "◆";
}

.lpt-hero__scroll {
	position: absolute;
	right: max(1.25rem, calc((100% - var(--lpt-max)) / 2));
	bottom: 4rem;
	display: grid;
	gap: 0.75rem;
	justify-items: center;
	color: var(--lpt-muted);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-decoration: none;
	text-transform: uppercase;
}

.lpt-hero__scroll i {
	display: block;
	width: 1px;
	height: 3rem;
	background: linear-gradient(var(--lpt-gold), transparent);
}

.lpt-countdown {
	position: relative;
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	gap: 5rem;
	align-items: center;
	isolation: isolate;
}

.lpt-fire-particle {
	position: fixed;
	z-index: 1200;
	top: 0;
	left: 0;
	width: var(--lpt-fire-size);
	height: calc(var(--lpt-fire-size) * 1.35);
	border-radius: 75% 25% 70% 30% / 70% 30% 70% 30%;
	background: radial-gradient(circle at 68% 65%, #fff2b2 0 13%, var(--lpt-gold-light) 25%, var(--lpt-gold) 54%, #e96c11 78%, transparent 80%);
	box-shadow: 0 0 0.8rem rgb(231 166 43 / 82%), 0 0 1.6rem rgb(233 108 17 / 34%);
	pointer-events: none;
	transform: translate3d(var(--lpt-fire-x), var(--lpt-fire-y), 0) translate(-50%, -50%) rotate(45deg) scale(0.35);
	animation: lpt-fire-trail 720ms cubic-bezier(0.18, 0.65, 0.28, 1) forwards;
}

.lpt-countdown .lpt-section__intro {
	margin: 0;
}

.lpt-countdown h2 {
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.lpt-countdown__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}

.lpt-countdown__grid > div {
	position: relative;
	display: grid;
	min-width: 0;
	padding: 2rem 0.75rem 1.5rem;
	overflow: hidden;
	border: 1px solid rgb(231 166 43 / 32%);
	border-radius: 1rem;
	background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(231 166 43 / 4%));
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%), 0 1.25rem 3rem rgb(0 0 0 / 24%);
	justify-items: center;
	backdrop-filter: blur(0.6rem);
	animation: lpt-countdown-card 4s ease-in-out infinite;
}

.lpt-countdown__grid > div:nth-child(2) {
	animation-delay: 180ms;
}

.lpt-countdown__grid > div:nth-child(3) {
	animation-delay: 360ms;
}

.lpt-countdown__grid > div:nth-child(4) {
	animation-delay: 540ms;
}

.lpt-countdown__grid > div::before {
	position: absolute;
	top: 0;
	left: 18%;
	width: 64%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--lpt-gold-light), transparent);
	content: "";
	box-shadow: 0 0 1.25rem var(--lpt-gold);
}

.lpt-countdown__grid > div::after {
	position: absolute;
	inset: 20% 15%;
	z-index: -1;
	border-radius: 50%;
	background: rgb(231 166 43 / 7%);
	content: "";
	filter: blur(1rem);
	animation: lpt-countdown-glow 2.4s ease-in-out infinite alternate;
}

.lpt-countdown__grid strong {
	color: var(--lpt-white);
	font-size: clamp(2.8rem, 5.8vw, 5.5rem);
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.06em;
	line-height: 1;
	text-shadow: 0 0 2rem rgb(231 166 43 / 18%);
}

.lpt-countdown__grid strong.is-changing {
	animation: lpt-countdown-change 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lpt-countdown__grid span {
	margin-top: 0.6rem;
	color: var(--lpt-muted);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.lpt-vision {
	display: grid;
	min-height: 80vh;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 6rem;
	align-items: center;
}

.lpt-vision__statement p {
	color: var(--lpt-muted);
	font-size: clamp(1.4rem, 3vw, 2.6rem);
	letter-spacing: -0.035em;
}

.lpt-vision__statement h2 {
	max-width: 12ch;
	margin: 0;
	background: linear-gradient(115deg, var(--lpt-white), var(--lpt-gold-light));
	background-clip: text;
	color: transparent;
}

.lpt-vision__content {
	padding-left: 2rem;
	border-left: 1px solid var(--lpt-gold);
	color: var(--lpt-muted);
	font-size: 1.1rem;
}

.lpt-pillars {
	width: 100%;
	max-width: none;
	padding-inline: max(1.25rem, calc((100% - var(--lpt-max)) / 2));
	background: linear-gradient(180deg, transparent, #0b0e12 25%, #0b0e12 75%, transparent);
}

.lpt-pillars__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--lpt-line);
	border-bottom: 1px solid var(--lpt-line);
}

.lpt-pillar {
	position: relative;
	overflow: hidden;
	min-height: 15rem;
	padding: 0;
	border-left: 1px solid var(--lpt-line);
	background: linear-gradient(145deg, rgb(255 255 255 / 2%), transparent);
	perspective: 65rem;
	text-align: center;
	transition: background 300ms ease, transform 300ms ease;
}

.lpt-pillar:hover {
	background: linear-gradient(180deg, rgb(231 166 43 / 7%), transparent);
}

.lpt-pillar__flip {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	transform-style: preserve-3d;
	transition: transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.lpt-pillar.is-flipped .lpt-pillar__flip {
	transform: rotateY(180deg);
}

.lpt-pillar__face {
	position: absolute;
	inset: 0;
	display: grid;
	padding: 2rem 1.25rem;
	place-content: center;
	justify-items: center;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.lpt-pillar__front > strong {
	font-size: 1.3rem;
	letter-spacing: -0.025em;
	line-height: 1;
}

.lpt-pillar__back {
	background:
		radial-gradient(circle at 50% 30%, rgb(231 166 43 / 18%), transparent 8rem),
		linear-gradient(145deg, #17130c, #090b0f 72%);
	transform: rotateY(180deg);
}

.lpt-pillar__back::before {
	position: absolute;
	inset: 0.75rem;
	border: 1px dashed rgb(231 166 43 / 22%);
	content: "";
}

.lpt-pillar__back > * {
	position: relative;
	z-index: 1;
}

.lpt-pillar__back > i {
	color: var(--lpt-gold-light);
	font-size: 1.5rem;
	font-style: normal;
}

.lpt-pillar__back > strong {
	margin-top: 0.75rem;
	font-size: 1.05rem;
	line-height: 1;
}

.lpt-pillar__back > small {
	max-width: 15rem;
	margin-top: 0.85rem;
	color: #c2c4c8;
	font-size: 0.72rem;
	line-height: 1.45;
}

.lpt-pillar__back > em {
	margin-top: 1rem;
	color: #777c85;
	font-size: 0.58rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-pillar:first-child {
	border-left: 0;
}

.lpt-pillar__emblem {
	position: relative;
	display: grid;
	width: 5.25rem;
	height: 5.25rem;
	margin: 0 auto 2.75rem;
	place-items: center;
	border-radius: 50%;
	background: radial-gradient(circle, rgb(231 166 43 / 15%), transparent 68%);
	color: var(--lpt-gold);
	font-size: 1.75rem;
	filter: drop-shadow(0 0 1.2rem rgb(231 166 43 / 18%));
	animation: lpt-pillar-float 3.4s ease-in-out infinite;
	animation-delay: calc(var(--lpt-pillar-order) * 170ms);
}

.lpt-pillar__emblem::before,
.lpt-pillar__emblem::after,
.lpt-pillar__emblem i {
	position: absolute;
	inset: 0;
	border: 1px solid rgb(231 166 43 / 45%);
	border-radius: 50%;
	content: "";
}

.lpt-pillar__emblem::before {
	animation: lpt-emblem-orbit 7s linear infinite;
}

.lpt-pillar__emblem::after {
	inset: 0.55rem;
	border-style: dashed;
	border-color: rgb(255 215 122 / 42%);
	animation: lpt-emblem-orbit 5s linear infinite reverse;
}

.lpt-pillar__emblem i {
	inset: 1.25rem;
	border: 0;
	background: radial-gradient(circle at 35% 30%, var(--lpt-gold-light), var(--lpt-gold) 45%, #633b08 100%);
	box-shadow: 0 0 1.5rem rgb(231 166 43 / 36%);
}

.lpt-pillar__emblem b {
	position: relative;
	z-index: 1;
	color: #090705;
	font-size: 1.2rem;
}

.lpt-prophets__carousel {
	position: relative;
}

.lpt-prophets__grid {
	display: flex;
	gap: 1rem;
	padding: 0.75rem 0 2rem;
	overflow: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.lpt-prophets__grid::-webkit-scrollbar {
	display: none;
}

.lpt-prophets__grid::after {
	flex: 0 0 calc((100% - 2rem) / 3);
	content: "";
}

.lpt-prophet {
	position: relative;
	overflow: hidden;
	min-width: 0;
	aspect-ratio: 2 / 3;
	flex: 0 0 calc((100% - 2rem) / 3);
	border: 1px solid var(--lpt-line);
	border-radius: var(--lpt-radius);
	background: var(--lpt-panel);
	box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
	transform-style: preserve-3d;
	transition: border-color 350ms ease, box-shadow 350ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
	scroll-snap-align: start;
}

.lpt-prophet::before {
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(120deg, transparent 28%, rgb(255 255 255 / 10%) 48%, transparent 68%);
	content: "";
	pointer-events: none;
	transform: translateX(-120%);
	transition: transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lpt-prophets .lpt-section__intro {
	margin-bottom: 2.25rem;
}

.lpt-prophets .lpt-section__intro h2 {
	font-size: clamp(2.35rem, 5.25vw, 5rem);
}

.lpt-prophet:nth-child(4),
.lpt-prophet:nth-child(5) {
	grid-column: auto;
}

.lpt-prophet__flip {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
}

.lpt-prophet__face,
.lpt-prophet__front {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.lpt-prophet__back {
	display: none;
}

.lpt-prophet__back > video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: #000;
	object-fit: contain;
	object-position: center;
}

.lpt-prophets__controls {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	width: calc(100% + 5.5rem);
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.lpt-prophets__controls button {
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	padding: 0;
	place-items: center;
	border: 1px solid rgb(231 166 43 / 48%);
	border-radius: 50%;
	background: linear-gradient(145deg, rgb(231 166 43 / 18%), rgb(255 255 255 / 4%));
	color: var(--lpt-gold-light);
	font-size: 1.25rem;
	box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 24%);
	pointer-events: auto;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lpt-prophets__controls button:hover,
.lpt-prophets__controls button:focus-visible {
	border-color: var(--lpt-gold-light);
	background: var(--lpt-gold);
	color: var(--lpt-black);
	transform: scale(1.06);
}

.lpt-prophets__controls button:disabled {
	cursor: not-allowed;
	opacity: 0.3;
	transform: none;
}

.lpt-prophets__controls p {
	position: absolute;
	top: calc(50% + 21rem);
	left: 50%;
	margin: 0;
	color: #777c85;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-align: center;
	transform: translateX(-50%);
}

.lpt-prophets__controls strong {
	color: var(--lpt-gold-light);
	font-size: 1rem;
}

@media (min-width: 47.501rem) {
	.lpt-prophet {
		perspective: 75rem;
	}

	.lpt-prophet__flip {
		cursor: pointer;
		transform-style: preserve-3d;
		transition: transform 780ms cubic-bezier(0.2, 0.72, 0.2, 1);
	}

	.lpt-prophet.is-flipped .lpt-prophet__flip {
		transform: rotateY(180deg);
	}

	.lpt-prophet__face {
		overflow: hidden;
		border-radius: var(--lpt-radius);
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
	}

	.lpt-prophet__back {
		display: grid;
		padding: clamp(1.5rem, 3vw, 3rem);
		place-content: center;
		justify-items: center;
		border: 1px solid rgb(231 166 43 / 44%);
		background:
			radial-gradient(circle at 50% 34%, rgb(231 166 43 / 22%), transparent 12rem),
			linear-gradient(145deg, #15120d, #080a0e 68%);
		text-align: center;
		transform: rotateY(180deg);
	}

	.lpt-prophet__back::before,
	.lpt-prophet__back::after {
		position: absolute;
		inset: 1rem;
		border: 1px solid rgb(231 166 43 / 20%);
		border-radius: calc(var(--lpt-radius) - 0.45rem);
		content: "";
	}

	.lpt-prophet__back::after {
		inset: 1.45rem;
		border-style: dashed;
		border-color: rgb(231 166 43 / 12%);
	}

	.lpt-prophet__back > * {
		position: relative;
		z-index: 1;
	}

	.lpt-prophet__back i {
		display: grid;
		width: 4.5rem;
		height: 4.5rem;
		margin-bottom: 2rem;
		place-items: center;
		border: 1px solid rgb(231 166 43 / 45%);
		border-radius: 50%;
		background: rgb(231 166 43 / 10%);
		color: var(--lpt-gold-light);
		font-size: 1.4rem;
		font-style: normal;
		box-shadow: 0 0 2.5rem rgb(231 166 43 / 18%);
	}

	.lpt-prophet__back strong {
		max-width: 9ch;
		font-size: clamp(2rem, 3.5vw, 3.5rem);
		letter-spacing: -0.055em;
		line-height: 0.92;
	}

	.lpt-prophet__back small {
		margin-top: 1rem;
		color: var(--lpt-gold);
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.lpt-prophet__back em {
		margin-top: 2.25rem;
		color: #d5d2ca;
		font-size: 0.72rem;
		font-style: normal;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.lpt-prophet__back b {
		margin-top: 1.25rem;
		color: #777c85;
		font-size: 0.62rem;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}
}

.lpt-prophet img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lpt-prophet:hover img {
	transform: scale(1.025);
}

.lpt-prophet:hover,
.lpt-prophet:focus-within {
	border-color: rgb(231 166 43 / 55%);
	box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 34%), 0 0 2rem rgb(231 166 43 / 8%);
	transform: perspective(70rem) translateY(-0.55rem) rotateX(1.2deg) rotateY(-1.2deg);
}

.lpt-prophet:hover::before,
.lpt-prophet:focus-within::before {
	transform: translateX(120%);
}

.lpt-prophet__overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 5rem 1.5rem 1.5rem;
	background: linear-gradient(transparent, rgb(5 6 8 / 96%));
}

.lpt-prophet__overlay small {
	display: block;
	margin: -0.45rem 0 0.8rem;
	color: var(--lpt-gold);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lpt-prophet__overlay strong {
	display: block;
	margin-bottom: 0.75rem;
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.lpt-prophet__overlay em {
	display: block;
	color: #c2c4c8;
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lpt-activation-preview {
	display: flex;
	margin-top: 2.5rem;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	color: #777c85;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-activation-preview .is-current {
	color: var(--lpt-gold);
}

.lpt-activation-preview i {
	width: 3rem;
	height: 1px;
	background: var(--lpt-line);
}

.lpt-schedule__document {
	position: relative;
	width: min(100%, 58rem);
	margin-inline: auto;
	overflow: hidden;
	border: 1px solid rgb(231 166 43 / 30%);
	border-radius: 0.75rem;
	background:
		repeating-linear-gradient(0deg, rgb(255 255 255 / 2%) 0, rgb(255 255 255 / 2%) 1px, transparent 1px, transparent 2.9rem),
		linear-gradient(145deg, #15181d, #0c0f13);
	box-shadow: 0 2rem 5rem rgb(0 0 0 / 28%), inset 0 1px 0 rgb(255 255 255 / 6%);
}

.lpt-schedule__document::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 2.6rem;
	height: 2.6rem;
	background: linear-gradient(225deg, var(--lpt-black) 50%, rgb(231 166 43 / 18%) 51%);
	content: "";
}

.lpt-schedule__document > header {
	display: flex;
	padding: 1.5rem 2rem 1.25rem;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgb(231 166 43 / 24%);
	background: #050608;
}

.lpt-schedule__logo {
	width: clamp(3.5rem, 7vw, 5.5rem);
	height: auto;
	flex: 0 0 auto;
	object-fit: contain;
	animation: lpt-schedule-logo 4.5s ease-in-out infinite;
}

@keyframes lpt-schedule-logo {
	0%, 100% { filter: drop-shadow(0 0 0 rgb(231 166 43 / 0%)); transform: translateY(0); }
	50% { filter: drop-shadow(0 0 0.65rem rgb(231 166 43 / 28%)); transform: translateY(-0.18rem); }
}

.lpt-schedule__document header p {
	margin-bottom: 0.35rem;
	color: var(--lpt-gold);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lpt-schedule__document header h3 {
	margin: 0;
	font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.lpt-schedule__document header div > span {
	display: block;
	max-width: 38rem;
	margin-top: 0.65rem;
	color: var(--lpt-muted);
	font-size: 0.76rem;
	line-height: 1.55;
}

.lpt-schedule__document header > strong {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	color: var(--lpt-white);
	font-size: clamp(1rem, 2.2vw, 1.4rem);
	font-variant-numeric: tabular-nums;
}

.lpt-schedule__document header i {
	color: var(--lpt-gold);
	font-style: normal;
}

.lpt-schedule__agenda ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lpt-schedule__agenda.is-editable-table {
	overflow-x: auto;
}

.lpt-schedule__agenda.is-editable-table .lpt-schedule__columns,
.lpt-schedule__agenda.is-editable-table li {
	display: grid;
	min-width: max(100%, var(--lpt-program-min-width));
	grid-template-columns: repeat(var(--lpt-program-columns), minmax(0, 1fr));
	gap: 1rem;
}

.lpt-schedule__agenda.is-editable-table li {
	padding: 0.65rem 2rem 0.65rem 1rem;
}

.lpt-schedule__agenda.is-editable-table li > span {
	align-self: center;
}

.lpt-schedule__agenda.is-editable-table li > .is-time {
	color: var(--lpt-gold-light);
	font-variant-numeric: tabular-nums;
}

.lpt-schedule__body {
	display: grid;
	grid-template-columns: 1fr;
}

.lpt-schedule__body > aside {
	display: grid;
	padding: 1.5rem 0.75rem;
	align-content: start;
	justify-items: center;
	background: linear-gradient(180deg, #d88a12, #7f4506);
	color: #100b05;
	text-align: center;
}

.lpt-schedule__body > aside i {
	position: relative;
	display: grid;
	width: 6.25rem;
	height: 6.25rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem;
	place-items: center;
	align-content: center;
	border: 0.42rem solid #11151a;
	border-radius: 50%;
	background: var(--lpt-gold-light);
	font-style: normal;
	line-height: 1.05;
	box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 40%);
	transform-origin: 50% 90%;
	animation: lpt-schedule-stamp 4.2s cubic-bezier(0.22, 0.8, 0.25, 1) infinite;
}

.lpt-schedule__body > aside i::after {
	position: absolute;
	inset: -0.75rem;
	border: 0.18rem solid rgb(255 244 216 / 75%);
	border-radius: 50%;
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: scale(0.72);
	animation: lpt-schedule-ink 4.2s ease-out infinite;
}

.lpt-schedule__body > aside i span,
.lpt-schedule__body > aside i strong {
	display: block;
	font-weight: 1000;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
}

.lpt-schedule__body > aside i span {
	font-size: 0.56rem;
}

.lpt-schedule__body > aside i strong {
	max-width: 4.5rem;
	font-size: 0.76rem;
	letter-spacing: -0.01em;
}

@keyframes lpt-schedule-stamp {
	0%,
	10% {
		opacity: 0;
		transform: translateY(-2.8rem) rotate(-12deg) scale(1.35);
	}

	16% {
		opacity: 1;
		box-shadow: 0 0 0 0.12rem rgb(255 255 255 / 25%), 0 0 0 rgb(255 218 145 / 0%);
		transform: translateY(0.3rem) rotate(2deg) scale(0.84);
	}

	21% {
		box-shadow: 0 0 0 0.35rem rgb(255 255 255 / 68%), 0 0 2.6rem rgb(255 218 145 / 92%);
		transform: translateY(-0.2rem) rotate(-1deg) scale(1.08);
	}

	26%,
	88% {
		opacity: 1;
		box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 45%), 0 0 1rem rgb(255 218 145 / 42%);
		transform: translateY(0) rotate(-2deg) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(1rem) rotate(-2deg) scale(0.96);
	}
}

@keyframes lpt-schedule-ink {
	0%,
	15% {
		opacity: 0;
		transform: scale(0.72);
	}

	17% {
		opacity: 0.9;
		transform: scale(0.88);
	}

	29% {
		opacity: 0;
		transform: scale(1.28);
	}

	100% {
		opacity: 0;
		transform: scale(1.28);
	}
}

.lpt-schedule__body > aside strong {
	font-size: 2.6rem;
	letter-spacing: -0.08em;
	line-height: 1;
}

.lpt-schedule__body > aside span,
.lpt-schedule__body > aside small {
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lpt-schedule__columns {
	display: grid;
	padding: 0.65rem 2rem 0.65rem 1rem;
	grid-template-columns: 3.5rem 1fr 12rem;
	gap: 1rem;
	background: #fff;
	color: #000;
	box-shadow: inset 0 -0.2rem 0 var(--lpt-gold);
	font-size: 0.62rem;
	font-weight: 1000;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-schedule__agenda li {
	display: grid;
	min-height: 3.65rem;
	padding: 0.65rem 2rem 0.65rem 1rem;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	align-items: center;
	border-bottom: 1px solid rgb(255 255 255 / 7%);
}

.lpt-schedule__agenda li.is-break {
	min-height: 2.6rem;
	padding-block: 0.35rem;
	background: rgb(231 166 43 / 4%);
}

.lpt-schedule__agenda time {
	color: var(--lpt-gold-light);
	font-size: 0.78rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.lpt-schedule__agenda li > div {
	display: grid;
	gap: 1rem;
	align-items: baseline;
	grid-template-columns: 1fr 12rem;
}

.lpt-schedule__agenda strong {
	font-size: 0.95rem;
}

.lpt-schedule__agenda span {
	color: var(--lpt-muted);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lpt-schedule__agenda .is-break strong,
.lpt-schedule__agenda .is-break span {
	color: #7d8189;
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-schedule__document > footer {
	display: flex;
	padding: 0.85rem 2rem 0.85rem 6rem;
	align-items: center;
	justify-content: space-between;
	color: var(--lpt-muted);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-schedule__document > footer strong {
	color: var(--lpt-gold-light);
}

.lpt-kit,
.lpt-access,
.lpt-location,
.lpt-registration {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.lpt-kit__image,
.lpt-access__image {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--lpt-line);
	border-radius: var(--lpt-radius);
	background: var(--lpt-panel);
}

.lpt-kit__image img,
.lpt-access__image img {
	display: block;
	width: 100%;
	height: auto;
}

.lpt-kit__content p:not(.lpt-eyebrow),
.lpt-access__content p,
.lpt-registration__intro > p {
	max-width: 36rem;
	color: var(--lpt-muted);
	font-size: 1.08rem;
}

.lpt-kit__content ul,
.lpt-registration__intro ul {
	display: flex;
	padding: 0;
	gap: 0.6rem;
	flex-wrap: wrap;
	list-style: none;
}

.lpt-kit__content li {
	padding: 0.45rem 0.75rem;
	border: 1px solid var(--lpt-line);
	border-radius: 999px;
	color: #d3d2ce;
	font-size: 0.75rem;
}

.lpt-access {
	width: 100%;
	max-width: none;
	padding-inline: max(1.25rem, calc((100% - var(--lpt-max)) / 2));
	background: #0a0d11;
}

.lpt-access__image span {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.45rem 0.7rem;
	border: 1px solid rgb(255 255 255 / 30%);
	border-radius: 999px;
	background: rgb(5 6 8 / 72%);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	backdrop-filter: blur(0.5rem);
}

.lpt-access__steps {
	display: grid;
	margin: 2rem 0 0;
	padding: 0;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--lpt-line);
	list-style: none;
	counter-reset: access-step;
}

.lpt-access__steps li {
	padding: 1rem;
	background: #0a0d11;
	color: #d8d7d2;
	font-size: 0.75rem;
	font-weight: 700;
	counter-increment: access-step;
}

.lpt-access__steps li::before {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--lpt-gold);
	content: "0" counter(access-step);
	font-size: 0.65rem;
}

.lpt-resources__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
}

.lpt-resources__grid article {
	min-height: 15rem;
	padding: 1.5rem;
	border: 1px solid var(--lpt-line);
	border-radius: 1rem;
	background: linear-gradient(145deg, #121820, #090c10);
}

.lpt-resources__grid article > span {
	display: grid;
	width: 3rem;
	height: 3rem;
	margin-bottom: 4rem;
	place-items: center;
	border: 1px solid rgb(231 166 43 / 35%);
	border-radius: 50%;
	color: var(--lpt-gold);
}

.lpt-resources__grid h3 {
	margin-bottom: 0.65rem;
	font-size: 1.35rem;
}

.lpt-resources__grid p {
	color: #777c85;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lpt-location__visuals {
	display: grid;
	gap: 0.8rem;
}

.lpt-location:not(.has-images) {
	grid-template-columns: 1fr;
}

.lpt-location__map {
	position: relative;
	overflow: hidden;
	min-height: 22rem;
	border: 1px solid var(--lpt-line);
	border-radius: var(--lpt-radius);
	background: var(--lpt-panel);
}

.lpt-location__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(0.82) sepia(0.28) saturate(0.72) contrast(1.08);
}

.lpt-location__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 250px));
	gap: 0.8rem;
	max-width: 516px;
}

.lpt-location__gallery figure {
	display: block;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgb(231 166 43 / 28%);
	border-radius: 0.85rem;
	background: linear-gradient(145deg, rgb(231 166 43 / 6%), rgb(255 255 255 / 2%));
}

.lpt-location__gallery img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.lpt-location__gallery .is-facade img {
	object-fit: contain;
	object-position: center;
	background: #090b0f;
}

.lpt-location__gallery figcaption {
	padding: 0.65rem 0.8rem;
	color: var(--lpt-gold-light);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lpt-location__header {
	display: flex;
	width: 100%;
	gap: 1.5rem;
	align-items: center;
	align-self: start;
}

.lpt-location__header h2 {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(2rem, 3.5vw, 3.75rem);
}

.lpt-location__venue-logo {
	width: clamp(4rem, 6vw, 5.5rem);
	height: auto;
	flex: 0 0 auto;
	object-fit: contain;
}

.lpt-location__map-card {
	display: grid;
	width: min(100%, 516px);
	min-height: 150px;
	padding: 1.15rem;
	grid-template-columns: auto 1fr;
	align-content: center;
	align-items: center;
	gap: 0.25rem 1rem;
	border: 1px solid rgb(231 166 43 / 35%);
	border-radius: 0.85rem;
	background: radial-gradient(circle at 18% 30%, rgb(231 166 43 / 24%), transparent 28%), linear-gradient(135deg, #17130e, #090c12 62%, #12213b);
	box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 24%);
	color: var(--lpt-white);
	text-decoration: none;
}

.lpt-location__map-card:hover,
.lpt-location__map-card:focus-visible {
	border-color: var(--lpt-gold);
	transform: translateY(-2px);
}

.lpt-location__map-pin {
	display: grid;
	width: 3rem;
	height: 3rem;
	grid-row: 1 / 3;
	place-items: center;
	border: 1px solid rgb(231 166 43 / 55%);
	border-radius: 50% 50% 50% 0;
	background: var(--lpt-gold);
	color: #101218;
	font-size: 0.75rem;
	transform: rotate(-45deg);
}

.lpt-location__map-card small,
.lpt-location__map-card strong {
	display: block;
}

.lpt-location__map-card small {
	margin-bottom: 0.35rem;
	color: var(--lpt-gold-light);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lpt-location__map-card strong {
	line-height: 1.35;
}

.lpt-location__map-card b {
	grid-column: 2;
	color: var(--lpt-gold-light);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.lpt-location__gallery figure > span {
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	border: 1px solid rgb(231 166 43 / 35%);
	border-radius: 50%;
	color: var(--lpt-gold);
	font-size: 1.2rem;
}

.lpt-location__gallery strong,
.lpt-location__gallery small {
	display: block;
}

.lpt-location__gallery strong {
	font-size: 0.82rem;
}

.lpt-location__gallery small {
	margin-top: 0.25rem;
	color: #777c85;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lpt-location__content > p:not(.lpt-eyebrow) {
	max-width: 34rem;
	margin-bottom: 1.5rem;
	color: var(--lpt-muted);
}

.lpt-location__content address {
	max-width: 26rem;
	margin-bottom: 2rem;
	color: #d3d2ce;
	font-size: 1.25rem;
	font-style: normal;
}

.lpt-location__gallery:empty {
	display: none;
}

.lpt-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 7vw, 6rem);
	background: #0a0d11;
}

.lpt-contact nav {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.8rem;
}

.lpt-contact nav a {
	color: var(--lpt-gold-light);
	font-weight: 700;
}

.lpt-event-nav.is-static {
	position: absolute;
}

.lpt-event-nav__logo {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
}

.lpt-countdown.is-compact .lpt-countdown__grid > div {
	min-height: 8rem;
}

.lpt-countdown.is-line .lpt-countdown__grid > div {
	border-width: 0 0 2px;
	border-radius: 0;
}

.lpt-countdown.is-accent-blue .lpt-countdown__grid strong {
	color: #3277ff;
}

.lpt-countdown.is-accent-white .lpt-countdown__grid strong {
	color: #fff;
}

.lpt-text-link {
	color: var(--lpt-gold) !important;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-underline-offset: 0.4rem;
	text-transform: uppercase;
}

.lpt-faq {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 6rem;
}

.lpt-faq__item {
	border-top: 1px solid var(--lpt-line);
}

.lpt-faq__item:last-child {
	border-bottom: 1px solid var(--lpt-line);
}

.lpt-faq__item h3 {
	margin: 0;
}

.lpt-faq__item button {
	display: flex;
	width: 100%;
	padding: 1.5rem 0;
	align-items: center;
	justify-content: space-between;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: left;
}

.lpt-faq__item button span {
	color: var(--lpt-gold);
	font-size: 1.5rem;
	transition: transform 180ms ease;
}

.lpt-faq__item button[aria-expanded="true"] span {
	transform: rotate(45deg);
}

.lpt-faq__item [data-faq-answer] p {
	max-width: 42rem;
	padding: 0 2rem 1.5rem 0;
	color: var(--lpt-muted);
}

.lpt-aviva-js .lpt-faq__item [data-faq-answer][hidden] {
	display: none;
}

.lpt-registration {
	width: 100%;
	max-width: none;
	padding-inline: max(1.25rem, calc((100% - var(--lpt-max)) / 2));
	background:
		radial-gradient(circle at 20% 40%, rgb(231 166 43 / 14%), transparent 28rem),
		#090b0f;
}

.lpt-registration__intro {
	align-self: start;
}

.lpt-registration__intro ul {
	display: grid;
	margin-top: 2rem;
}

.lpt-registration__intro li {
	position: relative;
	padding-left: 1.6rem;
	color: #c4c5c7;
}

.lpt-registration__intro li::before {
	position: absolute;
	left: 0;
	color: var(--lpt-gold);
	content: "✓";
}

.lpt-registration__form {
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--lpt-line);
	border-radius: var(--lpt-radius);
	background: rgb(18 24 32 / 84%);
	box-shadow: 0 2rem 6rem rgb(0 0 0 / 35%);
}

.lpt-registration__form .lpt-registration-form {
	max-width: none;
	gap: 1.2rem;
}

.lpt-registration__form .lpt-registration-form label {
	color: #e9e7e0;
	font-size: 0.8rem;
	letter-spacing: 0.03em;
}

.lpt-registration__form .lpt-registration-form input[type="text"],
.lpt-registration__form .lpt-registration-form input[type="email"],
.lpt-registration__form .lpt-registration-form select {
	min-height: 3.4rem;
	padding-inline: 1rem;
	border-color: rgb(255 255 255 / 18%);
	border-radius: 0.65rem;
	background: #090c10;
	color: var(--lpt-white);
}

.lpt-registration__form .lpt-registration-form input:focus,
.lpt-registration__form .lpt-registration-form select:focus {
	border-color: var(--lpt-gold);
	outline: 2px solid rgb(231 166 43 / 30%);
}

.lpt-registration__form .lpt-registration-form__help {
	color: var(--lpt-muted);
}

.lpt-registration__form .lpt-registration-form__submit {
	min-height: 3.6rem;
	border: 1px solid var(--lpt-gold);
	border-radius: 999px;
	background: var(--lpt-gold);
	color: #090705;
	font-weight: 800;
}

.lpt-registration__form .lpt-registration-form__message[data-state="error"] {
	border-color: #d45e5e;
	background: #2c1013;
	color: #ffd9d9;
}

.lpt-registration__form .lpt-registration-form__message[data-state="success"] {
	border-color: #55a56d;
	background: #0c2816;
	color: #d8ffe3;
}

.lpt-event-reveal [data-reveal] {
	opacity: 0;
	transform: translateY(1.75rem);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lpt-event-reveal [data-reveal-direction="left"] {
	transform: translateX(-4.5rem);
	transition-duration: 900ms, 1.15s;
	transition-timing-function: ease, cubic-bezier(0.16, 0.72, 0.2, 1);
}

.lpt-event-reveal [data-reveal-direction="right"] {
	transform: translateX(4.5rem);
	transition-duration: 900ms, 1.15s;
	transition-timing-function: ease, cubic-bezier(0.16, 0.72, 0.2, 1);
}

.lpt-event-reveal [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.lpt-event-reveal .lpt-location__header .lpt-eyebrow,
.lpt-event-reveal .lpt-location__header h2 {
	opacity: 0;
	transform: translateX(5rem);
	transition: opacity 700ms ease, transform 1s cubic-bezier(0.16, 0.72, 0.2, 1);
}

.lpt-event-reveal .lpt-location__header.is-visible .lpt-eyebrow,
.lpt-event-reveal .lpt-location__header.is-visible h2 {
	opacity: 1;
	transform: translateX(0);
}

.lpt-event-reveal .lpt-location__header.is-visible .lpt-eyebrow {
	transition-delay: 120ms;
}

.lpt-event-reveal .lpt-location__header.is-visible h2 {
	transition-delay: 260ms;
}

.lpt-event-reveal [data-reveal] [data-cinematic-eyebrow] {
	opacity: 0;
	transform: translateX(4.5rem);
	transition: opacity 700ms ease 100ms, transform 1s cubic-bezier(0.16, 0.72, 0.2, 1) 100ms;
}

.lpt-event-reveal [data-reveal].is-visible [data-cinematic-eyebrow] {
	opacity: 1;
	transform: translateX(0);
}

.lpt-event-reveal .lpt-schedule__document .lpt-schedule__columns,
.lpt-event-reveal .lpt-schedule__document .lpt-schedule__agenda li {
	opacity: 0;
	transform: translateX(-3rem);
	transition: opacity 600ms ease, transform 850ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__columns,
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li {
	opacity: 1;
	transform: translateX(0);
}

.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__columns {
	transition-delay: 180ms;
}

.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(1) { transition-delay: 250ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(2) { transition-delay: 310ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(3) { transition-delay: 370ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(4) { transition-delay: 430ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(5) { transition-delay: 490ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(6) { transition-delay: 550ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(7) { transition-delay: 610ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(8) { transition-delay: 670ms; }
.lpt-event-reveal .lpt-schedule__document.is-visible .lpt-schedule__agenda li:nth-child(9) { transition-delay: 730ms; }

.lpt-editorial-reveal [data-editorial-reveal] {
	opacity: 0;
	transform: translateX(4.5rem);
	transition: opacity 900ms ease, transform 1.2s cubic-bezier(0.16, 0.72, 0.2, 1);
}

.lpt-editorial-reveal [data-editorial-reveal].is-visible {
	opacity: 1;
	transform: translateX(0);
}

.lpt-prophet-reveal [data-prophet-reveal] {
	opacity: 0;
	transform: translate3d(0, 2rem, 0) scale(0.985);
	transition-delay: calc(var(--lpt-prophet-order) * 110ms);
}

.lpt-prophet-reveal [data-prophet-reveal]:nth-child(even) {
	transform: translate3d(1rem, 2rem, 0) scale(0.985);
}

.lpt-prophet-reveal [data-prophet-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

@keyframes lpt-embers {
	to { transform: translate(2rem, -5rem); opacity: 0.2; }
}

@keyframes lpt-hero-arrival {
	0% {
		opacity: 0.18;
		transform: translateX(8%) scale(1.045);
	}

	55% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes lpt-cinematic-label-arrival {
	0% {
		opacity: 0;
		transform: translateX(5rem);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lpt-countdown-change {
	0% { opacity: 0.35; transform: translateY(-0.3em); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes lpt-countdown-card {
	0%, 100% { border-color: rgb(231 166 43 / 28%); transform: translateY(0); }
	50% { border-color: rgb(255 215 122 / 48%); transform: translateY(-0.18rem); }
}

@keyframes lpt-countdown-glow {
	to { background: rgb(231 166 43 / 15%); transform: scale(1.12); }
}

@keyframes lpt-fire-trail {
	0% {
		opacity: 0;
		transform: translate3d(var(--lpt-fire-x), var(--lpt-fire-y), 0) translate(-50%, -30%) rotate(45deg) scale(0.25);
	}

	25% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translate3d(calc(var(--lpt-fire-x) + var(--lpt-fire-drift)), calc(var(--lpt-fire-y) - var(--lpt-fire-rise)), 0) translate(-50%, -50%) rotate(58deg) scale(1.15);
	}
}

@keyframes lpt-cta-float {
	0%, 100% { box-shadow: 0 0 0 1px rgb(255 197 77 / 20%), 0 0.75rem 2.5rem rgb(231 166 43 / 18%); transform: translateY(0); }
	50% { box-shadow: 0 0 0 2px rgb(255 197 77 / 28%), 0 1rem 3rem rgb(231 166 43 / 26%); transform: translateY(-0.16rem); }
}

@keyframes lpt-cta-shine {
	0%, 58% { left: -45%; }
	82%, 100% { left: 125%; }
}

@keyframes lpt-discover-pulse {
	0%, 100% { border-color: rgb(255 255 255 / 32%); box-shadow: inset 0 0 0 0 rgb(255 255 255 / 0%), 0 0.75rem 2rem rgb(0 0 0 / 18%); }
	50% { border-color: rgb(255 215 122 / 58%); box-shadow: inset 0 0 1.5rem rgb(231 166 43 / 7%), 0 0.9rem 2.5rem rgb(231 166 43 / 10%); }
}

@keyframes lpt-discover-shine {
	0%, 58% { transform: translateX(-110%); }
	82%, 100% { transform: translateX(110%); }
}

@keyframes lpt-discover-arrow {
	0%, 100% { transform: translateY(-0.12rem); }
	50% { transform: translateY(0.18rem); }
}

@keyframes lpt-event-data-glow {
	0%, 100% { opacity: 0.55; transform: scaleY(0.86); }
	50% { opacity: 1; transform: scaleY(1); }
}

@keyframes lpt-meta-rise {
	0%, 100% { border-color: rgb(231 166 43 / 22%); transform: translateY(0); }
	50% { border-color: rgb(231 166 43 / 42%); transform: translateY(-0.14rem); }
}

@keyframes lpt-pillar-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-0.45rem) scale(1.035); }
}

@keyframes lpt-emblem-orbit {
	to { transform: rotate(360deg); }
}

@media (max-width: 64rem) {
	.lpt-location__venue-logo {
		width: clamp(3.75rem, 6vw, 4.75rem);
	}

	.lpt-prophets__controls {
		width: calc(100% - 1rem);
	}

	.lpt-hero__editorial {
		padding-bottom: 4rem;
	}

	.lpt-hero__scroll {
		display: none;
	}

	.lpt-event-nav__toggle {
		display: grid;
		width: 2.75rem;
		height: 2.75rem;
		padding: 0;
		place-content: center;
		gap: 0.35rem;
		border: 1px solid var(--lpt-line);
		border-radius: 50%;
		background: rgb(5 6 8 / 72%);
		color: var(--lpt-white);
	}

	.lpt-event-nav__toggle span:not(.screen-reader-text) {
		display: block;
		width: 1.1rem;
		height: 1px;
		background: currentcolor;
	}

	.lpt-event-nav__menu {
		position: absolute;
		top: 100%;
		left: 0;
		display: none;
		width: 100%;
		padding: 1.25rem;
		align-items: stretch;
		background: rgb(5 6 8 / 96%);
		box-shadow: 0 2rem 3rem rgb(0 0 0 / 30%);
	}

	.lpt-event-nav.is-open .lpt-event-nav__menu {
		display: grid;
	}

	.lpt-event-nav__menu > a:not(.lpt-button) {
		padding: 0.7rem 0;
	}

	.lpt-countdown,
	.lpt-vision,
	.lpt-faq {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.lpt-pillars__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.lpt-pillar:nth-child(4) {
		border-left: 0;
	}

	.lpt-prophet {
		grid-column: span 6;
	}

	.lpt-prophet:last-child {
		grid-column: 4 / span 6;
	}

	.lpt-resources__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 47.5rem) {
	.lpt-hero__media {
		background-image: var(--lpt-hero-mobile-image, var(--lpt-hero-image));
		background-position: var(--lpt-hero-mobile-position, center);
	}

	.lpt-contact {
		grid-template-columns: 1fr;
	}
	.lpt-event-page h2 {
		font-size: clamp(2.55rem, 13vw, 4.5rem);
	}

	.lpt-section {
		width: min(calc(100% - 2rem), var(--lpt-max));
		padding-block: 5.5rem;
	}

	.lpt-hero {
		min-height: auto;
	}

	.lpt-hero__media {
		margin-top: 4.5rem;
		background-size: contain;
	}

	.lpt-hero__editorial {
		min-height: auto;
		padding: 2.25rem 1rem 3.5rem;
	}

	.lpt-hero h1 {
		max-width: 14ch;
		font-size: clamp(2.45rem, 11.5vw, 4rem);
	}

	.lpt-hero__lead {
		font-size: 1rem;
	}

	.lpt-hero__meta {
		display: grid;
		gap: 0.4rem;
	}

	.lpt-hero__meta span,
	.lpt-hero__meta span:first-child {
		padding: 0.65rem 0.8rem 0.65rem 2.45rem;
		border: 1px solid rgb(231 166 43 / 24%);
	}

	.lpt-hero__scroll {
		display: none;
	}

	.lpt-actions {
		display: grid;
	}

	.lpt-countdown__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.65rem;
	}

	.lpt-countdown__grid > div:nth-child(3) {
		border: 1px solid rgb(231 166 43 / 32%);
	}

	.lpt-countdown__grid > div:nth-child(4) {
		border: 1px solid rgb(231 166 43 / 32%);
	}

	.lpt-countdown__grid strong {
		font-size: clamp(2.75rem, 17vw, 4.5rem);
	}

	.lpt-vision {
		min-height: auto;
	}

	.lpt-vision__content {
		padding-left: 1.25rem;
	}

	.lpt-pillars {
		width: 100%;
		padding-inline: 1rem;
	}

	.lpt-pillars__grid {
		grid-template-columns: 1fr;
	}

	.lpt-pillar,
	.lpt-pillar:nth-child(4) {
		display: block;
		min-height: 10rem;
		padding: 0;
		border-top: 1px solid var(--lpt-line);
		border-left: 0;
		text-align: center;
	}

	.lpt-pillar:first-child {
		border-top: 0;
	}

	.lpt-pillar__emblem {
		width: 3rem;
		height: 3rem;
		margin: 0;
	}

	.lpt-pillar__front {
		grid-template-columns: auto 1fr;
		gap: 1rem;
		align-items: center;
		justify-items: start;
		text-align: left;
	}

	.lpt-pillar__emblem::after {
		inset: 0.35rem;
	}

	.lpt-pillar__emblem i {
		inset: 0.75rem;
	}

	.lpt-pillar__emblem b {
		font-size: 0.85rem;
	}

	.lpt-pillar__back {
		grid-template-columns: 2rem 1fr;
		gap: 0.35rem 0.85rem;
		align-content: center;
		justify-items: start;
		text-align: left;
	}

	.lpt-pillar__back > i {
		grid-row: 1 / span 3;
	}

	.lpt-pillar__back > strong,
	.lpt-pillar__back > small,
	.lpt-pillar__back > em {
		margin-top: 0;
	}

	.lpt-prophets__grid {
		display: flex;
		width: calc(100% + 1rem);
		padding: 0 1rem 1rem 0;
		overflow: hidden;
		scroll-snap-type: x mandatory;
	}

	.lpt-prophets__grid::after {
		display: none;
	}

	.lpt-prophets .lpt-section__intro {
		margin-bottom: 1.75rem;
	}

	.lpt-prophets .lpt-section__intro h2 {
		font-size: clamp(2.25rem, 11vw, 3.5rem);
	}

	.lpt-prophet,
	.lpt-prophet:nth-child(4),
	.lpt-prophet:nth-child(5),
	.lpt-prophet:last-child {
		min-width: min(82vw, 22rem);
		min-height: 0;
		grid-column: auto;
		scroll-snap-align: start;
	}

	.lpt-prophet {
		overflow: visible;
		border: 0;
		background: transparent;
		box-shadow: none;
		perspective: 75rem;
	}

	.lpt-prophet::before {
		display: none;
	}

	.lpt-prophet:hover,
	.lpt-prophet:focus-within {
		box-shadow: none;
		transform: none;
	}

	.lpt-prophet__flip {
		overflow: visible;
		border-radius: var(--lpt-radius);
		cursor: pointer;
		transform-style: preserve-3d;
		transition: transform 780ms cubic-bezier(0.2, 0.72, 0.2, 1);
	}

	.lpt-prophet.is-flipped .lpt-prophet__flip {
		transform: rotateY(180deg);
	}

	.lpt-prophet__face {
		overflow: hidden;
		border: 1px solid var(--lpt-line);
		border-radius: var(--lpt-radius);
		box-shadow: 0 1.25rem 3.5rem rgb(0 0 0 / 32%);
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
	}

	.lpt-prophet__back {
		display: grid;
		padding: 2rem;
		place-content: center;
		justify-items: center;
		border-color: rgb(231 166 43 / 44%);
		background:
			radial-gradient(circle at 50% 34%, rgb(231 166 43 / 22%), transparent 10rem),
			linear-gradient(145deg, #15120d, #080a0e 68%);
		text-align: center;
		transform: rotateY(180deg);
	}

	.lpt-prophet__back::before,
	.lpt-prophet__back::after {
		position: absolute;
		inset: 1rem;
		border: 1px solid rgb(231 166 43 / 20%);
		border-radius: calc(var(--lpt-radius) - 0.45rem);
		content: "";
	}

	.lpt-prophet__back::after {
		inset: 1.45rem;
		border-style: dashed;
		border-color: rgb(231 166 43 / 12%);
	}

	.lpt-prophet__back > * {
		position: relative;
		z-index: 1;
	}

	.lpt-prophet__back i {
		display: grid;
		width: 4.5rem;
		height: 4.5rem;
		margin-bottom: 2rem;
		place-items: center;
		border: 1px solid rgb(231 166 43 / 45%);
		border-radius: 50%;
		background: rgb(231 166 43 / 10%);
		color: var(--lpt-gold-light);
		font-size: 1.4rem;
		font-style: normal;
		box-shadow: 0 0 2.5rem rgb(231 166 43 / 18%);
	}

	.lpt-prophet__back strong {
		max-width: 9ch;
		font-size: clamp(2.3rem, 12vw, 3.5rem);
		letter-spacing: -0.055em;
		line-height: 0.92;
	}

	.lpt-prophet__back small {
		margin-top: 1rem;
		color: var(--lpt-gold);
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.lpt-prophet__back em {
		margin-top: 2.25rem;
		color: #d5d2ca;
		font-size: 0.72rem;
		font-style: normal;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.lpt-prophet__back b {
		margin-top: 1.25rem;
		color: #777c85;
		font-size: 0.62rem;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}

	.lpt-prophets__controls {
		position: relative;
		top: auto;
		left: auto;
		display: grid;
		width: min(100%, 22rem);
		margin: 1rem auto 0;
		grid-template-columns: 3.25rem 1fr 3.25rem;
		gap: 0.85rem;
		align-items: center;
		pointer-events: auto;
		transform: none;
	}

	.lpt-prophets__controls button {
		display: grid;
		width: 3.25rem;
		height: 3.25rem;
		padding: 0;
		place-items: center;
		border: 1px solid rgb(231 166 43 / 48%);
		border-radius: 50%;
		background: linear-gradient(145deg, rgb(231 166 43 / 18%), rgb(255 255 255 / 4%));
		color: var(--lpt-gold-light);
		font-size: 1.25rem;
		box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 24%);
		transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
	}

	.lpt-prophets__controls button:hover,
	.lpt-prophets__controls button:focus-visible {
		border-color: var(--lpt-gold-light);
		background: var(--lpt-gold);
		color: var(--lpt-black);
		transform: scale(1.06);
	}

	.lpt-prophets__controls button:disabled {
		cursor: not-allowed;
		opacity: 0.3;
		transform: none;
	}

	.lpt-prophets__controls p {
		position: static;
		margin: 0;
		color: #777c85;
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.14em;
		text-align: center;
		transform: none;
	}

	.lpt-prophets__controls strong {
		color: var(--lpt-gold-light);
		font-size: 1rem;
	}

	.lpt-activation-preview {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.lpt-activation-preview i {
		width: 1rem;
	}

	.lpt-schedule__document > header {
		display: grid;
		padding: 1.25rem 1rem 1rem;
		gap: 0.75rem;
	}

	.lpt-schedule__agenda li {
		padding-right: 1rem;
		grid-template-columns: 2.75rem 1fr;
		gap: 0.65rem;
	}

	.lpt-schedule__agenda li > div {
		display: grid;
		gap: 0.1rem;
		grid-template-columns: 1fr;
	}

	.lpt-schedule__body {
		grid-template-columns: 1fr;
	}

	.lpt-schedule__body > aside {
		display: flex;
		padding: 0.75rem 1rem;
		gap: 0.45rem;
		align-items: center;
		justify-content: flex-start;
	}

	.lpt-schedule__body > aside i {
		width: 4.5rem;
		height: 4.5rem;
		margin: 0 0.5rem 0 0;
		padding: 0.5rem;
		border-width: 0.25rem;
	}

	.lpt-schedule__body > aside i span {
		font-size: 0.42rem;
	}

	.lpt-schedule__body > aside i strong {
		font-size: 0.57rem;
	}

	.lpt-schedule__body > aside strong {
		font-size: 1.5rem;
	}

	.lpt-schedule__columns {
		grid-template-columns: 2.75rem 1fr;
		padding-right: 1rem;
		gap: 0.65rem;
	}

	.lpt-schedule__columns span:last-child {
		display: none;
	}

	.lpt-schedule__agenda.is-editable-table .lpt-schedule__columns span:last-child {
		display: block;
	}

	.lpt-schedule__logo {
		width: 3.5rem;
	}

	.lpt-schedule__document > footer {
		padding: 0.75rem 1rem 0.75rem 4.75rem;
	}

	.lpt-kit,
	.lpt-access,
	.lpt-location,
	.lpt-registration {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.lpt-location__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.lpt-location__venue-logo {
		width: 3.75rem;
	}

	.lpt-access,
	.lpt-registration {
		width: 100%;
		padding-inline: 1rem;
	}

	.lpt-access__content {
		order: -1;
	}

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

	.lpt-resources__grid {
		grid-template-columns: 1fr 1fr;
	}

	.lpt-resources__grid article {
		min-height: 12rem;
	}

	.lpt-resources__grid article > span {
		margin-bottom: 2rem;
	}

	.lpt-location__map {
		min-height: 20rem;
	}

	.lpt-location__gallery {
		display: flex;
		width: min(100%, 250px);
		overflow: hidden;
		justify-self: center;
		gap: 0;
	}

	.lpt-location__gallery figure {
		min-width: 100%;
		transition: transform 500ms ease;
		transform: translateX(calc(var(--lpt-location-slide, 0) * -100%));
	}

	.lpt-location__slider-status {
		display: flex;
		justify-content: center;
		gap: 0.45rem;
	}

	.lpt-location__slider-status > span[aria-hidden="true"] {
		width: 0.5rem;
		height: 0.5rem;
		border: 1px solid var(--lpt-gold);
		border-radius: 50%;
		background: transparent;
	}

	.lpt-location__slider-status > span.is-active {
		background: var(--lpt-gold);
	}

}

@media (max-width: 22.5rem) {
	.lpt-hero h1 {
		font-size: clamp(2.25rem, 11vw, 2.75rem);
	}

	.lpt-countdown__grid > div {
		padding: 1.5rem 0.4rem 1.15rem;
	}

	.lpt-countdown__grid strong {
		font-size: 2.8rem;
	}

	.lpt-countdown__grid span {
		font-size: 0.58rem;
		letter-spacing: 0.1em;
	}

	.lpt-activation-preview {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.lpt-activation-preview i {
		width: 2rem;
	}

	.lpt-resources__grid {
		grid-template-columns: 1fr;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.lpt-event-reveal [data-reveal] {
		opacity: 1;
		transform: none;
	}

	.lpt-event-reveal .lpt-location__header .lpt-eyebrow,
	.lpt-event-reveal .lpt-location__header h2,
	.lpt-event-reveal [data-reveal] [data-cinematic-eyebrow],
	.lpt-hero [data-cinematic-eyebrow] {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.lpt-editorial-reveal [data-editorial-reveal] {
		opacity: 1;
		transform: none;
	}

	.lpt-prophet-reveal [data-prophet-reveal] {
		opacity: 1;
		transform: none;
	}
}
