/* =========================================================
   CORE
========================================================= */

:root {

    --bg: #02060b;
    --bg-2: #040b12;

    --text: #e8f4fa;
    --muted: #71808c;
    --muted-2: #46535e;

    --cyan: #27d9ff;
    --blue: #238cff;
    --purple: #9d5cff;

    --line: rgba(70, 190, 255, 0.14);
    --line-bright: rgba(60, 210, 255, 0.35);

    --container: 1180px;
}


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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {

    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


body::selection {
    background: var(--cyan);
    color: #000;
}


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


.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: auto;
}


.section {
    padding: 150px 0;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% -20%,
            rgba(0, 120, 255, 0.12),
            transparent 45%
        ),
        var(--bg);
}


/* GRID */

.grid {

    position: absolute;

    inset: -100px;

    opacity: 0.42;

    background-image:
        linear-gradient(
            rgba(30, 160, 255, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 160, 255, 0.09) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    transform:
        perspective(600px)
        rotateX(58deg)
        scale(1.8);

    transform-origin:
        center bottom;

    animation:
        gridMove 16s linear infinite;
}


@keyframes gridMove {

    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            0 50px,
            50px 0;
    }

}


/* LIGHT WAVES */

.glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.12;

    pointer-events: none;
}


.glow-1 {

    top: 5%;
    left: -10%;

    background: var(--cyan);

    animation:
        floatOne 15s ease-in-out infinite alternate;
}


.glow-2 {

    top: 35%;
    right: -15%;

    background: var(--purple);

    animation:
        floatTwo 18s ease-in-out infinite alternate;
}


.glow-3 {

    bottom: -20%;
    left: 30%;

    background: var(--blue);

    animation:
        floatThree 20s ease-in-out infinite alternate;
}


@keyframes floatOne {

    from {
        transform: translate(
            0,
            0
        );
    }

    to {
        transform: translate(
            200px,
            120px
        );
    }

}


@keyframes floatTwo {

    from {
        transform: translate(
            0,
            0
        );
    }

    to {
        transform: translate(
            -180px,
            100px
        );
    }

}


@keyframes floatThree {

    from {
        transform: translate(
            0,
            0
        );
    }

    to {
        transform: translate(
            120px,
            -100px
        );
    }

}


/* SCANLINES */

.scanlines {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            #fff 4px
        );
}


/* PARTICLES */

#particles {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

}


/* =========================================================
   NAV
========================================================= */

.nav {

    position: sticky;

    top: 0;

    z-index: 100;

    height: 72px;

    display: flex;

    align-items: center;

    padding:
        0 32px;

    background:
        rgba(2, 6, 11, 0.76);

    backdrop-filter:
        blur(18px);

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


.nav-logo {

    width: 38px;
    height: 38px;

    display: flex;

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

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

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 0 20px
        rgba(39, 217, 255, 0.08);
}


.nav-links {

    display: flex;

    gap: 30px;

    margin-left: 50px;
}


.nav-links a {

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 0.16em;

    transition:
        color .25s ease;
}


.nav-links a:hover {

    color: var(--cyan);

}


.nav-contact {

    margin-left: auto;

    color: var(--cyan);

    font-size: 10px;

    letter-spacing: .15em;

}


.nav-contact span {

    margin-left: 6px;

}


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

.hero {

    min-height:
        calc(100vh - 72px);

    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    align-items: center;

    gap: 90px;

    padding-top: 80px;
    padding-bottom: 100px;
}


.status {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        7px 11px;

    border:
        1px solid
        rgba(39, 217, 255, 0.2);

    background:
        rgba(39, 217, 255, 0.025);

    color: var(--cyan);

    font-size: 9px;

    letter-spacing:
        .15em;
}


.status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #50ff8b;

    box-shadow:
        0 0 12px
        rgba(80,255,139,.8);

    animation:
        blink 1.8s infinite;
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}


.hero-eyebrow {

    margin-top: 38px;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: .22em;
}


.hero h1 {

    margin-top: 14px;

    font-size:
        clamp(
            70px,
            9vw,
            130px
        );

    line-height: .84;

    font-weight: 600;

    letter-spacing:
        -.07em;
}


.hero h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #fff,
            var(--cyan),
            #7d8cff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

    background-size:
        200% 100%;

    animation:
        textGradient 5s
        ease infinite;
}


@keyframes textGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


.hero-title {

    margin-top: 32px;

    color: #c8d6df;

    font-size:
        clamp(15px, 2vw, 20px);
}


.hero-title b {

    margin: 0 7px;

    color: var(--cyan);

}


.hero-description {

    max-width: 650px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


.hero-actions {

    display: flex;

    gap: 12px;

    margin-top: 38px;
}


.btn {

    display: inline-flex;

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

    gap: 20px;

    min-height: 46px;

    padding:
        0 18px;

    font-size: 9px;

    letter-spacing: .13em;

    transition:
        all .25s ease;
}


.btn-primary {

    background: var(--cyan);

    color: #001018;

    box-shadow:
        0 0 30px
        rgba(39,217,255,.15);
}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 0 40px
        rgba(39,217,255,.3);
}


.btn-outline {

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

    color: #b8c9d3;
}


.btn-outline:hover {

    border-color:
        var(--cyan);

    color:
        var(--cyan);

}


/* =========================================================
   TERMINAL
========================================================= */

.hero-terminal {

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

    background:
        rgba(3, 12, 19, .72);

    box-shadow:
        0 0 60px
        rgba(39,217,255,.06);

    animation:
        terminalFloat 6s ease-in-out infinite;
}


@keyframes terminalFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


.terminal-header {

    display: grid;

    grid-template-columns:
        1fr
        2fr
        1fr;

    align-items: center;

    padding:
        11px 14px;

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

    color:
        var(--muted);

    font-size: 8px;

    letter-spacing: .1em;
}


.terminal-header > span:nth-child(2) {

    text-align: center;

}


.terminal-header > span:last-child {

    text-align: right;

    color: #50ff8b;

}


.terminal-dots {

    display: flex;

    gap: 5px;
}


.terminal-dots span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--muted-2);
}


.terminal-body {

    padding: 28px;

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 10px;
}


.terminal-line {

    display: flex;

    gap: 5px;

    color: #8798a4;
}


.terminal-green {

    color: #50ff8b;
}


.terminal-blue {

    color: var(--cyan);
}


.terminal-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding:
        9px 0;

    border-bottom:
        1px dashed
        rgba(80,160,200,.08);

}


.terminal-row span {

    color:
        var(--muted-2);
}


.terminal-row strong {

    color:
        #b8d8e7;

    font-size: 9px;

    font-weight: 500;
}


.terminal-status {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 14px;

    color: var(--cyan);

}


.pulse {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px
        var(--cyan);

}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-label {

    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 18px;

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

    color: var(--muted);

    font-size: 9px;

    letter-spacing: .2em;
}


.section-label span {

    color: var(--cyan);

}


/* =========================================================
   ABOUT
========================================================= */

.section-grid {

    display: grid;

    grid-template-columns:
        .7fr
        1.3fr;

    gap: 100px;

    padding-top: 75px;
}


.section-title h2 {

    font-size:
        clamp(40px, 5vw, 70px);

    line-height: .95;

    letter-spacing:
        -.055em;
}


.section-title h2 span {

    color: var(--muted-2);

}


.large-copy {

    max-width: 720px;

    color: #b9c9d2;

    font-size: 20px;

    line-height: 1.55;

}


.large-copy strong {

    color: var(--cyan);

    font-weight: 500;
}


.about-columns {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;

    margin-top: 45px;
}


.about-columns p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;
}


.tech-strip {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 45px;
}


.tech-strip span {

    padding:
        6px 9px;

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

    color: var(--muted);

    font-size: 8px;

    letter-spacing: .1em;

}


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

.experience-list {

    margin-top: 65px;
}


.experience-card {

    display: grid;

    grid-template-columns:
        70px
        1fr;

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

    padding:
        40px 0;

    transition:
        background .3s ease;
}


.experience-card:last-child {

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

}


.experience-card:hover {

    background:
        linear-gradient(
            90deg,
            rgba(30,160,255,.035),
            transparent
        );

}


.experience-index {

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 11px;
}


.experience-top {

    display: flex;

    justify-content:
        space-between;

    gap: 30px;
}


.experience-role {

    color:
        #dff4ff;

    font-size: 23px;

    font-weight: 500;

    letter-spacing:
        -.03em;
}


.experience-company {

    margin-top: 5px;

    color:
        var(--cyan);

    font-size: 10px;

    letter-spacing: .15em;
}


.experience-meta {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 5px;

    color:
        var(--muted);

    font-size: 9px;

    letter-spacing: .08em;

}


.experience-main ul {

    max-width: 850px;

    margin-top: 25px;

    list-style: none;
}


.experience-main li {

    position: relative;

    margin-bottom: 13px;

    padding-left: 20px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


.experience-main li::before {

    content: "›";

    position: absolute;

    left: 0;

    color:
        var(--cyan);

}


.experience-tools {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 25px;
}


.experience-tools span {

    padding:
        5px 8px;

    border:
        1px solid
        rgba(39,217,255,.15);

    color:
        var(--muted);

    font-size: 8px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .6fr;

    gap: 20px;

    margin-top: 65px;
}


.argus-card,
.automation-card {

    position: relative;

    overflow: hidden;

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

    background:
        rgba(3,10,16,.7);
}


.argus-card::before {

    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(39,217,255,.16),
            transparent 65%
        );

    pointer-events: none;
}


.project-header {

    display: flex;

    justify-content:
        space-between;

    padding:
        18px 22px;

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

    font-size: 8px;

    letter-spacing: .14em;
}


.project-number {

    color:
        var(--muted-2);

    font-size: 9px;

    letter-spacing: .16em;
}


.project-status {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #50ff8b;
}


.project-status span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        #50ff8b;

    box-shadow:
        0 0 10px
        #50ff8b;
}


.argus-content {

    padding: 45px;
}


.argus-title {

    display: flex;

    align-items: center;

    gap: 20px;
}


.argus-symbol {

    width: 60px;
    height: 60px;

    display: flex;

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

    border:
        1px solid
        var(--cyan);

    color:
        var(--cyan);

    font-size: 30px;

    font-weight: 600;

    box-shadow:
        inset 0 0 25px
        rgba(39,217,255,.07),
        0 0 25px
        rgba(39,217,255,.07);
}


.project-kicker {

    color:
        var(--cyan);

    font-size: 8px;

    letter-spacing: .2em;
}


.argus-title h3 {

    margin-top: 2px;

    font-size: 44px;

    line-height: 1;

    letter-spacing:
        -.05em;
}


.argus-title p {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 11px;
}


.argus-stats {

    display: grid;

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

    gap: 10px;

    margin-top: 50px;
}


.argus-stats div {

    padding:
        20px;

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

    background:
        rgba(30,160,255,.025);
}


.argus-stats strong {

    display: block;

    color:
        var(--cyan);

    font-size: 32px;

    line-height: 1;

    font-weight: 500;
}


.argus-stats span {

    display: block;

    margin-top: 7px;

    color:
        var(--muted-2);

    font-size: 7px;

    letter-spacing: .1em;
}


.project-description {

    max-width: 750px;

    margin-top: 28px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


.project-integrations {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 30px;
}


.project-integrations span {

    padding:
        6px 8px;

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

    color:
        var(--muted);

    font-size: 8px;
}


/* AUTOMATION */

.automation-card {

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}


.automation-icon {

    margin:
        70px 0 30px;

    color:
        var(--cyan);

    font-family:
        monospace;

    font-size: 50px;

    text-shadow:
        0 0 25px
        rgba(39,217,255,.35);
}


.automation-card h3 {

    margin-top: 10px;

    font-size: 34px;

    line-height: .98;

    letter-spacing:
        -.05em;
}


.automation-card p {

    margin-top: 25px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


.automation-line {

    width: 100%;

    height: 1px;

    margin-top: 35px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            transparent
        );
}


.automation-stack {

    display: flex;

    gap: 6px;

    margin-top: 18px;
}


.automation-stack span {

    color:
        var(--muted-2);

    font-size: 7px;

}

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

.skills-intro {

    display: grid;

    grid-template-columns:
        1fr
        .65fr;

    gap: 80px;

    align-items: end;

    padding-top: 65px;

    padding-bottom: 50px;

}


.skills-eyebrow {

    margin-bottom: 15px;

    color: var(--cyan);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: .2em;

}


.skills-intro h2 {

    max-width: 650px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: .95;

    letter-spacing:
        -.06em;

    font-weight: 500;

}


.skills-intro h2 span {

    display: block;

    color: var(--muted-2);

}


.skills-intro > p {

    max-width: 420px;

    padding-bottom: 5px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* GRID */

.skills-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

}


/* CARD */

.skill-card {

    position: relative;

    min-height: 390px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    overflow: hidden;

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

    background:
        rgba(3, 10, 16, .68);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;

}


.skill-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    transition:
        left .6s ease;

}


.skill-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(39, 217, 255, .32);

    background:
        rgba(5, 16, 24, .85);

}


.skill-card:hover::before {

    left: 100%;

}


/* FULL STACK FEATURE */

.skill-main {

    border-color:
        rgba(39, 217, 255, .3);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(39, 217, 255, .09),
            transparent 35%
        ),
        rgba(3, 12, 19, .8);

}


.skill-main::after {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    bottom: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(39, 217, 255, .12),
            transparent 70%
        );

    pointer-events: none;

}


/* TOP */

.skill-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.skill-number {

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 9px;

    letter-spacing: .1em;

}


.skill-arrow {

    color:
        var(--muted-2);

    font-size: 16px;

    transition:
        color .25s ease,
        transform .25s ease;

}


.skill-card:hover .skill-arrow {

    color:
        var(--cyan);

    transform:
        translate(3px, -3px);

}


/* CONTENT */

.skill-content {

    position: relative;

    z-index: 2;

    margin-top: auto;

}


.skill-icon {

    margin-bottom: 22px;

    color:
        var(--cyan);

    font-family:
        monospace;

    font-size: 32px;

    line-height: 1;

    text-shadow:
        0 0 25px
        rgba(39, 217, 255, .25);

}


.skill-category {

    margin-bottom: 8px;

    color:
        var(--cyan);

    font-size: 8px;

    letter-spacing: .18em;

}


.skill-card h3 {

    max-width: 400px;

    font-size: 31px;

    line-height: .95;

    font-weight: 500;

    letter-spacing:
        -.045em;

}


.skill-card h3 span {

    color:
        var(--muted-2);

}


.skill-card p {

    max-width: 500px;

    margin-top: 18px;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.75;

}


/* TAGS */

.skill-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 25px;

}


.skill-tags span {

    padding:
        6px 8px;

    border:
        1px solid
        rgba(80, 170, 200, .13);

    background:
        rgba(30, 150, 200, .025);

    color:
        #718792;

    font-family:
        monospace;

    font-size: 7px;

    letter-spacing: .06em;

    transition:
        border-color .2s ease,
        color .2s ease;

}


.skill-card:hover .skill-tags span {

    border-color:
        rgba(39, 217, 255, .18);

    color:
        #8faebb;

}


/* FULL STACK PROGRESS */

.skill-progress {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 7px;

    letter-spacing: .08em;

}


.skill-progress > div {

    flex: 1;

    height: 2px;

    overflow: hidden;

    background:
        rgba(39, 217, 255, .08);

}


.skill-progress i {

    display: block;

    width: 62%;

    height: 100%;

    background:
        var(--cyan);

    box-shadow:
        0 0 10px
        rgba(39, 217, 255, .7);

    animation:
        skillProgress 2s ease-out forwards;

}


@keyframes skillProgress {

    from {
        width: 0;
    }

    to {
        width: 62%;
    }

}


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

@media (max-width: 900px) {

    .skills-intro {

        grid-template-columns:
            1fr;

        gap: 30px;

    }

}


@media (max-width: 650px) {

    .skills-grid {

        grid-template-columns:
            1fr;

    }

    .skill-card {

        min-height:
            340px;

    }

    .skills-intro h2 {

        font-size:
            43px;

    }

}

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

.education-grid {

    display: grid;

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

    gap: 12px;

    margin-top: 65px;
}


.education-card {

    position: relative;

    min-height: 330px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

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

    background:
        rgba(3, 10, 16, 0.65);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;

}


.education-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    opacity: 0;

    transition:
        opacity .3s ease;

}


.education-card:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--line-bright);

    background:
        rgba(5, 17, 25, 0.82);

}


.education-card:hover::before {

    opacity: 1;

}


.education-active {

    border-color:
        rgba(39, 217, 255, 0.22);

}


.education-active::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(39, 217, 255, 0.12),
            transparent 70%
        );

    pointer-events: none;

}


.education-number {

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 9px;

    letter-spacing: .12em;

}


.education-content {

    position: relative;

    z-index: 2;

}


.education-kicker {

    color:
        var(--cyan);

    font-size: 8px;

    letter-spacing: .18em;

}


.education-card h3 {

    margin-top: 12px;

    max-width: 300px;

    color:
        #dcecf3;

    font-size: 24px;

    line-height: 1.1;

    font-weight: 500;

    letter-spacing:
        -.035em;

}


.education-provider {

    margin-top: 15px;

    color:
        #8fa7b4;

    font-size: 13px;

}


.education-date {

    margin-top: 5px;

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 9px;

    letter-spacing: .08em;

}


.education-status {

    position: relative;

    z-index: 2;

    align-self: flex-start;

    padding:
        6px 9px;

    font-family:
        monospace;

    font-size: 7px;

    letter-spacing: .12em;

}


.education-status.completed {

    border:
        1px solid
        rgba(100, 130, 145, .2);

    color:
        var(--muted);

}


.education-status.current {

    display: flex;

    align-items: center;

    gap: 7px;

    border:
        1px solid
        rgba(80, 255, 139, .2);

    color:
        #50ff8b;

    background:
        rgba(80, 255, 139, .025);

}


.education-status.current span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        #50ff8b;

    box-shadow:
        0 0 10px
        rgba(80, 255, 139, .8);

    animation:
        educationPulse 1.8s infinite;

}


@keyframes educationPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }

}


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

@media (max-width: 1000px) {

    .education-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 650px) {

    .education-grid {

        grid-template-columns:
            1fr;

    }


    .education-card {

        min-height:
            280px;

    }

}



.education-year {

    color:
        var(--muted);

    font-family:
        monospace;

    font-size: 10px;

    line-height: 1.6;
}


.education-card h3 {

    margin-top: 6px;

    font-size: 24px;

    font-weight: 500;

    letter-spacing:
        -.03em;
}


.education-card p {

    margin-top: 4px;

    color:
        var(--cyan);

    font-size: 11px;
}


.education-status {

    color:
        #50ff8b;

    font-family:
        monospace;

    font-size: 8px;

}


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

.contact-section {

    padding:
        150px 0;

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

    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(40,140,255,.08),
            transparent 50%
        );
}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    gap: 100px;
}


.contact-section h2 {

    margin-top: 45px;

    font-size:
        clamp(50px, 7vw, 95px);

    line-height: .9;

    letter-spacing:
        -.07em;
}


.contact-section h2 span {

    color:
        var(--muted-2);
}


.contact-section > .container > .contact-grid > div:first-child > p {

    max-width: 520px;

    margin-top: 30px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


.contact-links {

    align-self: end;

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


.contact-row {

    display: grid;

    grid-template-columns:
        90px
        1fr
        30px;

    align-items: center;

    min-height: 75px;

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

    transition:
        padding .25s ease;
}


.contact-row:hover {

    padding-left: 10px;

}


.contact-row span {

    color:
        var(--muted-2);

    font-size: 8px;

    letter-spacing: .15em;
}


.contact-row strong {

    color:
        #b9d2de;

    font-size: 12px;

    font-weight: 400;
}


.contact-row b {

    color:
        var(--cyan);

    text-align: right;

}


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

footer {

    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        25px 32px;

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

    color:
        var(--muted-2);

    font-family:
        monospace;

    font-size: 8px;

    letter-spacing: .1em;
}


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

@media (max-width: 1000px) {

    .hero {

        grid-template-columns:
            1fr;

    }


    .hero-terminal {

        max-width: 600px;

    }


    .section-grid {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .projects-grid {

        grid-template-columns:
            1fr;

    }


    .skills-grid {

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

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 650px) {

    .container {

        width:
            calc(100% - 32px);

    }


    .nav {

        padding:
            0 16px;

    }


    .nav-links {

        display: none;

    }


    .nav-contact {

        font-size: 8px;

    }


    .section {

        padding:
            95px 0;

    }


    .hero {

        padding-top:
            65px;

    }


    .hero h1 {

        font-size:
            67px;

    }


    .hero-title {

        font-size:
            14px;

        line-height:
            1.7;

    }


    .hero-title b {

        display: none;

    }


    .hero-actions {

        flex-direction:
            column;

    }


    .btn {

        width:
            100%;

    }


    .terminal-body {

        padding:
            20px;

        font-size:
            8px;

    }


    .terminal-row {

        flex-direction:
            column;

        gap: 2px;

    }


    .about-columns {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .experience-card {

        grid-template-columns:
            35px
            1fr;

    }


    .experience-top {

        flex-direction:
            column;

        gap: 15px;

    }


    .experience-meta {

        align-items:
            flex-start;

    }


    .experience-role {

        font-size:
            19px;

    }


    .argus-content {

        padding:
            25px;

    }


    .argus-stats {

        grid-template-columns:
            1fr;

    }


    .argus-title h3 {

        font-size:
            35px;

    }


    .skills-grid {

        grid-template-columns:
            1fr;

    }


    .skill-card {

        min-height:
            330px;

    }


    .education-card {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .contact-section h2 {

        font-size:
            55px;

    }


    footer {

        flex-direction:
            column;

        padding:
            25px 16px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

    }

}