/* ==========================================================================
   Win Luxury Club — Premium Stylesheet
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
    /* Palette */
    --color-bg: #0a0a0a;
    --color-bg-soft: #111111;
    --color-bg-elevated: #161616;
    --color-surface: #1a1a1a;
    --color-line: rgba(255, 255, 255, 0.08);
    --color-line-strong: rgba(255, 255, 255, 0.16);

    --color-text: #f4f1ea;
    --color-text-muted: rgba(244, 241, 234, 0.62);
    --color-text-soft: rgba(244, 241, 234, 0.45);

    --color-gold: #c9a449;
    --color-gold-light: #e6c674;
    --color-gold-dark: #8a7332;
    --color-gold-soft: rgba(201, 164, 73, 0.14);

    /* Typography */
    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Spacing */
    --container: 1280px;
    --gutter: 24px;
    --radius: 4px;
    --radius-lg: 12px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.6s;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: none; }
ul { list-style: none; }
em { font-style: italic; }

::selection { background: var(--color-gold); color: var(--color-bg); }

/* ---------- 3. Custom Cursor ---------- */
.cursor, .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease);
    mix-blend-mode: difference;
}

.cursor {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.15s var(--ease-out);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

.cursor.is-hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-gold);
    background: rgba(201, 164, 73, 0.08);
}

@media (hover: none), (pointer: coarse) {
    body, button { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.text-justify {
    text-align: justify !important;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--color-text);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--color-gold);
}

.section-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 620px;
}

.section-header { margin-bottom: 80px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- 5. Layout Helpers ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section {
    padding: 140px 0;
    position: relative;
}

/* ---------- 6. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: none;
    white-space: nowrap;
}

.btn-sm { padding: 12px 22px; font-size: 11px; }

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg);
    border: 1px solid var(--color-gold);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-gold-light);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
    z-index: 0;
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-outline {
    border: 1px solid var(--color-line-strong);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-ghost {
    color: var(--color-text);
    border: 1px solid transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn-ghost::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.btn-ghost:hover { color: var(--color-gold); }
.btn-ghost:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- 7. Page Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

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

.loader-content {
    text-align: center;
}

.loader-monogram {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 24px;
    animation: fadeUp 1.2s var(--ease) both;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: var(--color-line);
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: translateX(-100%);
    animation: loaderFill 1.6s var(--ease) forwards;
}

@keyframes loaderFill { to { transform: translateX(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- 8. Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s var(--ease);
    padding: 24px 0;
}

.header.is-scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 500;
    border-radius: 50%;
    transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
}

.logo:hover .logo-mark {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: rotate(360deg);
}

.nav ul {
    display: flex;
    gap: 36px;
}

.nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav a:hover { color: var(--color-text); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: none;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 9. Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    perspective: 1400px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 164, 73, 0.22), transparent 60%),
        radial-gradient(ellipse 60% 70% at 20% 80%, rgba(201, 164, 73, 0.10), transparent 60%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-2%, 2%); }
}

.hero-spotlight {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle 420px at var(--mx, 50%) var(--my, 30%), rgba(230, 198, 116, 0.18), transparent 70%);
    transition: background-position 0.4s var(--ease);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold-light);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px rgba(230, 198, 116, 0.7);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(110vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: 60px;
    row-gap: 60px;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero-marquee {
    grid-column: 1 / -1;
}

@media (max-width: 1180px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        row-gap: 40px;
    }
    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        order: 1;
    }
    .watch-stage { order: 2; }
    .hero-marquee { order: 3; }
}

/* ---------- 9b. Floating Rolex ---------- */
.watch-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    pointer-events: none;
    perspective: 1200px;
    animation: stageEntrance 1.6s var(--ease) 0.6s both;
}

@keyframes stageEntrance {
    from { opacity: 0; transform: translateX(40px) scale(0.85); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.watch-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212, 174, 92, 0.45), transparent 60%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.watch-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.6), transparent 70%);
    filter: blur(18px);
    transform: translateX(-50%);
    animation: shadowFloat 6s ease-in-out infinite;
}

@keyframes shadowFloat {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.55; }
    50% { transform: translateX(-50%) scale(0.85); opacity: 0.35; }
}

.watch {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.6s var(--ease-out);
    animation: watchFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes watchFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}

.watch svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(212, 174, 92, 0.18));
}

.watch-crown {
    position: absolute;
    top: 50%;
    right: -2%;
    width: 22px;
    height: 32px;
    background: linear-gradient(90deg, #5e4519, #d4ae5c 40%, #f7e0a3 55%, #a8843a 80%, #5e4519);
    border-radius: 3px 8px 8px 3px;
    transform: translateY(-50%);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.5);
}

.watch-crown::before {
    content: "";
    position: absolute;
    inset: 4px 4px 4px 0;
    background: repeating-linear-gradient(90deg,
        rgba(0, 0, 0, 0.25) 0 1px,
        transparent 1px 3px);
    border-radius: 3px;
}

/* Watch hands */
.hand { transition: transform 0.05s linear; will-change: transform; }
.hand-second {
    transition: transform 0.18s cubic-bezier(0.4, 2.4, 0.6, 1);
    filter: drop-shadow(0 0 4px rgba(201, 164, 73, 0.5));
}

.watch-caption {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--color-gold-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0;
    animation: captionIn 1s var(--ease) 1.6s forwards;
}

.watch-caption-line {
    width: 32px;
    height: 1px;
    background: var(--color-gold);
}

@keyframes captionIn {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to { opacity: 0.8; transform: translate(-50%, 0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 40px;
    padding: 8px 18px;
    border: 1px solid rgba(201, 164, 73, 0.3);
    border-radius: 100px;
    background: rgba(201, 164, 73, 0.04);
    backdrop-filter: blur(8px);
}

.hero-eyebrow .line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-title em {
    color: var(--color-gold);
    font-style: italic;
}

.reveal-text {
    display: block;
    overflow: hidden;
}

.reveal-text > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s var(--ease) calc(var(--delay, 0) * 1s);
}

.reveal-text.is-visible > span { transform: translateY(0); }
.reveal-text:nth-child(2) > span { --delay: 0.15; }

.hero-subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 580px;
    margin: 0 0 48px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

@media (max-width: 1180px) {
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
}

.hero-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 32px;
    white-space: nowrap;
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--color-text-soft);
    animation: marquee 40s linear infinite;
}

.marquee-track span:nth-child(even) {
    color: var(--color-gold);
    font-style: normal;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--color-gold);
    animation: scrollBar 2.4s var(--ease) infinite;
}

@keyframes scrollBar {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(330%); }
}

/* ---------- 10. About ---------- */
.about {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.about-label { position: sticky; top: 120px; }

.about-text { margin-bottom: 48px; }

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text strong {
    color: var(--color-text);
    font-weight: 500;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line);
}

.signature-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-gold);
}

.signature-text small {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin-top: 6px;
}

/* ---------- 11. Prizes ---------- */
.prizes { background: var(--color-bg-soft); }

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-line);
    border: 1px solid var(--color-line);
}

.prize-card {
    background: var(--color-bg-soft);
    transition: background 0.6s var(--ease), transform 0.6s var(--ease);
    position: relative;
    overflow: hidden;
}

.prize-card-inner {
    padding: 56px 40px;
    position: relative;
    z-index: 1;
}

.prize-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 280px at var(--mx, 50%) var(--my, 0%), rgba(201, 164, 73, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    pointer-events: none;
}

.prize-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 40%,
        rgba(212, 174, 92, 0.18) 50%,
        rgba(255, 255, 255, 0.04) 60%,
        transparent 100%);
    transform: skewX(-20deg);
    transition: left 1s var(--ease);
    pointer-events: none;
}

.prize-card:hover { background: var(--color-bg-elevated); }
.prize-card:hover::before { opacity: 1; }
.prize-card:hover::after { left: 130%; }

.prize-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.prize-icon {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    margin-bottom: 32px;
    transition: transform 0.6s var(--ease);
}

.prize-card:hover .prize-icon {
    transform: scale(1.1) rotate(-4deg);
}

.prize-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
}

.prize-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

.prize-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold-soft);
    border-radius: 100px;
    background: var(--color-gold-soft);
}

/* ---------- 12. How It Works ---------- */
.how {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.how::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 164, 73, 0.06), transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 80px;
    position: relative;
}

.step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.6s var(--ease);
    background: linear-gradient(180deg, transparent, transparent);
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(201, 164, 73, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.step:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(201, 164, 73, 0.06), transparent);
}

.step:hover::before { opacity: 1; }

.step-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 26px;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    transition: all 0.6s var(--ease);
    position: relative;
    background: var(--color-bg);
}

.step-number::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(201, 164, 73, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    animation: rotateDash 12s linear infinite;
}

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

.step:hover .step-number {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 0 30px rgba(201, 164, 73, 0.4);
}

.step:hover .step-number::after { opacity: 1; }

.step-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    color: var(--color-gold-light);
    opacity: 0.65;
    transition: all 0.6s var(--ease);
}

.step:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--color-gold);
}

.step h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.step p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 18px;
}

.step p strong {
    color: var(--color-text);
    font-weight: 500;
}

.step-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold-soft);
    border-radius: 100px;
    background: var(--color-gold-soft);
}

.step-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin-top: 56px;
    position: relative;
}

.step-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(201, 164, 73, 0.6);
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ---------- 13. Values ---------- */
.values {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-line);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.values-text {
    position: sticky;
    top: 120px;
}

.values-text > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-top: 16px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-bg);
    transition: all 0.5s var(--ease);
}

.value-item:hover {
    border-color: var(--color-gold-soft);
    transform: translateX(8px);
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    padding: 8px;
    border: 1px solid var(--color-gold-soft);
    border-radius: 50%;
}

.value-item h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ---------- 14. Stats ---------- */
.stats {
    background: var(--color-bg);
    padding: 100px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

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

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number em {
    font-style: italic;
    font-size: 0.6em;
    color: var(--color-gold-light);
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ---------- 15. FAQ ---------- */
.faq { background: var(--color-bg); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: start;
}

.faq-header { position: sticky; top: 120px; }

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-line);
    padding: 24px 0;
    transition: padding 0.4s var(--ease);
}

.faq-item:first-child { border-top: 1px solid var(--color-line); }

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    cursor: none;
    list-style: none;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text);
    transition: color 0.4s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-gold); }

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    position: relative;
    border: 1px solid var(--color-line-strong);
    border-radius: 50%;
    transition: all 0.4s var(--ease);
}

.faq-toggle::before, .faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.4s var(--ease);
}

.faq-toggle::before { transform: translate(-50%, -50%); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-toggle {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: var(--color-bg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-content {
    overflow: hidden;
    padding-top: 16px;
}

.faq-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 720px;
}

.faq-item[open] .faq-content {
    animation: faqSlide 0.5s var(--ease);
}

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

/* ---------- 16. CTA ---------- */
.cta {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201, 164, 73, 0.22), transparent 70%);
    pointer-events: none;
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--color-gold));
    transform: translateX(-50%);
}

.cta-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-sparkles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold);
    animation: sparkle 5s ease-in-out infinite;
    opacity: 0;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cta h2 em {
    color: var(--color-gold);
    font-style: italic;
}

.cta p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 48px;
}

.cta-form { width: 100%; }

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius);
    padding: 8px;
    transition: border-color 0.3s var(--ease);
}

.form-row:focus-within {
    border-color: var(--color-gold);
}

.form-row input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: 0;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    cursor: none;
}

.form-row input::placeholder { color: var(--color-text-soft); }

.form-row .btn {
    padding: 14px 24px;
    font-size: 12px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-muted);
    text-align: left;
    cursor: none;
}

.form-consent input {
    flex-shrink: 0;
    margin-top: 4px;
    accent-color: var(--color-gold);
    cursor: none;
}

.form-consent a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

.form-message {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.form-message.is-error { color: #ff6e6e; }
.form-message.is-success { color: #c9a449; font-weight: 500; }
.form-message.is-loading { color: var(--color-text-muted); }
.form-message.is-success::before { content: "✓"; font-size: 16px; line-height: 1; }
.form-message.is-error::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border: 1px solid #ff6e6e; border-radius: 50%; font-size: 11px; font-weight: 700; }
.form-message.is-loading::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(244, 241, 234, 0.3);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Honeypot (invisible pour les humains, rempli par les bots) */
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Bouton soumission — états */
.btn .btn-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(10, 10, 10, 0.25);
    border-top-color: var(--color-bg);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn.is-loading .btn-label,
.btn.is-loading .btn-arrow { opacity: 0.4; }

.btn.is-loading .btn-spinner { display: inline-block; }

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

/* ---------- 17. Footer ---------- */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--color-line);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 20px 0;
    max-width: 320px;
    font-weight: 300;
}

.footer-address {
    font-size: 12px !important;
    letter-spacing: 0.1em;
    color: var(--color-text-soft) !important;
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 14px; }

.footer-col a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--color-gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all 0.4s var(--ease);
}

.footer-social a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--color-text-soft);
    letter-spacing: 0.06em;
    line-height: 1.6;
}

.footer-disclaimer { max-width: 600px; text-align: right; }

/* ---------- 18. Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- 19. Legal Pages ---------- */
.legal-page {
    padding: 180px 0 120px;
    background: var(--color-bg);
}

.legal-page .container { max-width: 880px; }

.legal-header { margin-bottom: 64px; text-align: center; }

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.legal-header h1 em { color: var(--color-gold); font-style: italic; }

.legal-header .legal-meta {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin-top: 24px;
}

.legal-content section { padding: 0; margin-bottom: 56px; }

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
}

.legal-content h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin: 28px 0 12px;
    letter-spacing: 0.02em;
}

.legal-content p, .legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 24px;
    margin: 12px 0 24px;
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 16px;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 1px;
    background: var(--color-gold);
}

.legal-content a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

.legal-content strong { color: var(--color-text); font-weight: 500; }

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    transition: gap 0.3s var(--ease);
}

.legal-back:hover { gap: 14px; }

.legal-info-block {
    padding: 32px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.legal-info-block p { margin-bottom: 8px; }
.legal-info-block p:last-child { margin-bottom: 0; }

/* ---------- 20. Responsive ---------- */
@media (max-width: 1180px) {
    .watch-stage { max-width: 340px; }
}

@media (max-width: 1024px) {
    section { padding: 100px 0; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-label { position: static; }

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

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    .step-divider { display: none; }
    .step:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

    .values-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .values-text, .faq-header { position: static; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

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

@media (max-width: 720px) {
    :root { --gutter: 20px; }

    section { padding: 80px 0; }
    .section-header { margin-bottom: 56px; }

    .nav { display: none; }
    .nav.is-open {
        display: flex;
        position: fixed;
        inset: 0;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 50;
    }
    .nav.is-open ul {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
    .nav.is-open a { font-size: 24px; font-family: var(--font-serif); }

    .nav-toggle { display: flex; }
    .header-inner > .btn { display: none; }

    .hero { padding: 140px 0 60px; }
    .hero-actions { flex-direction: column; gap: 16px; }
    .hero-actions .btn { width: 100%; }
    .hero-marquee { font-size: 14px; }

    .prizes-grid { grid-template-columns: 1fr; }
    .prize-card-inner { padding: 40px 28px; }

    .steps { grid-template-columns: 1fr; gap: 32px; }
    .steps .step:last-child { max-width: 100%; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; }
    .footer-disclaimer { text-align: left; }

    .form-row { flex-direction: column; gap: 8px; }
    .form-row .btn { width: 100%; }

    .faq-item summary { font-size: 17px; gap: 16px; }

    .legal-page { padding: 140px 0 80px; }
}

/* ---------- 21. Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .reveal-text > span { transform: none; }
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
    border-radius: 2px;
}
