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

body {
    font-family: 'Rajdhani', 'Orbitron', 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e6ff;
    background: #0a0f1c;
    overflow-x: hidden;
    position: relative;
}

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

/* American Tech Background */
.american-tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, rgba(0, 123, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 123, 255, 0.05) 1px, transparent 1px);
    background-size: 400px 400px, 300px 300px, 40px 40px, 40px 40px;
    animation: circuitFlow 20s linear infinite;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 123, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 123, 255, 0.3) 49%, rgba(0, 123, 255, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(220, 53, 69, 0.2) 49%, rgba(220, 53, 69, 0.2) 51%, transparent 52%);
    background-size: 200px 200px, 150px 150px;
    animation: dataFlow 15s linear infinite;
    opacity: 0.6;
}

/* Header */
.tech-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #007bff;
    box-shadow: 0 4px 30px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #007bff;
    text-shadow: 0 0 20px #007bff;
    animation: logoFlicker 3s ease-in-out infinite;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

.ai-accent {
    color: #dc3545;
    text-shadow: 0 0 20px #dc3545;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 600;
}

.status-panel {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px #28a745;
}

.connection-bars {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 20px;
}

.connection-bars .bar {
    width: 4px;
    background: #007bff;
    border-radius: 2px;
    animation: barPulse 1s ease-in-out infinite;
}

.connection-bars .bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.connection-bars .bar:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.connection-bars .bar:nth-child(3) { height: 90%; animation-delay: 0.4s; }
.connection-bars .bar:nth-child(4) { height: 100%; animation-delay: 0.6s; }

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

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 123, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: heroGridMove 25s linear infinite;
    opacity: 0.4;
}

.floating-elements {
    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;
}

.classification-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #dc3545;
    animation: classifiedBlink 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconRotate 4s linear infinite;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: titleReveal 1s ease-out;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-gradient {
    background: linear-gradient(45deg, #007bff, #dc3545, #28a745);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: techGradient 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #adb5bd;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: descriptionFade 1s ease-out 0.5s both;
    font-weight: 400;
}

.performance-metrics {
    display: flex;
    gap: 25px;
    animation: metricsFade 1s ease-out 0.8s both;
}

.metric-card {
    position: relative;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    min-width: 140px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
    border-color: #dc3545;
}

.metric-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    animation: metricFloat 3s ease-in-out infinite;
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px #007bff;
    font-family: 'Orbitron', monospace;
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.metric-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 123, 255, 0.2);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #dc3545);
    animation: barFill 2s ease-out 1s both;
}

/* Command Center */
.command-center {
    animation: centerReveal 1s ease-out 0.3s both;
}

.terminal-interface {
    background: rgba(10, 15, 28, 0.9);
    border: 2px solid #007bff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 123, 255, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
}

.terminal-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    animation: terminalScan 6s ease-in-out infinite;
    pointer-events: none;
}

.terminal-header {
    background: linear-gradient(90deg, #1a2332, #2c3e50);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #007bff;
}

.window-controls {
    display: flex;
    gap: 10px;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control.minimize { 
    background: #ffc107; 
    box-shadow: 0 0 10px #ffc107; 
}
.control.maximize { 
    background: #28a745; 
    box-shadow: 0 0 10px #28a745; 
}
.control.close { 
    background: #dc3545; 
    box-shadow: 0 0 10px #dc3545; 
}

.terminal-title {
    color: #007bff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.security-level {
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: securityBlink 1.5s ease-in-out infinite;
}

.terminal-body {
    padding: 25px;
}

.command-lines {
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
}

.cmd-line {
    margin-bottom: 8px;
    font-size: 0.9rem;
    animation: cmdAppear 0.8s ease-out;
}

.prompt {
    color: #28a745;
    margin-right: 8px;
    font-weight: 700;
    text-shadow: 0 0 8px #28a745;
}

.command {
    color: #e0e6ff;
}

/* Access Form */
.access-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #495057;
    font-size: 1rem;
    color: #e0e6ff;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.form-group input:focus {
    border-bottom-color: #007bff;
    box-shadow: 0 2px 15px rgba(0, 123, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -5px;
    font-size: 0.8rem;
    color: #007bff;
    text-shadow: 0 0 10px #007bff;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #dc3545);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-line {
    width: 100%;
}

.access-button {
    position: relative;
    background: linear-gradient(45deg, #007bff, #dc3545);
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.4);
}

.access-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.6);
}

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

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

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

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.capability-module {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.05));
    border: 1px solid #495057;
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.capability-module:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.capability-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    animation: moduleScan 4s ease-in-out infinite;
    pointer-events: none;
}

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

.module-icon {
    font-size: 2.2rem;
    animation: moduleIconFloat 4s ease-in-out infinite;
}

.module-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28a745;
}

.status-dot.active {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: activePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #28a745;
}

.capability-module h3 {
    font-size: 1.4rem;
    color: #e0e6ff;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capability-module p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #007bff;
    display: block;
    text-shadow: 0 0 15px #007bff;
    font-family: 'Orbitron', monospace;
}

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

/* Architecture Section */
.architecture-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
}

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

.arch-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arch-content p {
    color: #adb5bd;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.stack-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #495057;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stack-item:hover {
    border-color: #007bff;
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.stack-icon {
    font-size: 2.5rem;
    min-width: 60px;
    animation: stackIconPulse 3s ease-in-out infinite;
}

.stack-info {
    flex: 1;
}

.stack-info strong {
    display: block;
    color: #e0e6ff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.stack-info span {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

.stack-status {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: statusClassified 2s ease-in-out infinite;
}

/* Hologram Display */
.arch-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.hologram-display {
    position: relative;
    width: 250px;
    height: 250px;
}

.holo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #007bff, #dc3545);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: holoCorePulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px #007bff;
}

.holo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 3px solid rgba(0, 123, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: holoRingRotate 12s linear infinite;
}

.ring-2 {
    width: 170px;
    height: 170px;
    animation: holoRingRotate 18s linear infinite reverse;
}

.ring-3 {
    width: 220px;
    height: 220px;
    animation: holoRingRotate 25s linear infinite;
}

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

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

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #007bff;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    animation: ctaTitle 1s ease-out;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    color: #adb5bd;
    margin-bottom: 50px;
    animation: ctaDesc 1s ease-out 0.3s both;
    line-height: 1.6;
}

.primary-cta {
    position: relative;
    background: linear-gradient(45deg, #007bff, #dc3545);
    color: #ffffff;
    border: none;
    padding: 20px 45px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 50px;
    animation: ctaBtn 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.4);
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.6);
}

.cta-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ctaScan 3s ease-in-out infinite;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 1rem;
    color: #6c757d;
    animation: ctaBadges 1s ease-out 0.9s both;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes circuitFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes dataFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 150px); }
}

@keyframes logoFlicker {
    0%, 100% { text-shadow: 0 0 20px #007bff; }
    50% { text-shadow: 0 0 30px #007bff, 0 0 40px #007bff; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes barPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 15px #007bff; }
}

@keyframes heroGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

@keyframes classifiedBlink {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.5; }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

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

@keyframes metricFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes barFill {
    from { width: 0; }
    to { width: 100%; }
}

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

@keyframes terminalScan {
    0%, 100% { transform: translateX(-100%) skewX(-15deg); opacity: 0; }
    50% { transform: translateX(100%) skewX(-15deg); opacity: 1; }
}

@keyframes securityBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.6; }
}

@keyframes cmdAppear {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes moduleScan {
    0%, 100% { left: -100%; opacity: 0; }
    50% { left: 100%; opacity: 1; }
}

@keyframes moduleIconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes activePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

@keyframes stackIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes statusClassified {
    0%, 80% { opacity: 1; }
    81%, 100% { opacity: 0.5; }
}

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

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

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

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

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

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

@keyframes ctaBadges {
    from { opacity: 0; transform: translateY(20px); }
    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: 3rem;
    }
    
    .performance-metrics {
        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.4rem;
    }
    
    .performance-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .terminal-interface {
        margin: 0 -10px;
    }
    
    .terminal-body {
        padding: 20px 15px;
    }
    
    .capability-module {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.6rem;
    }
} 