@keyframes move-right-to-left{0%,to{transform:translateX(0)}50%{transform:translateX(-6px)}}@font-face{font-family:"LoveloBlack";font-display:swap;src:url(./fonts/Lovelo.woff2)format("woff2")}@font-face{font-family:"LoveloLine";font-weight:400;font-style:normal;font-display:swap;src:url(./fonts/LoveloLine.woff2)format("woff2")}@font-face{font-family:"LoveloBlack";src:url(./fonts/Lovelo.woff2)format("woff2");font-weight:900;font-style:normal;font-display:swap}body{background-color:#050505;color:#fff;font-family:"LoveloBlack",sans-serif;font-weight:700}a,body *,button,div,h1,h2,h3,h4,h5,h6,p,span{font-family:"LoveloBlack",sans-serif;font-weight:700}.animate-move-right-to-left{animation:move-right-to-left 1.2s ease-in-out infinite}


.header-gradient {
background: linear-gradient(
to bottom,
rgba(0,0,0,1) 0%,
rgba(0,0,0,1) 40%,
rgba(0,0,0,0.95) 60%,
rgba(0,0,0,0.85) 75%,
rgba(0,0,0,0.7) 85%,
rgba(0,0,0,0.5) 92%,
rgba(0,0,0,0.2) 100%
);
}
.font-lovelo { font-family: 'Lovelo', sans-serif; }
.skip-link {
position: absolute;
top: -40px;
left: 6px;
background: #ff2d2d;
color: white;
padding: 8px;
z-index: 100;
transition: top 0.3s;
}
.skip-link:focus {
top: 6px;
}
.font-loveloLine { font-family: 'LoveloLine', 'Lovelo', sans-serif; }
.body-trampa { overflow-x: hidden; }
.audio-pulse-indicator {
display: inline-block;
width: 8px; height: 8px;
border-radius: 50%;
background: #ff2d2d;
margin-left: 4px;
vertical-align: middle;
animation: audio-pulse 1.5s ease-in-out infinite;
}
@keyframes audio-pulse {
0%, 100% { opacity: 0.4; transform: scale(0.8); }
50% { opacity: 1; transform: scale(1.2); }
}
.grain-overlay {
pointer-events: none;
position: absolute; inset: 0;
opacity: 0.03;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mask-fade-x {
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
@keyframes marquee-fast {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.animate-marquee { animation: marquee 30s linear infinite; }
.animate-marquee-fast { animation: marquee-fast 20s linear infinite; }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== HERO ENTRANCE ===== */
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-entrance,
.hero-entrance-1,
.hero-entrance-2,
.hero-entrance-3,
.hero-entrance-4,
.hero-entrance-5 {
  opacity: 1;
}
.hero-entrance { animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-entrance-1 { animation: heroFadeUp 1s 0.15s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-entrance-2 { animation: heroFadeUp 1s 0.3s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-entrance-3 { animation: heroFadeUp 1s 0.45s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-entrance-4 { animation: heroFadeUp 1s 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-entrance-5 { animation: heroFadeUp 1s 0.75s cubic-bezier(0.16,1,0.3,1) forwards; }

.scale-in-center { animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; }
.scale-out-center { animation: scale-out-center 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both; }
@keyframes scale-in-center { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes scale-out-center { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(0); opacity: 0; } }
#hero-video-modal {
display: none;
position: fixed;
z-index: 99999;
inset: 0;
background-color: rgba(10, 10, 10, 0.98);
backdrop-filter: blur(8px);
align-items: center;
justify-content: center;
}
.hero-video-wrapper {
position: relative;
height: 85vh;
aspect-ratio: 9 / 16;
max-width: 95vw;
background: #000;
border-radius: 12px;
box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
@media (min-width: 768px) {
.hero-video-wrapper { height: 90vh; }
}
#hero-promo-player {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}
.hero-close-btn {
position: absolute;
top: 15px;
right: 15px;
width: 40px;
height: 40px;
background: rgba(0, 0, 0, 0.6);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 100001;
transition: 0.3s;
}
.hero-close-btn:hover {
background: #dc2626;
transform: rotate(90deg) scale(1.1);
}


.demo-block { max-width: 900px; margin: 0 auto; }
  .demo-header { text-align: center; margin-bottom: 32px; }
  .demo-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .demo-label span { color: #ff2d2d; font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
  .demo-label .line { width: 32px; height: 1px; background: #ff2d2d; opacity: 0.6; }
  .demo-title { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 12px; text-transform: uppercase; }
  .demo-title em { color: #ff2d2d; font-style: normal; }
  .image-frame { position: relative; width: 100%; margin: 0 auto; display: block; text-decoration: none; max-width: 743px; }

  .image-glow { position: absolute; inset: -20px; background: radial-gradient(ellipse at center, rgba(255,45,45,0.12) 0%, transparent 70%); z-index: 0; pointer-events: none; }
  .image-border { position: relative; z-index: 1; border: none; border-radius: 6px; overflow: hidden; background: #0a0a0a; box-shadow: 0 0 0 1px rgba(255,45,45,0.2), 0 0 0 1px rgba(255,255,255,0.04), 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(255,45,45,0.06); transition: box-shadow 0.4s ease, transform 0.4s ease; }
  .image-frame:hover .image-border { box-shadow: 0 0 0 1px rgba(255,45,45,0.3), 0 20px 40px rgba(0,0,0,0.6), 0 0 60px rgba(255,45,45,0.15); transform: translateY(-2px); }
  .browser-bar { background: #111; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
  .browser-dots { display: flex; gap: 4px; }
  .browser-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.1); }
  .browser-dots span:first-child { background: rgba(255,90,90,0.5); }
  .browser-dots span:nth-child(2) { background: rgba(255,190,0,0.3); }
  .browser-dots span:nth-child(3) { background: rgba(0,200,80,0.3); }
  .browser-url { flex: 1; background: rgba(255,255,255,0.04); border-radius: 3px; padding: 2px 8px; font-size: 10px; color: rgba(255,255,255,0.25); }
  .demo-image { width: 100%; height: auto; display: block; }
  .image-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; opacity: 0; transition: opacity 0.3s ease; border-radius: 6px; }
  .image-frame:hover .image-overlay { opacity: 1; }
  .overlay-link { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); border: 1px solid rgba(255,45,45,0.3); padding: 6px 14px; border-radius: 3px; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
  .overlay-link svg { width: 12px; height: 12px; }
  .overlay-link:hover { background: rgba(255,45,45,0.2); border-color: #ff2d2d; }
  .demo-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding: 0 4px; gap: 16px; flex-wrap: wrap; }
  .demo-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .tag { padding: 3px 8px; border: 1px solid rgba(255,45,45,0.25); border-radius: 2px; font-size: 9px; color: rgba(255,45,45,0.7); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
  .tag-voice-desktop { display: inline-flex; }
  @media (max-width: 640px) { .tag-voice-desktop { display: none; } .demo-footer { justify-content: center; } }
  .launch-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
  .launch-link:hover { color: #ff2d2d; }
  .launch-link svg { width: 11px; height: 11px; transition: transform 0.2s; }
  .launch-link:hover svg { transform: translate(2px, -2px); }

  @keyframes shake {
0%, 100% { transform: translateX(0); }
20%, 60% { transform: translateX(-5px); }
40%, 80% { transform: translateX(5px); }
}
.shake-animation { animation: shake 0.3s ease-in-out; }
@keyframes fadeIn {
from { opacity: 0; transform: translateX(-10px); }
to { opacity: 1; transform: translateX(0); }
}
.animate-fadeIn { animation: fadeIn 0.6s ease-out forwards; }
.hourglass-container { animation: rotate-hourglass 2s ease-in-out infinite; }
@keyframes rotate-hourglass {
0%, 100% { transform: rotate(0deg); }
25% { transform: rotate(90deg); }
50% { transform: rotate(180deg); }
75% { transform: rotate(270deg); }
}
.chrono-container {
box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
animation: pulse-container 3s infinite;
}
@keyframes pulse-container {
0%, 100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.3); }
50% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.5); }
}

.cpc-bar-wrap { margin-bottom: 24px; }
  .cpc-bar-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 12px; }
  .cpc-stat-number { font-family: 'LoveloBlack', sans-serif; font-size: 2.8rem; line-height: 1; color: #ff2d2d; letter-spacing: -0.02em; }
  .cpc-stat-label { font-size: 10px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 4px; }
  .cpc-track { position: relative; width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 99px; overflow: visible; }
  .cpc-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; border-radius: 99px; background: linear-gradient(90deg, rgba(255,45,45,0.4) 0%, #ff2d2d 100%); box-shadow: 0 0 12px rgba(255,45,45,0.5); transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .cpc-fill.animate { width: 72%; }
  .cpc-badge { position: absolute; top: -28px; left: 72%; transform: translateX(-50%); background: #ff2d2d; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; padding: 3px 7px; border-radius: 3px; white-space: nowrap; opacity: 0; transition: opacity 0.4s ease 1s; }
  .cpc-badge::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #ff2d2d; }
  .cpc-fill.animate ~ .cpc-badge { opacity: 1; }
  .cpc-labels { display: flex; justify-content: space-between; margin-top: 10px; }
  .cpc-labels span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.2); }
  .cpc-labels span.after { color: rgba(255,45,45,0.5); }
  .cpc-track::before { content: ''; position: absolute; left: 0; top: -4px; bottom: -4px; width: 1px; background: rgba(255,255,255,0.1); }

  html {
scroll-behavior: smooth;
}
* {
box-sizing: border-box;
}
body {
overflow-x: hidden;
}

html {
scroll-behavior: auto !important;
}
body {
width: 100%;
max-width: 100vw;
overflow-x: hidden;
overflow-y: auto;
margin: 0;
position: relative;
}
*::-webkit-scrollbar { display: none; }
* { -ms-overflow-style: none; scrollbar-width: none; }
.overlay-base {
position: fixed;
inset: 0;
width: 100vw;
height: 100vh;
z-index: 9999;
pointer-events: none;
opacity: 0;
visibility: hidden;
overflow: hidden;
}
.bg-black { background: #000; }
.bg-smoke {
background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
}
.corner, .camera-circle, .shatter-piece, .neon-line, .flash {
position: absolute;
will-change: transform, opacity;
}
.corner { width: 80px; height: 80px; border: 4px solid #fff; }
.corner-tl { top: 15%; left: 15%; border-right: none; border-bottom: none; }
.corner-tr { top: 15%; right: 15%; border-left: none; border-bottom: none; }
.corner-bl { bottom: 15%; left: 15%; border-right: none; border-top: none; }
.corner-br { bottom: 15%; right: 15%; border-left: none; border-top: none; }
.camera-circle {
top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 180px; height: 180px; border: 4px solid #fff; border-radius: 50%;
}
.flash { inset: 0; background: #fff; opacity: 0; }
.overlay-shatter-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
}
.shatter-piece {
position: relative;
width: 100%; height: 100%;
background: #000;
border: 0.5px solid #222;
}
.overlay-neon {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    background: #000;
}

.neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff0040 50%, 
        transparent 100%);
    box-shadow: 0 0 20px #ff0040, 0 0 40px #ff0040;
}