/* ============================================
   NEON CYBERPUNK STYLE — app675y2
   Palette: cyber-black / neon-cyan / acid-green / hot-magenta
============================================ */
:root {
    --bg-dark: #05060c;
    --bg-panel: #0a0d1a;
    --text-main: #e6f7ff;
    --text-muted: #6b7a99;
    --neon-cyan: #00f0ff;
    --neon-green: #39ff84;
    --neon-magenta: #ff2bd6;
    --neon-yellow: #f6ff00;
    --grid-line: rgba(0, 240, 255, 0.07);
    --border-glow: rgba(0, 240, 255, 0.4);

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html, body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, .badge, .section-tag, .stat-num {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* === Background Layers === */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.scanline {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.orb-1 { top: -200px; left: -200px; width: 600px; height: 600px; background: var(--neon-cyan); }
.orb-2 { top: 30%; right: -250px; width: 550px; height: 550px; background: var(--neon-magenta); opacity: 0.4; }
.orb-3 { bottom: -200px; left: 30%; width: 700px; height: 700px; background: var(--neon-green); opacity: 0.3; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    color: #02121a;
    background: var(--neon-cyan);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0, 240, 255, 0.4);
    position: relative;
}

.btn-primary:hover {
    background: var(--neon-green);
    box-shadow: 0 0 30px var(--neon-green), 0 0 60px rgba(57, 255, 132, 0.6);
    transform: translate(-2px, -2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.accent { color: var(--neon-magenta); }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(5, 6, 12, 0.6);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-glow);
    transition: background 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.6);
}

.nav-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* === Hero === */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    gap: 60px;
}

.hero-text { flex: 1; }

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-green);
    border: 1px solid rgba(57, 255, 132, 0.4);
    background: rgba(57, 255, 132, 0.05);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.25);
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-actions { margin-bottom: 48px; }

.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
}

/* === Hero Image === */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.neon-frame {
    position: relative;
    padding: 24px;
    border: 1px solid var(--neon-cyan);
    background: linear-gradient(135deg, rgba(0,240,255,0.05), rgba(255,43,214,0.05));
    box-shadow:
        0 0 40px rgba(0, 240, 255, 0.3),
        inset 0 0 40px rgba(0, 240, 255, 0.05);
    transition: transform 0.4s ease;
}

.neon-frame:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 60px rgba(0, 240, 255, 0.5),
        inset 0 0 40px rgba(0, 240, 255, 0.08);
}

.frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--neon-magenta);
}
.frame-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.frame-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.hero-image {
    display: block;
    width: 100%;
    max-width: 460px;
}

/* === Sections === */
section { padding: 110px 0; }

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-magenta);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-subtitle {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 1rem;
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(10,13,26,0.9), rgba(10,13,26,0.5));
    border: 1px solid rgba(0, 240, 255, 0.18);
    transition: all 0.3s ease;
    overflow: hidden;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.feature-card:nth-child(2) .feature-icon { color: var(--neon-magenta); border-color: var(--neon-magenta); background: rgba(255,43,214,0.08); box-shadow: 0 0 20px rgba(255,43,214,0.3); }
.feature-card:nth-child(3) .feature-icon { color: var(--neon-green); border-color: var(--neon-green); background: rgba(57,255,132,0.08); box-shadow: 0 0 20px rgba(57,255,132,0.3); }
.feature-card:nth-child(4) .feature-icon { color: var(--neon-yellow); border-color: var(--neon-yellow); background: rgba(246,255,0,0.08); box-shadow: 0 0 20px rgba(246,255,0,0.3); }
.feature-card:nth-child(5) .feature-icon { color: var(--neon-magenta); border-color: var(--neon-magenta); background: rgba(255,43,214,0.08); box-shadow: 0 0 20px rgba(255,43,214,0.3); }
.feature-card:nth-child(6) .feature-icon { color: var(--neon-green); border-color: var(--neon-green); background: rgba(57,255,132,0.08); box-shadow: 0 0 20px rgba(57,255,132,0.3); }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-family: var(--font-mono);
}

/* === Carousel === */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 30px 60px;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item {
    height: 480px;
    flex-shrink: 0;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
    transition: all 0.3s ease;
    background: var(--bg-panel);
    padding: 6px;
}

.carousel-item:hover {
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
    border-color: var(--neon-magenta);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(5,6,12,0.8);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-display);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transition: all 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--neon-cyan);
    color: #02121a;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* === CTA === */
.cta-section { padding-top: 60px; }

.cta-box {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0,240,255,0.05), rgba(255,43,214,0.05));
    border: 1px solid var(--neon-cyan);
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.25);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,240,255,0.15), transparent 60%);
    pointer-events: none;
}

.cta-box .section-tag { color: var(--neon-green); margin-bottom: 16px; }

.cta-box h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cta-box p {
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

/* === Footer === */
.footer {
    border-top: 1px solid var(--border-glow);
    padding: 40px 0;
    margin-top: 60px;
    background: rgba(5,6,12,0.6);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--neon-cyan);
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 28px;
    font-family: var(--font-mono);
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover { color: var(--neon-cyan); }

.footer-copyright {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* === Animations === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 980px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
        gap: 40px;
    }
    .hero-subtitle { max-width: 100%; }
    .hero-title { font-size: 3.6rem; }
    .stats-row { justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .cta-box h2 { font-size: 1.8rem; }
    .carousel-item { height: 380px; }
    .carousel-container { padding: 20px 50px; }
    .nav-btn { display: none; }
    .stats-row { gap: 24px; }
    .stat-num { font-size: 1.4rem; }
}
