:root {
    --c-bg: #F8FAFC;               
    --c-surface: #FFFFFF;          
    --c-surface-hover: #F0F4FF;    
    --c-accent: #0030FA;           
    --c-accent-hover: #0025CC;     
    --c-text-main: #0F172A;        
    --c-text-muted: #64748B;       
    --c-border: #E2E8F0;           
    --c-btn-bg: var(--c-accent);   
    --c-btn-text: #ffffff;         
    --c-badge-bg: #F0F4FF;         
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
    --shadow-deep: 0 2px 8px rgba(15, 23, 42, 0.015), 0 10px 24px -4px rgba(15, 23, 42, 0.03), 0 24px 48px -12px rgba(15, 23, 42, 0.05);
    --shadow-deep-dark: 0 4px 12px rgba(0, 0, 0, 0.2), 0 12px 24px -4px rgba(0, 0, 0, 0.3), 0 24px 48px -12px rgba(0, 0, 0, 0.4);
    --block-spacing: 20px; 
    --bar-height: 96px;
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --z-back: -1;
    --z-content: 1;
    --z-nav: 100;
    --z-toast: 1000;
    --z-modal: 2000;
    --z-cursor: 9999;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
::selection { background-color: var(--c-accent); color: #ffffff; -webkit-text-fill-color: #ffffff; text-shadow: none; }
::-moz-selection { background-color: var(--c-accent); color: #ffffff; text-shadow: none; }

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    margin: 0;
}

:focus-visible { outline: none !important; box-shadow: 0 0 0 3px var(--c-bg), 0 0 0 5px var(--c-accent); border-radius: 4px; z-index: 999; }
button, a, .btn-epic, .sticky-btn { touch-action: manipulation; cursor: pointer; outline: none !important; -webkit-tap-highlight-color: transparent; }
.sticky-btn:focus-visible { border-radius: 99px; }
.footer-links a:not(.footer-pill):focus-visible { border-radius: 4px; padding: 2px 6px; margin: -2px -6px; background: var(--c-surface); }
button { border: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

.ticker-wrapper { 
    display: flex; align-items: center; height: var(--bar-height); 
    background-color: var(--c-surface); border: 1px solid var(--c-border); 
    box-shadow: var(--shadow-deep); border-radius: var(--radius-lg); overflow: hidden; 
    gap: 0; position: relative; transition: height 0.3s ease; flex-shrink: 0; 
    transform: translateZ(0); margin: 0;
}
.ticker-accent { flex: 0 0 auto; height: 100%; background: transparent; display: flex; align-items: center; justify-content: center; padding: 0 30px; position: relative; z-index: 6; }
.ticker-accent::after { content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: var(--c-border); }
.ticker-accent span { color: var(--c-text-main); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; }
.ticker-accent span::before { content: ''; display: block; width: 6px; height: 6px; background-color: var(--c-accent); border-radius: 50%; }

.ticker-block { flex: 1; min-width: 0; height: 100%; background: transparent; overflow: hidden; display: flex; align-items: center; position: relative; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); cursor: default; }
.ticker-track { display: flex; align-items: center; width: max-content; flex-wrap: nowrap; will-change: transform; transform: translate3d(0, 0, 0); transition: animation-play-state 0.3s ease; }
.ticker-block:hover .ticker-track { animation-play-state: paused !important; }
.ticker-item { display: flex; align-items: center; flex-shrink: 0; gap: 10px; font-size: 1rem; font-weight: 500; white-space: nowrap; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; padding-right: 160px; position: relative; transition: color 0.5s ease; cursor: pointer; }
.ticker-item i { font-size: 1.3rem; color: var(--c-text-muted); transition: color 0.5s ease, transform 0.5s ease, text-shadow 0.5s ease; transform: translateZ(0) scale(1); -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
.ticker-item::after { content: '/'; position: absolute; right: 80px; top: 50%; transform: translateY(-50%); color: var(--c-border); font-size: 1.1rem; font-weight: 300; }
.ticker-item:hover { color: var(--c-text-main); }
.ticker-item:hover i { color: var(--c-accent); transform: translateZ(0) scale(1.15); text-shadow: 0 0 14px rgba(0, 48, 250, 0.65); }
.ticker-block[data-animated="true"] .ticker-track { animation: scroll var(--_animation-duration, 160s) linear infinite; }
@keyframes scroll { to { transform: translate3d(-50%, 0, 0); } }
.ticker-block[data-speed="fast"] { --_animation-duration: 80s; }
.ticker-block[data-speed="normal"] { --_animation-duration: 140s; }
.ticker-block[data-speed="slow"] { --_animation-duration: 220s; }

.toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: var(--z-toast); pointer-events: none; display: flex; flex-direction: column; align-items: center; width: 100%; }
.toast-notification { background-color: var(--c-surface); border: 1px solid var(--c-border); box-shadow: var(--shadow-deep); color: var(--c-text-main); padding: 12px 24px; border-radius: 99px; font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 12px; opacity: 0; transform: translateY(20px) scale(0.95); transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); pointer-events: auto; }
.toast-notification.active { opacity: 1; transform: translateY(0) scale(1); }
.toast-icon { display: flex; align-items: center; justify-content: center; color: var(--c-surface); background: var(--c-accent); width: 24px; height: 24px; border-radius: 50%; font-size: 14px; }
.toast-content { display: flex; flex-direction: column; line-height: 1.2; }
.toast-title { font-size: 0.75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.toast-msg { font-size: 0.95rem; color: var(--c-text-main); font-weight: 600; }

@media (pointer: fine) { 
    .pointer { 
        position: fixed; top: 0; left: 0; z-index: var(--z-cursor); 
        width: 2.5rem; aspect-ratio: 1; 
        background-color: rgba(0, 48, 250, 0.2); 
        border: 2px solid var(--c-accent); 
        border-radius: 100%; pointer-events: none; 
        transform: translate3d(var(--mouseX, -100px), var(--mouseY, -100px), 0) translate(-50%, -50%); 
        transition: width 0.3s ease, border-color 0.3s ease, background-color 0.3s ease; 
        will-change: transform; 
    } 
    body:has(button:hover, .card:hover, a:hover, .ticker-item:hover, .badge-item:hover, .footer-pill:hover, .sticky-btn:hover) .pointer { 
        width: 5rem; 
        border-color: var(--c-accent); 
        background-color: transparent;
    } 
}

.fade-in-up { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.page { min-height: 100vh; width: 100%; padding: var(--block-spacing); padding-bottom: var(--block-spacing); display: flex; flex-direction: column; gap: var(--block-spacing); position: relative; z-index: var(--z-content); }

nav { height: var(--bar-height); background-color: var(--c-surface); border: 1px solid var(--c-border); box-shadow: var(--shadow-deep); border-radius: var(--radius-lg); padding: 0 34px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: var(--z-nav); transition: height 0.3s ease; flex-shrink: 0; }
.logo, .nav-actions { display: flex; align-items: center; height: 100%; }
.logo-img { width: 160px; height: auto; display: block; }
.hero { display: flex; gap: var(--block-spacing); width: 100%; flex: 1; }
.hero-card { flex: 1; background-color: var(--c-surface); border: 1px solid var(--c-border); box-shadow: var(--shadow-deep); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.highlight-glow { border-color: var(--c-accent) !important; box-shadow: 0 0 0 4px rgba(0, 48, 250, 0.4), 0 20px 80px rgba(0, 48, 250, 0.7) !important; z-index: 10; }
.hero-left { text-align: left; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; margin-bottom: 32px; border: 1px solid var(--c-border); background: var(--c-badge-bg); border-radius: 99px; color: var(--c-text-main); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; width: fit-content; }
.hero-badge .dot { width: 8px; height: 8px; background-color: var(--c-accent); border-radius: 50%; position: relative; z-index: 1; }
.hero-badge .dot::after { content: ''; position: absolute; inset: 0; background-color: var(--c-accent); border-radius: 50%; z-index: -1; animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.5); opacity: 0; } }
.hero-left h1 { font-size: clamp(2.5rem, 5vw + 1rem, 5.5rem); line-height: 1.1; margin: 0 0 24px 0; font-weight: 800; letter-spacing: -0.04em; color: var(--c-text-main); }
.highlight-text { color: var(--c-accent); text-shadow: 0 4px 14px rgba(0, 48, 250, 0.3); } 

.sketch-container { position: relative; display: inline-block; z-index: 1; white-space: nowrap; }
.sketch-underline { position: absolute; left: -2%; bottom: -0.2em; width: 104%; height: 0.45em; z-index: -1; pointer-events: none; overflow: visible; -webkit-clip-path: inset(-50% 100% -50% -50%); clip-path: inset(-50% 100% -50% -50%); animation: drawSketchMask 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; animation-delay: 0.9s; }
.sketch-underline path { stroke: var(--c-accent); stroke-width: 4px; fill: none; stroke-linecap: round; stroke-linejoin: round; }
@keyframes drawSketchMask { to { -webkit-clip-path: inset(-50% -50% -50% -50%); clip-path: inset(-50% -50% -50% -50%); } }

.hero-left p { width: 100%; max-width: 520px; font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem); color: var(--c-text-muted); margin-bottom: 48px; font-weight: 400; line-height: 1.6; }
.trust-badges { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; border-top: 1px solid var(--c-border); padding-top: 32px; width: 100%; }
.badge-item { display: flex; align-items: center; gap: 12px; background: var(--c-bg); padding: 12px 20px; border-radius: 20px; border: 1px solid var(--c-border); justify-content: center; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer; }
.badge-icon { color: var(--c-text-main); font-size: 1.6rem; display: flex; align-items: center; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@media (hover: hover) {
    .badge-item:hover { border-color: var(--c-accent); background-color: rgba(0, 48, 250, 0.05); transform: translateY(-3px); box-shadow: 0 8px 24px -6px rgba(0, 48, 250, 0.15); }
    .badge-item:hover .badge-icon { color: var(--c-accent); transform: scale(1.15); }
}
.badge-item.burn-active { border-color: var(--c-accent); background-color: rgba(0, 48, 250, 0.05); transform: translateY(-3px); box-shadow: 0 8px 24px -6px rgba(0, 48, 250, 0.15); }
.badge-item.burn-active .badge-icon { color: var(--c-accent); transform: scale(1.15); }
.badge-text { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.badge-text strong { font-size: 1rem; color: var(--c-text-main); font-weight: 600; display: block; margin-bottom: 2px; }
.badge-text span { font-size: 0.8rem; color: var(--c-text-muted); display: block; }

.btn-epic { position: relative; display: inline-flex; overflow: hidden; width: fit-content; min-width: 240px; height: 68px; padding: 0; background: var(--c-btn-bg); border: 1px solid transparent !important; border-radius: 999px; color: var(--c-btn-text); cursor: pointer; z-index: 1; transition: border-color 0.8s ease-out, box-shadow 0.8s ease-out, background-color 0.8s ease-out; outline: none !important; -webkit-appearance: none; appearance: none; }
.btn-epic.nav-variant { min-width: 210px; height: 52px; }
.btn-epic:focus, .btn-epic:active { outline: none !important; border-color: transparent !important; box-shadow: none !important; }
.epic-wrapper { position: absolute; inset: 0; height: 200%; width: 100%; display: flex; flex-direction: column; z-index: auto; pointer-events: none; top: 0; }
.epic-content { height: 50%; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.2rem; font-weight: 600; position: relative; transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1); will-change: transform; }
.epic-content span { display: inline-block; padding-top: 0; position: relative; top: 1px; backface-visibility: hidden; }
.btn-epic::before { content: ""; position: absolute; left: 50%; top: 100%; width: 140%; height: 180%; transform: translateX(-50%) scaleY(1) scaleX(1.25); background-color: var(--c-text-main); border-radius: 50%; display: block; z-index: 5; opacity: 0.9; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.btn-epic::after { content: ""; position: absolute; left: 55%; top: 180%; width: 160%; height: 190%; transform: translateX(-50%) scaleY(1) scaleX(1.45); background-color: var(--c-text-main); border-radius: 50%; display: block; z-index: 5; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
@media (hover: hover) {
    .btn-epic:hover { border-color: var(--c-text-main) !important; box-shadow: 0 10px 25px -5px rgba(0, 48, 250, 0.4); }
    .btn-epic:hover::before { top: -35%; background-color: var(--c-text-main); transform: translateX(-50%) scaleY(1.3) scaleX(0.8); }
    .btn-epic:hover::after { top: -45%; background-color: var(--c-text-main); transform: translateX(-50%) scaleY(1.3) scaleX(0.8); }
    .btn-epic:hover .epic-content { transform: translateY(-100%); }
}
.btn-epic.burn-active::before, .btn-epic:focus-visible::before { top: -35%; background-color: var(--c-text-main); transform: translateX(-50%) scaleY(1.3) scaleX(0.8); opacity: 1; }
.btn-epic.burn-active::after, .btn-epic:focus-visible::after { top: -45%; background-color: var(--c-text-main); transform: translateX(-50%) scaleY(1.3) scaleX(0.8); opacity: 1; }
.btn-epic.burn-active .epic-content, .btn-epic:focus-visible .epic-content { transform: translateY(-100%); }
.btn-epic:focus-visible { border-color: transparent !important; box-shadow: 0 0 0 3px var(--c-bg), 0 0 0 5px var(--c-accent); outline: none !important; }
.epic-content i { display: flex; align-items: center; justify-content: center; font-size: 1.3em; margin-right: 2px; color: #ffffff; line-height: 1; transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease; }
.sticky-btn i { display: flex; align-items: center; justify-content: center; font-size: 1.3em; margin-right: 2px; color: var(--c-accent); line-height: 1; transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease; }
.icon-swap-state { transform: scale(0.01) rotate(-180deg) !important; opacity: 0; }
.epic-content:nth-child(1) { color: var(--c-btn-text); z-index: 2; }
.epic-content:nth-child(2) { color: #ffffff; z-index: 10; }
.epic-content:nth-child(2) i { color: #ffffff; }
.btn-epic.nav-variant .epic-content { font-size: 0.9rem; gap: 8px; text-transform: none; letter-spacing: 0.05em; }
.btn-epic.nav-variant .epic-content i { font-size: 1.7em; margin-right: 8px; color: #ffffff; display: flex; }
.btn-epic.nav-variant .epic-content:nth-child(2) i { color: #ffffff; }
.btn-epic:active { transform: scale(0.96); transition: transform 0.1s; }

.hero-media { display: flex; flex-direction: column; gap: var(--block-spacing); height: 100%; justify-content: center; }
.card { position: relative; display: flex; min-height: 140px; flex: 1; cursor: pointer; text-decoration: none; background: transparent; border: none; outline: none; box-shadow: none; transform: none !important; isolation: isolate; }
.card-badge { position: absolute; top: 15px; right: 15px; background: #1E293B; color: #FFFFFF; font-weight: 800; font-size: 1.1rem; padding: 8px 16px; border-radius: 10px; z-index: 10; transform: rotate(3deg) translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; outline: 1px solid transparent; pointer-events: none; letter-spacing: 0.1em; }
.card-image { height: 100%; width: auto; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); border: 1px solid var(--c-border); background-color: var(--c-surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 2; transition: border-color 0.3s ease; }
.card-image img { width: 60%; height: auto; object-fit: contain; transition: transform 0.4s var(--ease-smooth); }
.card:hover .card-image img, .card:focus-visible .card-image img { transform: scale(1.08); }
.card-info-title { position: relative; z-index: 2; padding-right: 80px; }
.card-info-title h3 { margin: 0; font-size: clamp(2.5rem, 4vw, 3.6rem); line-height: 1.1; color: var(--c-text-main); font-weight: 800; transition: color 0.3s ease; }
.card-info-title h4 { margin: 8px 0 0; font-size: clamp(1.4rem, 2vw, 1.8rem); color: var(--c-text-muted); font-weight: 400; display: flex; align-items: center; gap: 8px; transition: color 0.3s ease; }
.card-info-title h4 i { font-size: 0.9em; color: var(--c-text-main); transition: color 0.3s ease; }
.card-external { position: absolute; right: 34px; top: 50%; transform: translateY(-50%); width: 64px; height: 64px; border-radius: 50%; background-color: var(--c-bg); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--c-text-main); transition: all 0.3s ease; z-index: 3; }

#hero-target { background-color: #0F172A; background-image: radial-gradient(rgba(0, 48, 250, 0.4) 2px, transparent 2px); background-size: 40px 40px; background-position: center center; border-color: #0F172A; box-shadow: var(--shadow-deep); position: relative; }
#hero-target .card-content { flex: 1; background-color: rgba(255, 255, 255, 0.01); backdrop-filter: blur(4px) saturate(110%); -webkit-backdrop-filter: blur(4px) saturate(110%); border: 1px solid transparent; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0, 0, 0, 0.2); border-radius: var(--radius-md); display: flex; align-items: center; padding: 12px; width: 100%; height: 100%; position: relative; z-index: 2; gap: 30px; overflow: hidden; transition: box-shadow 0.4s ease, background-color 0.4s ease, border-color 0.4s ease; transform-style: preserve-3d; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translateZ(0); }
@media (hover: hover) { 
    #hero-target .card-content::before { content: ""; position: absolute; inset: 0; padding: 3px; border-radius: inherit; background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(0, 48, 250, 0.9) 0%, transparent 50%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 3; opacity: 1; transform: translateZ(0); -webkit-transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
    #hero-target .card-content::after { content: ""; position: absolute; inset: -20px; background: radial-gradient(1000px circle at var(--mouse-x) var(--mouse-y), rgba(0, 48, 250, 0.2), transparent 60%); opacity: 0; filter: blur(90px); z-index: -1; pointer-events: none; transform: translateZ(-1px); transition: opacity 0.4s ease; } 
}
#hero-target .card:hover .card-content::after, #hero-target .card:focus-visible .card-content::after { opacity: 1; }
#hero-target .card:hover .card-content, #hero-target .card:focus-visible .card-content { background-color: rgba(255, 255, 255, 0.04); border-color: transparent; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 12px 40px rgba(0, 0, 0, 0.4); z-index: 10; }
#hero-target .card.burn-active .card-content { border-color: transparent !important; box-shadow: inset 0 0 0 1px var(--c-accent), 0 0 35px rgba(0, 48, 250, 0.6) !important; background-color: rgba(0, 48, 250, 0.15) !important; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important; }
#hero-target .card:active .card-content { transform: scale(0.97) !important; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 30px rgba(0, 48, 250, 0.25); }
#hero-target .card-image { background-color: #FFFFFF; border-color: rgba(255, 255, 255, 0.1); }
#hero-target .card:hover .card-image, #hero-target .card:focus-visible .card-image { border-color: var(--c-accent); }
#hero-target .card-info-title h3 { color: #FFFFFF; }
#hero-target .card-info-title h4 { color: #9CA3AF; }
#hero-target .card-info-title h4 i { color: var(--c-accent); }
#hero-target .card-external { background-color: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.1); color: #FFFFFF; backdrop-filter: blur(4px); }
#hero-target .card:hover .card-external, #hero-target .card:focus-visible .card-external { background-color: var(--c-accent); border-color: var(--c-accent); color: #ffffff; transform: translateY(-50%) rotate(45deg); }

.site-footer { margin-top: 0; padding-top: 0; padding-bottom: 0; display: flex; flex-direction: column; align-items: center; gap: 15px; color: var(--c-text-muted); font-size: 0.85rem; text-align: center; flex-shrink: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-pill { padding: 10px 24px; border: 1px solid var(--c-border); border-radius: 99px; background: var(--c-surface); color: var(--c-text-muted); font-weight: 500; letter-spacing: 0.05em; transition: all 0.3s ease; display: flex; align-items: center; cursor: pointer; }
.footer-pill:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0, 48, 250, 0.05); transform: translateY(-2px); }
.footer-pill:focus-visible { border-radius: 99px; padding: 10px 24px; margin: 0; border-color: var(--c-text-main); background: var(--c-surface-hover); transform: none; }
.footer-pill i { margin-right: 8px; font-size: 1.1em; transition: transform 0.3s var(--ease-elastic); display: inline-flex; align-items: center; justify-content: center; }
.footer-copy { opacity: 0.6; font-size: 0.75rem; }

.mobile-sticky-bar { position: fixed; bottom: 20px; left: 0; right: 0; margin: 0 auto; width: calc(100% - 40px); max-width: 400px; height: 64px; background-color: var(--c-surface); border: 1px solid var(--c-border); box-shadow: var(--shadow-deep); border-radius: 99px; display: none; z-index: var(--z-modal); align-items: center; padding: 6px 12px; transform: translateY(150%); animation: slideUp 0.5s ease-out 1s forwards; will-change: transform; }
@keyframes slideUp { to { transform: translateY(0); } }
.sticky-btn { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; color: var(--c-text-main); border-radius: 99px; font-size: 0.9rem; cursor: pointer; transition: background-color 0.3s, border-color 0.3s, color 0.2s; border: 1px solid transparent; }
.sticky-btn.primary { background: var(--c-btn-bg); color: var(--c-surface); }
.sticky-btn.primary i { color: #ffffff; }
.sticky-btn:active { opacity: 0.8; }
@media (hover: hover) {
    .sticky-btn:not(.primary):hover { color: var(--c-accent); background-color: rgba(0, 48, 250, 0.05); }
    .sticky-btn.primary:hover { background-color: var(--c-text-main); color: #ffffff; }
    .sticky-btn.primary:hover i { color: #ffffff; }
}
.sticky-btn.burn-active { border-color: transparent !important; background-color: rgba(0, 48, 250, 0.1) !important; color: var(--c-accent) !important; transition: all 0.3s ease !important; }
.sticky-btn.primary.burn-active { background-color: var(--c-text-main) !important; color: #ffffff !important; }
.sticky-btn.primary.burn-active i { color: #ffffff !important; }

@media (max-width: 1560px) { 
    .hero { flex-direction: column-reverse; } 
    .hero-left { text-align: center; align-items: center; } 
    .hero-left h1 { font-size: 3.5rem; } 
    .hero-badge { margin-bottom: 20px; }
    #hero-target { padding: 12px; }
    .hero-media { flex-direction: row; width: 100%; align-items: stretch; flex-wrap: nowrap; gap: 12px; } 
    .card { min-height: auto; flex: 1; width: auto; } 
    .card-image { width: 110px !important; height: 110px !important; min-width: 110px !important; max-width: 110px !important; flex: 0 0 110px !important; aspect-ratio: 1 / 1; align-self: center; } 
    .card-info-title h3 { font-size: 1.8rem; }
    .card-info-title h4 { font-size: 1.1rem; }
    .card-badge { font-size: 0.75rem; padding: 5px 10px; }
    .card-external { width: 44px; height: 44px; font-size: 1.2rem; }
    .trust-badges { justify-content: center; } 
    #scrollBtn { display: none; }
}

@media (max-width: 1000px) { 
    :root { --bar-height: 80px; --radius-lg: 28px; } 
    nav { padding: 0 20px; } 
    .logo-img { width: 130px; } 
    .btn-epic.nav-variant { min-width: 135px; height: 48px; padding: 0 25px; } 
    .btn-epic.nav-variant .epic-content span { display: none; } 
    .btn-epic.nav-variant .epic-content::after { content: "Kontakt"; } 
    .page { padding-bottom: 140px; } 
    .mobile-sticky-bar { display: flex; gap: 12px; } 
    #scrollBtn { display: inline-flex; width: 100%; max-width: 400px; padding: 18px; }
    .toast-container { bottom: 110px; } 
    .trust-badges { width: 100%; gap: 12px; flex-wrap: wrap; } 
    .badge-item { flex: 1 1 40%; max-width: 100%; } 
}

@media (max-width: 790px) { 
    :root { --bar-height: 84px; } 
    nav { padding: 0 16px; border-radius: 24px; } 
    .ticker-wrapper { border-radius: 24px; }
    .ticker-accent { padding: 0 15px; }
    .ticker-accent span { font-size: 0.75rem; letter-spacing: 0.1em; }
    .ticker-item { font-size: 0.85rem; padding-right: 80px; gap: 8px; } 
    .ticker-item i { font-size: 1.1rem; }
    .ticker-item::after { display: none; }
    .page { padding: 12px; gap: 16px; padding-bottom: 140px; } 
    .logo-img { width: 95px; } 
    .btn-epic.nav-variant { min-width: 135px; height: 44px; padding: 0 20px; } 
    .btn-epic.nav-variant .epic-content { font-size: 0.85rem; gap: 6px; } 
    .hero-card { padding: 32px 20px; border-radius: 24px; } 
    .hero-left h1 { font-size: 2.1rem; margin-bottom: 16px; } 
    .hero-left p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 24px; } 
    .trust-badges { flex-direction: row; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; justify-content: center; } 
    .badge-item { flex-direction: column; justify-content: center; text-align: center; padding: 15px; } 
    .badge-text { align-items: center; text-align: center; } 
    .hero-media { flex-direction: column; } 
    .card { min-height: 110px; } 
    .card-content { padding: 20px; gap: 16px; }
    #hero-target .card-content { background-color: rgba(255, 255, 255, 0.02) !important; backdrop-filter: blur(3px) !important; -webkit-backdrop-filter: blur(3px) !important; transform-style: flat !important; -webkit-backface-visibility: visible !important; backface-visibility: visible !important; transform: none !important; -webkit-transform: none !important; }
    .card-image { width: 90px !important; height: 90px !important; min-width: 90px !important; max-width: 90px !important; flex: 0 0 90px !important; aspect-ratio: 1 / 1 !important; } 
    .card-info-title { padding-right: 40px; } 
    .card-info-title h3 { font-size: 1.3rem; } 
    .card-info-title h4 { font-size: 0.95rem; } 
    .card-external { display: flex; width: 34px; height: 34px; font-size: 1rem; right: 16px; } 
}

@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; } 
    .ticker-wrapper { overflow-x: auto; } 
    .ticker-block { overflow-x: auto; mask-image: none; -webkit-mask-image: none; } 
}

a, a:hover, a:focus, a:active {
    text-decoration: none !important;
}

a, button, .sticky-btn, .footer-pill {
    -webkit-tap-highlight-color: transparent;
}

.toast-container, .toast, #mobileCopyBtn, #desktopCopyBtn, #footerCopyBtn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}