/* ai-profile - Minimal, content-first design */
:root {
    --bg: #0f172a;
    --surface: #1e293b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #38bdf8;
    --accent-dim: #0ea5e9;
    --success: #22c55e;
    --border: #334155;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text);
    margin-top: 0.25rem;
}

.description {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* Skills */
.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.skill-name { font-size: 0.9rem; }

.skill-level {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.level-expert { background: #166534; color: #bbf7d0; }
.level-advanced { background: #1e40af; color: #bfdbfe; }
.level-intermediate { background: #854d0e; color: #fef08a; }

/* Projects */
.category-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.project-card h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.project-card .domain {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.project-card .tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.tech-tag {
    font-size: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    color: var(--text-muted);
}

.project-card .highlights {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.project-card .highlights li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.project-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
}

.project-card .year {
    color: var(--text-muted);
}

.project-card .status {
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.7rem;
}

.status-production { background: #166534; color: #bbf7d0; }
.status-active { background: #1e40af; color: #bfdbfe; }
.status-development { background: #854d0e; color: #fef08a; }

/* Standards list */
#standards-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#standards-list li {
    font-size: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

/* Services */
#services-list {
    list-style: none;
}

#services-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

#services-list li::before {
    content: "- ";
    color: var(--accent);
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

footer a {
    color: var(--accent-dim);
    text-decoration: none;
}

footer a:hover { text-decoration: underline; }

.agent-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

code {
    background: var(--surface);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
}
