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

body {
    font-family: 'Inter', sans-serif;
    background: #040b1d;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

#logo{
  width: 150px;
  height: auto;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(140,82,255,0.25), transparent 30%),
        linear-gradient(to bottom, #061233, #07101f);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    margin-bottom: 30px;
    color: #60a5fa;
}

.hero-content h1 {
    font-size: 88px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 28px;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 950px;
    margin: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn {
    padding: 18px 32px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #d946ef);
    color: white;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    background: rgba(255,255,255,0.05);
}

.btn:hover {
    transform: translateY(-4px);
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-tags span,
.tech-tags span {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #cbd5e1;
}

.section {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 900px;
    margin: auto;
    font-size: 24px;
    color: #94a3b8;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.glass-card,
.tech-card,
.code-window {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(18px);
}

.glass-card h3,
.tech-card h3 {
    font-size: 36px;
    margin: 25px 0 18px;
}

.glass-card p,
.tech-card p {
    color: #94a3b8;
    font-size: 20px;
    line-height: 1.8;
}

.icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 32px;
}

.blue { background: linear-gradient(to bottom right,#0ea5e9,#2563eb); }
.pink { background: linear-gradient(to bottom right,#ec4899,#d946ef); }
.orange { background: linear-gradient(to bottom right,#f97316,#ef4444); }
.green { background: linear-gradient(to bottom right,#22c55e,#10b981); }
.purple { background: linear-gradient(to bottom right,#8b5cf6,#7c3aed); }
.red { background: linear-gradient(to bottom right,#f43f5e,#e11d48); }
.violet { background: linear-gradient(to bottom right,#c084fc,#9333ea); }

.vibe-section {
    background: linear-gradient(to bottom, #23003c, #150024);
}

.vibe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #cbd5e1;
    font-size: 20px;
    line-height: 1.7;
}

.code-window pre {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.8;
    overflow-x: auto;
}

.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.small-card h3 {
    font-size: 28px;
}

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

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.contact-box {
    text-align: center;
}

.contact-box h2 {
    font-size: 64px;
    margin-bottom: 20px;
}

.contact-box p {
    color: #94a3b8;
    font-size: 24px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 18px;
}

.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer h3 {
    font-size: 38px;
    margin-bottom: 10px;
}

.footer p {
    color: #94a3b8;
}

.footer-bottom {
    margin-top: 30px;
    color: #64748b;
}

@media(max-width: 1024px) {
    .card-grid,
    .tech-grid,
    .four-cols,
    .vibe-layout {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .section-header h2 {
        font-size: 48px;
    }
}

@media(max-width: 768px) {
    nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p,
    .section-header p {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}