:root {
    --bg-color: #050507;
    --card-bg: rgba(255, 255, 255, 0.03);
    /* --primary-accent: #00f0ff; */
    --primary-accent: #71CC98;
    /* Cyber Cyan */
    /*--secondary-accent: #7000ff;*/
    --secondary-accent: #71CC98;
    /* Electric Purple */
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient: linear-googleapis(90deg, var(--primary-accent), var(--secondary-accent));
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08), transparent 25%);
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--primary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 2rem 5%; */
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-accent);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 1rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: -1;
}

.tagline-small {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    color: var(--primary-accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Sections General */
section {
    padding: 6rem 5%;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

/* Tech Cards */
.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-5px);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tech-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tech-card i {
    font-size: 2rem;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
}

/* Features List */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '▹';
    color: var(--primary-accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Inquiry Section */
.inquiry-section {
    background: linear-gradient(180deg, var(--bg-color), #0f0f13);
    border-top: 1px solid var(--border-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-tech {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.input-tech:focus {
    outline: none;
    border-bottom-color: var(--primary-accent);
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--primary-accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Footer */
footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

.footer-big {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 8em !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    nav {
        padding: 1.5rem;
    }

    .hero h1 {
        margin-top: 2rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.text-decoration-none {
    text-decoration: none;
}

.contact-form .success,
.contact-form .error {
    font-family: 'Space Grotesk', sans-serif;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    text-align: center;
}

.contact-form .success {
    background: rgba(0, 255, 170, 0.1);
    color: #00ffaa;
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.contact-form .error {
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
    border: 1px solid rgba(255, 50, 50, 0.3);
}

#status-container {
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    opacity: 0.6;
}

.close-btn:hover {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.logo {
    max-width: 11em;
}
.footer-logo {
    max-width: 13em;
}