@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Syne:wght@600;700;800&display=swap");

:root {
    --bg: #050309;
    --bg-soft: #10061a;
    --panel: rgba(19, 14, 30, 0.78);
    --panel-strong: rgba(14, 10, 22, 0.92);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(193, 77, 255, 0.28);
    --text: #f7f3ff;
    --muted: #b9abc8;
    --accent: #790fa8;
    --accent-bright: #c14dff;
    --accent-soft: #281338;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --max-width: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(121, 15, 168, 0.28), transparent 26rem),
        radial-gradient(circle at top right, rgba(193, 77, 255, 0.22), transparent 22rem),
        linear-gradient(135deg, #040208 0%, #0a0611 42%, #120917 100%);
    font-family: "Space Grotesk", sans-serif;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.landing-page,
.showcase-page,
.redirect-page {
    position: relative;
    isolation: isolate;
}

.page-intro {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    gap: 1rem;
    background:
        radial-gradient(circle at center, rgba(121, 15, 168, 0.25), transparent 22rem),
        rgba(5, 3, 9, 0.96);
    transition: opacity 900ms ease, visibility 900ms ease;
}

.page-intro img {
    width: min(7rem, 24vw);
    object-fit: contain;
    filter: drop-shadow(0 0 2rem rgba(255, 255, 255, 0.08));
    animation: intro-float 1.8s ease-in-out infinite;
}

.page-intro span {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ece1fb;
}

.is-ready .page-intro {
    opacity: 0;
    visibility: hidden;
}

.ambient {
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -3;
    filter: blur(32px);
    opacity: 0.9;
}

.ambient-one {
    top: -6rem;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: rgba(121, 15, 168, 0.42);
}

.ambient-two {
    right: -5rem;
    bottom: 2rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(193, 77, 255, 0.24);
}

.ambient-three {
    right: -6rem;
    top: 6rem;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    background: rgba(90, 24, 138, 0.26);
}

.ambient-grid {
    position: fixed;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    mask-image: radial-gradient(circle at center, black, transparent 82%);
    opacity: 0.38;
    pointer-events: none;
}

.topbar {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 1.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-sticky {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-bottom: 0.9rem;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(5, 3, 9, 0.92), rgba(5, 3, 9, 0.56), transparent);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.brand-mark img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
}

.brand-mark span {
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-link {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.top-link:hover,
.top-link:focus-visible {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(193, 77, 255, 0.12);
    transform: translateY(-1px);
}

.landing-main,
.showcase-main {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.landing-main {
    min-height: calc(100vh - 5.5rem);
    padding: 2rem 0 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 2rem;
}

.landing-copy {
    display: grid;
    gap: 1.4rem;
    max-width: 38rem;
}

.eyebrow {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #d0b2ef;
}

.hero-title,
.section-title {
    margin: 0;
    font-family: "Syne", sans-serif;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.hero-title {
    display: grid;
    gap: 0.2rem;
    font-size: clamp(4.4rem, 12vw, 8.5rem);
}

.hero-line {
    display: inline-block;
    animation: title-rise 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-line-accent {
    color: var(--accent-bright);
    text-shadow: 0 0 2rem rgba(193, 77, 255, 0.34);
    animation-delay: 120ms;
}

.section-title {
    font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.section-title-hero {
    max-width: 12ch;
}

.slogan-title {
    position: relative;
    display: grid;
    gap: 0.08em;
    overflow: hidden;
}

.slogan-line {
    display: block;
    opacity: 0;
    transform: translate3d(0, 1.3rem, 0) scale(0.985);
    text-shadow: 0 0 0 rgba(193, 77, 255, 0);
}

.is-ready .slogan-line {
    animation: slogan-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards, slogan-float 6s ease-in-out 1.6s infinite;
}

.is-ready .slogan-line-one {
    animation-delay: 0.16s;
}

.is-ready .slogan-line-two {
    animation-delay: 0.32s;
}

.is-ready .slogan-line-three {
    animation-delay: 0.48s;
}

.is-ready .slogan-title::after {
    content: "";
    position: absolute;
    inset: -12% auto -12% -18%;
    width: 26%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    filter: blur(10px);
    transform: skewX(-16deg) translateX(0);
    animation: slogan-sweep 2.4s ease 1.1s both;
    pointer-events: none;
}

.hero-lead,
.redirect-copy,
.feature-card p,
.photo-wall-card p,
.profile-card p,
.stage-card-copy h2,
.ticket-foot {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.hero-lead {
    max-width: 38rem;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
    padding: 0.9rem 1.25rem;
    font-weight: 700;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    box-shadow: 0 18px 36px rgba(121, 15, 168, 0.28);
}

.button-secondary {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--line-strong);
    background: rgba(193, 77, 255, 0.1);
}

.hero-note {
    margin: 0;
    color: #dbc7f3;
    font-size: 0.95rem;
}

.stats-row,
.hero-panel-stats {
    display: grid;
    gap: 1rem;
}

.stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.photo-wall-card,
.profile-card,
.panel,
.stage-card,
.redirect-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.stat-card {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
}

.stat-value {
    display: block;
    margin-bottom: 0.3rem;
    font-family: "Syne", sans-serif;
    font-size: 1.7rem;
}

.stat-label {
    color: var(--muted);
    font-size: 0.92rem;
}

.landing-stage {
    position: relative;
    min-height: 38rem;
    perspective: 1200px;
}

.stage-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stage-card-main {
    inset: 2rem 6rem 7.5rem 0;
    transform: rotateY(-10deg) rotateX(4deg);
}

.stage-card-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%),
        rgba(13, 10, 20, 0.78);
}

.stage-card-copy {
    position: absolute;
    inset: auto 1.4rem 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(9, 8, 15, 0.14), rgba(9, 8, 15, 0.76));
}

.stage-card-label,
.ticket-label,
.photo-wall-label,
.feature-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d0b2ef;
}

.stage-card-copy h2 {
    max-width: 16ch;
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1.15;
}

.stage-card-side {
    top: 0.8rem;
    right: 0;
    width: 13rem;
    padding: 0.85rem;
    display: grid;
    transform: rotateY(-18deg) rotateX(8deg);
}

.stage-card-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: calc(var(--radius-md) - 0.3rem);
    background: rgba(13, 10, 20, 0.74);
}

.stage-mini-copy {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.stage-card-ticket {
    right: 0.4rem;
    bottom: 0.4rem;
    width: 16rem;
    padding: 1.15rem;
    border: 1px solid var(--line-strong);
    transform: rotateZ(-8deg);
}

.ticket-code {
    margin: 0 0 0.45rem;
    font-family: "Syne", sans-serif;
    font-size: 2rem;
}

.floating-pill {
    position: absolute;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #f2e6ff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    animation: drift 5.6s ease-in-out infinite;
}

.pill-one {
    top: 3.5rem;
    left: 2.2rem;
}

.pill-two {
    right: 11rem;
    top: 11.5rem;
    animation-delay: 0.8s;
}

.pill-three {
    left: 5rem;
    bottom: 5.2rem;
    animation-delay: 1.6s;
}

.showcase-main {
    padding: 2rem 0 4rem;
    display: grid;
    gap: 1.6rem;
}

.panel {
    position: relative;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.8fr);
    gap: 1.4rem;
    align-items: start;
}

.hero-panel-copy {
    display: grid;
    gap: 1.15rem;
}

.hero-panel-stats {
    grid-template-columns: 1fr;
}

.feature-card {
    padding: 1.15rem;
    border-radius: var(--radius-md);
}

.feature-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Syne", sans-serif;
    font-size: 2rem;
}

.section-heading {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.carousel-shell {
    display: grid;
    gap: 1rem;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 0.2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.carousel-track {
    display: flex;
    transition: transform 500ms ease;
    will-change: transform;
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%),
        linear-gradient(180deg, rgba(17, 13, 28, 0.98), rgba(9, 7, 16, 0.98));
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    cursor: zoom-in;
}

.carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 3, 9, 0.78));
    pointer-events: none;
}

.carousel-slide figcaption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.15rem;
    z-index: 1;
    margin: 0;
    color: #f5edff;
    line-height: 1.55;
}

.carousel-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.icon-button {
    padding: 0 1rem;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.carousel-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.carousel-dot {
    width: 0.82rem;
    height: 0.82rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
    transform: scale(1.15);
}

.carousel-dot.is-active {
    background: var(--accent-bright);
}

.photo-wall {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.photo-wall-card {
    display: grid;
    grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.photo-wall-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    object-fit: contain;
    padding: 0.75rem;
    cursor: zoom-in;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%),
        rgba(13, 10, 20, 0.78);
}

.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 9, 0.88);
    backdrop-filter: blur(18px);
}

.lightbox-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 90rem);
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(15, 11, 23, 0.92), rgba(9, 7, 16, 0.92));
    box-shadow: var(--shadow);
}

.lightbox-toolbar,
.lightbox-actions,
.lightbox-stage {
    display: flex;
    align-items: center;
}

.lightbox-toolbar {
    justify-content: space-between;
    gap: 1rem;
}

.lightbox-actions {
    gap: 0.75rem;
}

.lightbox-counter,
.lightbox-caption {
    margin: 0;
    color: var(--muted);
}

.lightbox-stage {
    gap: 1rem;
    justify-content: center;
}

.lightbox-image-frame {
    flex: 1;
    min-height: 60vh;
    max-height: 78vh;
    overflow: auto;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 72%),
        rgba(8, 6, 14, 0.98);
}

.lightbox-display-image {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    transition: transform 260ms ease;
    cursor: zoom-in;
}

.lightbox-image-frame.is-zoomed {
    justify-content: start;
    align-items: start;
    padding: 1rem;
}

.lightbox-display-image.is-zoomed {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    transform: scale(1.6);
    transform-origin: center center;
    cursor: zoom-out;
}

.lightbox-button,
.lightbox-nav {
    flex: 0 0 auto;
}

.lightbox-nav {
    min-width: 4.2rem;
}

.profiles-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.profiles-grid li {
    min-width: 0;
}

.profile-card {
    position: relative;
    display: grid;
    gap: 0.65rem;
    min-height: 15rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(193, 77, 255, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 62%);
    pointer-events: none;
}

.profile-card:hover,
.profile-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--line-strong);
    background: linear-gradient(180deg, rgba(193, 77, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.profile-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #f2e6ff;
}

.profile-card h3 {
    margin: 0;
    max-width: 14ch;
    font-family: "Syne", sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.profile-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #e0c5ff;
    font-weight: 700;
}

.profile-cta::after {
    content: "->";
}

[data-reveal] {
    opacity: 0;
    transform: translateY(2.25rem);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

.redirect-page {
    display: grid;
    place-items: center;
    padding: 2rem;
}

.redirect-card {
    width: min(100%, 32rem);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

@keyframes title-rise {
    from {
        opacity: 0;
        transform: translateY(1.4rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes intro-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.4rem);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.75rem);
    }
}

@keyframes slogan-reveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 1.3rem, 0) scale(0.985);
        text-shadow: 0 0 0 rgba(193, 77, 255, 0);
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        text-shadow: 0 0 1.2rem rgba(193, 77, 255, 0.12);
    }
}

@keyframes slogan-sweep {
    0% {
        opacity: 0;
        transform: skewX(-16deg) translateX(0);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: skewX(-16deg) translateX(29rem);
    }
}

@keyframes slogan-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0.14rem, -0.18rem, 0);
    }
}

@media (max-width: 1080px) {
    .landing-main,
    .hero-panel,
    .photo-wall,
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .landing-stage {
        min-height: 32rem;
        margin-top: 1rem;
    }

    .stage-card-main {
        inset: 1.6rem 4rem 6.2rem 0;
    }

    .hero-panel-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .topbar,
    .landing-main,
    .showcase-main {
        width: min(calc(100% - 1.2rem), var(--max-width));
    }

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

    .brand-mark {
        width: 100%;
        justify-content: center;
    }

    .top-actions {
        width: 100%;
    }

    .top-link {
        flex: 1 1 0;
        text-align: center;
    }

    .landing-main {
        padding-top: 1.2rem;
    }

    .stats-row,
    .hero-panel-stats {
        grid-template-columns: 1fr;
    }

    .landing-stage {
        min-height: 26rem;
    }

    .stage-card-main {
        inset: 1.4rem 0 5.2rem 0;
        transform: none;
    }

    .stage-card-side {
        right: 0;
        width: 8.8rem;
        transform: none;
    }

    .stage-card-ticket {
        right: 1rem;
        bottom: 0.4rem;
        width: 13rem;
    }

    .floating-pill {
        font-size: 0.85rem;
    }

    .carousel-slide {
        aspect-ratio: 4 / 5;
    }

    .photo-wall-card {
        grid-template-columns: 1fr;
    }

    .panel {
        padding: 1.2rem;
    }

    .lightbox-stage {
        flex-direction: column;
    }

    .lightbox-image-frame {
        width: 100%;
        min-height: 50vh;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: clamp(3.4rem, 18vw, 4.9rem);
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-actions,
    .carousel-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .icon-button {
        width: 100%;
    }

    .carousel-controls,
    .carousel-dots {
        width: 100%;
        justify-content: center;
    }

    .landing-stage {
        min-height: 23rem;
    }

    .stage-card-side {
        width: 7rem;
        padding: 0.55rem;
    }

    .stage-card-ticket {
        left: 1rem;
        right: 1rem;
        width: auto;
        transform: none;
    }

    .pill-one,
    .pill-two,
    .pill-three {
        display: none;
    }

    .lightbox-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .lightbox-actions {
        width: 100%;
    }

    .lightbox-button,
    .lightbox-nav {
        width: 100%;
    }
}

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

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

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

    .page-intro img {
        animation: none;
    }
}
