/* ============================================
   Alex Pecorilla — Personal Website
   ============================================ */

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

:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #10101c;
    --bg-card: #14142a;
    --bg-card-hover: #1a1a36;
    --text-primary: #e8e6e3;
    --text-secondary: #b0b0c0;
    --accent-amber: #f0a500;
    --accent-purple: #b44aff;
    --accent-amber-dim: rgba(240, 165, 0, 0.10);
    --accent-purple-dim: rgba(180, 74, 255, 0.10);
    --accent-amber-glow: rgba(240, 165, 0, 0.35);
    --accent-purple-glow: rgba(180, 74, 255, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --max-width: 1100px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 8px var(--accent-purple-glow);
}

/* ---- Keyframes ---- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-amber-dim), 0 0 40px var(--accent-purple-dim); }
    50% { box-shadow: 0 0 25px var(--accent-amber-glow), 0 0 50px var(--accent-purple-dim); }
}

/* ---- Navigation ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 2rem;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--accent-amber);
    text-shadow: 0 0 10px var(--accent-amber-glow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-amber);
    text-shadow: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* ---- Hero Section ---- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%, rgba(180, 74, 255, 0.03) 0%, transparent 70%);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: var(--max-width);
    width: 100%;
}

/* Photo */

.hero-photo {
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.photo-ring {
    width: 184px;
    height: 184px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-purple));
    padding: 2px;
    animation: subtlePulse 4s ease-in-out infinite;
}

.photo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Hero Text */

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    color: var(--accent-purple);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.45s;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84rem;
    color: var(--text-secondary);
    padding: 0.38rem 0.9rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.contact-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.contact-chip-link:hover {
    color: var(--accent-amber);
    border-color: rgba(240, 165, 0, 0.2);
    background: rgba(240, 165, 0, 0.05);
    box-shadow: 0 0 12px rgba(240, 165, 0, 0.06);
    text-shadow: none;
}

.contact-chip-link:hover svg {
    opacity: 0.9;
}

.hero-description {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.75s;
}

/* Hero Divider */

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-amber), var(--accent-purple), transparent);
    opacity: 0.4;
}

/* ---- Shared Section Styles (for upcoming sections) ---- */

section {
    scroll-margin-top: 3.5rem;
}

.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent-amber);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

/* ---- Services / Pillars ---- */

.pillars-nav {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pillar-tab {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.85rem 2rem;
    cursor: pointer;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
    position: relative;
}

.pillar-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-tab:hover {
    color: var(--text-primary);
}

.pillar-tab.active {
    color: var(--accent-amber);
}

.pillar-tab.active::after {
    transform: scaleX(1);
}

.pillars-content {
    position: relative;
}

.pillar-panel {
    display: none;
}

.pillar-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.pillar-header {
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.pillar-subtitle {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-purple);
    letter-spacing: 0.02em;
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 800px;
    font-size: 1.02rem;
}

.pillar-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-item {
    padding: 1.2rem 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    border-left: 2px solid var(--accent-amber);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.service-item:hover {
    border-left-color: var(--accent-purple);
    background: var(--bg-card-hover);
}

.service-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.service-item p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Experience / Timeline ---- */

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent-amber), var(--accent-purple), transparent);
}

.timeline-entry {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-entry:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-amber);
    box-shadow: 0 0 8px var(--accent-amber-glow);
    transform: translateX(-4.5px);
}

.timeline-entry:nth-child(even) .timeline-marker {
    background: var(--accent-purple);
    box-shadow: 0 0 8px var(--accent-purple-glow);
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem 1.8rem;
    transition: background 0.3s ease;
}

.timeline-card:hover {
    background: var(--bg-card-hover);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-role {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-company {
    font-size: 0.92rem;
    color: var(--accent-purple);
    font-family: var(--font-mono);
    margin-bottom: 0.2rem;
}

.timeline-date {
    font-size: 0.82rem;
    color: var(--text-secondary);
    opacity: 0.7;
    font-family: var(--font-mono);
}

.timeline-details {
    list-style: none;
    padding: 0;
}

.timeline-details li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-details li:last-child {
    margin-bottom: 0;
}

.timeline-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 1px;
    background: var(--accent-amber);
}

/* ---- Skills ---- */

.skills-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.skills-tabs {
    display: none;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.skills-tab {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.3s ease;
}

.skills-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skills-tab:hover {
    color: var(--text-primary);
}

.skills-tab.active {
    color: var(--accent-amber);
}

.skills-tab.active::after {
    transform: scaleX(1);
}

.skills-category {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.skills-category-marker {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-amber);
    box-shadow: 0 0 8px var(--accent-amber-glow);
}

.skills-category-marker.purple {
    background: var(--accent-purple);
    box-shadow: 0 0 8px var(--accent-purple-glow);
}

.skills-category-marker.purple ~ * {
    color: var(--accent-purple);
}

.skills-col:last-child .skills-category {
    color: var(--accent-purple);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.85rem 0.6rem;
    border-radius: 6px;
    transition: background 0.25s ease;
    cursor: default;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.skill-prompt {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-amber);
    line-height: 1.4;
    flex-shrink: 0;
    transition: text-shadow 0.3s ease;
}

.skill-prompt.purple {
    color: var(--accent-purple);
}

.skill-item:hover .skill-prompt {
    text-shadow: 0 0 6px var(--accent-amber-glow);
}

.skill-item:hover .skill-prompt.purple {
    text-shadow: 0 0 6px var(--accent-purple-glow);
}

.skill-body h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.skill-body p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.skill-item:hover .skill-body p {
    opacity: 1;
}

/* ---- Education & Certifications ---- */

.edu-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edu-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.edu-card:hover {
    background: var(--bg-card-hover);
}

.edu-badge {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(240, 165, 0, 0.08);
    border: 1px solid rgba(240, 165, 0, 0.15);
}

.edu-card.cert .edu-badge {
    background: rgba(240, 165, 0, 0.08);
    border-color: rgba(240, 165, 0, 0.15);
}

.edu-card.cert .edu-badge svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-amber);
}

.edu-card.degree .edu-badge {
    background: rgba(180, 74, 255, 0.08);
    border-color: rgba(180, 74, 255, 0.15);
}

.edu-card.degree .edu-badge svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-purple);
}

.edu-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.edu-institution {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-purple);
    margin-bottom: 0.8rem;
}

.edu-card.cert .edu-institution {
    color: var(--accent-amber);
}

.edu-details {
    list-style: none;
    padding: 0;
}

.edu-details li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.35rem;
    padding-left: 1rem;
    position: relative;
}

.edu-details li:last-child {
    margin-bottom: 0;
}

.edu-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 1px;
    background: var(--accent-amber);
}

.edu-card.degree .edu-details li::before {
    background: var(--accent-purple);
}

.edu-details strong {
    color: var(--text-primary);
}

.edu-details a {
    color: var(--accent-amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 165, 0, 0.3);
    transition: border-color 0.3s ease, text-shadow 0.3s ease;
}

.edu-details a:hover {
    border-color: var(--accent-amber);
    text-shadow: 0 0 8px var(--accent-amber-glow);
}

/* ---- About Me ---- */

.about-content {
    max-width: 750px;
    border-left: 2px solid var(--accent-amber);
    padding-left: 1.5rem;
}

.about-content p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ---- Contact ---- */

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-block:hover {
    background: var(--bg-card-hover);
    border-color: rgba(240, 165, 0, 0.2);
    transform: translateY(-3px);
}

.contact-block.pgp:hover {
    border-color: rgba(180, 74, 255, 0.25);
}

.contact-block-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(240, 165, 0, 0.08);
    border: 1px solid rgba(240, 165, 0, 0.15);
    margin-bottom: 1.3rem;
}

.contact-block-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-amber);
}

.contact-block.pgp .contact-block-icon {
    background: rgba(180, 74, 255, 0.08);
    border-color: rgba(180, 74, 255, 0.15);
}

.contact-block.pgp .contact-block-icon svg {
    stroke: var(--accent-purple);
}

.contact-block-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-block-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-block.pgp .contact-block-value {
    color: var(--accent-purple);
}

.contact-block-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.7rem;
    line-height: 1.5;
    max-width: 240px;
}

/* ---- Fade-in on Scroll ---- */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        flex-direction: column;
        background: var(--bg-secondary);
        padding: 5rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border-subtle);
        transition: right 0.3s ease;
        z-index: 200;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-name {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-contact {
        justify-content: center;
        margin-bottom: 1.8rem;
    }

    .contact-chip {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .photo-ring {
        width: 150px;
        height: 150px;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pillar-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .pillar-services {
        grid-template-columns: 1fr;
    }

    .pillar-title {
        font-size: 1.3rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
    }

    .timeline-card {
        padding: 1.2rem 1.4rem;
    }

    .section-label {
        font-size: 1.6rem;
    }

    .skills-tabs {
        display: flex;
    }

    .skills-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .skills-col {
        display: none;
    }

    .skills-col.active {
        display: block;
    }

    .skills-category {
        display: none;
    }

    .edu-card {
        padding: 1.2rem 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-block {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3.5rem 1.2rem 2.5rem;
    }

    .hero-name {
        font-size: 1.85rem;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .photo-ring {
        width: 130px;
        height: 130px;
    }

    .section {
        padding: 3rem 1.2rem;
    }

    .pillar-tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -1.5rem;
    }

    .timeline-role {
        font-size: 1.05rem;
    }

    .section-label {
        font-size: 1.4rem;
    }

    .skill-item {
        padding: 0.65rem 0.4rem;
    }

    .edu-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }

    .edu-title {
        font-size: 1rem;
    }

    .contact-block {
        padding: 1.8rem 1.2rem;
    }
}
