:root {
    --primary: #00ff9d;
    --secondary: #00b8ff;
    --bg-dark: #050A14;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 40px;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,157,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%) skewX(-15deg);
    transition: 0.5s;
    z-index: -1;
}
.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}
.stats-ticker {
    background: rgba(255,255,255,0.02);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
.ticker-item {
    display: inline-block;
    margin: 0 40px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}
.ticker-item span {
    color: var(--primary);
    font-weight: bold;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
section {
    padding: 100px 0;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}
.feature-split {
    display: flex;
    align-items: center;
    gap: 50px;
}
.feature-split:nth-child(even) {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-visual {
    flex: 1;
    height: 300px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.system-status {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    font-family: monospace;
}
.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 5px;
}
.status-active {
    color: var(--primary);
}
.testimonials {
    text-align: center;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    margin: 20px 0;
}
.contact-form-section {
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}
.contact-container {
    display: flex;
    gap: 50px;
}
.contact-info, .form-wrapper {
    flex: 1;
}
.form-wrapper {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--primary);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--primary);
}
.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
    padding: 10px;
    color: #fff;
    font-family: monospace;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}
footer {
    border-top: 1px solid var(--border);
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}
footer a {
    color: var(--text-main);
    margin: 0 10px;
}
@media (max-width: 768px) {
    .feature-split {
        flex-direction: column;
    }
    .feature-split:nth-child(even) {
        flex-direction: column;
    }
    .contact-container {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
.visual-circle {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    animation: rotate 10s linear infinite;
}
.visual-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
