:root {
    --black: #050608;
    --ink: #0b0d10;
    --panel: #111419;
    --panel-2: #171a20;
    --cream: #f3efe3;
    --white: #ffffff;
    --muted: #a7adb5;
    --yellow: #ffc400;
    --yellow-soft: #ffe36b;
    --red: #ff3c2f;
    --cyan: #00d5df;
    --green: #25d366;
    --line: rgba(255, 255, 255, .13);
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
    --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --container: 1200px;
    --header-height: 78px;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

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

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 60, 47, .08), transparent 30rem),
        radial-gradient(circle at 82% 32%, rgba(0, 213, 223, .07), transparent 28rem),
        var(--black);
    color: var(--cream);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-lock {
    overflow: hidden;
}

body::before {
    position: fixed;
    z-index: 9999;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: .035;
    background-image:
        repeating-radial-gradient(circle at 17% 19%, transparent 0, transparent 1px, rgba(255,255,255,.8) 1.5px, transparent 2px),
        repeating-radial-gradient(circle at 83% 73%, transparent 0, transparent 2px, rgba(255,255,255,.5) 2.5px, transparent 3px);
    background-size: 8px 8px, 11px 11px;
    mix-blend-mode: soft-light;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button, input, select {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(86px, 10vw, 150px) 0;
    scroll-margin-top: calc(var(--header-height) - 4px);
}

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 3px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

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

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

h2 {
    margin-bottom: 26px;
    font-family: var(--display);
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .9;
    text-transform: uppercase;
}

h2 em {
    color: var(--yellow);
    font-style: normal;
}

h3 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.1;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .035em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.button::after {
    position: absolute;
    inset: 0;
    transform: translateX(-110%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    content: "";
    transition: transform .55s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover::after {
    transform: translateX(110%) skewX(-18deg);
}

.button-yellow {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 12px 34px rgba(255, 196, 0, .2);
}

.button-yellow:hover {
    box-shadow: 0 16px 42px rgba(255, 196, 0, .34);
}

.button-ghost {
    border-color: rgba(255,255,255,.34);
    background: rgba(8, 10, 13, .36);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.button-dark:hover {
    background: #22262c;
}

.button-whatsapp {
    background: var(--green);
    color: #07140b;
}

.button-whatsapp img {
    filter: none;
}

.button-large {
    min-height: 60px;
    padding-inline: 30px;
    font-size: 15px;
}

.button-small {
    min-height: 44px;
    padding: 11px 19px;
    font-size: 12px;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 3px;
    border-bottom: 2px solid currentColor;
    font-weight: 900;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    border-color: rgba(255,255,255,.1);
    background: rgba(5, 6, 8, .88);
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-grid;
    flex: 0 0 auto;
    color: var(--yellow);
    font-family: Impact, "Arial Black", "Arial Narrow Bold", sans-serif;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: .73;
    text-transform: uppercase;
    transform: skew(-4deg);
}

.brand-house {
    color: var(--yellow);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 34px);
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--yellow);
    content: "";
    transition: transform .25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: max(760px, 100svh);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-background,
.hero-background img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background {
    z-index: -4;
}

.hero-background img {
    object-fit: cover;
    object-position: center;
    transform-origin: 50% 50%;
    will-change: transform;
    animation: heroZoom 17s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.045) translate3d(-.55%, .22%, 0); }
    44% { transform: scale(1.135) translate3d(.05%, -.18%, 0); }
    100% { transform: scale(1.245) translate3d(.9%, -.72%, 0); }
}

.hero-overlay {
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(4,5,7,.82) 0%, rgba(4,5,7,.38) 48%, rgba(4,5,7,.58) 100%),
        linear-gradient(180deg, rgba(4,5,7,.44) 0%, transparent 28%, rgba(4,5,7,.3) 67%, var(--black) 100%);
}

.hero-fireflies {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-fireflies span {
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: rgba(255, 239, 153, .98);
    box-shadow:
        0 0 3px rgba(255, 250, 214, .96),
        0 0 8px rgba(255, 211, 52, .58),
        0 0 17px rgba(255, 196, 0, .16);
    filter: blur(var(--blur));
    mix-blend-mode: screen;
    opacity: 0;
    will-change: transform, opacity;
    animation:
        fireflyMove var(--d) cubic-bezier(.42,0,.38,1) var(--delay) infinite,
        fireflyPulse var(--pulse) ease-in-out var(--delay) infinite;
}

.hero-fireflies span::after {
    position: absolute;
    inset: -5px;
    transform: scale(var(--halo));
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255,235,125,.35) 0 8%, rgba(255,196,0,.1) 30%, transparent 72%);
    content: "";
}

.hero-fireflies span:nth-child(4n) {
    background: rgba(255, 255, 237, .98);
    box-shadow:
        0 0 3px rgba(255,255,255,.94),
        0 0 8px rgba(255, 235, 139, .48),
        0 0 16px rgba(255, 211, 52, .13);
}

.hero-fireflies span:nth-child(7n) {
    width: calc(var(--s) * .72);
    height: calc(var(--s) * .72);
}

@keyframes fireflyMove {
    0%, 100% { transform: translate3d(0, 0, 0) scale(.88); }
    18% { transform: translate3d(var(--x1), var(--y1), 0) scale(1.02); }
    43% { transform: translate3d(var(--x2), var(--y2), 0) scale(.92); }
    67% { transform: translate3d(var(--x3), var(--y3), 0) scale(1.08); }
    84% { transform: translate3d(var(--x4), var(--y4), 0) scale(.96); }
}

@keyframes fireflyPulse {
    0%, 12%, 100% { opacity: .01; }
    19% { opacity: calc(var(--o) * .48); }
    27% { opacity: .05; }
    42% { opacity: var(--o); }
    53% { opacity: .08; }
    68% { opacity: calc(var(--o) * .7); }
    79% { opacity: .025; }
    91% { opacity: calc(var(--o) * .45); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 100px;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px var(--red);
    content: "";
}

.hero-title-art {
    display: block;
    width: min(92vw, 990px);
    max-width: 100%;
    height: auto;
    margin: -10px auto 0;
    filter: drop-shadow(0 22px 35px rgba(0,0,0,.55));
}

.hero-lead {
    max-width: 770px;
    margin: 8px auto 26px;
    color: rgba(255,255,255,.86);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.45;
    text-shadow: 0 2px 18px rgba(0,0,0,.7);
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-facts span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(4,5,7,.48);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.countdown {
    display: inline-grid;
    grid-template-columns: repeat(4, minmax(78px, 1fr));
    gap: 1px;
    margin-top: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
}

.countdown div {
    display: grid;
    min-width: 90px;
    padding: 12px 14px 11px;
    background: rgba(5,6,8,.72);
    text-align: center;
}

.countdown strong {
    color: var(--yellow);
    font-family: var(--display);
    font-size: 31px;
    letter-spacing: .02em;
    line-height: 1;
}

.countdown span {
    margin-top: 4px;
    color: rgba(255,255,255,.6);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.countdown.is-live {
    grid-template-columns: 1fr;
}

.countdown.is-live div:not(:first-child) {
    display: none;
}

.countdown.is-live div:first-child {
    min-width: 300px;
}

.countdown.is-live strong {
    font-family: var(--body);
    font-size: 18px;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 8px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.56);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-cue span {
    display: block;
    width: 1px;
    height: 28px;
    background: linear-gradient(var(--yellow), transparent);
    animation: scrollPulse 1.7s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .35; transform: scaleY(.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Statement */
.statement {
    overflow: hidden;
    padding-bottom: 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 60, 47, .13), transparent 27rem),
        radial-gradient(circle at 86% 26%, rgba(0, 213, 223, .11), transparent 29rem),
        linear-gradient(180deg, #090b0f 0%, #06080b 100%);
    color: var(--white);
}

.statement::before {
    position: absolute;
    top: 8%;
    left: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,196,0,.1);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(255,196,0,.025), 0 0 0 82px rgba(255,196,0,.015);
    content: "";
}

.statement-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(42px, 7vw, 104px);
    align-items: center;
    margin-bottom: clamp(76px, 9vw, 124px);
    padding: clamp(38px, 5.5vw, 74px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        rgba(10,12,16,.72);
    box-shadow: 0 28px 90px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07);
    isolation: isolate;
}

.statement-grid::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: var(--yellow);
    content: "";
}

.statement-grid::after {
    position: absolute;
    z-index: -1;
    right: -95px;
    bottom: -145px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,196,0,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255,196,0,.025), 0 0 0 84px rgba(255,196,0,.015);
    content: "";
}

.statement h2 {
    margin: 0;
}

.statement h2 em {
    color: var(--yellow);
}

.statement-copy {
    padding-bottom: 2px;
}

.statement-copy p {
    margin-bottom: 28px;
    color: rgba(255,255,255,.7);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.55;
}

.statement .text-link {
    color: var(--yellow);
}

.marquee {
    display: flex;
    overflow: hidden;
    padding: 19px 0 16px;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 58px);
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-1.2deg) scale(1.03);
}

.marquee div {
    min-width: max-content;
    animation: marquee 24s linear infinite;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* Line-up */
.lineup {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 32%, rgba(255,60,47,.13), transparent 31rem),
        radial-gradient(circle at 92% 28%, rgba(0,213,223,.11), transparent 29rem),
        linear-gradient(180deg, #090b0e, #050608);
}

.lineup::before {
    position: absolute;
    top: 5%;
    right: -8vw;
    width: 40vw;
    height: 40vw;
    border: 1px solid rgba(0,213,223,.1);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(0,213,223,.025), 0 0 0 80px rgba(0,213,223,.015);
    content: "";
}

.lineup-heading {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lineup-heading .eyebrow {
    justify-content: center;
}

.lineup-heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 28px);
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(62px, 10.2vw, 156px);
    white-space: nowrap;
}

.lineup-heading h2 span:first-child {
    color: var(--yellow);
}

.lineup-heading h2 b {
    color: var(--red);
    font-family: var(--body);
    font-size: .5em;
    font-weight: 300;
}

.lineup-heading > p:last-child {
    max-width: 710px;
    margin: 0 auto 70px;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 21px);
}

.dj-stage {
    position: relative;
    min-height: 670px;
    margin-top: 20px;
}

.dj-card {
    margin: 0;
    overflow: hidden;
    background: #0e1014;
    box-shadow: var(--shadow);
}

.dj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-card-main {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 50%;
    width: min(72%, 840px);
    transform: translateX(-50%) rotate(-1deg);
    border: 8px solid var(--cream);
}

.dj-card-main::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.44));
    content: "";
    pointer-events: none;
}

.dj-card-main img {
    aspect-ratio: 3 / 2;
}

.dj-card-main figcaption {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 14px;
    left: 16px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(18px, 2.2vw, 30px);
    letter-spacing: .04em;
    text-align: center;
}

.dj-card-float {
    position: absolute;
    z-index: 3;
    width: min(28%, 320px);
    border: 6px solid var(--yellow);
}

.dj-card-float img {
    aspect-ratio: 1 / 1.15;
}

.dj-card-left {
    top: 230px;
    left: 0;
    transform: rotate(-7deg);
}

.dj-card-right {
    top: 180px;
    right: 0;
    transform: rotate(8deg);
    border-color: var(--cyan);
}

.dj-stamp {
    position: absolute;
    z-index: 5;
    right: 7%;
    bottom: 10px;
    display: grid;
    width: 142px;
    height: 142px;
    place-items: center;
    transform: rotate(10deg);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--display);
    font-size: 26px;
    line-height: .88;
    text-align: center;
    box-shadow: 0 18px 48px rgba(0,0,0,.35);
}

.dj-stamp::before,
.dj-stamp::after {
    position: absolute;
    inset: 10px;
    border: 1px solid var(--ink);
    border-radius: inherit;
    content: "";
}

.dj-stamp::after {
    inset: 17px;
    border-style: dashed;
}

.vinyl-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.vinyl-strip figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: var(--panel);
}

.vinyl-strip figure:nth-child(2) {
    transform: translateY(28px);
}

.vinyl-strip img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
    transition: transform .55s ease, filter .55s ease;
}

.vinyl-strip figure:hover img {
    transform: scale(1.045);
    filter: saturate(1.2) contrast(1.06);
}

/* Tickets */
.tickets {
    background:
        radial-gradient(circle at 12% 0%, rgba(255,60,47,.11), transparent 32rem),
        radial-gradient(circle at 88% 18%, rgba(0,213,223,.1), transparent 34rem),
        #0b0d11;
}

.tickets-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 38px;
}

.tickets-heading h2 {
    margin: 0;
}

.ticket-trust {
    display: grid;
    gap: 9px;
    justify-items: start;
    padding-bottom: 10px;
}

.ticket-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.73);
    font-size: 13px;
    font-weight: 800;
}

.ticket-trust img {
    width: 22px;
    height: 22px;
}

.collab-access {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(255,196,0,.5);
    border-radius: 17px;
    background: linear-gradient(100deg, rgba(255,196,0,.19), rgba(255,196,0,.055) 58%, rgba(0,213,223,.05));
    color: rgba(255,255,255,.78);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

.collab-access.is-invalid {
    border-color: rgba(255,60,47,.62);
    background: linear-gradient(100deg, rgba(255,60,47,.17), rgba(255,60,47,.045) 62%, rgba(255,255,255,.025));
}

.collab-access-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 0 28px rgba(255,196,0,.24);
    font-size: 23px;
    font-weight: 950;
}

.collab-access.is-invalid .collab-access-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 28px rgba(255,60,47,.22);
}

.collab-access-copy {
    min-width: 0;
}

.collab-access-code {
    display: block;
    margin-bottom: 4px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.collab-access.is-invalid .collab-access-code {
    color: #ff8077;
}

.collab-access-copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.25;
}

.collab-access-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.collab-access .button {
    min-width: 210px;
}

.ticket-shell {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.ticket-browser-bar {
    display: flex;
    height: 54px;
    align-items: center;
    gap: 8px;
    padding: 0 19px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    background: #eceef2;
    color: #41454c;
}

.ticket-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7cbd0;
}

.ticket-browser-bar span:first-child { background: #ff665c; }
.ticket-browser-bar span:nth-child(2) { background: #ffc14f; }
.ticket-browser-bar span:nth-child(3) { background: #45ca6c; }

.ticket-browser-bar strong {
    margin-left: auto;
    font-size: 10px;
    letter-spacing: .12em;
}

.ticket-shell iframe {
    display: block;
    width: 100%;
    height: 640px;
    border: 0;
    background: var(--white);
}

.ticket-fallback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-top: 1px solid #e4e6e9;
    background: #f5f6f7;
    color: #474b52;
}

.ticket-fallback p {
    margin: 0;
    font-size: 13px;
}

.ticket-fallback .button {
    min-height: 44px;
    flex: 0 0 auto;
    font-size: 11px;
}

/* Tables */
.tables {
    background:
        radial-gradient(circle at 16% 70%, rgba(255,60,47,.15), transparent 28rem),
        radial-gradient(circle at 82% 16%, rgba(255,196,0,.08), transparent 32rem),
        #07080a;
}

.table-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}

.table-card::before {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    height: 7px;
    background: var(--yellow);
    content: "";
}

.table-visual {
    position: relative;
    display: grid;
    min-height: 580px;
    place-items: center;
    overflow: hidden;
    padding: 50px;
    background:
        linear-gradient(160deg, rgba(5,6,8,.12), rgba(5,6,8,.78)),
        url('/assets/img/background-768.webp') center / cover;
}

.table-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,.25));
    content: "";
}

.table-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    filter: drop-shadow(0 24px 28px rgba(0,0,0,.62));
    animation: tableFloat 4.5s ease-in-out infinite alternate;
}

@keyframes tableFloat {
    from { transform: translateY(-5px) rotate(-1deg); }
    to { transform: translateY(9px) rotate(1deg); }
}

.table-glow {
    position: absolute;
    z-index: 1;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,196,0,.24), transparent 68%);
    filter: blur(10px);
}

.table-content {
    padding: clamp(46px, 6vw, 84px);
}

.table-content h2 {
    font-size: clamp(48px, 5.8vw, 82px);
}

.table-content ul {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.table-content li {
    position: relative;
    padding-left: 33px;
    color: rgba(255,255,255,.76);
    font-weight: 650;
}

.table-content li::before {
    position: absolute;
    top: 3px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    content: "✓";
    font-size: 12px;
    font-weight: 950;
}

.table-contact {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.table-contact > p {
    display: grid;
    gap: 3px;
    margin-bottom: 20px;
}

.table-contact > p span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.table-contact > p strong {
    color: var(--white);
    font-size: clamp(21px, 3vw, 30px);
}

.table-contact > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.table-contact .button-whatsapp img {
    width: 20px;
    height: 20px;
}

.capacity-note {
    margin: 18px 0 0;
    color: var(--yellow-soft);
    font-size: 13px;
    font-weight: 800;
}

/* Collab */
.collab {
    overflow: hidden;
    background: var(--yellow);
    color: var(--ink);
}

.collab::before {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 2px solid rgba(11,13,16,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 40px rgba(11,13,16,.035), 0 0 0 80px rgba(11,13,16,.025);
    content: "";
}

.collab-noise {
    position: absolute;
    inset: 0;
    opacity: .09;
    pointer-events: none;
    background-image: repeating-linear-gradient(115deg, transparent 0, transparent 20px, rgba(0,0,0,.11) 21px, transparent 22px);
}

.collab-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: end;
}

.collab-intro h2 {
    margin: 0;
}

.collab-intro h2 em {
    color: var(--red);
}

.collab-pitch {
    padding-bottom: 6px;
}

.collab-pitch p {
    margin-bottom: 18px;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 650;
    line-height: 1.55;
}

.collab-pitch strong {
    word-break: break-word;
}

.cumulative-pill {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rewards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 56px;
}

.rewards article {
    position: relative;
    min-height: 205px;
    padding: 24px 20px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(23,15,0,.15);
    transition: transform .25s ease;
}

.rewards article:hover {
    transform: translateY(-7px);
}

.rewards article::after {
    position: absolute;
    right: -38px;
    bottom: -48px;
    width: 125px;
    height: 125px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
}

.rewards article > .reward-count {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--yellow);
    line-height: .8;
}

.rewards .reward-count b {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 900;
}

.rewards .reward-count small {
    display: block;
    margin: 0 0 4px;
    color: rgba(255,255,255,.58);
    font-family: var(--body);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.rewards article > strong,
.rewards article > small {
    display: block;
}

.rewards article > strong {
    font-size: 16px;
    line-height: 1.25;
}

.rewards article > small {
    margin-top: 8px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.4;
}

.rewards .reward-cash {
    background: var(--red);
}

.rewards .reward-cash > .reward-count,
.rewards .reward-cash .reward-count small,
.rewards .reward-cash > small {
    color: var(--white);
}

.collab-convert-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 20px;
    margin-top: 48px;
}

.simulator-card,
.collab-form-card {
    border: 1px solid rgba(11,13,16,.17);
    border-radius: 22px;
    background: rgba(255,255,255,.71);
    box-shadow: 0 18px 50px rgba(35,25,0,.11);
    backdrop-filter: blur(10px);
}

.simulator-card {
    padding: clamp(30px, 4vw, 52px);
}

.simulator-card h3,
.collab-form-card h3 {
    margin-bottom: 22px;
    color: var(--ink);
}

.simulator-number {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 32px 0 18px;
}

.simulator-number strong {
    font-family: var(--display);
    font-size: clamp(70px, 9vw, 116px);
    line-height: .75;
}

.simulator-number span {
    max-width: 100px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}

#salesSimulator {
    width: 100%;
    height: 34px;
    margin: 8px 0 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

#salesSimulator::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red) var(--range-progress, 30%), rgba(11,13,16,.16) var(--range-progress, 30%));
}

#salesSimulator::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(11,13,16,.16);
}

#salesSimulator::-moz-range-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--red);
}

#salesSimulator::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    margin-top: -10px;
    appearance: none;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

#salesSimulator::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.simulator-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    color: rgba(11,13,16,.5);
    font-size: 9px;
    font-weight: 900;
}

.simulator-result {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding: 20px;
    border-left: 6px solid var(--red);
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
}

.simulator-result span {
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.simulator-result strong {
    color: var(--yellow);
    font-size: clamp(18px, 2.3vw, 27px);
    line-height: 1.25;
}

.simulator-footnote {
    margin: 14px 0 0;
    color: rgba(11,13,16,.57);
    font-size: 11px;
    line-height: 1.5;
}

.collab-form-card {
    padding: clamp(30px, 4vw, 52px);
    background: rgba(255,255,255,.9);
}

.collab-form-card > p:not(.eyebrow) {
    margin-top: -10px;
    margin-bottom: 28px;
    color: rgba(11,13,16,.64);
}

.collab-form {
    display: grid;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.collab-form label:not(.consent-label) {
    display: grid;
    gap: 6px;
}

.collab-form label > span:first-child {
    color: rgba(11,13,16,.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.collab-form input[type="text"],
.collab-form input[type="email"],
.collab-form select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(11,13,16,.19);
    border-radius: 10px;
    outline: 0;
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.collab-form input:focus,
.collab-form select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(255,60,47,.12);
}

.collab-form input[aria-invalid="true"],
.collab-form select[aria-invalid="true"] {
    border-color: #c91f15;
    box-shadow: 0 0 0 3px rgba(201,31,21,.12);
}

.consent-label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    margin: 3px 0 5px;
    color: rgba(11,13,16,.66);
    font-size: 11px;
    line-height: 1.5;
}

.consent-label input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--red);
}

.consent-label a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.collab-form.is-loading .button {
    cursor: wait;
    opacity: .82;
}

.button-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.collab-form.is-loading .button-label {
    display: none;
}

.collab-form.is-loading .button-loader {
    display: block;
}

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

.form-status {
    display: none;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.form-status.is-success,
.form-status.is-error {
    display: block;
}

.form-status.is-success {
    border: 1px solid rgba(21,118,61,.25);
    background: #e8f8ee;
    color: #0f6b35;
}

.form-status.is-error {
    border: 1px solid rgba(169,34,22,.2);
    background: #fff0ee;
    color: #a32217;
}

/* Practical information */
.infos {
    background:
        radial-gradient(circle at 82% 12%, rgba(0,213,223,.08), transparent 30rem),
        radial-gradient(circle at 12% 75%, rgba(255,60,47,.09), transparent 28rem),
        #080a0d;
}

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

.infos-heading .eyebrow {
    justify-content: center;
}

.infos-heading h2 {
    margin-bottom: 52px;
}

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

.info-grid article {
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    transition: transform .25s ease, border-color .25s ease;
}

.info-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(255,196,0,.38);
}

.info-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255,196,0,.5);
    border-radius: 50%;
    color: var(--yellow);
    font-family: var(--display);
    font-size: 19px;
}

.info-grid h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 21px;
}

.info-grid p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.info-grid a {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 850;
}

/* Final CTA */
.final-cta {
    display: grid;
    min-height: 650px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5,6,8,.9), rgba(5,6,8,.54), rgba(5,6,8,.82)),
        linear-gradient(180deg, rgba(5,6,8,.1), var(--black)),
        url('/assets/img/background-1344.webp') center / cover no-repeat;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(0,0,0,.48));
    content: "";
}

.final-cta-inner {
    position: relative;
    text-align: center;
}

.final-cta-inner .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    margin-bottom: 36px;
    color: var(--white);
    font-size: clamp(64px, 10vw, 142px);
}

.final-cta-inner > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Footer */
.site-footer {
    padding: 54px 0 95px;
    border-top: 1px solid rgba(255,255,255,.1);
    background: #030405;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand-footer {
    width: max-content;
    font-size: 29px;
}

.footer-brand-slot {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 10px;
}

.collab-sales-meta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.collab-sales-count {
    display: inline-flex;
    min-width: 31px;
    height: 27px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;
    background: var(--yellow);
    color: #07090c;
    box-shadow: 0 0 18px rgba(255,196,0,.28), inset 0 1px 0 rgba(255,255,255,.35);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1;
    transform: skew(-4deg) rotate(-1deg);
}

.collab-sales-updated {
    display: block;
    color: rgba(255,255,255,.58);
    font-family: var(--body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    white-space: nowrap;
}

.footer-top > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: var(--yellow);
    background: var(--yellow);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.social-links a:hover img {
    filter: none;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 24px;
    color: rgba(255,255,255,.43);
    font-size: 11px;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* Voucher notice and fixed actions */
.voucher-toast {
    position: fixed;
    z-index: 1500;
    top: calc(var(--header-height) + 16px);
    right: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    max-width: min(430px, calc(100vw - 36px));
    gap: 12px;
    align-items: center;
    padding: 14px 15px;
    border: 1px solid rgba(255,196,0,.5);
    border-radius: 14px;
    background: rgba(10,12,15,.94);
    color: rgba(255,255,255,.72);
    box-shadow: 0 18px 50px rgba(0,0,0,.4);
    font-size: 12px;
    line-height: 1.35;
    backdrop-filter: blur(18px);
    animation: toastIn .45s ease both;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.voucher-toast-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 950;
}

.voucher-toast.is-invalid {
    border-color: rgba(255,60,47,.68);
}

.voucher-toast.is-invalid .voucher-toast-icon {
    background: var(--red);
    color: var(--white);
}

.voucher-toast strong {
    color: var(--white);
}

.voucher-toast button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    font-size: 18px;
}

.mobile-action-bar {
    display: none;
}

/* Standalone legal page */
.legal-page {
    min-height: 100vh;
    padding: calc(var(--header-height) + 70px) 0 90px;
    background:
        radial-gradient(circle at 80% 10%, rgba(0,213,223,.08), transparent 30rem),
        var(--black);
}

.legal-shell {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
}

.legal-shell h1 {
    margin-bottom: 28px;
    font-family: var(--display);
    font-size: clamp(52px, 8vw, 92px);
    line-height: .92;
    text-transform: uppercase;
}

.legal-shell h2 {
    margin-top: 42px;
    margin-bottom: 12px;
    font-family: var(--body);
    font-size: 22px;
    line-height: 1.2;
    text-transform: none;
}

.legal-shell p,
.legal-shell li {
    color: var(--muted);
}

.legal-shell a {
    color: var(--yellow);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    margin-bottom: 38px;
    color: var(--yellow);
    font-weight: 850;
}

/* Responsive */
@media (max-width: 1080px) {
    .nav-shell { gap: 18px; }
    .main-nav { gap: 16px; }
    .nav-ticket { padding-inline: 15px; }
    .rewards { grid-template-columns: repeat(3, 1fr); }
    .rewards article:nth-child(4),
    .rewards article:nth-child(5) { grid-column: span 1; }
    .table-card { grid-template-columns: .8fr 1.2fr; }
    .table-visual { padding: 30px; }
}

@media (max-width: 900px) {
    :root { --header-height: 70px; }

    .menu-toggle { display: block; }
    .nav-ticket { margin-left: 0; }

    .main-nav {
        position: fixed;
        z-index: -1;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        margin: 0;
        padding: 14px 20px 24px;
        transform: translateY(-120%);
        border-bottom: 1px solid rgba(255,255,255,.1);
        background: rgba(5,6,8,.98);
        opacity: 0;
        visibility: hidden;
        transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 15px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 14px;
    }

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

    .statement-grid,
    .collab-intro,
    .tickets-heading {
        grid-template-columns: 1fr;
    }

    .statement-grid { align-items: start; }
    .tickets-heading { gap: 18px; }
    .ticket-trust { grid-template-columns: repeat(3, auto); gap: 10px 18px; }

    .dj-stage { min-height: 590px; }
    .dj-card-main { width: 76%; }
    .dj-card-float { width: 28%; }
    .dj-stamp { right: 3%; width: 112px; height: 112px; font-size: 21px; }

    .table-card { grid-template-columns: 1fr; }
    .table-visual { min-height: 380px; }

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

@media (max-width: 700px) {
    :root { --radius: 16px; }

    body { font-size: 15px; padding-bottom: 66px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }

    .nav-ticket { display: none; }
    .brand {
        font-size: 19px;
        font-weight: 900;
        letter-spacing: -.045em;
        -webkit-text-stroke: .55px currentColor;
        text-shadow: .4px 0 currentColor, -.4px 0 currentColor, 0 .35px currentColor;
    }

    .hero {
        min-height: 760px;
        align-items: start;
    }

    .hero-background img {
        object-position: 52% center;
        animation-duration: 15.5s;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(4,5,7,.48) 0%, rgba(4,5,7,.34) 22%, rgba(4,5,7,.65) 72%, var(--black) 100%),
            linear-gradient(90deg, rgba(4,5,7,.4), rgba(4,5,7,.08), rgba(4,5,7,.45));
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 58px);
        padding-bottom: 80px;
    }

    .hero-kicker {
        margin-bottom: 22px;
        padding: 7px 10px;
        font-size: 9px;
    }

    .hero-title-art {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-lead {
        max-width: 560px;
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hero-facts span:last-child { grid-column: 1 / -1; }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .hero-actions .button { width: 100%; }

    .countdown {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }

    .countdown div {
        min-width: 0;
        padding: 11px 5px 9px;
    }

    .countdown strong { font-size: 25px; }
    .countdown span { font-size: 8px; letter-spacing: .07em; }
    .scroll-cue { display: none; }

    h2 { font-size: clamp(48px, 15.4vw, 76px); }

    .statement-grid {
        gap: 34px;
        padding: 30px 22px 32px;
        border-radius: 21px;
    }
    .statement-copy p { font-size: 16px; }
    .marquee { font-size: 33px; }

    .lineup-heading h2 {
        display: grid;
        gap: 2px;
        font-size: clamp(70px, 23vw, 108px);
        line-height: .78;
        white-space: normal;
    }

    .lineup-heading h2 b {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -5px);
        font-size: 28px;
    }

    .lineup-heading h2 span:last-child { color: var(--white); }
    .lineup-heading > p:last-child { margin-bottom: 48px; font-size: 16px; }

    .dj-stage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        min-height: 0;
    }

    .dj-card-main,
    .dj-card-float {
        position: relative;
        inset: auto;
        width: auto;
        transform: none;
    }

    .dj-card-main {
        grid-column: 1 / -1;
        border-width: 5px;
    }

    .dj-card-main figcaption { font-size: 17px; }
    .dj-card-float { border-width: 4px; }
    .dj-card-float img { aspect-ratio: 1 / 1; }
    .dj-stamp { display: none; }

    .vinyl-strip {
        display: flex;
        width: calc(100% + 14px);
        gap: 10px;
        margin-right: -14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .vinyl-strip::-webkit-scrollbar { display: none; }
    .vinyl-strip figure {
        min-width: 82%;
        scroll-snap-align: start;
    }
    .vinyl-strip figure:nth-child(2) { transform: none; }

    .ticket-trust {
        display: flex;
        flex-wrap: wrap;
    }

    .collab-access {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
    }

    .collab-access-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .collab-access-copy strong { font-size: 16px; }
    .collab-access-copy p { font-size: 12px; }
    .collab-access .button {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .ticket-browser-bar { height: 46px; padding-inline: 13px; }
    .ticket-browser-bar strong { font-size: 8px; }
    .ticket-shell {
        width: calc(100% - 8px);
        max-width: none;
        margin-inline: auto;
    }
    .ticket-shell iframe { height: 620px; }
    .ticket-fallback { display: grid; }
    .ticket-fallback .button { width: 100%; }

    .table-visual { min-height: 310px; padding: 28px; }
    .table-content { padding: 36px 24px 40px; }
    .table-content h2 { font-size: 52px; }
    .table-contact > div { display: grid; }
    .table-contact .button { width: 100%; }

    .collab::before { width: 280px; height: 280px; }
    .collab-intro { gap: 30px; }
    .collab-pitch p { font-size: 16px; }

    .rewards {
        display: flex;
        width: calc(100% + 14px);
        gap: 10px;
        margin-right: -14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .rewards::-webkit-scrollbar { display: none; }
    .rewards article {
        min-width: 76%;
        scroll-snap-align: start;
    }

    .simulator-card,
    .collab-form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .simulator-scale span:nth-child(2),
    .simulator-scale span:nth-child(4),
    .simulator-scale span:nth-child(6) { display: none; }

    .info-grid { grid-template-columns: 1fr; }
    .info-grid article { min-height: 0; }

    .final-cta { min-height: 560px; }
    .final-cta h2 { font-size: clamp(64px, 19vw, 94px); }
    .final-cta-inner > div { display: grid; }
    .final-cta .button { width: 100%; }

    .footer-top {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .brand-footer { font-size: 27px; }
    .footer-brand-slot { gap: 9px; }
    .collab-sales-count {
        min-width: 29px;
        height: 25px;
        padding: 0 7px;
        font-size: 16px;
    }
    .collab-sales-updated { font-size: 8px; }
    .social-links { justify-content: center; }
    .site-footer { padding-bottom: 50px; }

    .voucher-toast {
        top: calc(var(--header-height) + 10px);
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        gap: 8px;
        border-top: 1px solid rgba(255,255,255,.14);
        background: rgba(5,6,8,.95);
        box-shadow: 0 -10px 30px rgba(0,0,0,.3);
        backdrop-filter: blur(18px);
    }

    .mobile-action-bar a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 999px;
        background: var(--yellow);
        color: var(--ink);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .mobile-action-bar a:last-child {
        border: 1px solid rgba(255,255,255,.2);
        background: #1a1d22;
        color: var(--white);
    }
}

@media (max-width: 390px) {
    .hero-title-art { width: 100%; max-width: 100%; margin-inline: auto; }
    .countdown strong { font-size: 22px; }
    .hero-facts span { font-size: 10px; }
    .button-large { min-height: 56px; padding-inline: 20px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* ======================================================================
   V6 — IDENTITÉ ANGULAIRE RETRO HOUSE
   Coins biseautés, cadres francs et ombres décalées. Les formes rondes
   sont conservées uniquement lorsqu'elles ont un sens visuel (lucioles,
   vinyles, macaron DJ, contrôles natifs).
   ====================================================================== */
:root {
    --radius: 0;
    --cut-button: 12px;
    --cut-card: 18px;
    --cut-small: 8px;
}

/* Boutons : silhouette exclusive, sans effet "pilule" ni reflet générique. */
.button {
    border-radius: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-button)) 0, 100% var(--cut-button), 100% 100%, var(--cut-button) 100%, 0 calc(100% - var(--cut-button)));
    clip-path: polygon(0 0, calc(100% - var(--cut-button)) 0, 100% var(--cut-button), 100% 100%, var(--cut-button) 100%, 0 calc(100% - var(--cut-button)));
    box-shadow: none;
    letter-spacing: .075em;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, .5));
    transition: transform .18s ease, filter .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.button::after {
    top: auto;
    right: 12px;
    bottom: 8px;
    left: auto;
    width: 24px;
    height: 2px;
    transform: none;
    background: currentColor;
    opacity: .32;
    transition: width .2s ease, opacity .2s ease;
}

.button:hover {
    transform: translate(-2px, -2px);
}

.button:hover::after {
    width: 42px;
    transform: none;
    opacity: .58;
}

.button:active {
    transform: translate(2px, 2px);
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .5));
}

.button-yellow,
.button-yellow:hover {
    box-shadow: none;
    filter: drop-shadow(5px 5px 0 rgba(122, 92, 0, .72));
}

.button-ghost {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
    filter: drop-shadow(5px 5px 0 rgba(255, 196, 0, .16));
}

.button-dark {
    filter: drop-shadow(5px 5px 0 rgba(255, 60, 47, .72));
}

.button-whatsapp {
    filter: drop-shadow(5px 5px 0 rgba(5, 60, 27, .72));
}

/* Petits éléments d'interface : étiquettes et compteurs biseautés. */
.skip-link,
.hero-kicker,
.hero-facts span,
.cumulative-pill,
.form-status,
.collab-sales-count {
    border-radius: 0;
}

.skip-link,
.hero-kicker,
.cumulative-pill,
.collab-sales-count {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-small)) 0, 100% var(--cut-small), 100% 100%, var(--cut-small) 100%, 0 calc(100% - var(--cut-small)));
    clip-path: polygon(0 0, calc(100% - var(--cut-small)) 0, 100% var(--cut-small), 100% 100%, var(--cut-small) 100%, 0 calc(100% - var(--cut-small)));
}

.hero-kicker {
    padding-inline: 16px;
    border-left: 3px solid var(--yellow);
}

.hero-kicker::before {
    border-radius: 0;
    transform: rotate(45deg);
}

.hero-facts span {
    -webkit-clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
    border-left: 3px solid rgba(255, 196, 0, .72);
}

.cumulative-pill {
    padding: 9px 15px;
    border-left-width: 4px;
    background: rgba(11, 13, 16, .07);
}

/* Commandes et navigation. */
.menu-toggle,
.mobile-action-bar a {
    border-radius: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.menu-toggle {
    border-left: 3px solid var(--yellow);
}

.mobile-action-bar a {
    box-shadow: 3px 3px 0 rgba(116, 87, 0, .7);
}

.mobile-action-bar a:last-child {
    box-shadow: 3px 3px 0 rgba(255, 196, 0, .18);
}

/* Grands cadres : davantage panneau / affiche, moins carte arrondie. */
.countdown,
.statement-grid,
.collab-access,
.ticket-shell,
.table-card,
.simulator-card,
.collab-form-card,
.voucher-toast {
    border-radius: 0;
}

.countdown {
    -webkit-clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

.statement-grid,
.table-card {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% 100%, var(--cut-card) 100%, 0 calc(100% - var(--cut-card)));
    clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% 100%, var(--cut-card) 100%, 0 calc(100% - var(--cut-card)));
    filter: drop-shadow(10px 12px 0 rgba(255, 196, 0, .045));
}

.collab-access,
.simulator-card,
.collab-form-card,
.voucher-toast {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% calc(100% - var(--cut-card)), calc(100% - var(--cut-card)) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% calc(100% - var(--cut-card)), calc(100% - var(--cut-card)) 100%, 0 100%);
}

.ticket-shell {
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(255, 196, 0, .08), var(--shadow);
}

/* Photos et cartes éditoriales. */
.vinyl-strip figure,
.rewards article,
.info-grid article,
.simulator-result {
    border-radius: 0;
}

.vinyl-strip figure,
.info-grid article {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% 100%, var(--cut-small) 100%, 0 calc(100% - var(--cut-small)));
    clip-path: polygon(0 0, calc(100% - var(--cut-card)) 0, 100% var(--cut-card), 100% 100%, var(--cut-small) 100%, 0 calc(100% - var(--cut-small)));
}

.rewards article {
    -webkit-clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    border-left: 4px solid rgba(255, 196, 0, .72);
}

.rewards article:nth-child(even) {
    -webkit-clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 16px);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 16px);
    border-right: 4px solid rgba(255, 196, 0, .72);
    border-left: 0;
}

.rewards .reward-cash {
    border-color: var(--ink);
}

.info-grid article {
    border-top: 3px solid rgba(255, 196, 0, .48);
}

.simulator-result {
    -webkit-clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

/* Pictogrammes : petits écussons biseautés plutôt que pastilles uniformes. */
.collab-access-icon,
.table-content li::before,
.info-icon,
.social-links a,
.voucher-toast-icon,
.voucher-toast button {
    border-radius: 0;
    -webkit-clip-path: polygon(22% 0, 100% 0, 100% 78%, 78% 100%, 0 100%, 0 22%);
    clip-path: polygon(22% 0, 100% 0, 100% 78%, 78% 100%, 0 100%, 0 22%);
}

.info-icon {
    background: rgba(255, 196, 0, .075);
    box-shadow: inset 4px 0 0 rgba(255, 196, 0, .42);
}

.social-links a {
    border-left: 3px solid rgba(255, 196, 0, .55);
}

.social-links a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(122, 92, 0, .7);
}

/* Formulaire : champs francs avec repère latéral, sans coins mous. */
.collab-form input[type="text"],
.collab-form input[type="email"],
.collab-form select {
    border-radius: 0;
    border-left: 4px solid rgba(11, 13, 16, .18);
    box-shadow: none;
}

.collab-form input:focus,
.collab-form select:focus {
    border-left-color: var(--red);
    box-shadow: 5px 5px 0 rgba(255, 60, 47, .12);
}

.form-status {
    -webkit-clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

/* Le rail du simulateur devient plus graphique et moins "composant UI". */
#salesSimulator::-webkit-slider-runnable-track,
#salesSimulator::-moz-range-track,
#salesSimulator::-moz-range-progress {
    border-radius: 0;
}

#salesSimulator::-webkit-slider-thumb,
#salesSimulator::-moz-range-thumb {
    border-radius: 0;
    transform: rotate(45deg);
}

@media (max-width: 700px) {
    :root {
        --cut-button: 10px;
        --cut-card: 14px;
        --cut-small: 7px;
    }

    .statement-grid {
        border-radius: 0;
    }

    .button {
        filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .5));
    }

    .button-yellow,
    .button-yellow:hover {
        filter: drop-shadow(4px 4px 0 rgba(122, 92, 0, .72));
    }

    .button-dark {
        filter: drop-shadow(4px 4px 0 rgba(255, 60, 47, .72));
    }
}
