
:root {
    --bg-color: #0a0a0a;
    --card-bg: rgba(44, 44, 46, 0.4);
    --accent: #00E5FF;
    --text-primary: #f5f5f5;
    --text-secondary: #a1a1a1;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 900px;
    width: 90% ;
    text-align: center;
    padding: 40px 0;
    z-index: 10;
}

.logo-text {
    font-weight: 900;
    letter-spacing: -2px;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.badge {
    background: var(--accent);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight {
    color: var(--accent);
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

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

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.cta input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
}

.cta button {
    padding: 0 30px;
    border-radius: 10px;
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cta button:hover {
    opacity: 0.8;
}

footer {
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.5rem; }
}
footer {
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.developer {
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.8;
}