:root {
    --primary: #2596be;
    --primary-rgb: 37, 150, 190;
    --primary-dark: #1a7ca0;
    
    --bg-main: #020202;
    --bg-card: #0a0a0a;
    --bg-card-hover: #121212;
    
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-dark: #52525b;
    
    --border: #1f1f1f;
    --border-hover: #333333;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: 10px;
}

.circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    animation: bounce 0.5s alternate infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.1s;
}

.circle:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-15px); opacity: 0.5; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px; 
}

::-webkit-scrollbar-track {
    background: transparent; 
}

::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 10px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    overflow-x: hidden;
    cursor: none; 
}

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

button {
    cursor: none;
}


.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, transform 0.1s;
    mix-blend-mode: difference;
}

body:hover .cursor-dot {
    opacity: 1;
}

body:hover .cursor-outline {
    opacity: 1;
}

.nav-pill {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 100;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    transition: all 0.3s var(--ease);
}

.nav-pill:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.7);
}

.logo-link {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    overflow: hidden; 
}

.logo-img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.nav-items {
    display: flex;
    gap: 24px;
}

.nav-items a {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-items a:hover {
    color: var(--text-white);
}

.nav-btn {
    background: var(--text-white);
    color: var(--bg-main);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
}

.nav-icon {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    color: #5865F2; 
    transform: scale(1.1);
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 60px;
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 100px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.title-card {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.badge {
    display: inline-block;
    background: rgba(37, 150, 190, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}

h1 {
    font-size: 4.5rem;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.blue-text {
    color: var(--primary);
}

.title-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.compatibility {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.visual-card {
    grid-column: span 2;
    grid-row: span 1;
    background: radial-gradient(circle at center, #111, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interface-preview {
    width: 80%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.window-controls {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #22c55e; }

.cps-meter {
    text-align: center;
    margin-bottom: 20px;
}

.cps-val {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.cps-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wave-graph {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.bar {
    width: 6px;
    height: var(--h);
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite alternate;
}

.bar:nth-child(odd) { animation-delay: 0.2s; }
.bar:nth-child(even) { animation-delay: 0.5s; }

@keyframes wave {
    from { height: 20%; opacity: 0.5; }
    to { height: var(--h); opacity: 1; }
}


.small {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-data .num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-data .lbl {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.feature-list-card {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-list-card h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.feature-list-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-list-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list-card li i {
    color: var(--primary);
}

.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 100px;
    overflow: hidden;
    background: var(--bg-card);
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
    white-space: nowrap;
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.separator {
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.download-section {
    margin-bottom: 100px;
}

.download-container {
    background: linear-gradient(145deg, #0a0a0a, #000);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
}

.download-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.download-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dl-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.dl-btn {
    background: var(--text-white);
    color: black;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.dl-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.dl-btn:active {
    transform: scale(0.95);
}

.dl-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    opacity: 0.3;
    transition: width 0.1s linear;
}

footer {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .title-card {
        min-height: auto;
    }
    .visual-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .feature-list-card ul {
        grid-template-columns: 1fr;
    }
    
    .nav-pill {
        width: 90%;
        justify-content: space-between;
    }
    
    .nav-items {
        display: none;
    }
    
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    button, a {
        cursor: pointer;
    }
}



.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: transparent;
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header.center {
    margin: 0 auto 60px;
    text-align: center;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
}

.text-gray {
    color: var(--text-gray);
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s var(--ease);
}

.feature-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.f-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 150, 190, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.feature-card-large h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card-large p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-container-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.stats-container-large:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s var(--ease);
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s var(--ease);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 30px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    object-fit: cover;
}

.reviewer .info {
    display: flex;
    flex-direction: column;
}

.reviewer .name {
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer .rank {
    font-size: 0.75rem;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .features-grid-large,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-container-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-grid-large,
    .reviews-grid,
    .stats-container-large {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .stats-container-large {
        padding: 30px;
    }
}
