:root {
    --bg: #050914;
    --card: #0d1323;
    --panel: #0a0f1d;
    --accent: #6c7bff;
    --accent-2: #5eead4;
    --text: #e8ecf5;
    --muted: #9fb4d3;
    --shadow: 0 14px 48px rgba(2, 6, 23, 0.5);
    --radius: 16px;
}

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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background:
        radial-gradient(circle at 18% 18%, rgba(94, 234, 212, 0.12), transparent 32%),
        radial-gradient(circle at 78% 6%, rgba(108, 123, 255, 0.12), transparent 26%),
        linear-gradient(145deg, rgba(10, 15, 29, 0.9) 0%, rgba(5, 9, 20, 0.94) 35%, rgba(9, 12, 24, 1) 100%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1150px, 92vw);
    margin: 0 auto;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(7, 11, 21, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(159, 180, 211, 0.18);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(108, 123, 255, 0.25), rgba(94, 234, 212, 0.25));
    border: 1px solid rgba(94, 234, 212, 0.35);
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 30px rgba(5, 9, 20, 0.45);
}

h1 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

h2 {
    letter-spacing: -0.02em;
}

h3 {
    letter-spacing: -0.01em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--accent-2);
}

a:focus-visible,
.btn:focus-visible,
.chip:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 3px;
    border-radius: 10px;
}

.eyebrow {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.muted {
    color: var(--muted);
}

main {
    padding-bottom: 60px;
}

.hero {
    padding: 64px 0 40px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container::after {
    content: "";
    position: absolute;
    inset: 8% -18% -18% 36%;
    background: radial-gradient(circle at 30% 30%, rgba(108, 123, 255, 0.14), transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(94, 234, 212, 0.12), transparent 40%);
    filter: blur(40px);
    z-index: 0;
}

.hero .container > * {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    margin: 14px 0 16px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}

.hero p {
    color: var(--muted);
    margin-bottom: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.32);
    background: linear-gradient(135deg, rgba(108, 123, 255, 0.18), rgba(94, 234, 212, 0.18));
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
    box-shadow: 0 14px 30px rgba(5, 9, 20, 0.45);
}

.pill.subtle {
    padding: 6px 12px;
    background: rgba(108, 123, 255, 0.12);
    border-color: rgba(108, 123, 255, 0.3);
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #050914;
    box-shadow: 0 14px 38px rgba(108, 123, 255, 0.28);
}

.btn.ghost {
    border-color: rgba(159, 180, 211, 0.4);
    color: var(--text);
    background: linear-gradient(145deg, rgba(108, 123, 255, 0.08), rgba(94, 234, 212, 0.06));
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.35);
}

.quick-stats {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.stat {
    background: linear-gradient(165deg, rgba(13, 19, 35, 0.95), rgba(10, 15, 29, 0.92));
    border: 1px solid rgba(108, 123, 255, 0.22);
    padding: 12px 14px;
    border-radius: var(--radius);
    display: grid;
    gap: 4px;
    box-shadow: var(--shadow);
}

.stat-label {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-value {
    font-weight: 700;
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(13, 19, 35, 0.95), rgba(10, 15, 29, 0.9));
    border: 1px solid rgba(94, 234, 212, 0.25);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before {
    content: "LXIR STYLE";
    position: absolute;
    inset: 10px auto auto 12px;
    padding: 6px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(232, 236, 245, 0.65);
    background: rgba(108, 123, 255, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 999px;
}

.hero-card h3 {
    margin-bottom: 8px;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 10px 0 16px;
}

.hero-card a {
    color: var(--text);
    text-decoration: none;
}

.hero-card a:hover {
    color: var(--accent-2);
}

.glow-card {
    background: linear-gradient(145deg, rgba(108, 123, 255, 0.12), rgba(94, 234, 212, 0.12));
    border: 1px solid rgba(108, 123, 255, 0.3);
    padding: 14px;
    border-radius: var(--radius);
}

.section {
    padding: 54px 0;
}

.section-heading {
    max-width: 700px;
}

.section-heading h2 {
    margin-top: 6px;
}

.section-heading p {
    color: var(--muted);
    margin-top: 10px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.about-card {
    background: linear-gradient(165deg, rgba(108, 123, 255, 0.1), rgba(10, 15, 29, 0.92));
    border: 1px solid rgba(159, 180, 211, 0.2);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.highlight {
    background: linear-gradient(165deg, rgba(108, 123, 255, 0.08), rgba(10, 15, 29, 0.92));
    border: 1px solid rgba(159, 180, 211, 0.2);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.snapshot {
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.snapshot li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.snapshot span {
    font-weight: 600;
    color: #dfe6ff;
}

.snapshot strong {
    text-align: right;
}

.expertise-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.expertise-card {
    background: linear-gradient(165deg, rgba(13, 19, 35, 0.95), rgba(10, 15, 29, 0.92));
    border: 1px solid rgba(108, 123, 255, 0.24);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.skills-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.skills-card {
    background: linear-gradient(165deg, rgba(13, 19, 35, 0.94), rgba(10, 15, 29, 0.9));
    border: 1px solid rgba(108, 123, 255, 0.2);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(108, 123, 255, 0.16);
    border: 1px solid rgba(94, 234, 212, 0.26);
    color: #dfe6ff;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.portfolio-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.portfolio-card {
    background: linear-gradient(165deg, rgba(13, 19, 35, 0.95), rgba(10, 15, 29, 0.92));
    border: 1px solid rgba(108, 123, 255, 0.24);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: -12% 60% 50% -16%;
    background: radial-gradient(circle at 20% 20%, rgba(94, 234, 212, 0.18), transparent 55%);
    filter: blur(28px);
    pointer-events: none;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.details {
    list-style: disc;
    color: var(--muted);
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(108, 123, 255, 0.2);
    color: #dfe6ff;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 1px solid rgba(94, 234, 212, 0.35);
}

.timeline {
    position: relative;
    margin-top: 26px;
    padding-left: 14px;
    border-left: 1px solid rgba(159, 180, 211, 0.3);
    display: grid;
    gap: 22px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), var(--accent-2));
    margin-top: 8px;
    box-shadow: 0 0 0 6px rgba(108, 123, 255, 0.16);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.impact-card {
    background: linear-gradient(165deg, rgba(108, 123, 255, 0.08), rgba(10, 15, 29, 0.9));
    border: 1px solid rgba(159, 180, 211, 0.2);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact {
    text-align: center;
}

.contact p {
    color: var(--muted);
    margin: 10px 0 18px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

footer {
    padding: 28px 0 40px;
    border-top: 1px solid rgba(108, 123, 255, 0.18);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 900px) {
    .hero .container,
    .two-column {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-links {
        flex-direction: column;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
