/* style.css - Modern Dark Theme with Glassmorphism */
:root {
    --bg-dark: #0a0a0f;
    --card-bg: rgba(20, 20, 30, 0.7);
    --accent-cyan: #00f0ff;
    --accent-purple: #b967ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --border-glow: rgba(0, 240, 255, 0.2);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(185, 103, 255, 0.1) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(80px);
    top: -20vh;
    left: -20vw;
    z-index: 0;
    pointer-events: none;
}

.orb-2 {
    bottom: -20vh;
    top: auto;
    left: auto;
    right: -20vw;
    background: radial-gradient(circle, rgba(185, 103, 255, 0.2) 0%, rgba(0, 240, 255, 0.05) 70%, transparent 90%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

h1 {
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
}

.accent {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Product Card (AgentForge) */
.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid var(--border-glow);
    transition: all 0.2s ease;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
}

.product-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 35px -12px rgba(0, 240, 255, 0.15);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(185,103,255,0.2));
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
}

.product-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 80%;
}

/* Demo Mock */
.demo-mock {
    background: #05050a;
    border-radius: 1rem;
    padding: 1rem;
    margin: 1.5rem 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border: 1px solid #1e1e2e;
    overflow-x: auto;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1e1e2e;
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
    color: #6c6c8c;
    font-size: 0.75rem;
}

.mock-copy {
    cursor: pointer;
    background: #1e1e2e;
    padding: 0.2rem 0.5rem;
    border-radius: 0.4rem;
    transition: 0.1s;
}

.mock-copy:hover { background: #2a2a3a; }

pre {
    white-space: pre-wrap;
    word-break: break-all;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #00ccaa;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #000;
    box-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 18px var(--accent-cyan);
}

.btn-secondary {
    border: 1px solid var(--border-glow);
    background: transparent;
    color: var(--accent-cyan);
}

.btn-secondary:hover { background: rgba(0, 240, 255, 0.1); }

/* Other Projects Grid */
.section-header {
    margin: 3rem 0 1.5rem;
}
.section-header h2 {
    font-size: 1.8rem;
}
.section-header p {
    color: var(--text-secondary);
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.project-item {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #1e1e2e;
    transition: 0.2s;
}
.project-item:hover {
    border-color: var(--accent-cyan);
}
.project-icon { font-size: 2rem; margin-bottom: 1rem; }
.project-item h3 { margin-bottom: 0.5rem; }
.project-item p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.project-tech span {
    background: #1a1a2a;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    margin-right: 0.4rem;
}
/* Skills */
.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}
.skills-cloud span {
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e1e2e;
    border-radius: 40px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    transition: 0.1s;
}
.skills-cloud span:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* Footer */
footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #1a1a2a;
    color: #5a5a7a;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 800px) {
    .container { padding: 1rem; }
    h1 { font-size: 2.5rem; }
    .hero { padding-top: 2rem; padding-bottom: 2rem; }
    .product-card p { max-width: 100%; }
    .btn-primary, .btn-secondary { margin-bottom: 0.6rem; }
}