@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #2E1A47;
    --secondary: #C0FF00;
    --accent: #00F0FF;
    --dark: #0A0A0F;
    --light: #F0F0F5;
    --surface: #151520;
    --text-dim: #A0A0B0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

section {
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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


.hero-section {
    min-height: 90vh;
    background: radial-gradient(circle at top right, rgba(46, 26, 71, 0.9), rgba(10, 10, 15, 0.95) 70%), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--secondary);
}

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

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.btn-cta {
    border: 1px solid var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--secondary);
}

.btn-cta:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.glitch {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 2px;
}

.btn-secondary {
    border: 1px solid #fff;
    padding: 1rem 2rem;
    border-radius: 2px;
}


.partners-section {
    padding: 40px 20px;
    background: var(--surface);
    text-align: center;
}

.partners-section p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.5;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: 'Space Grotesk';
    font-weight: 600;
    font-size: 1.2rem;
}


.problem-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-left: 3px solid var(--primary);
    margin-bottom: 1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


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

.stat-box {
    border: 1px solid var(--accent);
    padding: 3rem;
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.stat-box .number {
    display: block;
    font-size: 4rem;
    font-family: 'Space Grotesk';
    color: var(--accent);
}


.tech-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-top: 2rem;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.step-number {
    font-size: 3rem;
    opacity: 0.1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}


.team-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--surface);
    padding: 2rem;
    text-align: center;
}

.avatar {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}


.testimonials {
    background: var(--primary);
    text-align: center;
}

.testimonials blockquote {
    font-size: 1.5rem;
    font-family: 'Space Grotesk';
    max-width: 800px;
    margin: 0 auto 2rem;
}


.unique-form-wrapper {
    background: #000;
}

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

.terminal-screen {
    background: #0D0D0D;
    border: 1px solid #333;
    padding: 2rem;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.05);
}

.line {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.line label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.line input,
.line textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 0.5rem 0;
    font-family: inherit;
    font-size: 1rem;
}

.line input:focus,
.line textarea:focus {
    outline: none;
    border-bottom-color: #00FF00;
}

.execute-btn {
    width: 100%;
    background: #00FF00;
    border: none;
    color: #000;
    padding: 1rem;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    margin-top: 1rem;
}

.execute-btn:hover {
    background: #fff;
}


footer {
    background: #050505;
    padding: 4rem 5% 2rem;
    font-size: 0.9rem;
    color: #666;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .tech-steps {
        grid-template-columns: 1fr;
    }
}