:root {
    --bg: #0b0d10;
    --surface: #11151a;
    --surface-2: #171c22;
    --text: #f3f5f7;
    --muted: #9aa4af;
    --line: #27303a;
    --accent: #8cf06a;
    --accent-2: #c4ffae;

    --max: 1180px;
    --radius: 18px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;

    background: rgba(11, 13, 16, 0.86);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    min-height: 74px;

    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    margin-right: auto;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    color: var(--muted);
    font-size: 14px;

    transition: color 0.2s ease,
    opacity 0.2s ease;
}

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

.nav-cta {
    border: 1px solid var(--line);

    padding: 9px 15px;

    border-radius: 999px;

    color: var(--text);
    font-size: 13px;
    font-weight: 700;

    transition: background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #081008;
}


/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.language-switcher {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: transparent;
    color: var(--muted);

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: color 0.2s ease,
    border-color 0.2s ease;
}

.language-button:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    min-width: 130px;

    padding: 7px;

    background: var(--surface-2);

    border: 1px solid var(--line);
    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

    list-style: none;
    margin: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);

    transition: opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    margin: 0;
}

.language-menu a {
    display: block;

    padding: 8px 10px;

    border-radius: 7px;

    color: var(--muted);

    font-size: 13px;
}

.language-menu a:hover,
.language-menu a.active {
    background: var(--surface);
    color: var(--accent);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 110px 0 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;

    gap: 80px;

    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 30px;

    font-size: clamp(56px, 8vw, 104px);
    line-height: 0.92;

    letter-spacing: -0.07em;
}

.hero h1 span {
    color: var(--accent);
}

.hero-copy {
    max-width: 690px;

    color: var(--muted);

    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin: 32px 0;
}

.button {
    display: inline-block;

    padding: 13px 19px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 750;

    transition: transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--accent);
    color: #081008;
}

.button.primary:hover {
    background: var(--accent-2);
}

.button.secondary {
    border: 1px solid var(--line);
    color: var(--text);
}

.button.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 18px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    padding: 28px;

    background: linear-gradient(
            145deg,
            var(--surface-2),
            var(--surface)
    );

    border: 1px solid var(--line);
    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

    font-size: 12px;
}

.status i {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 8px;

    background: var(--accent);

    border-radius: 50%;

    box-shadow: 0 0 12px var(--accent);
}

.monogram {
    width: 92px;
    height: 92px;

    display: grid;
    place-items: center;

    margin: 52px 0 20px;

    background: var(--accent);
    color: #081008;

    border-radius: 50%;

    font-size: 30px;
    font-weight: 900;
}

.hero-card h2 {
    margin: 0;

    font-size: 27px;

    letter-spacing: -0.04em;
}

.hero-card > p {
    margin: 5px 0 24px;

    color: var(--muted);
}

.card-links {
    display: grid;
    gap: 8px;

    padding-top: 18px;

    border-top: 1px solid var(--line);

    font-size: 13px;
}

.card-links a {
    color: var(--muted);

    transition: color 0.2s ease;
}

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


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-alt {
    background: var(--surface);
}

.two-col {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 100px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 0.98;

    letter-spacing: -0.06em;
}

.section-heading.wide {
    margin-bottom: 55px;
}

.prose {
    max-width: 760px;

    color: #c0c7ce;

    font-size: 17px;
}

.prose p {
    margin-top: 0;
    margin-bottom: 24px;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.job {
    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 55px;

    padding: 42px 0;

    border-top: 1px solid var(--line);
}

.job.featured {
    border-top: 2px solid var(--accent);
}

.job-meta {
    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.07em;
}

.job-meta span {
    display: block;
    margin-bottom: 5px;
}

.job h3 {
    margin: 0 0 5px;

    font-size: 25px;

    line-height: 1.15;

    letter-spacing: -0.035em;
}

.company {
    margin: 0 0 17px;

    color: var(--accent);

    font-weight: 700;
}

.job-description {
    margin: 0;

    max-width: 820px;

    color: var(--muted);
}

.tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;
}

.tags span {
    padding: 5px 9px;

    border: 1px solid var(--line);
    border-radius: 999px;

    color: #b8c0c8;

    font-size: 11px;
}


/* =========================================================
   SKILLS
   ========================================================= */

.skills-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

    border: 1px solid var(--line);
}

.skill-group {
    min-height: 170px;

    padding: 30px;

    background: var(--surface);
}

.skill-group h3 {
    margin: 0 0 12px;

    font-size: 15px;
}

.skill-group p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.skill-tags span {
    padding: 5px 9px;

    border: 1px solid var(--line);
    border-radius: 999px;

    color: #b8c0c8;

    font-size: 11px;
}


/* =========================================================
   EDUCATION
   ========================================================= */

.timeline-simple {
    display: grid;

    gap: 38px;
}

.timeline-simple > div {
    padding-left: 24px;

    border-left: 1px solid var(--line);
}

.timeline-simple span {
    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
}

.timeline-simple h3 {
    margin: 5px 0;

    font-size: 22px;
}

.timeline-simple p {
    margin: 0;

    color: var(--muted);
}

.muted {
    margin-top: 8px !important;

    font-size: 13px;
}


/* =========================================================
   HIGHLIGHTS
   ========================================================= */

.highlight-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

    border: 1px solid var(--line);
}

.highlight-grid > div {
    min-height: 150px;

    padding: 30px;

    background: var(--bg);
}

.highlight-grid strong {
    display: block;

    color: var(--accent);

    font-size: 30px;

    letter-spacing: -0.04em;
}

.highlight-grid span {
    display: block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    padding: 105px 0;

    background: var(--accent);

    color: #081008;
}

.contact .eyebrow {
    color: #244d19;
}

.contact-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;
}

.contact h2 {
    margin: 0;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 0.92;

    letter-spacing: -0.065em;
}

.contact-details {
    display: grid;

    gap: 10px;

    justify-items: start;

    font-size: 15px;

    font-weight: 700;
}

.contact-details a {
    border-bottom: 1px solid rgba(8, 16, 8, 0.25);

    transition: opacity 0.2s ease,
    border-color 0.2s ease;
}

.contact-details a:hover {
    opacity: 0.65;

    border-color: transparent;
}

.contact-details > span {
    margin-top: 12px;
    font-weight: 500;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 80px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: var(--muted);

    font-size: 12px;
}

.footer-inner a:hover {
    color: var(--accent);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-card {
        max-width: 550px;
    }
}


@media (max-width: 900px) {
    .two-col,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .two-col {
        gap: 45px;
    }

    .job {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .skills-grid,
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .container {
        width: min(var(--max), calc(100% - 28px));
    }

    .nav {
        min-height: 64px;
    }

    .nav-cta {
        display: none;
    }

    .language-switcher {
        margin-left: 10px;
    }

    .hero {
        padding: 75px 0 65px;
    }

    .section {
        padding: 75px 0;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-card {
        padding: 22px;
    }

    .skills-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .job {
        padding: 32px 0;
    }

    .contact {
        padding: 75px 0;
    }

    .contact-inner {
        gap: 45px;
    }

    .footer-inner {
        min-height: 70px;
    }
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 52px 0 20px;

    /*margin: 0 auto 28px;*/
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    background: var(--surface-2);
    box-shadow: 0 0 0 8px rgba(140, 240, 106, 0.08);
}

.profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.email-at {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}