
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --ink: #0f0f14;
            --ink2: #3a3a4a;
            --muted: #8888a0;
            --bg: #f7f7fb;
            --card: #ffffff;
            --accent: #5b4ef8;
            --accent2: #8b5cf6;
            --accent-light: #ede9fe;
            --green: #10b981;
            --amber: #f59e0b;
            --border: rgba(0,0,0,0.07);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.92); }
            to   { opacity: 1; transform: scale(1); }
        }
        @keyframes barGrow {
            from { width: 0; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-8px); }
        }
        @keyframes shimmer {
            0%   { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        @keyframes pulse-ring {
            0%   { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.45); opacity: 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation: none !important; transition: none !important; }
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--ink);
            min-height: 100vh;
            line-height: 1.7;
        }

        /* ── NAV ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(247,247,251,0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .nav-links { display: flex; gap: 4px; }
        .nav-links a {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            padding: 6px 14px;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--ink);
            background: rgba(91,78,248,0.08);
        }
        .nav-links a.active { color: var(--accent); }

        /* ── HERO ── */
        .hero {
            padding: 80px 32px 60px;
            max-width: 860px;
            margin: 0 auto;
            animation: fadeUp 0.7s ease both;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-light);
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 24px;
        }
        .hero-eyebrow::before {
            content: '';
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-ring 1.5s ease-out infinite;
            box-shadow: 0 0 0 0 var(--accent);
        }
        .hero-photo-name {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .hero-avatar-wrap {
            position: relative;
            flex-shrink: 0;
            animation: float 4s ease-in-out infinite;
        }
        .hero-avatar-wrap::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid var(--accent);
            opacity: 0.35;
        }
        .hero-avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
            border: 4px solid var(--card);
            display: block;
        }
        .hero-name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 7vw, 58px);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -1.5px;
            color: var(--ink);
        }
        .hero-name span {
            background: linear-gradient(120deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-tagline {
            font-size: 17px;
            color: var(--ink2);
            max-width: 520px;
            margin-bottom: 32px;
        }
        .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .tag {
            font-size: 13px;
            font-weight: 500;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--ink2);
            transition: border-color 0.2s, color 0.2s, transform 0.2s;
            cursor: default;
        }
        .tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

        /* ── SECTIONS ── */
        .sections { max-width: 860px; margin: 0 auto; padding: 0 32px 80px; display: flex; flex-direction: column; gap: 40px; }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px;
            animation: scaleIn 0.6s ease both;
        }
        .card-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 20px;
        }

        /* Journey */
        .journey-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .journey-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 15px;
            color: var(--ink2);
            transition: transform 0.2s;
        }
        .journey-list li:hover { transform: translateX(4px); }
        .journey-icon {
            width: 36px; height: 36px; flex-shrink: 0;
            background: var(--accent-light);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px;
        }
        .journey-list li a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }
        .journey-list li a:hover { text-decoration: underline; }

        /* Skills */
        .skills-grid { display: flex; flex-direction: column; gap: 18px; }
        .skill-row { display: flex; flex-direction: column; gap: 6px; }
        .skill-meta { display: flex; justify-content: space-between; align-items: center; }
        .skill-name { font-size: 14px; font-weight: 600; color: var(--ink); }
        .skill-pct  { font-size: 13px; font-weight: 600; color: var(--accent); }
        .skill-track {
            height: 8px;
            background: #eeeef4;
            border-radius: 99px;
            overflow: hidden;
        }
        .skill-fill-bar {
            height: 100%;
            border-radius: 99px;
            animation: barGrow 1.2s cubic-bezier(.22,1,.36,1) both;
            animation-delay: 0.3s;
        }

        /* Quote */
        .quote-card {
            background: linear-gradient(135deg, #5b4ef8 0%, #8b5cf6 100%);
            border: none;
            color: white;
        }
        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 12px;
        }
        .quote-author { font-size: 13px; opacity: 0.75; font-style: italic; }

        /* Progress table */
        .progress-table { width: 100%; border-collapse: collapse; }
        .progress-table th {
            text-align: left;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            padding: 0 16px 12px;
            border-bottom: 1px solid var(--border);
        }
        .progress-table td {
            padding: 14px 16px;
            font-size: 14px;
            color: var(--ink2);
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }
        .progress-table tr:last-child td { border-bottom: none; }
        .progress-table tr { transition: background 0.15s; }
        .progress-table tr:hover td { background: #fafaff; }
        .status-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .status-done {
            background: #d1fae5;
            color: #065f46;
        }
        .status-progress {
            background: #fef3c7;
            color: #92400e;
        }
        .stars { color: #f59e0b; letter-spacing: 2px; font-size: 15px; }

        /* Footer */
        footer {
            background: var(--ink);
            color: rgba(255,255,255,0.7);
            text-align: center;
            padding: 36px 32px;
            font-size: 14px;
        }
        footer a {
            color: #a78bfa;
            text-decoration: none;
            font-weight: 500;
        }
        footer a:hover { text-decoration: underline; }
        footer .footer-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        /* Stagger animation delays */
        .card:nth-child(1) { animation-delay: 0.05s; }
        .card:nth-child(2) { animation-delay: 0.12s; }
        .card:nth-child(3) { animation-delay: 0.19s; }
        .card:nth-child(4) { animation-delay: 0.26s; }
        .card:nth-child(5) { animation-delay: 0.33s; }

        @media (max-width: 600px) {
            nav { padding: 0 18px; }
            .hero { padding: 50px 18px 40px; }
            .sections { padding: 0 18px 60px; }
            .card { padding: 24px 20px; }
            .hero-photo-name { gap: 18px; }
        }