:root {
    --bg: #061018;
    --bg-deep: #030a0f;
    --panel: #0b1922;
    --panel-light: #102631;
    --text: #f4f7f8;
    --muted: #8fa3ad;
    --muted-light: #b9c8cf;
    --cyan: #7dd9f5;
    --cyan-soft: rgba(125, 217, 245, 0.15);
    --line: rgba(255, 255, 255, 0.08);
    --max-width: 1600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 75% 20%, rgba(125, 217, 245, 0.08), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(125, 217, 245, 0.04), transparent 35%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 4vw;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    background: rgba(3, 10, 15, 0.72);
    z-index: 1000;
}

.logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    justify-self: start;
}

.nav-status {
    font-size: 11px;
    color: var(--muted-light);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.menu-button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    justify-self: end;
}

.menu-button span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--text);
    margin-left: auto;
}

.menu-button span:nth-child(2) {
    width: 20px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -440px;
    width: min(420px, 90vw);
    height: 100vh;
    background: #07131b;
    border-left: 1px solid var(--line);
    z-index: 1200;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: right 0.45s ease;
}

.side-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.menu-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--cyan);
    margin-bottom: 8px;
}

.menu-header strong {
    font-size: 18px;
}

.close-menu {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.menu-links {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    overflow-y: auto;
}

.menu-links a {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--muted-light);
    font-size: 18px;
    transition: 0.25s ease;
}

.menu-links a span {
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 0.12em;
}

.menu-links a:hover {
    color: var(--text);
    padding-left: 8px;
}

.menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    min-height: 100vh;
    padding: 130px 5vw 70px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-grid {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: 0.22em;
    margin-bottom: 28px;
}

.eyebrow span {
    width: 42px;
    height: 1px;
    background: var(--cyan);
}

.hero h1 {
    font-size: clamp(68px, 9vw, 150px);
    line-height: 0.78;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 247, 248, 0.65);
}

.hero h2 {
    margin-top: 34px;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero h2 span {
    color: var(--cyan);
}

.hero-description {
    margin-top: 26px;
    max-width: 670px;
    color: var(--muted-light);
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.button-primary {
    background: var(--cyan);
    color: #031017;
    border-color: var(--cyan);
    font-weight: 700;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(125, 217, 245, 0.18);
}

.button-secondary {
    background: rgba(255,255,255,0.02);
}

.button-secondary:hover {
    border-color: rgba(125, 217, 245, 0.45);
    background: rgba(125, 217, 245, 0.06);
}

.hero-metrics {
    display: flex;
    gap: 46px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    max-width: 620px;
}

.hero-metrics div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-metrics strong {
    font-size: 20px;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tower-area {
    position: relative;
    height: 680px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(125, 217, 245, 0.06), transparent 52%),
        linear-gradient(to bottom, rgba(255,255,255,0.01), transparent);
}

#tower-canvas {
    position: absolute;
    inset: 0;
}

#tower-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.tower-info {
    position: absolute;
    z-index: 5;
    left: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}

.tower-info span {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--cyan);
}

.tower-info strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.tower-info-top {
    top: 22px;
}

.tower-info-bottom {
    bottom: 22px;
}

.tower-floor-labels {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 56%;
    pointer-events: none;
}

.tower-floor-labels span {
    color: rgba(255,255,255,0.28);
    font-size: 8px;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}

.scroll-down {
    position: absolute;
    left: 5vw;
    bottom: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.2em;
}

.scroll-down div {
    width: 60px;
    height: 1px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.scroll-down div::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--cyan);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    to {
        left: 110%;
    }
}

.section {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    padding: 120px 5vw;
    border-top: 1px solid var(--line);
}

.section-dark {
    background: rgba(3,10,15,0.45);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
}

.section-index,
.section-label {
    font-size: 10px;
    letter-spacing: 0.2em;
}

.section-index {
    color: var(--cyan);
}

.section-label {
    color: var(--muted);
}

.section-title {
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 60px;
}

.section-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(244,247,248,0.55);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.about-grid h2 {
    font-size: clamp(48px, 5vw, 82px);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.about-grid h2 span {
    display: block;
    color: var(--cyan);
}

.about-copy {
    max-width: 760px;
}

.about-copy p {
    color: var(--muted-light);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-copy .large-copy {
    color: var(--text);
    font-size: 21px;
    line-height: 1.65;
}

.career-timeline {
    border-top: 1px solid var(--line);
}

.career-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}

.career-year {
    font-size: 30px;
    font-weight: 700;
}

.career-year span {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    color: var(--cyan);
    letter-spacing: 0.18em;
}

.career-company {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.18em;
}

.career-details h3 {
    margin-top: 13px;
    font-size: clamp(25px, 3vw, 44px);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.career-details p {
    margin-top: 18px;
    max-width: 850px;
    color: var(--muted-light);
    line-height: 1.8;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.tag-row span {
    border: 1px solid var(--line);
    padding: 7px 10px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.project-title-row {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 60px;
    align-items: end;
}

.project-title-row p {
    color: var(--muted-light);
    line-height: 1.8;
    padding-bottom: 60px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-card {
    min-height: 520px;
    background: rgba(11,25,34,0.72);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125,217,245,0.35);
}

.project-top {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.project-visual {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(to top, rgba(125,217,245,0.07), transparent),
        #07121a;
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.mini-building {
    position: relative;
    z-index: 2;
    width: 130px;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(125,217,245,0.2) 0,
            rgba(125,217,245,0.2) 5px,
            transparent 5px,
            transparent 14px
        ),
        linear-gradient(90deg, #10252f, #183b48);
    border: 1px solid rgba(125,217,245,0.28);
    box-shadow: 0 0 50px rgba(125,217,245,0.08);
}

.building-a {
    height: 215px;
}

.building-b {
    height: 190px;
    width: 160px;
}

.building-c {
    height: 225px;
    width: 110px;
}

.building-d {
    height: 175px;
    width: 180px;
}

.building-e {
    height: 165px;
    width: 190px;
}

.building-f {
    height: 125px;
    width: 190px;
}

.project-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-role {
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: 0.16em;
}

.project-content h3 {
    margin-top: 12px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.project-content p {
    margin-top: 14px;
    color: var(--muted-light);
    line-height: 1.7;
    font-size: 14px;
}

.project-content a {
    margin-top: auto;
    padding-top: 22px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--cyan);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.research-card {
    border: 1px solid var(--line);
    padding: 34px;
    min-height: 300px;
    background: rgba(255,255,255,0.015);
}

.research-number {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.18em;
}

.research-card h3 {
    margin-top: 44px;
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -0.03em;
}

.research-card p {
    margin-top: 20px;
    color: var(--muted-light);
    line-height: 1.8;
}

.education-list {
    border-top: 1px solid var(--line);
}

.education-list article {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.education-year {
    font-size: 34px;
    color: var(--cyan);
}

.education-place {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.17em;
}

.education-list h3 {
    margin-top: 12px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.03em;
}

.education-list strong {
    display: inline-block;
    margin-top: 11px;
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.education-list p {
    margin-top: 16px;
    color: var(--muted-light);
    line-height: 1.8;
}

.skills-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.skill-category {
    padding: 34px;
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.skill-category > span {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.16em;
}

.skill-category h3 {
    margin-top: 50px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.skill-category p {
    margin-top: 18px;
    color: var(--muted-light);
    line-height: 1.8;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cert-grid article {
    min-height: 240px;
    border: 1px solid var(--line);
    padding: 28px;
    background: rgba(255,255,255,0.015);
}

.cert-grid article > span {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.17em;
}

.cert-grid h3 {
    margin-top: 64px;
    font-size: 23px;
    line-height: 1.2;
}

.cert-grid p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.achievement-strip {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.achievement-strip div {
    padding: 34px 5vw;
    border-right: 1px solid var(--line);
}

.achievement-strip div:last-child {
    border-right: 0;
}

.achievement-strip span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.achievement-strip strong {
    font-size: 21px;
}

.cv-section {
    display: flex;
    justify-content: center;
}

.cv-box {
    width: 100%;
    padding: 70px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 20%, rgba(125,217,245,0.08), transparent 40%),
        rgba(11,25,34,0.55);
}

.cv-small {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 0.2em;
}

.cv-box h2 {
    margin-top: 22px;
    font-size: clamp(44px, 6vw, 84px);
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.cv-box h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(244,247,248,0.6);
}

.cv-box p {
    margin-top: 25px;
    max-width: 750px;
    color: var(--muted-light);
    line-height: 1.8;
}

.cv-box .button {
    margin-top: 30px;
}

.contact-section {
    padding: 140px 5vw;
    background: var(--cyan);
    color: #031017;
}

.contact-inner {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.contact-section h2 {
    margin-top: 28px;
    max-width: 1100px;
    font-size: clamp(54px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.contact-section h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #031017;
}

.contact-section p {
    margin-top: 28px;
    max-width: 680px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    gap: 0;
    margin-top: 54px;
    border-top: 1px solid rgba(3,16,23,0.3);
    border-bottom: 1px solid rgba(3,16,23,0.3);
}

.contact-links a {
    flex: 1;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid rgba(3,16,23,0.3);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.contact-links a:last-child {
    border-right: 0;
}

footer {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    padding: 26px 5vw;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.1em;
}

footer a {
    color: var(--cyan);
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .tower-area {
        height: 600px;
        border-top: 1px solid var(--line);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 800px) {
    .navbar {
        grid-template-columns: 1fr auto;
        height: 72px;
    }

    .nav-status {
        display: none;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(58px, 18vw, 105px);
    }

    .hero-metrics {
        gap: 24px;
        flex-wrap: wrap;
    }

    .career-item,
    .education-list article {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-title-row,
    .research-grid,
    .skills-layout {
        grid-template-columns: 1fr;
    }

    .project-title-row p {
        padding-bottom: 35px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .achievement-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links a {
        border-right: 0;
        border-bottom: 1px solid rgba(3,16,23,0.3);
    }

    .contact-links a:last-child {
        border-bottom: 0;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }

    .section {
        padding-left: 22px;
        padding-right: 22px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .tower-area {
        height: 500px;
    }

    .achievement-strip {
        grid-template-columns: 1fr;
    }

    .achievement-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .achievement-strip div:last-child {
        border-bottom: 0;
    }

    .cv-box {
        padding: 40px 24px;
    }

    .contact-section {
        padding-left: 22px;
        padding-right: 22px;
    }
}
/* ==================================================
   LARGE DESKTOP / FULL SCREEN IMPROVEMENTS
================================================== */

@media (min-width: 1200px) {

    :root {
        --max-width: 100%;
    }

    .navbar {
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        padding:
            110px 3.5vw
            55px 3.5vw;
    }

    .hero-grid {
        width: 100%;
        max-width: none;

        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(600px, 1.05fr);

        gap: 4vw;
    }

    .hero-content {
        padding-left: 2vw;
    }

    .hero h1 {
        font-size: clamp(
            90px,
            8vw,
            165px
        );
    }

    .hero h2 {
        font-size: clamp(
            26px,
            2vw,
            38px
        );
    }

    .hero-description {
        max-width: 760px;
        font-size: 17px;
    }

    .hero-buttons {
        margin-top: 38px;
    }

    .button {
        min-height: 54px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .hero-metrics {
        max-width: 760px;
        margin-top: 52px;
    }

    .tower-area {
        width: 100%;
        height: calc(100vh - 150px);
        min-height: 650px;
        max-height: 850px;
    }

    .section {
        width: 100%;
        max-width: none;

        padding-left: 6vw;
        padding-right: 6vw;
    }

    .achievement-strip {
        width: 100%;
        max-width: none;
    }

    .contact-inner {
        width: 100%;
        max-width: none;
    }

    footer {
        width: 100%;
        max-width: none;
    }
}


/* ==================================================
   EXTRA LARGE MONITORS
================================================== */

@media (min-width: 1700px) {

    .hero {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .hero-grid {
        grid-template-columns:
            0.9fr
            1.1fr;
    }

    .hero h1 {
        font-size: clamp(
            120px,
            8vw,
            180px
        );
    }

    .hero-description {
        font-size: 18px;
        max-width: 820px;
    }

    .tower-area {
        min-height: 720px;
    }

    .section {
        padding-left: 7vw;
        padding-right: 7vw;
    }
}
/* =========================================================
   VERSION 2 — LARGE PROFESSIONAL SCALE
   ========================================================= */

:root {
    --max-width: 100%;
}


/* ---------- GLOBAL TEXT ---------- */

body {
    font-size: 20px;
}

p {
    font-size: 20px;
    line-height: 1.75;
}


/* ---------- NAVIGATION ---------- */

.navbar {
    height: 105px;
    padding-left: 4vw;
    padding-right: 4vw;
}

.logo {
    font-size: 28px;
}

.nav-status {
    font-size: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
}

.menu-button {
    width: 72px;
    height: 72px;
    gap: 10px;
}

.menu-button span {
    width: 46px;
    height: 3px;
}

.menu-button span:nth-child(2) {
    width: 34px;
}


/* ---------- SIDE MENU ---------- */

.side-menu {
    width: min(620px, 94vw);
    right: -650px;
    padding: 48px;
}

.menu-label {
    font-size: 14px;
}

.menu-header strong {
    font-size: 28px;
}

.close-menu {
    width: 58px;
    height: 58px;
    font-size: 34px;
}

.menu-links a {
    font-size: 30px;
    padding: 22px 0;
}

.menu-links a span {
    font-size: 14px;
}

.menu-footer {
    font-size: 13px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
    min-height: 100vh;

    padding:
        140px 4vw
        70px 4vw;

    display: flex;
    align-items: center;
}

.hero-grid {
    width: 100%;
    max-width: none;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(700px, 1.1fr);

    gap: 5vw;
}

.hero-content {
    padding-left: 1vw;
}

.eyebrow {
    font-size: 16px;
    margin-bottom: 35px;
}

.eyebrow span {
    width: 65px;
    height: 2px;
}

.hero h1 {
    font-size: clamp(
        105px,
        9vw,
        190px
    );

    line-height: 0.78;
}

.hero h2 {
    font-size: clamp(
        32px,
        2.4vw,
        48px
    );

    margin-top: 45px;
}

.hero-description {
    max-width: 900px;

    font-size: 22px;
    line-height: 1.7;

    margin-top: 30px;
}

.hero-buttons {
    gap: 16px;
    margin-top: 42px;
}

.button {
    min-height: 62px;

    padding:
        0 32px;

    font-size: 15px;
}

.hero-metrics {
    max-width: 850px;

    gap: 70px;

    margin-top: 58px;

    padding-top: 30px;
}

.hero-metrics strong {
    font-size: 30px;
}

.hero-metrics span {
    font-size: 14px;
}


/* =========================================================
   3D TOWER
   ========================================================= */

.tower-area {
    height: calc(100vh - 160px);

    min-height: 720px;
    max-height: 1000px;

    width: 100%;

    cursor: grab;

    border:
        1px solid
        rgba(255,255,255,0.10);

    background:
        radial-gradient(
            circle at center,
            rgba(125,217,245,0.11),
            transparent 58%
        );
}

.tower-area:active {
    cursor: grabbing;
}

.tower-info span {
    font-size: 13px;
}

.tower-info strong {
    font-size: 15px;
}

.tower-floor-labels span {
    font-size: 11px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    width: 100%;
    max-width: none;

    padding:
        150px 6vw;
}

.section-header {
    margin-bottom: 60px;
}

.section-index,
.section-label {
    font-size: 15px;
}

.section-title {
    font-size: clamp(
        75px,
        8vw,
        145px
    );

    margin-bottom: 90px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 8vw;
}

.about-grid h2 {
    font-size: clamp(
        70px,
        7vw,
        130px
    );
}

.about-copy {
    max-width: 950px;
}

.about-copy p {
    font-size: 22px;
}

.about-copy .large-copy {
    font-size: 30px;
}


/* =========================================================
   CAREER
   ========================================================= */

.career-item {
    grid-template-columns:
        240px
        1fr;

    gap: 60px;

    padding: 60px 0;
}

.career-year {
    font-size: 44px;
}

.career-year span {
    font-size: 13px;
}

.career-company {
    font-size: 14px;
}

.career-details h3 {
    font-size: clamp(
        36px,
        3.4vw,
        58px
    );
}

.career-details p {
    max-width: 1100px;
    font-size: 21px;
}

.tag-row {
    gap: 10px;
    margin-top: 28px;
}

.tag-row span {
    font-size: 12px;
    padding: 10px 14px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.project-title-row {
    grid-template-columns:
        1fr
        0.7fr;

    gap: 80px;
}

.project-title-row p {
    font-size: 22px;
}

.project-grid {
    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;
}

.project-card {
    min-height: 720px;
}

.project-top {
    padding: 24px 28px;
    font-size: 13px;
}

.project-visual {
    height: 420px;
}

.project-content {
    padding: 32px;
}

.project-role {
    font-size: 13px;
}

.project-content h3 {
    font-size: 42px;
    margin-top: 15px;
}

.project-content p {
    font-size: 20px;
}

.project-content a {
    font-size: 15px;
}


/* =========================================================
   RESEARCH
   ========================================================= */

.research-card {
    min-height: 420px;
    padding: 45px;
}

.research-number {
    font-size: 14px;
}

.research-card h3 {
    font-size: clamp(
        36px,
        3.5vw,
        60px
    );
}

.research-card p {
    font-size: 21px;
}


/* =========================================================
   EDUCATION
   ========================================================= */

.education-list article {
    grid-template-columns:
        230px
        1fr;

    gap: 55px;

    padding: 55px 0;
}

.education-year {
    font-size: 48px;
}

.education-place {
    font-size: 14px;
}

.education-list h3 {
    font-size: 48px;
}

.education-list strong {
    font-size: 14px;
}

.education-list p {
    font-size: 21px;
}


/* =========================================================
   SKILLS
   ========================================================= */

.skill-category {
    padding: 45px;
    min-height: 340px;
}

.skill-category > span {
    font-size: 14px;
}

.skill-category h3 {
    font-size: 42px;
}

.skill-category p {
    font-size: 20px;
}


/* =========================================================
   CERTIFICATIONS
   ========================================================= */

.cert-grid article {
    min-height: 320px;
    padding: 38px;
}

.cert-grid article > span {
    font-size: 14px;
}

.cert-grid h3 {
    font-size: 32px;
}

.cert-grid p {
    font-size: 19px;
}


/* =========================================================
   ACHIEVEMENTS
   ========================================================= */

.achievement-strip div {
    padding:
        46px
        5vw;
}

.achievement-strip span {
    font-size: 13px;
}

.achievement-strip strong {
    font-size: 32px;
}


/* =========================================================
   CV
   ========================================================= */

.cv-box {
    padding: 95px;
}

.cv-small {
    font-size: 14px;
}

.cv-box h2 {
    font-size: clamp(
        70px,
        7vw,
        130px
    );
}

.cv-box p {
    font-size: 22px;
    max-width: 950px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding:
        170px
        6vw;
}

.contact-label {
    font-size: 15px;
}

.contact-section h2 {
    font-size: clamp(
        80px,
        9vw,
        170px
    );
}

.contact-section p {
    font-size: 23px;
}

.contact-links a {
    font-size: 17px;
    padding: 32px 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    min-height: 110px;

    padding:
        35px
        5vw;

    font-size: 14px;
}


/* =========================================================
   STAGGERED SCROLL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(70px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;

    transform:
        translateY(55px);

    transition:
        opacity 0.8s ease,
        transform 0.9s cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .tower-area {
        min-height: 650px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    body {
        font-size: 18px;
    }

    p {
        font-size: 18px;
    }

    .navbar {
        height: 82px;
    }

    .logo {
        font-size: 22px;
    }

    .menu-button {
        width: 56px;
        height: 56px;
    }

    .menu-button span {
        width: 36px;
    }

    .hero {
        padding:
            110px
            22px
            60px;
    }

    .hero h1 {
        font-size:
            clamp(
                68px,
                20vw,
                110px
            );
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 19px;
    }

    .section {
        padding:
            100px
            24px;
    }

    .section-title {
        font-size:
            clamp(
                55px,
                16vw,
                90px
            );
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .career-item,
    .education-list article {
        grid-template-columns: 1fr;
    }

    .research-grid,
    .skills-layout,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cv-box {
        padding: 45px 25px;
    }
}
/* ==========================================================
   VERSION 3
   LARGE ARCHITECTURAL PRESENTATION
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* ==========================================================
   GLOBAL QUALITY + SCALE
   ========================================================== */

html {
    font-size: 20px;
}

body {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 20px;
    letter-spacing: -0.015em;
}

p {
    font-size: 22px;
    line-height: 1.75;
}

strong {
    font-weight: 700;
}


/* ==========================================================
   NAVIGATION — MUCH BIGGER
   ========================================================== */

.navbar {
    height: 120px !important;
    padding: 0 4vw !important;
}

.logo {
    font-size: 34px !important;
    font-weight: 800;
}

.nav-status {
    font-size: 17px !important;
    letter-spacing: 0.16em;
}

.status-dot {
    width: 12px;
    height: 12px;
}

.menu-button {
    width: 84px !important;
    height: 84px !important;
    gap: 12px !important;
}

.menu-button span {
    width: 54px !important;
    height: 4px !important;
}

.menu-button span:nth-child(2) {
    width: 42px !important;
}


/* ==========================================================
   SIDE MENU — MUCH BIGGER
   ========================================================== */

.side-menu {
    width: min(700px, 95vw) !important;
    right: -730px;
    padding: 58px !important;
}

.menu-label {
    font-size: 16px !important;
}

.menu-header strong {
    font-size: 34px !important;
}

.close-menu {
    width: 68px !important;
    height: 68px !important;
    font-size: 42px !important;
}

.menu-links a {
    font-size: 34px !important;
    padding: 25px 0 !important;
}

.menu-links a span {
    font-size: 16px !important;
    min-width: 42px;
}

.menu-footer {
    font-size: 15px !important;
}


/* ==========================================================
   HERO — FULL SCREEN / LARGE
   ========================================================== */

.hero {
    width: 100%;
    min-height: 100vh;

    padding:
        150px
        3vw
        70px !important;
}

.hero-grid {
    width: 100% !important;
    max-width: none !important;

    display: grid;

    grid-template-columns:
        minmax(520px, 0.72fr)
        minmax(850px, 1.28fr) !important;

    gap: 4vw !important;

    align-items: center;
}


/* ==========================================================
   HERO TEXT
   ========================================================== */

.eyebrow {
    font-size: 18px !important;
    letter-spacing: 0.16em;
    margin-bottom: 38px !important;
}

.eyebrow span {
    width: 75px !important;
    height: 2px !important;
}

.hero h1 {
    font-size: clamp(
        120px,
        9.5vw,
        205px
    ) !important;

    line-height: 0.8 !important;
    letter-spacing: -0.065em;
}

.hero h2 {
    margin-top: 48px !important;

    font-size: clamp(
        36px,
        2.7vw,
        54px
    ) !important;

    line-height: 1.12;
}

.hero-description {
    margin-top: 34px !important;

    max-width: 950px !important;

    font-size: 24px !important;
    line-height: 1.72 !important;
}

.hero-buttons {
    margin-top: 44px !important;
    gap: 18px !important;
}

.button {
    min-height: 68px !important;

    padding:
        0
        36px !important;

    font-size: 17px !important;

    letter-spacing: 0.08em;
}

.hero-metrics {
    max-width: 950px !important;

    margin-top: 62px !important;
    padding-top: 34px !important;

    gap: 75px !important;
}

.hero-metrics strong {
    font-size: 34px !important;
}

.hero-metrics span {
    font-size: 15px !important;
}


/* ==========================================================
   GIANT 3D BUILDING AREA
   ========================================================== */

.tower-area {
    width: 100% !important;

    height: calc(100vh - 165px) !important;

    min-height: 850px !important;
    max-height: 1100px !important;

    border: 1px solid rgba(255,255,255,0.13) !important;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(125,217,245,0.12),
            transparent 52%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0)
        ) !important;
}

#tower-canvas {
    width: 100%;
    height: 100%;
}

.tower-info {
    left: 30px !important;
}

.tower-info-top {
    top: 30px !important;
}

.tower-info-bottom {
    bottom: 30px !important;
}

.tower-info span {
    font-size: 15px !important;
}

.tower-info strong {
    font-size: 18px !important;
}

.tower-floor-labels {
    right: 24px !important;
}

.tower-floor-labels span {
    font-size: 13px !important;
}


/* ==========================================================
   SECTION SCALE
   ========================================================== */

.section {
    width: 100% !important;
    max-width: none !important;

    padding:
        180px
        6vw !important;
}

.section-header {
    margin-bottom: 72px !important;
}

.section-index {
    font-size: 18px !important;
}

.section-label {
    font-size: 18px !important;
}

.section-title {
    font-size: clamp(
        92px,
        8.5vw,
        165px
    ) !important;

    line-height: 0.92 !important;

    margin-bottom: 105px !important;
}


/* ==========================================================
   ABOUT
   ========================================================== */

.about-grid {
    gap: 9vw !important;
}

.about-grid h2 {
    font-size: clamp(
        82px,
        7.6vw,
        145px
    ) !important;
}

.about-copy {
    max-width: 1100px !important;
}

.about-copy .large-copy {
    font-size: 34px !important;
    line-height: 1.55 !important;
}

.about-copy p {
    font-size: 23px !important;
}


/* ==========================================================
   CAREER
   ========================================================== */

.career-item {
    grid-template-columns:
        270px
        1fr !important;

    gap: 70px !important;

    padding: 75px 0 !important;
}

.career-year {
    font-size: 50px !important;
}

.career-year span {
    font-size: 15px !important;
}

.career-company {
    font-size: 17px !important;
}

.career-details h3 {
    font-size: clamp(
        44px,
        3.7vw,
        68px
    ) !important;
}

.career-details p {
    font-size: 23px !important;
    max-width: 1200px !important;
}

.tag-row span {
    font-size: 14px !important;
    padding: 12px 17px !important;
}


/* ==========================================================
   PROJECTS
   ========================================================== */

.project-title-row {
    gap: 100px !important;
}

.project-title-row p {
    font-size: 24px !important;
}

.project-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 36px !important;
}

.project-card {
    min-height: 820px !important;
}

.project-top {
    padding: 28px 32px !important;
    font-size: 15px !important;
}

.project-visual {
    height: 500px !important;
}

.project-content {
    padding: 38px !important;
}

.project-role {
    font-size: 15px !important;
}

.project-content h3 {
    font-size: 50px !important;
    margin-top: 18px !important;
}

.project-content p {
    font-size: 22px !important;
}

.project-content a {
    font-size: 17px !important;
}


/* ==========================================================
   RESEARCH
   ========================================================== */

.research-card {
    min-height: 500px !important;
    padding: 52px !important;
}

.research-number {
    font-size: 16px !important;
}

.research-card h3 {
    font-size: clamp(
        43px,
        3.8vw,
        67px
    ) !important;
}

.research-card p {
    font-size: 23px !important;
}


/* ==========================================================
   EDUCATION
   ========================================================== */

.education-list article {
    grid-template-columns:
        270px
        1fr !important;

    padding: 72px 0 !important;

    gap: 70px !important;
}

.education-year {
    font-size: 56px !important;
}

.education-place {
    font-size: 16px !important;
}

.education-list h3 {
    font-size: 54px !important;
}

.education-list strong {
    font-size: 16px !important;
}

.education-list p {
    font-size: 23px !important;
}


/* ==========================================================
   SKILLS
   ========================================================== */

.skill-category {
    min-height: 400px !important;
    padding: 52px !important;
}

.skill-category > span {
    font-size: 16px !important;
}

.skill-category h3 {
    font-size: 48px !important;
}

.skill-category p {
    font-size: 22px !important;
}


/* ==========================================================
   CERTIFICATES
   ========================================================== */

.cert-grid article {
    min-height: 380px !important;
    padding: 45px !important;
}

.cert-grid article > span {
    font-size: 16px !important;
}

.cert-grid h3 {
    font-size: 37px !important;
}

.cert-grid p {
    font-size: 21px !important;
}


/* ==========================================================
   ACHIEVEMENT STRIP
   ========================================================== */

.achievement-strip div {
    padding: 55px 5vw !important;
}

.achievement-strip span {
    font-size: 15px !important;
}

.achievement-strip strong {
    font-size: 38px !important;
}


/* ==========================================================
   CV
   ========================================================== */

.cv-box {
    padding: 110px !important;
}

.cv-small {
    font-size: 16px !important;
}

.cv-box h2 {
    font-size: clamp(
        82px,
        7.5vw,
        145px
    ) !important;
}

.cv-box p {
    font-size: 24px !important;
    max-width: 1000px !important;
}


/* ==========================================================
   CONTACT
   ========================================================== */

.contact-section {
    padding:
        190px
        6vw !important;
}

.contact-label {
    font-size: 17px !important;
}

.contact-section h2 {
    font-size: clamp(
        95px,
        9vw,
        180px
    ) !important;
}

.contact-section p {
    font-size: 25px !important;
}

.contact-links a {
    padding: 38px 0 !important;
    font-size: 19px !important;
}


/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    min-height: 125px !important;
    font-size: 16px !important;
}


/* ==========================================================
   TRUE ELEMENT-BY-ELEMENT ANIMATION
   ========================================================== */

.reveal {
    opacity: 1 !important;
    transform: none !important;
}

.sequence-item {
    opacity: 0;

    transform:
        translateY(70px);

    filter: blur(7px);

    transition:
        opacity 0.95s ease,
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s ease;
}

.sequence-item.sequence-visible {
    opacity: 1;

    transform:
        translateY(0);

    filter: blur(0);
}


/* Images / cards can enter slightly stronger */

.project-card.sequence-item,
.research-card.sequence-item,
.skill-category.sequence-item,
.cert-grid article.sequence-item {

    transform:
        translateY(90px)
        scale(0.975);
}

.project-card.sequence-visible,
.research-card.sequence-visible,
.skill-category.sequence-visible,
.cert-grid article.sequence-visible {

    transform:
        translateY(0)
        scale(1);
}


/* ==========================================================
   ULTRA LARGE MONITORS
   ========================================================== */

@media (min-width: 1900px) {

    .hero {
        padding-left: 4.5vw !important;
        padding-right: 4.5vw !important;
    }

    .hero-grid {
        grid-template-columns:
            0.7fr
            1.3fr !important;
    }

    .tower-area {
        min-height: 900px !important;
    }

}


/* ==========================================================
   RESPONSIVE LAPTOP
   ========================================================== */

@media (max-width: 1350px) {

    .hero-grid {
        grid-template-columns:
            0.9fr
            1.1fr !important;
    }

    .tower-area {
        min-height: 720px !important;
    }

}


/* ==========================================================
   TABLET / PHONE
   ========================================================== */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns:
            1fr !important;
    }

    .tower-area {
        height: 760px !important;
        min-height: 760px !important;
    }

    .project-grid {
        grid-template-columns:
            1fr !important;
    }

}


@media (max-width: 700px) {

    .navbar {
        height: 88px !important;
    }

    .hero {
        padding:
            120px
            22px
            70px !important;
    }

    .hero h1 {
        font-size: clamp(
            74px,
            21vw,
            115px
        ) !important;
    }

    .hero h2 {
        font-size: 31px !important;
    }

    .hero-description {
        font-size: 20px !important;
    }

    .tower-area {
        height: 620px !important;
        min-height: 620px !important;
    }

    .section {
        padding:
            110px
            24px !important;
    }

    .section-title {
        font-size: clamp(
            62px,
            17vw,
            100px
        ) !important;
    }

    .about-grid,
    .career-item,
    .education-list article {

        grid-template-columns:
            1fr !important;
    }

}

/* ==========================================================
   PROFILE V4 — CLEAN LAYOUT
   ========================================================== */

.about-grid {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(520px, 0.95fr) !important;

    gap: 8vw !important;

    align-items: start !important;
}


/* LEFT SIDE */

.about-profile-left {
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


/* BIG PROFILE TITLE */

.about-profile-left h2 {
    margin: 0 0 70px 0 !important;

    font-size: clamp(
        72px,
        6vw,
        125px
    ) !important;

    line-height: 0.92 !important;

    letter-spacing: -0.055em;
}

.about-profile-left h2 span {
    display: block;
}


/* PHOTO */

.profile-photo {
    width: 100%;

    max-width: 850px;

    overflow: hidden;

    border-radius: 4px;

    background:
        rgba(255,255,255,0.04);
}

.profile-photo img {
    display: block;

    width: 100%;

    height: 620px;

    object-fit: cover;

    object-position: center 48%;
}


/* SMALL CAPTION BELOW PHOTO */

.profile-photo-info {
    width: 100%;
    max-width: 850px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid
        rgba(255,255,255,0.15);

    font-size: 13px !important;

    font-weight: 600;

    letter-spacing: 0.12em;

    color:
        rgba(255,255,255,0.55);
}


/* ==========================================================
   RIGHT PROFILE TEXT
   ========================================================== */

.about-copy {
    width: 100% !important;

    max-width: 760px !important;

    padding-top: 20px !important;
}

.about-copy p {
    margin:
        0
        0
        38px !important;

    font-size: clamp(
        19px,
        1.15vw,
        23px
    ) !important;

    line-height: 1.72 !important;

    color:
        rgba(245,248,250,0.78);
}

.about-copy .large-copy {
    margin-bottom: 55px !important;

    font-size: clamp(
        27px,
        1.65vw,
        34px
    ) !important;

    line-height: 1.5 !important;

    color: #f5f8fa !important;

    font-weight: 500;
}


/* ==========================================================
   PROFILE MOBILE
   ========================================================== */

@media (max-width: 1100px) {

    .about-grid {
        grid-template-columns:
            1fr !important;

        gap: 90px !important;
    }

    .profile-photo {
        max-width: none;
    }

    .profile-photo img {
        height: auto;
    }

    .profile-photo-info {
        max-width: none;
    }

    .about-copy {
        max-width: none !important;
    }

}
/* =========================================================
   PROFILE — DESKTOP TWO COLUMN FIX
   ========================================================= */

.about-grid {
    width: 100% !important;
    max-width: none !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    column-gap: 7vw !important;

    align-items: start !important;
}


/* LEFT COLUMN */

.about-profile-left {
    grid-column: 1 !important;

    width: 100% !important;

    display: block !important;
}


/* RIGHT COLUMN */

.about-copy {
    grid-column: 2 !important;

    width: 100% !important;

    max-width: 780px !important;

    margin: 0 !important;

    padding: 20px 0 0 0 !important;
}


/* MAIN INTRODUCTION */

.about-copy .large-copy {
    font-size: clamp(
        28px,
        1.8vw,
        36px
    ) !important;

    line-height: 1.5 !important;

    margin-bottom: 55px !important;
}


/* OTHER PARAGRAPHS */

.about-copy p:not(.large-copy) {
    font-size: clamp(
        19px,
        1.15vw,
        23px
    ) !important;

    line-height: 1.75 !important;

    margin-bottom: 42px !important;
}


/* PHONE / TABLET */

@media (max-width: 1000px) {

    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .about-profile-left,
    .about-copy {
        grid-column: 1 !important;
    }

}
/* =========================================================
   PROFILE — FORCE LEFT / RIGHT DESKTOP LAYOUT
   ========================================================= */

#about .about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;

    width: 100% !important;
    max-width: none !important;

    gap: 7vw !important;

    align-items: start !important;
}


/* LEFT COLUMN */

#about .about-profile-left {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;

    width: 100% !important;
}


/* RIGHT COLUMN */

#about .about-copy {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 20px 0 0 0 !important;

    align-self: start !important;
}


/* Large introduction */

#about .about-copy .large-copy {
    font-size: clamp(28px, 1.8vw, 38px) !important;
    line-height: 1.5 !important;

    margin: 0 0 55px 0 !important;
}


/* Remaining profile paragraphs */

#about .about-copy p:not(.large-copy) {
    font-size: clamp(19px, 1.15vw, 24px) !important;
    line-height: 1.75 !important;

    margin: 0 0 42px 0 !important;
}


/* Keep photo on left */

#about .profile-photo {
    width: 100% !important;
    max-width: none !important;
}

#about .profile-photo img {
    width: 100% !important;
    height: 650px !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;
}


/* Only stack on smaller screens */

@media screen and (max-width: 700px) {

    #about .about-grid {
        grid-template-columns: 1fr !important;
    }

    #about .about-profile-left {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    #about .about-copy {
        grid-column: 1 !important;
        grid-row: 2 !important;

        padding-top: 60px !important;
    }

}
/* =========================================================
   PROFILE PHOTO — SHOW FULL ORIGINAL IMAGE
   ========================================================= */

#about .profile-photo {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
}

#about .profile-photo img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-height: none !important;

    object-fit: contain !important;
    object-position: center !important;
}
/* =========================================================
   PROFILE — FORCE 2 COLUMNS ON DESKTOP
   ========================================================= */

@media (min-width: 701px) {

    #about .about-grid {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 6vw !important;

        align-items: start !important;
    }


    /* LEFT: TITLE + PHOTO */

    #about .about-profile-left {
        grid-column: 1 !important;
        grid-row: 1 !important;

        width: 100% !important;
        max-width: none !important;
    }


    /* RIGHT: BIOGRAPHY */

    #about .about-copy {
        grid-column: 2 !important;
        grid-row: 1 !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 20px 0 0 0 !important;
    }


    /* KEEP FULL PHOTO */

    #about .profile-photo img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }

}
/* =========================================================
   MAJOR PROJECTS — IMAGE CARDS
   ========================================================= */

#projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 40px;
    width: 100%;
}

#projects .project-card {
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
    cursor: pointer;
}

#projects .project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0b141b;
}

#projects .project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}

#projects .project-card:hover .project-image img {
    transform: scale(1.045);
}

#projects .project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(2, 10, 15, 0.42),
            rgba(2, 10, 15, 0.03) 55%,
            transparent
        );
    pointer-events: none;
}

#projects .project-content {
    padding-top: 22px;
}

#projects .project-number {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.18em;
    color: #61dfff;
}

#projects .project-card h3 {
    margin: 0;
    font-size: clamp(38px, 3.6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #f4f7f8;
}

#projects .project-location {
    margin: 15px 0 0;
    font-size: 18px;
    color: rgba(235, 243, 246, 0.65);
}

#projects .project-role {
    margin: 7px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(235, 243, 246, 0.9);
}

@media (max-width: 900px) {
    #projects .projects-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    #projects .project-card h3 {
        font-size: clamp(36px, 9vw, 58px);
    }
}
/* =========================================================
   PROJECTS — LARGE SECTION INTRO
   ========================================================= */

#projects .projects-intro {
    width: 100%;
    padding: 40px 0 80px 0;
}

#projects .projects-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;

    font-size: 18px !important;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #66ddff;
}

#projects .projects-title {
    margin: 0 !important;

    font-size: clamp(72px, 7.5vw, 140px) !important;
    line-height: 0.90 !important;
    letter-spacing: -0.055em !important;
    font-weight: 600 !important;

    color: #f4f7f8 !important;
}

#projects .projects-title span {
    display: block !important;
    color: #66ddff !important;
}

#projects .projects-description {
    max-width: 1000px !important;

    margin: 42px 0 0 0 !important;

    font-size: clamp(20px, 1.5vw, 27px) !important;
    line-height: 1.55 !important;

    color: rgba(235, 243, 246, 0.72) !important;
}
/* =========================================================
   PROJECT CASE STUDY — FULL SCREEN
   ========================================================= */

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    width: 100%;
    height: 100vh;

    overflow-y: auto;

    background: #061119;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(25px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}


/* WHEN PROJECT IS OPEN */

.project-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* INNER CONTENT */

.project-modal-inner {
    width: min(1600px, 92%);
    margin: 0 auto;

    padding: 120px 0 160px;
}


/* CLOSE BUTTON */

.project-modal-close {
    position: fixed;

    top: 28px;
    right: 38px;

    z-index: 100001;

    width: 58px;
    height: 58px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;

    background: rgba(5, 15, 22, 0.85);

    color: #ffffff;

    font-size: 34px;
    font-weight: 300;

    cursor: pointer;

    backdrop-filter: blur(12px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.project-modal-close:hover {
    background: #66ddff;
    color: #061119;
    border-color: #66ddff;

    transform: rotate(90deg);
}


/* TOP INFORMATION */

.project-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 28px;

    border-bottom: 1px solid rgba(255,255,255,0.18);

    font-size: 14px;
    letter-spacing: 0.16em;

    color: #66ddff;
}


/* MAIN TITLE */

.project-modal h1 {
    margin: 70px 0;

    font-size: clamp(70px, 10vw, 180px);
    line-height: 0.84;

    letter-spacing: -0.065em;

    color: #f4f7f8;
}

.project-modal h1 span {
    display: block;

    color: #66ddff;
}


/* LARGE HERO IMAGE */

.project-modal-hero {
    width: 100%;
    height: min(75vh, 900px);

    overflow: hidden;

    background: #101b22;
}

.project-modal-hero img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* PROJECT FACTS */

.project-facts {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    margin-top: 0;

    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.project-facts > div {
    padding: 35px 28px 35px 0;

    border-right: 1px solid rgba(255,255,255,0.14);
}

.project-facts > div:not(:first-child) {
    padding-left: 28px;
}

.project-facts > div:last-child {
    border-right: none;
}

.project-facts span {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    letter-spacing: 0.16em;

    color: #66ddff;
}

.project-facts strong {
    display: block;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 500;

    color: #f4f7f8;
}


/* CASE STUDY SECTIONS */

.project-story {
    display: grid;

    grid-template-columns: 240px minmax(0, 1fr);

    gap: clamp(50px, 8vw, 150px);

    padding: 120px 0;

    border-bottom: 1px solid rgba(255,255,255,0.16);
}


.project-story-label span {
    display: block;

    margin-bottom: 14px;

    font-size: 16px;

    color: #66ddff;
}

.project-story-label p {
    margin: 0;

    font-size: 13px;
    letter-spacing: 0.16em;

    color: rgba(255,255,255,0.6);
}


.project-story-content {
    max-width: 1050px;
}


.project-story-content h2 {
    margin: 0 0 45px;

    font-size: clamp(42px, 5vw, 85px);
    line-height: 1;

    letter-spacing: -0.045em;

    color: #f4f7f8;
}


.project-story-content p {
    max-width: 900px;

    margin: 0 0 28px;

    font-size: clamp(19px, 1.35vw, 24px);
    line-height: 1.65;

    color: rgba(235, 243, 246, 0.72);
}


/* YOUR CONTRIBUTION TAGS */

.contribution-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin-top: 55px;

    border-top: 1px solid rgba(255,255,255,0.15);
}

.contribution-grid span {
    padding: 22px 10px 22px 0;

    border-bottom: 1px solid rgba(255,255,255,0.15);

    font-size: 17px;

    color: #f4f7f8;
}


/* MAKE PROJECT CARD FEEL CLICKABLE */

.project-card {
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 900px) {

    .project-modal-inner {
        width: 90%;
        padding-top: 100px;
    }

    .project-modal h1 {
        font-size: clamp(58px, 16vw, 100px);
    }

    .project-modal-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-modal-hero {
        height: 55vh;
    }

    .project-facts {
        grid-template-columns: 1fr 1fr;
    }

    .project-story {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 80px 0;
    }

    .contribution-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PROJECT IMAGE — CLICK FOR MORE HOVER
   ========================================================= */

.project-image {
    position: relative;
    overflow: hidden;
}


/* PROJECT PHOTO */

.project-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s cubic-bezier(.2,.7,.2,1),
        filter 0.45s ease;
}


/* DARK OVERLAY */

.project-hover-overlay {
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: rgba(2, 12, 18, 0.68);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}


/* CIRCLE + ARROW */

.project-hover-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    margin-bottom: 26px;

    border: 2px solid #66ddff;
    border-radius: 50%;

    color: #66ddff;

    font-size: 42px;
    font-weight: 200;
    line-height: 1;

    transform: translateY(15px) scale(0.9);

    opacity: 0;

    transition:
        opacity 0.4s ease,
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        background 0.3s ease,
        color 0.3s ease;
}


/* CLICK FOR MORE */

.project-hover-text {
    color: #ffffff;

    font-size: clamp(15px, 1.25vw, 22px);
    font-weight: 500;

    letter-spacing: 0.32em;

    text-transform: uppercase;

    transform: translateY(18px);

    opacity: 0;

    transition:
        opacity 0.4s ease 0.06s,
        transform 0.45s ease 0.06s;
}


/* SMALL CYAN LINE */

.project-hover-line {
    display: block;

    width: 0;
    height: 2px;

    margin-top: 25px;

    background: #66ddff;

    transition: width 0.5s ease 0.12s;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.project-card:hover .project-hover-overlay {
    opacity: 1;
}


/* DARKEN + SLIGHTLY ZOOM PHOTO */

.project-card:hover .project-image img {
    transform: scale(1.035);

    filter: brightness(0.42);
}


/* SHOW ARROW */

.project-card:hover .project-hover-arrow {
    opacity: 1;

    transform: translateY(0) scale(1);
}


/* SHOW TEXT */

.project-card:hover .project-hover-text {
    opacity: 1;

    transform: translateY(0);
}


/* DRAW CYAN LINE */

.project-card:hover .project-hover-line {
    width: 85px;
}


/* EXTRA EFFECT ON ARROW */

.project-card:hover .project-hover-arrow:hover {
    background: #66ddff;
    color: #061119;
}


/* POINTER */

.project-card {
    cursor: pointer;
}
/* =========================================================
   CONTACT — PREMIUM SOCIAL CARDS
   ========================================================= */

.contact-socials {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    margin-top: 55px;
}


/* CARD */

.contact-social {
    min-height: 145px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;

    gap: 30px;

    padding: 32px 38px;

    background:
        linear-gradient(
            135deg,
            #071722 0%,
            #0a1d29 100%
        );

    border: 1px solid rgba(7, 38, 52, 0.55);

    border-radius: 12px;

    text-decoration: none;

    box-shadow:
        0 14px 35px rgba(0, 24, 35, 0.18);

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* HOVER CARD */

.contact-social:hover {
    transform: translateY(-7px);

    border-color: #66ddff;

    box-shadow:
        0 20px 45px rgba(0, 31, 45, 0.28),
        0 0 25px rgba(102, 221, 255, 0.22);
}


/* =========================================================
   ICONS
   ========================================================= */

.contact-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    font-family: Arial, sans-serif;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* LINKEDIN */

.linkedin-icon {
    background: #0a66c2;

    color: #ffffff;

    font-size: 38px;
    font-weight: 700;

    letter-spacing: -0.08em;
}


/* EMAIL */

.gmail-icon {
    background: #ffffff;

    color: #071722;

    font-size: 32px;
    font-weight: 700;
}


/* ICON HOVER */

.contact-social:hover .contact-icon {
    transform: scale(1.07);

    box-shadow:
        0 0 24px rgba(102, 221, 255, 0.28);
}


/* =========================================================
   TEXT
   ========================================================= */

.contact-social-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.contact-social-text span {
    color: #66ddff;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.20em;

    text-transform: uppercase;
}


.contact-social-text strong {
    color: #ffffff;

    font-size: clamp(19px, 1.5vw, 28px);

    line-height: 1.2;

    font-weight: 500;

    overflow-wrap: anywhere;
}


/* =========================================================
   ARROW
   ========================================================= */

.contact-social-arrow {
    color: #66ddff;

    font-size: 42px;
    font-weight: 200;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


.contact-social:hover .contact-social-arrow {
    transform: translateX(9px);

    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .contact-socials {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .contact-social {
        min-height: 120px;

        gap: 18px;

        padding: 24px 20px;
    }


    .contact-icon {
        width: 62px;
        height: 62px;
    }


    .linkedin-icon {
        font-size: 30px;
    }


    .gmail-icon {
        font-size: 25px;
    }


    .contact-social-arrow {
        font-size: 30px;
    }


    .contact-social-text strong {
        font-size: 17px;
    }

}
.contact-icon {
    width: 82px;
    height: 82px;
}

.linkedin-icon {
    background: #0a66c2;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;

    border: none;
}

.gmail-icon {
    background: #ffffff;
    padding: 18px;
}
/* =========================================================
   EDUCATION RESULTS — CLICKABLE MODAL
========================================================= */

.education-card {
    cursor: pointer;
}


/* MODAL BACKGROUND */

.education-modal {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    z-index: 99999;

    background: #061119;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(25px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}


/* WHEN MODAL OPENS */

.education-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* CONTENT */

.education-modal-inner {
    width: min(1500px, 90%);
    margin: 0 auto;

    padding: 120px 0 150px;
}


/* CLOSE BUTTON */

.education-modal-close {
    position: fixed;

    top: 30px;
    right: 40px;

    z-index: 100001;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;

    background: #071722;

    color: #ffffff;

    font-size: 34px;

    cursor: pointer;

    transition: 0.3s ease;
}


.education-modal-close:hover {
    background: #66ddff;
    border-color: #66ddff;

    color: #061119;

    transform: rotate(90deg);
}


/* TOP LABEL */

.education-modal-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,0.17);

    color: #66ddff;

    font-size: 13px;
    letter-spacing: 0.18em;
}


/* BIG TITLE */

.education-modal h1 {
    margin: 70px 0;

    color: #f5f7f8;

    font-size: clamp(65px, 8vw, 145px);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.education-modal h1 span {
    display: block;

    color: #66ddff;
}


/* DEGREE SUMMARY */

.education-summary {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}


.education-summary > div {
    padding: 32px 24px;

    border-right: 1px solid rgba(255,255,255,0.13);
}


.education-summary > div:first-child {
    padding-left: 0;
}


.education-summary > div:last-child {
    border-right: none;
}


.education-summary span {
    display: block;

    margin-bottom: 12px;

    color: #66ddff;

    font-size: 11px;
    letter-spacing: 0.16em;
}


.education-summary strong {
    color: #ffffff;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 500;
}


/* RESULTS INTRO */

.education-results-heading {
    max-width: 1000px;

    padding: 100px 0 60px;
}


.education-results-heading > span {
    color: #66ddff;

    font-size: 13px;
    letter-spacing: 0.18em;
}


.education-results-heading h2 {
    margin: 20px 0 30px;

    color: #ffffff;

    font-size: clamp(50px, 6vw, 100px);

    line-height: 0.92;

    letter-spacing: -0.05em;
}


.education-results-heading h2 span {
    color: #66ddff;
}


.education-results-heading p {
    max-width: 800px;

    color: rgba(255,255,255,0.65);

    font-size: 20px;
    line-height: 1.6;
}


/* ACADEMIC YEAR */

.education-year {
    padding-top: 80px;
}


.education-year-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.education-year-title span {
    color: #66ddff;

    font-size: 13px;
    letter-spacing: 0.18em;
}


.education-year-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 60px);

    letter-spacing: -0.04em;
}


/* RESULTS TABLE */

.results-table {
    width: 100%;

    border-top: 1px solid rgba(255,255,255,0.25);
}


.results-header,
.result-row {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 130px;

    align-items: center;
}


.results-header {
    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,0.15);

    color: rgba(255,255,255,0.45);

    font-size: 11px;
    letter-spacing: 0.18em;
}


.results-header span:last-child {
    text-align: right;
}


/* EACH MODULE */

.result-row {
    min-height: 90px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}


.result-row:hover {
    padding-left: 18px;
    padding-right: 18px;

    background: rgba(102,221,255,0.045);
}


.result-row > div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


/* MODULE CODE */

.result-row small {
    color: #66ddff;

    font-size: 11px;
    letter-spacing: 0.15em;
}


/* MODULE NAME */

.result-row strong {
    color: #f4f7f8;

    font-size: clamp(18px, 1.5vw, 24px);

    font-weight: 500;
}


/* GRADE */

.result-grade {
    justify-self: end;

    color: #ffffff;

    font-size: clamp(25px, 2vw, 36px);

    font-weight: 600;
}


/* BEST GRADES */

.result-top {
    color: #66ddff;
}


/* SEPARATE SEMESTERS */

.semester-break {
    margin-top: 35px;

    border-top: 1px solid rgba(102,221,255,0.4);
}


/* FINAL RESULT */

.education-final-result {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 90px;

    padding: 45px 0;

    border-top: 1px solid #66ddff;
    border-bottom: 1px solid #66ddff;
}


.education-final-result span {
    color: #66ddff;

    font-size: 13px;
    letter-spacing: 0.18em;
}


.education-final-result strong {
    color: #ffffff;

    font-size: clamp(30px, 4vw, 60px);

    letter-spacing: -0.04em;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .education-modal-inner {
        width: 88%;

        padding-top: 100px;
    }


    .education-summary {
        grid-template-columns: 1fr 1fr;
    }


    .education-summary > div {
        border-bottom: 1px solid rgba(255,255,255,0.13);
    }


    .education-year-title {
        align-items: flex-start;
        flex-direction: column;
    }


    .results-header,
    .result-row {
        grid-template-columns: minmax(0, 1fr) 65px;
    }


    .education-final-result {
        align-items: flex-start;
        flex-direction: column;
    }


    .education-modal-close {
        width: 50px;
        height: 50px;

        top: 20px;
        right: 20px;
    }

}
/* =========================================================
   EDUCATION CARD — HOVER TO CHECK MARKS
========================================================= */

.education-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.education-hover-overlay {
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: rgba(2, 12, 18, 0.72);

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.4s ease;
}

.education-hover-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin-bottom: 20px;

    border: 2px solid #66ddff;
    border-radius: 50%;

    color: #66ddff;

    font-size: 36px;

    opacity: 0;
    transform: translateY(12px) scale(0.92);

    transition:
        opacity 0.35s ease,
        transform 0.4s ease;
}

.education-hover-text {
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.24em;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(14px);

    transition:
        opacity 0.35s ease 0.05s,
        transform 0.4s ease 0.05s;
}

.education-hover-line {
    display: block;

    width: 0;
    height: 2px;

    margin-top: 18px;

    background: #66ddff;

    transition: width 0.4s ease 0.1s;
}

.education-card:hover .education-hover-overlay {
    opacity: 1;
}

.education-card:hover .education-hover-arrow,
.education-card:hover .education-hover-text {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.education-card:hover .education-hover-line {
    width: 90px;
}
.degree-honours {
    display: block;

    margin-top: 8px;

    color: #66ddff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.16em;
}
/* =========================================================
   MENU — SEQUENTIAL REVEAL
========================================================= */

.side-menu .menu-link {
    opacity: 0;
    transform: translateX(35px);

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(.2,.7,.2,1);
}


/* WHEN MENU OPENS */

.side-menu.active .menu-link {
    opacity: 1;
    transform: translateX(0);
}


/* ONE BY ONE */

.side-menu.active .menu-link:nth-child(1) {
    transition-delay: 0.08s;
}

.side-menu.active .menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.side-menu.active .menu-link:nth-child(3) {
    transition-delay: 0.22s;
}

.side-menu.active .menu-link:nth-child(4) {
    transition-delay: 0.29s;
}

.side-menu.active .menu-link:nth-child(5) {
    transition-delay: 0.36s;
}

.side-menu.active .menu-link:nth-child(6) {
    transition-delay: 0.43s;
}

.side-menu.active .menu-link:nth-child(7) {
    transition-delay: 0.50s;
}

.side-menu.active .menu-link:nth-child(8) {
    transition-delay: 0.57s;
}

.side-menu.active .menu-link:nth-child(9) {
    transition-delay: 0.64s;
}
