:root {
    --bg-color: #ffffff;
    --text-main: #111111;
    --text-sec: #444444;
    --text-mut: #8E8E93;
    --accent: #FF5A00; /* Unbored Orange */
    --accent-light: rgba(255, 90, 0, 0.08);
    --line: #E5E5EA;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: #F0F0F5;
    line-height: 1.55;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

.resume-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 48px 64px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-radius: 8px;
}

/* HEADER */
header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2.5px solid var(--text-main);
}

h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.contact-info {
    font-size: 12.5px;
    color: var(--text-sec);
}

.divider {
    margin: 0 8px;
    color: var(--text-mut);
}

/* SECTIONS */
.section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--line);
}

p {
    color: var(--text-sec);
    margin-bottom: 6px;
}

/* ABOUT */
.about p {
    font-size: 13px;
    line-height: 1.6;
}

/* SKILLS */
.skills-grid {
    display: flex;
    gap: 24px;
}

.skill-category {
    flex: 1;
}

.skill-category h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-category p {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* PROJECTS */
.project-item {
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 2px solid var(--accent-light);
}

.project-header {
    margin-bottom: 2px;
}

.project-header h4 {
    font-size: 14px;
    font-weight: 700;
}

.project-type {
    font-weight: 500;
    color: var(--text-sec);
    font-size: 13px;
}

.project-desc {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.5;
}

.project-highlights {
    list-style-type: none;
    padding-left: 0;
}

.project-highlights li {
    font-size: 12px;
    color: var(--text-sec);
    position: relative;
    padding-left: 14px;
    margin-bottom: 2px;
    line-height: 1.5;
}

.project-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* BOTTOM LAYOUT */
.bottom-sections {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-top: 8px;
    padding-top: 0;
}

.education-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.education-item p {
    font-size: 12px;
}

/* DIFFERENTIATOR */
.differentiator p {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-main);
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    font-style: italic;
    line-height: 1.55;
}

/* PRINT MODE EXPORT */
@media print {
    body {
        background-color: transparent;
        font-size: 12px;
    }
    .resume-container {
        margin: 0;
        padding: 0;
        box-shadow: none;
        max-width: 100%;
        border-radius: 0;
    }
    a {
        color: var(--text-sec);
    }
    .section-title {
        color: var(--text-main);
    }
    .project-item {
        border-left-color: var(--line);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .resume-container {
        padding: 24px;
        margin: 16px;
    }
    .skills-grid {
        flex-direction: column;
        gap: 12px;
    }
    .bottom-sections {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
