* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-color: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Scan Lines */
.scan-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.02;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        white 2px,
        white 4px
    );
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon i {
    font-size: 18px;
    color: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    top: 5rem;
    right: 5rem;
    width: 256px;
    height: 256px;
    background: rgba(255, 255, 255, 0.05);
}

.orb-2 {
    bottom: 5rem;
    left: 5rem;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 1s;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.03), transparent);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.badge-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: blink 2s ease-in-out infinite;
}

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

.badge-text {
    font-size: 12px;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    animation: underlineGrow 0.8s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.5), transparent);
    animation: btnShine 2s linear infinite;
    animation-delay: 1s;
}

@keyframes btnShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: #D1D5DB;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-platforms {
    font-size: 12px;
    color: #6B7280;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.image-container:hover {
    transform: scale(1.02);
}

.corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(255, 255, 255, 0.3);
}

.corner-tl {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 12px;
}

.corner-tr {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
    border-top-right-radius: 12px;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-bottom-left-radius: 12px;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 12px;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-primary);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}

.image-container:hover .image-shine {
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 6rem 1.5rem;
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    width: fit-content;
}

.feature-badge i {
    color: white;
    font-size: 14px;
}

.feature-badge span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-list i {
    color: white;
    font-size: 18px;
    margin-top: 2px;
}

.feature-list span {
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-primary);
    transition: transform 0.4s;
}

.feature-image:hover {
    transform: scale(1.03);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Preview Section */
.preview-section {
    padding: 6rem 1.5rem;
    background: var(--bg-primary);
}

.preview-image {
    position: relative;
}

.preview-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.preview-wrapper:hover {
    transform: scale(1.01) translateY(-5px);
}

.preview-wrapper img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top;
    background: var(--bg-primary);
}

/* About Section */
.about-section {
    padding: 6rem 1.5rem;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.about-badge {
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    cursor: default;
    transition: transform 0.2s;
}

.about-badge:hover {
    transform: scale(1.05);
}

.about-badge-primary {
    background: white;
    color: var(--bg-primary);
    border-color: white;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    cursor: default;
    transition: transform 0.3s;
}

.about-feature:hover {
    transform: translateX(10px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.6s;
}

.about-feature:hover .about-feature-icon {
    transform: rotate(360deg);
}

.about-feature-icon i {
    font-size: 20px;
    color: var(--bg-primary);
}

.about-feature-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.about-feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-image {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-primary);
    transition: transform 0.4s;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1.5rem;
    background: var(--bg-primary);
}

.cta-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.user-avatars {
    display: flex;
    margin-left: -8px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    overflow: hidden;
    margin-left: -8px;
    transition: transform 0.2s, z-index 0s;
}

.user-avatar:hover {
    transform: scale(1.2);
    z-index: 10;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 12px;
    color: #6B7280;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: white;
    color: var(--bg-primary);
    transform: scale(1.1);
}

.social-link i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .feature-item,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .about-title,
    .cta-title {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .image-wrapper {
        height: 300px;
    }

    .feature-image,
    .about-image {
        height: 300px;
    }

    .preview-wrapper img {
        height: 400px;
    }
}