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

body {
    font-family: 'Consolas', 'Monaco', 'Lucida Console', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Tech Header */
.tech-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #00ffff;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.tech-accent {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -2px;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #00ff00;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff00;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 80px;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-badge {
    position: relative;
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: badgeGlow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tech-stats {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    position: relative;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid #00ffff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    min-width: 120px;
    overflow: hidden;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #00ffff;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: statPulse 3s ease-in-out infinite;
}

/* Terminal */
.hero-terminal {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.terminal-container {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.terminal-header {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.terminal-title {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.terminal-content {
    padding: 20px;
}

.terminal-lines {
    margin-bottom: 20px;
}

.terminal-line {
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.prompt {
    color: #00ff00;
    margin-right: 5px;
}

.command {
    color: #ffffff;
}

/* Tech Form */
.tech-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-field input {
    color: #ffffff;
}

.form-field select {
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
}

.form-field select option {
    color: #000000;
    background: #ffffff;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-field input:focus {
    background: rgba(0, 255, 255, 0.05);
}

.form-field select:focus {
    background: rgba(255, 255, 255, 0.95);
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #888;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not([value=""]) + label {
    top: -8px;
    left: 10px;
    font-size: 0.75rem;
    color: #00ffff;
    background: #0a0a0a;
    padding: 0 5px;
}

.field-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.form-field input:focus ~ .field-border,
.form-field select:focus ~ .field-border {
    width: 100%;
}

.quantum-btn {
    position: relative;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.quantum-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-circuit {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnCircuit 2s ease-in-out infinite;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: btnGlow 1.5s ease-in-out infinite;
}

/* Capabilities Section */
.capabilities {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.section-header p {
    color: #888;
    font-size: 1.1rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.capability-module {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.capability-module:nth-child(1) { animation-delay: 0.1s; }
.capability-module:nth-child(2) { animation-delay: 0.2s; }
.capability-module:nth-child(3) { animation-delay: 0.3s; }
.capability-module:nth-child(4) { animation-delay: 0.4s; }
.capability-module:nth-child(5) { animation-delay: 0.5s; }
.capability-module:nth-child(6) { animation-delay: 0.6s; }

.capability-module:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.module-icon {
    font-size: 2rem;
}

.module-status {
    background: #00ff00;
    color: #000;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: statusBlink 2s ease-in-out infinite;
}

.capability-module h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.capability-module p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    display: block;
    text-shadow: 0 0 10px #00ffff;
}

.metric-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* Architecture Section */
.architecture {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.arch-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.arch-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stack-item:hover {
    border-color: #00ffff;
    transform: translateX(10px);
}

.stack-icon {
    font-size: 2rem;
    min-width: 50px;
}

.stack-info strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stack-info span {
    color: #888;
    font-size: 0.9rem;
}

/* Quantum Orb Visualization */
.arch-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.quantum-orb {
    position: relative;
    width: 200px;
    height: 200px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #00ffff, #0080ff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px #00ffff;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation: ringRotate 20s linear infinite;
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    position: relative;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

.button-circuit {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonCircuit 2s ease-in-out infinite;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 0.9rem;
    color: #888;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Animations */
@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 10px #00ffff; }
    50% { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes statPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes btnCircuit {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes btnGlow {
    0%, 100% { width: 0; height: 0; }
    50% { width: 100px; height: 100px; }
}

@keyframes statusBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes buttonCircuit {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-layout,
    .arch-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .tech-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .tech-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .terminal-container {
        margin: 0 -10px;
    }
    
    .terminal-content {
        padding: 15px;
    }
    
    .capability-module {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* Particle Effects */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(15px);
        opacity: 1;
    }
} 