/* AgentAvatars — Extracted Styles */
/* Generated by Kaizen continuous improvement agent */

:root {
    --bg: #0a0a0f;
    --bg-card: #13131a;
    --bg-elevated: #1a1a24;
    --border: #2a2a38;
    --text: #e8e8f0;
    --text-muted: #9aa0b8;
    --accent: #7c5cfc;
    --accent-glow: rgba(124, 92, 252, 0.4);
    --accent-2: #ff6b9d;
    --accent-3: #4dd4ac;
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 800; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 8px 20px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
    transition: all 0.2s ease; border: none;
}
.nav-cta:hover { box-shadow: 0 0 24px var(--accent-glow); transform: translateY(-1px); filter: brightness(1.1); }
.nav-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px;
    position: relative; overflow: hidden;
    background: var(--bg);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg dotlottie-wc {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.15;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at 50% 30%, rgba(124, 92, 252, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 60%, rgba(77, 212, 172, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.8) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2; max-width: 900px; width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    padding: 6px 16px; border-radius: 100px; font-size: 13px;
    color: var(--text-muted); margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    font-size: clamp(36px, 5vw, 64px); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(16px, 2vw, 20px); color: var(--text-muted);
    max-width: 580px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

.lottie-placeholder {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 14px;
    background: var(--bg-card);
}
.lottie-sm { width: 80px; height: 80px; }
.lottie-md { width: 160px; height: 160px; }
.lottie-lg { width: 280px; height: 280px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 16px 36px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer;
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(124, 92, 252, 0.3); transform: translateY(-3px) scale(1.02); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
    background: rgba(26, 26, 36, 0.8); color: var(--text); padding: 16px 36px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 16px;
    border: 1px solid rgba(42, 42, 56, 0.6); cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(124, 92, 252, 0.1); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(124, 92, 252, 0.15); }
.btn-secondary:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

.avatars-grid {
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.section-title {
    text-align: center; margin-bottom: 48px;
}
.section-title h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.section-title p { color: var(--text-muted); font-size: 16px; }


.grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.avatar-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 20px 24px; text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.avatar-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.avatar-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.avatar-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(124, 92, 252, 0.15); }
.avatar-card:hover::before { opacity: 0.15; }
.avatar-card:hover::after { opacity: 0.6; }
.avatar-card:focus-within { border-color: var(--accent); outline: 2px solid var(--accent); outline-offset: 2px; }

.avatar-preview {
    width: 120px; height: 120px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; position: relative; overflow: hidden;
}
.avatar-preview img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.avatar-preview .placeholder-icon {
    font-size: 48px; filter: drop-shadow(0 0 8px currentColor);
    opacity: 0.8;
}
.avatar-preview .ring {
    position: absolute; inset: -4px; border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
    opacity: 0; transition: opacity 0.3s; z-index: -1;
    animation: spin 4s linear infinite;
}
.avatar-card:hover .avatar-preview .ring { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }
.avatar-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.avatar-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.avatar-footer {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; margin-top: auto; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.price-badge {
    display: flex; align-items: center; gap: 4px;
    font-size: 14px; font-weight: 700; color: var(--accent-3);
}
.price-badge .currency {
    font-size: 12px; font-weight: 600; color: var(--text-muted);
}
.price-badge.premium { color: var(--accent-2); }
.price-badge.rare {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-cart {
    padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--bg-elevated); color: var(--text); font-size: 12px;
    font-weight: 600; cursor: pointer; font-family: var(--font);
    transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
.btn-cart:hover {
    background: var(--accent); border-color: var(--accent); color: #fff;
    box-shadow: 0 0 16px var(--accent-glow);
}
.btn-cart.added {
    background: var(--accent-3); border-color: var(--accent-3); color: #0a0a0f;
}
.btn-cart:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-cart .icon { font-size: 14px; }

.features {
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
}
.feature-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }

.waitlist {
    max-width: 600px; margin: 0 auto; padding: 100px 24px; text-align: center;
}
.waitlist h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; }
.waitlist p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }
.waitlist-form {
    display: flex; gap: 12px; max-width: 440px; margin: 0 auto;
}
.waitlist-form input {
    flex: 1; padding: 14px 18px; border-radius: var(--radius-sm);
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text); font-size: 15px; font-family: var(--font);
}
.waitlist-form input:focus { outline: none; border-color: var(--accent); }
.waitlist-form button {
    padding: 14px 24px; border-radius: var(--radius-sm);
    background: var(--accent); color: #fff; font-weight: 600;
    border: none; cursor: pointer; font-size: 15px; font-family: var(--font);
    transition: all 0.2s;
}
.waitlist-form button:hover { box-shadow: 0 0 20px var(--accent-glow); }
.waitlist-form button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.waitlist-count { margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.waitlist-count span { color: var(--accent-3); font-weight: 600; }

.footer {
    border-top: 1px solid var(--border); padding: 40px 24px;
    text-align: center; color: var(--text-muted); font-size: 13px;
}
.footer a { color: var(--accent); }

@media (max-width: 600px) {
    .nav-links { display: none; }
    .waitlist-form { flex-direction: column; }
}