* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #f4f7ff; --card: #ffffff; --text: #1f2937; --muted: #4b5563; --accent: #3b82f6; --border: #e5e7eb; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%); color: var(--text); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.page { width: min(900px, 100%); background: var(--bg); border-radius: 18px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); border: 1px solid #e2e8f0; padding: 22px; }
.hero { text-align: center; margin-bottom: 18px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: #2563eb; font-size: 0.72rem; margin-bottom: 8px; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.7rem); margin-bottom: 4px; }
.subtitle { color: var(--muted); margin-bottom: 2px; }
.mini-nav { margin-top: 8px; font-size: 0.9rem; color: #1f2937; }
.mini-nav a { color: #2563eb; text-decoration: none; font-weight: 600; }
.mini-nav a:hover { text-decoration: underline; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-top: 12px; }
.section-heading { border-left: 3px solid var(--accent); padding-left: 10px; margin-bottom: 10px; }
.section-heading h2 { font-size: 1.25rem; margin: 0; }
.edu-row, .work-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.edu-logo, .work-logo { width: 46px; height: auto; border-radius: 8px; background: #fff; border: 1px solid #e5e7eb; padding: 4px; }
.item h3 { margin-bottom: 4px; font-size: 1rem; }
.meta { color: #6b7280; font-size: 0.9rem; margin-bottom: 8px; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.skill-pill { background: #e0e7ff; color: #1d4ed8; border-radius: 999px; padding: 8px 12px; font-weight: 600; font-size: 0.85rem; }
.cert-card { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; }
.cert-card-content { display: flex; align-items: center; gap: 12px; }
.cert-icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #eef2ff; font-size: 1.1rem; }
.cert-card h3 { margin: 0; font-size: 1rem; }
.cert-link { color: #2563eb; font-weight: 600; text-decoration: none; }
.cert-link:hover { text-decoration: underline; }
.cert-badge { width: 76px; height: auto; border-radius: 10px; border: 1px solid #d1d5db; background: #fff; padding: 4px; }
.footer { margin-top: 16px; text-align: center; color: #4b5563; font-size: 0.9rem; }
@media (max-width: 700px) { .page { padding: 14px; } .card { padding: 14px; } .cert-card { flex-direction: column; align-items: stretch; } .cert-card-content { width: 100%; } .cert-badge { margin-top: 8px; align-self: center; } }