:root {
    --cyan: #00f5ff;
    --purple: #7000ff;
    --pink: #ff006e;
    --dark-1: #0a0e1a;
    --dark-2: #1a1f35;
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; background: var(--dark-1); color: #fff; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--dark-1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}
.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 400px) minmax(500px, 700px) minmax(280px, 400px);
    gap: 3rem;
    align-items: center;
    justify-content: center;
}
.hero-left { animation: slideInLeft 1s ease-out; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } }

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -2px;
    color: white;
    min-height: 1.2em;
}
.cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--cyan);
    margin-left: 5px;
    animation: blink 1s step-end infinite;
    box-shadow: var(--glow-cyan);
}
@keyframes blink { 50% { opacity: 0; } }

/* Rotating Text - BIGGER & BOLDER */
.hero-rotating-text {
    text-align: center;
    margin: 2rem 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-rotating-text p {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    transition: opacity 0.6s ease;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}
.hero-rotating-text strong {
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Terminal Badge - Above Nav */
.terminal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid var(--cyan);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    animation: terminalGlow 3s ease-in-out infinite;
}
@keyframes terminalGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.6); }
}
.terminal-badge .arrow {
    color: var(--cyan);
    font-size: 1.2rem;
}
.terminal-badge .terminal-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.terminal-badge .highlight {
    color: var(--pink);
    font-weight: 900;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}