/* ==========================================================================
   LAUNCH OVERLAY v2 - cinematic edition
   Agentia Familia / CREDIT IDEAL SRL
   ========================================================================== */

/* Font display serif pentru accentul aristocratic (fara italic) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

:root {
    --lo-bg-0: #020610;
    --lo-bg-1: #050912;
    --lo-bg-2: #0a1628;
    --lo-bg-3: #142340;
    --lo-gold: #d4af6f;
    --lo-gold-soft: #e6c989;
    --lo-gold-deep: #a8814a;
    --lo-ivory: #f5ecd9;
    --lo-text: #e8e2d3;
    --lo-text-mute: rgba(232, 226, 211, 0.6);
    --lo-line: rgba(212, 175, 111, 0.35);
    --lo-glass-stroke: rgba(212, 175, 111, 0.2);
    --lo-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.75);

    /* mouse parallax variables - JS suprascrie */
    --lo-mx: 0;
    --lo-my: 0;
}

/* Lock scroll cand overlay-ul e activ */
html.lo-locked,
body.lo-locked {
    overflow: hidden !important;
    height: 100vh !important;
}

/* ========== ROOT CONTAINER ========== */
.lo-root {
    position: fixed;
    inset: 0;
    z-index: 999999;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--lo-text);
    isolation: isolate;
    background: var(--lo-bg-0);
}

.lo-root.lo-hide {
    animation: loOut 0.8s cubic-bezier(0.7, 0, 0.84, 0) forwards;
    pointer-events: none;
}

.lo-root.lo-hidden {
    display: none !important;
}

@keyframes loOut {
    from { opacity: 1; }
    to { opacity: 0; transform: scale(1.04); filter: blur(10px); }
}

/* ========== LETTERBOX CINEMATIC INTRO ========== */
.lo-letterbox {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: #000;
    z-index: 50;
    pointer-events: none;
}

.lo-letterbox--top {
    top: 0;
    animation: loLetterboxTop 1.4s cubic-bezier(0.77, 0, 0.18, 1) 0.2s forwards;
}

.lo-letterbox--bottom {
    bottom: 0;
    animation: loLetterboxBot 1.4s cubic-bezier(0.77, 0, 0.18, 1) 0.2s forwards;
}

@keyframes loLetterboxTop {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

@keyframes loLetterboxBot {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

/* ========== SCENE - container care primeste cinematic zoom ========== */
.lo-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform-origin: center 60%;
    animation: loSceneZoom 6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both,
               loSceneDrift 22s ease-in-out 6.4s infinite alternate;
}

@keyframes loSceneZoom {
    from { transform: scale(1.18); filter: blur(6px); opacity: 0; }
    to { transform: scale(1); filter: blur(0); opacity: 1; }
}

@keyframes loSceneDrift {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.03) translate(-1%, -0.5%); }
}

/* ========== BACKGROUND - aurora mesh + noise + vignette ========== */
.lo-bg {
    position: absolute;
    inset: -10%;
    z-index: 0;
}

.lo-bg__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(212, 175, 111, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(120, 90, 200, 0.1), transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 175, 111, 0.15), transparent 65%),
        radial-gradient(ellipse 40% 60% at 90% 70%, rgba(168, 129, 74, 0.16), transparent 60%);
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 100%, 100% 50%;
    animation: loAuroraShift 24s ease-in-out infinite alternate;
}

@keyframes loAuroraShift {
    0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 100% 50%; }
    100% { background-position: 30% 20%, 70% 30%, 40% 80%, 80% 70%; }
}

.lo-bg__mesh {
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 230deg at 50% 50%,
        rgba(212, 175, 111, 0.04) 0deg,
        rgba(20, 35, 64, 0.0) 60deg,
        rgba(120, 90, 200, 0.05) 140deg,
        rgba(20, 35, 64, 0.0) 220deg,
        rgba(212, 175, 111, 0.06) 320deg,
        rgba(20, 35, 64, 0.0) 360deg);
    filter: blur(40px);
    animation: loMeshRotate 60s linear infinite;
    mix-blend-mode: screen;
}

@keyframes loMeshRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lo-bg__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
    background-size: 240px 240px;
    opacity: 0.45;
    mix-blend-mode: overlay;
    animation: loGrain 0.5s steps(4) infinite;
}

@keyframes loGrain {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-3%, 1%); }
    50%  { transform: translate(2%, -2%); }
    75%  { transform: translate(-1%, 3%); }
    100% { transform: translate(0, 0); }
}

.lo-bg__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

/* ========== SKYLINE PARALLAX LAYERS ========== */
.lo-skyline {
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 0;
    height: 50%;
    pointer-events: none;
    transform: translate3d(calc(var(--lo-mx) * -15px), calc(var(--lo-my) * -5px), 0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.lo-skyline svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lo-skyline--mid {
    height: 42%;
    transform: translate3d(calc(var(--lo-mx) * -25px), calc(var(--lo-my) * -8px), 0);
}

.lo-skyline--front {
    height: 26%;
    transform: translate3d(calc(var(--lo-mx) * -40px), calc(var(--lo-my) * -12px), 0);
}

/* window lights flicker */
.lo-windows rect {
    animation: loWindowFlicker 4s ease-in-out infinite;
}

.lo-windows rect:nth-child(3n)   { animation-delay: 0.6s; animation-duration: 5s; }
.lo-windows rect:nth-child(3n+1) { animation-delay: 1.2s; animation-duration: 6s; }
.lo-windows rect:nth-child(3n+2) { animation-delay: 1.8s; animation-duration: 4.5s; }

@keyframes loWindowFlicker {
    0%, 100% { opacity: 0.85; }
    50%      { opacity: 0.35; }
}

/* ========== FX LAYER: beams + lens flare ========== */
.lo-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translate3d(calc(var(--lo-mx) * -8px), calc(var(--lo-my) * -4px), 0);
}

.lo-beam {
    position: absolute;
    top: -10%;
    width: 3px;
    height: 130%;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 111, 0.4) 50%, transparent 100%);
    filter: blur(2px);
    opacity: 0;
    transform-origin: top center;
}

.lo-beam--1 { left: 20%; transform: rotate(12deg); animation: loBeam 11s ease-in-out infinite; animation-delay: 1s; }
.lo-beam--2 { left: 55%; transform: rotate(-8deg); animation: loBeam 11s ease-in-out infinite; animation-delay: 4.5s; }
.lo-beam--3 { left: 82%; transform: rotate(15deg); animation: loBeam 11s ease-in-out infinite; animation-delay: 7.5s; }

@keyframes loBeam {
    0%, 100% { opacity: 0; }
    30%, 70% { opacity: 0.7; }
}

/* Lens flare - traverseaza ecranul orizontal periodic */
.lo-flare {
    position: absolute;
    top: 38%;
    left: -25%;
    width: 50%;
    height: 200px;
    background: radial-gradient(ellipse at center,
        rgba(255, 240, 200, 0.45) 0%,
        rgba(212, 175, 111, 0.25) 20%,
        rgba(212, 175, 111, 0.08) 50%,
        transparent 75%);
    filter: blur(20px);
    transform: translateX(0) rotate(-8deg);
    mix-blend-mode: screen;
    animation: loFlareSweep 18s ease-in-out infinite;
    animation-delay: 3s;
    opacity: 0;
}

@keyframes loFlareSweep {
    0%   { transform: translateX(0) rotate(-8deg); opacity: 0; }
    10%  { opacity: 0.9; }
    50%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateX(260vw) rotate(-8deg); opacity: 0; }
}

/* ========== DUST (particule gold) ========== */
.lo-dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lo-dust__p {
    position: absolute;
    background: var(--lo-gold-soft);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(230, 201, 137, 0.8), 0 0 24px rgba(212, 175, 111, 0.4);
    animation: loDustFloat linear infinite;
}

.lo-dust__p:nth-child(1)  { left: 4%;  width: 3px; height: 3px; animation-duration: 22s; animation-delay: 0s; }
.lo-dust__p:nth-child(2)  { left: 11%; width: 5px; height: 5px; animation-duration: 28s; animation-delay: 2s; }
.lo-dust__p:nth-child(3)  { left: 19%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 4s; }
.lo-dust__p:nth-child(4)  { left: 25%; width: 4px; height: 4px; animation-duration: 25s; animation-delay: 6s; }
.lo-dust__p:nth-child(5)  { left: 33%; width: 3px; height: 3px; animation-duration: 30s; animation-delay: 1s; }
.lo-dust__p:nth-child(6)  { left: 41%; width: 6px; height: 6px; animation-duration: 35s; animation-delay: 8s; }
.lo-dust__p:nth-child(7)  { left: 47%; width: 2px; height: 2px; animation-duration: 20s; animation-delay: 3s; }
.lo-dust__p:nth-child(8)  { left: 54%; width: 4px; height: 4px; animation-duration: 26s; animation-delay: 5s; }
.lo-dust__p:nth-child(9)  { left: 61%; width: 3px; height: 3px; animation-duration: 23s; animation-delay: 7s; }
.lo-dust__p:nth-child(10) { left: 68%; width: 5px; height: 5px; animation-duration: 32s; animation-delay: 9s; }
.lo-dust__p:nth-child(11) { left: 75%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: 10s; }
.lo-dust__p:nth-child(12) { left: 81%; width: 4px; height: 4px; animation-duration: 27s; animation-delay: 11s; }
.lo-dust__p:nth-child(13) { left: 87%; width: 3px; height: 3px; animation-duration: 24s; animation-delay: 12s; }
.lo-dust__p:nth-child(14) { left: 92%; width: 6px; height: 6px; animation-duration: 34s; animation-delay: 13s; }
.lo-dust__p:nth-child(15) { left: 96%; width: 2px; height: 2px; animation-duration: 21s; animation-delay: 14s; }
.lo-dust__p:nth-child(16) { left: 8%;  width: 5px; height: 5px; animation-duration: 29s; animation-delay: 15s; }

@keyframes loDustFloat {
    0%   { transform: translateY(110vh) translateX(0) scale(0.4); opacity: 0; }
    8%   { opacity: 1; }
    50%  { transform: translateY(50vh) translateX(20px) scale(1); }
    92%  { opacity: 0.7; }
    100% { transform: translateY(-15vh) translateX(-30px) scale(0.8); opacity: 0; }
}

/* ========== SCANLINES (CRT subtle) ========== */
.lo-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        rgba(255, 255, 255, 0.012) 0px,
        rgba(255, 255, 255, 0.012) 1px,
        transparent 1px,
        transparent 4px);
    pointer-events: none;
    z-index: 60;
    mix-blend-mode: overlay;
}

/* ========== STAGE (continut central) ========== */
.lo-stage {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 60px);
    box-sizing: border-box;
}

.lo-inner {
    position: relative;
    text-align: center;
    max-width: 1020px;
    width: 100%;
    transform: translate3d(calc(var(--lo-mx) * 6px), calc(var(--lo-my) * 4px), 0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* ========== CLOSE BUTTON ========== */
.lo-close {
    position: absolute;
    top: clamp(20px, 3vw, 36px);
    right: clamp(20px, 3vw, 36px);
    z-index: 30;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: loFadeIn 0.6s ease 2.4s forwards;
}

.lo-close__ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--lo-glass-stroke);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lo-close__bar {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--lo-gold-soft);
    transition: background 0.3s;
}

.lo-close__bar:first-child  { transform: rotate(45deg); }
.lo-close__bar:nth-child(2) { transform: rotate(-45deg); }

.lo-close:hover .lo-close__ring {
    transform: scale(1.1) rotate(90deg);
    border-color: var(--lo-gold);
    box-shadow: 0 0 20px rgba(212, 175, 111, 0.4);
}

.lo-close:hover .lo-close__bar {
    background: var(--lo-ivory);
}

/* ========== LOGOMARK CI ========== */
.lo-mark {
    width: clamp(72px, 9vw, 110px);
    height: clamp(72px, 9vw, 110px);
    margin: 0 auto clamp(20px, 3vh, 32px);
    opacity: 0;
    transform: scale(0.6) rotate(-30deg);
    animation: loMarkIn 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards,
               loMarkSpin 60s linear 4s infinite;
}

.lo-mark svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 175, 111, 0.45));
}

@keyframes loMarkIn {
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes loMarkSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== BRAND BAR ========== */
.lo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: clamp(20px, 3vh, 32px);
    opacity: 0;
    animation: loFadeIn 1s ease 2s forwards;
}

.lo-brand__line {
    width: clamp(40px, 8vw, 100px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lo-gold), transparent);
}

.lo-brand__text {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: clamp(10px, 1.05vw, 12px);
    letter-spacing: 0.35em;
    color: var(--lo-gold-soft);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ========== EYEBROW ========== */
.lo-eyebrow {
    margin: 0 0 clamp(18px, 2.5vh, 26px);
    overflow: hidden;
    padding: 4px 0;
}

.lo-eyebrow span {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--lo-gold);
    transform: translateY(120%);
    animation: loEyebrowUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 2.2s forwards;
}

@keyframes loEyebrowUp {
    to { transform: translateY(0); }
}

/* ========== TITLU SPLIT-LETTER ========== */
.lo-title {
    margin: 0 0 clamp(24px, 3.5vh, 36px);
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(38px, 7vw, 92px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--lo-ivory);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.lo-title__line {
    display: block;
    overflow: hidden;
    line-height: 1.1;
    padding-bottom: 0.1em;
}

.lo-title__line--accent {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    color: var(--lo-gold-soft);
    margin-top: 0.05em;
}

/* letterele individuale - JS le seteaza */
.lo-letter {
    display: inline-block;
    transform: translateY(110%) rotate(8deg);
    opacity: 0;
    animation: loLetterUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lo-letter--space { width: 0.25em; }

@keyframes loLetterUp {
    to { transform: translateY(0) rotate(0); opacity: 1; }
}

/* ========== SUBTITLU ========== */
.lo-subtitle {
    margin: 0 auto clamp(36px, 5vh, 56px);
    max-width: 620px;
    font-size: clamp(14px, 1.35vw, 17px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--lo-text-mute);
    opacity: 0;
    animation: loFadeUp 1s ease 3s forwards;
}

@keyframes loFadeIn {
    to { opacity: 1; }
}

@keyframes loFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== COUNTDOWN ODOMETER ========== */
.lo-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 1.4vw, 16px);
    margin: 0 auto clamp(38px, 5vh, 58px);
    flex-wrap: nowrap;
    opacity: 0;
    animation: loFadeUp 1.1s ease 3.3s forwards;
}

.lo-count {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(78px, 12vw, 140px);
    padding: clamp(18px, 2.6vh, 30px) clamp(12px, 1.6vw, 22px) clamp(14px, 2vh, 22px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(20, 35, 64, 0.5) 100%);
    border: 1px solid var(--lo-glass-stroke);
    border-radius: 16px;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow:
        var(--lo-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -20px 40px -20px rgba(212, 175, 111, 0.12);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s;
}

.lo-count:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 111, 0.4);
}

/* Top hairline aurita pe cards */
.lo-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lo-gold), transparent);
}

/* Linia centrala orizontala (separator odometer) */
.lo-count::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 4;
    pointer-events: none;
    transform: translateY(-12%);
}

.lo-count__edge {
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 111, 0.4), transparent);
}

.lo-count__face {
    position: relative;
    height: clamp(48px, 7vh, 84px);
    width: 100%;
    overflow: hidden;
    perspective: 400px;
}

.lo-count__digit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: clamp(38px, 5.8vw, 72px);
    line-height: 1;
    color: var(--lo-ivory);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(212, 175, 111, 0.3);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.lo-count__digit--a {
    transform: translateY(0);
    opacity: 1;
}

.lo-count__digit--b {
    transform: translateY(100%);
    opacity: 0;
}

/* In timpul flip-ului - JS adauga clasa .is-flipping */
.lo-count.is-flipping .lo-count__digit--a {
    animation: loDigitOut 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.lo-count.is-flipping .lo-count__digit--b {
    animation: loDigitIn 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loDigitOut {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes loDigitIn {
    0%   { transform: translateY(100%); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

.lo-count__lbl {
    display: block;
    margin-top: clamp(10px, 1.6vh, 18px);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(9px, 0.9vw, 11px);
    letter-spacing: 0.36em;
    color: var(--lo-gold-soft);
    text-transform: uppercase;
}

/* Separatorul intre carduri - dot pulse */
.lo-count__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lo-gold);
    box-shadow: 0 0 12px var(--lo-gold);
    align-self: center;
    flex: 0 0 auto;
    animation: loSepPulse 1.6s ease-in-out infinite;
}

@keyframes loSepPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50%      { opacity: 1; transform: scale(1.4); }
}

/* ========== CTA-uri ========== */
.lo-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.6vw, 20px);
    margin-bottom: clamp(34px, 5vh, 52px);
    flex-wrap: wrap;
    opacity: 0;
    animation: loFadeUp 1s ease 3.6s forwards;
}

.lo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    overflow: hidden;
    white-space: nowrap;
}

.lo-btn__txt,
.lo-btn__arrow {
    position: relative;
    z-index: 3;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lo-btn__arrow {
    display: inline-flex;
    align-items: center;
    width: 22px;
    height: 12px;
}

.lo-btn__arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Primary - solid gold cu shimmer sweep */
.lo-btn--primary {
    background: linear-gradient(135deg, var(--lo-gold) 0%, var(--lo-gold-deep) 100%);
    color: #1a1207;
    box-shadow: 0 14px 36px -10px rgba(212, 175, 111, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lo-btn__shimmer {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    transform: skewX(-20deg);
    z-index: 2;
    animation: loShimmer 4s ease-in-out infinite;
    animation-delay: 4s;
    pointer-events: none;
}

@keyframes loShimmer {
    0%, 30% { left: -75%; }
    60%     { left: 130%; }
    100%    { left: 130%; }
}

.lo-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -10px rgba(212, 175, 111, 0.75),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    letter-spacing: 0.22em;
}

.lo-btn--primary:hover .lo-btn__arrow {
    transform: translateX(8px);
}

/* Ghost - outline cu glass */
.lo-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--lo-ivory);
    border-color: var(--lo-glass-stroke);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lo-btn--ghost:hover {
    border-color: var(--lo-gold);
    background: rgba(212, 175, 111, 0.08);
    color: var(--lo-gold-soft);
    letter-spacing: 0.22em;
}

/* ========== FOOTER OVERLAY ========== */
.lo-foot {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 111, 0.1);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(9px, 0.95vw, 11px);
    letter-spacing: 0.28em;
    color: var(--lo-text-mute);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: loFadeUp 1s ease 3.9s forwards;
}

.lo-foot__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 14px #4ade80;
    animation: loDot 1.6s ease-in-out infinite;
    flex: 0 0 auto;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 820px) {
    .lo-brand__text { font-size: 9.5px; letter-spacing: 0.28em; }
    .lo-brand__line { width: 36px; }
}

@media (max-width: 680px) {
    .lo-count {
        min-width: 64px;
        padding: 14px 8px 11px;
        border-radius: 12px;
    }
    .lo-count__face { height: 42px; }
    .lo-count__digit { font-size: 32px; }
    .lo-count__lbl { font-size: 8px; letter-spacing: 0.24em; margin-top: 8px; }
    .lo-countdown { gap: 4px; }
    .lo-count__sep { width: 3px; height: 3px; }

    .lo-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .lo-btn { width: 100%; justify-content: center; }

    .lo-foot { font-size: 9px; letter-spacing: 0.2em; padding: 6px 14px; }
    .lo-foot__txt { line-height: 1.4; }
}

@media (max-width: 400px) {
    .lo-count { min-width: 56px; padding: 12px 6px 9px; }
    .lo-count__digit { font-size: 28px; }
    .lo-count__face { height: 36px; }
    .lo-count__sep { display: none; }
}

/* Reduced motion: stop tot ce e animat de fundal */
@media (prefers-reduced-motion: reduce) {
    .lo-letterbox,
    .lo-scene,
    .lo-bg__aurora,
    .lo-bg__mesh,
    .lo-bg__noise,
    .lo-beam,
    .lo-flare,
    .lo-dust__p,
    .lo-mark,
    .lo-windows rect,
    .lo-foot__pulse,
    .lo-count__sep,
    .lo-btn__shimmer {
        animation: none !important;
    }
    .lo-letterbox { display: none; }
    .lo-mark, .lo-brand, .lo-eyebrow span, .lo-subtitle, .lo-countdown, .lo-actions, .lo-foot, .lo-close {
        opacity: 1 !important;
        transform: none !important;
    }
    .lo-letter { opacity: 1 !important; transform: none !important; }
    .lo-scene { transform: none !important; filter: none !important; opacity: 1 !important; }
}
