* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f8fbff;
    color: #0f172a;
}

/* Navbar */

/*header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    z-index: 100;*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    border-bottom: 1px solid #e5e7eb;*/
/*    backdrop-filter: blur(8px);*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    color: #0f172a;*/
/*}*/

/*.logo-img {*/
/*    height: 32px;*/
/*    width: auto;*/
/*}*/

/*.nav-wrap {*/
/*    width: min(1200px, 92%);*/
/*    margin: 0 auto;*/
/*    padding: 16px 0;*/

/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*}*/

/*.logo-box {*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    border-radius: 8px;*/
/*    background: linear-gradient(135deg, #2563eb, #7c3aed);*/
/*}*/

/*nav a {*/
/*    margin-left: 24px;*/
/*    text-decoration: none;*/
/*    color: #475569;*/
/*    font-weight: 500;*/
/*}*/

/*nav a:hover {*/
/*    color: #2563eb;*/
/*}*/

/* Page */

.experience-page {
    padding: 40px 18px 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 500;
    margin: 0;
}

/* Experience cards */

.experience-list {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experience-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px;
    transition: 0.25s ease;
}

.experience-card.active {
    border-color: #93a4ff;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.experience-card h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
}

.company {
    margin: 0;
    color: #4f46e5;
    font-size: 16px;
}

.date {
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #64748b;
    font-size: 15px;
}

.experience-card ul {
    margin: 22px 0 0;
    padding-left: 0;
    list-style: none;
}

.experience-card li {
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.5;
}

.experience-card li::before {
    content: "▪";
    color: #4f46e5;
    margin-right: 10px;
}

/* Mobile */

@media (max-width: 768px) {
    .nav-wrap {
        flex-direction: column;
        gap: 14px;
    }

    nav a {
        margin: 0 8px;
    }

    .card-top {
        flex-direction: column;
    }

    .date {
        align-self: flex-start;
    }

    .section-title h1 {
        font-size: 34px;
    }
}