:root {
    --navy-950: #06151d;
    --navy-900: #081d27;
    --navy-850: #0d2731;
    --navy-800: #12323d;

    --teal-500: #2fbfbd;
    --teal-400: #62d4d1;
    --teal-300: #9ae5e3;

    --paper: #f5f9f9;
    --paper-2: #edf5f5;

    --ink: #14272e;
    --ink-soft: #516970;

    --line-light: rgba(15, 55, 66, .14);
    --line-dark: rgba(255,255,255,.12);

    --shadow:
        0 28px 80px
        rgba(3, 24, 35, .18);
}



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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "DM Sans",
        sans-serif;

    color:
        var(--ink);

    background:
        var(--paper);

    overflow-x:
        hidden;
}


a {
    color: inherit;
}


img {
    display: block;
    max-width: 100%;
}



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

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 50;

    display: grid;

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

    align-items: center;

    padding:
        20px 5.5%;

    transition:
        background .3s ease,
        backdrop-filter .3s ease,
        border-color .3s ease;
}


.site-header.scrolled {
    background:
        rgba(6, 21, 29, .90);

    backdrop-filter:
        blur(18px);

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



/* ==================================================
   BRAND / NAME
================================================== */

.brand {
    justify-self: start;

    display: flex;

    align-items: center;

    gap: 15px;

    text-decoration: none;

    color: white;
}


.brand-mark {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.30);

    display: grid;

    place-items: center;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .8px;

    background:
        rgba(255,255,255,.04);
}


.brand-copy {
    display: flex;

    flex-direction: column;

    line-height: 1.18;
}


.brand-copy strong {
    font-size: 17px;

    font-weight: 700;

    letter-spacing: -.2px;
}


.brand-copy small {
    margin-top: 5px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.70);
}



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

.nav {
    grid-column: 2;

    justify-self: center;

    display: flex;

    align-items: center;

    gap: 38px;
}


.nav-link {
    position: relative;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: -.1px;

    color:
        rgba(255,255,255,.76);

    transition:
        color .2s ease;
}


.nav-link:hover,
.nav-link.active {
    color: white;
}


.nav-link.active::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -10px;

    width: 27px;

    height: 2px;

    transform:
        translateX(-50%);

    background:
        var(--teal-400);
}


.header-spacer {
    justify-self: end;
}



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

.hero {
    position: relative;

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1.02fr .86fr;

    gap: 70px;

    align-items: center;

    padding:
        145px 5.5% 90px;

    color: white;

    background:

        radial-gradient(
            circle at 78% 42%,
            rgba(47,191,189,.14) 0%,
            transparent 25%
        ),

        radial-gradient(
            circle at 24% 88%,
            rgba(74,125,163,.11) 0%,
            transparent 34%
        ),

        linear-gradient(
            135deg,
            var(--navy-950) 0%,
            var(--navy-900) 48%,
            var(--navy-850) 100%
        );

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.022) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.022) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.62),
            transparent 82%
        );

    pointer-events: none;
}



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

.hero-copy {
    position: relative;

    z-index: 3;

    max-width: 720px;
}


.eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.72);
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--teal-400);

    box-shadow:
        0 0 18px
        rgba(98,212,209,.6);
}


.hero h1 {
    max-width: 720px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(58px, 5.9vw, 88px);

    line-height: .98;

    letter-spacing: -4.5px;

    font-weight: 600;
}


.hero h1 span {
    display: block;

    color:
        var(--teal-400);
}


.hero-lead {
    max-width: 650px;

    margin-top: 30px;

    font-size: 17px;

    line-height: 1.82;

    color:
        rgba(255,255,255,.82);
}



/* ==================================================
   BUTTONS
================================================== */

.hero-actions,
.resume-actions,
.contact-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;
}


.button {
    display: inline-flex;

    align-items: center;

    gap: 16px;

    padding:
        14px 20px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

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


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


.button-primary {
    background:
        var(--teal-400);

    color:
        var(--navy-950);
}


.button-primary:hover {
    background:
        var(--teal-300);
}


.button-ghost {
    border:
        1px solid
        rgba(255,255,255,.23);

    color:
        rgba(255,255,255,.90);

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


.button-disabled {
    opacity: .72;

    cursor: default;

    pointer-events: none;
}



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

.hero-method {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 44px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.55);
}


.hero-method i {
    width: 22px;

    height: 1px;

    background:
        rgba(98,212,209,.38);
}



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

.hero-visual {
    position: relative;

    min-height: 540px;

    display: grid;

    place-items: center;
}


.orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(98,212,209,.12);
}


.orbit-one {
    width: 480px;
    height: 480px;
}


.orbit-two {
    width: 560px;
    height: 560px;

    border-color:
        rgba(255,255,255,.045);
}


.visual-frame {
    position: relative;

    width:
        min(470px, 36vw);

    aspect-ratio:
        1 / 1.03;

    overflow: hidden;

    border-radius:
        48% 52% 50% 50% /
        52% 46% 54% 48%;

    border:
        1px solid
        rgba(138,232,229,.30);

    box-shadow:
        var(--shadow);

    background:
        rgba(255,255,255,.02);

    z-index: 3;
}


.visual-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform:
        scale(1.10);

    filter:
        saturate(.84)
        contrast(1.02);
}


.visual-shade {
    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            145deg,
            rgba(6,21,29,.03),
            rgba(6,21,29,.22)
        ),

        linear-gradient(
            to top,
            rgba(6,21,29,.48),
            transparent 58%
        );
}



/* ==================================================
   SCROLL CUE
================================================== */

.scroll-cue {
    position: absolute;

    left: 5.5%;

    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

    color:
        rgba(255,255,255,.52);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.scroll-cue b {
    width: 48px;
    height: 1px;

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



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

.section-shell {
    width: 100%;

    max-width: 1440px;

    margin:
        0 auto;

    padding:
        110px 6% 125px;
}



/* ABOUT / RESUME / SELECTED WORK LABELS */

.section-label {
    margin-bottom: 55px;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2.6px;

    text-transform: uppercase;

    color:
        #385965;
}


.section-label-light {
    color:
        rgba(255,255,255,.86);
}



/* ==================================================
   MAIN SECTION HEADINGS
================================================== */

.snapshot-head,
.work-head,
.resume-head {
    display: grid;

    grid-template-columns:
        1.05fr .72fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 72px;
}


.snapshot-head h2,
.work-head h2,
.resume-head h2 {
    max-width: 850px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(54px, 5.25vw, 80px);

    line-height: 1.01;

    letter-spacing: -4px;

    font-weight: 650;
}


.snapshot-head h2 span,
.work-head h2 span,
.resume-head h2 span {
    display: block;

    color:
        var(--teal-500);
}


.snapshot-head p,
.work-head > p,
.resume-intro > p {
    max-width: 500px;

    font-size: 16px;

    line-height: 1.88;

    color:
        #4f6870;
}



/* ==================================================
   SNAPSHOT
================================================== */

.snapshot {
    background:

        linear-gradient(
            to bottom,
            #fafdfd 0%,
            #f2f8f8 100%
        );
}


.metric-grid {
    display: grid;

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

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

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


.metric {
    min-height: 180px;

    padding:
        28px 24px 24px 0;

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


.metric:last-child {
    border-right: 0;
}


.metric strong {
    display: block;

    min-height: 88px;

    font-size:
        clamp(30px, 2.8vw, 45px);

    line-height: 1.05;

    letter-spacing: -1.6px;

    font-weight: 650;

    color:
        var(--navy-800);
}


.metric span {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    color:
        #536e76;
}



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

.about {
    background:

        radial-gradient(
            circle at 82% 18%,
            rgba(47,191,189,.09),
            transparent 26%
        ),

        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-850)
        );

    color: white;
}


.about-grid {
    display: grid;

    grid-template-columns:
        .92fr 1.08fr;

    gap: 88px;
}


.accent-label {
    margin-bottom: 21px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2.1px;

    line-height: 1.6;

    text-transform: uppercase;

    color:
        var(--teal-400);
}


.about-heading h2 {
    max-width: 650px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(46px, 4.7vw, 70px);

    line-height: 1.03;

    letter-spacing: -3.4px;

    font-weight: 620;
}


.about-heading h2 span {
    display: block;

    margin-top: 5px;

    color:
        var(--teal-400);
}


.about-copy {
    max-width: 680px;
}


.about-copy p {
    margin-bottom: 23px;

    font-size: 16px;

    line-height: 1.90;

    color:
        rgba(255,255,255,.78);
}


.about-copy .about-lead {
    font-size: 21px;

    line-height: 1.62;

    color:
        rgba(255,255,255,.96);
}



/* ==================================================
   PRINCIPLES
================================================== */

.principle-grid {
    display: grid;

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

    margin-top: 82px;

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

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


.principle-grid article {
    min-height: 220px;

    padding:
        27px 24px;

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

    background:
        rgba(255,255,255,.012);

    transition:
        background .25s ease,
        transform .25s ease;
}


.principle-grid article:last-child {
    border-right: 0;
}


.principle-grid article:hover {
    background:
        rgba(98,212,209,.05);

    transform:
        translateY(-3px);
}


.principle-grid h3 {
    margin-bottom: 13px;

    font-size: 21px;

    font-weight: 600;

    color:
        rgba(255,255,255,.96);
}


.principle-grid p {
    font-size: 14px;

    line-height: 1.78;

    color:
        rgba(255,255,255,.66);
}



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

.work {
    background:

        linear-gradient(
            180deg,
            #f8fbfb 0%,
            #eef5f5 100%
        );
}


.project-list {
    border-top:
        1px solid
        var(--line-light);
}


.project {
    padding:
        46px 0;

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


.project-main {
    max-width: 870px;
}


.project-type {
    margin-bottom: 11px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    color:
        #258f91;
}


.project h3 {
    margin-bottom: 17px;

    font-size:
        clamp(29px, 2.8vw, 40px);

    letter-spacing: -1.1px;

    font-weight: 650;

    color:
        var(--navy-800);
}


.project-main > p {
    max-width: 750px;

    font-size: 16px;

    line-height: 1.82;

    color:
        #526b72;
}


.project-note {
    max-width: 750px;

    margin-top: 18px;

    padding-left: 16px;

    border-left:
        2px solid
        rgba(47,191,189,.55);

    font-size: 14px;

    line-height: 1.78;

    color:
        #5a737a;
}


.project-note strong {
    color:
        var(--navy-800);
}



/* ==================================================
   TAGS / TOOLKIT
================================================== */

.tags,
.toolkit {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;
}


.tags span,
.toolkit span {
    padding:
        9px 14px;

    border:
        1px solid
        rgba(18,50,61,.18);

    border-radius:
        999px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .65px;

    text-transform: uppercase;

    color:
        #48636b;

    background:
        rgba(255,255,255,.78);
}



/* ==================================================
   RESUME
================================================== */

.resume {
    background:

        linear-gradient(
            160deg,
            #fbfefe,
            #f1f7f7 60%,
            #edf4f4
        );
}


.resume-intro {
    max-width: 500px;
}


.text-link {
    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    color:
        var(--navy-800);

    border-bottom:
        1px solid
        rgba(18,50,61,.30);

    padding-bottom: 3px;
}


.resume-table {
    border-top:
        1px solid
        var(--line-light);
}


.resume-row {
    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 60px;

    padding:
        50px 0;

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



/* EDUCATION / EXPERIENCE / TOOLKIT HEADINGS */

.resume-label {
    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;

    color:
        #385763;
}


.resume-content {
    max-width: 900px;
}



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

.resume-entry {
    display: flex;

    justify-content:
        space-between;

    gap: 36px;

    padding-bottom:
        28px;

    margin-bottom:
        28px;

    border-bottom:
        1px solid
        rgba(15,55,66,.10);
}


.resume-entry:last-child {
    margin-bottom: 0;
}


.resume-entry h3 {
    margin-bottom: 7px;

    font-size: 23px;

    font-weight: 650;

    color:
        var(--navy-800);
}


.resume-entry p {
    margin-bottom: 9px;

    font-size: 16px;

    line-height: 1.6;

    color:
        #4f6870;
}


.resume-entry small {
    display: block;

    max-width: 720px;

    font-size: 13px;

    line-height: 1.75;

    color:
        #647a81;
}


.resume-entry > span {
    white-space: nowrap;

    padding-top: 4px;

    font-size: 14px;

    font-weight: 600;

    color:
        #4b6871;
}



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

.experience-grid {
    display: grid;

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

    gap:
        32px 46px;
}


.experience-grid article {
    padding-top: 18px;

    border-top:
        1px solid
        rgba(15,55,66,.14);
}


.experience-grid h3 {
    margin-bottom: 10px;

    font-size: 21px;

    font-weight: 650;

    color:
        var(--navy-800);
}


.experience-grid p,
.beyond-copy {
    font-size: 15px;

    line-height: 1.82;

    color:
        #566f76;
}



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

.contact {
    background:

        radial-gradient(
            circle at 78% 38%,
            rgba(47,191,189,.12),
            transparent 27%
        ),

        linear-gradient(
            145deg,
            #06151d,
            #0a2630
        );

    color: white;
}


.contact-inner {
    max-width: 1440px;

    margin:
        0 auto;

    padding:
        120px 6% 130px;
}


.contact-label {
    margin-bottom: 27px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2.3px;

    text-transform: uppercase;

    color:
        var(--teal-400);
}


.contact h2 {
    max-width: 980px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(50px, 5.3vw, 78px);

    line-height: .99;

    letter-spacing: -4px;

    font-weight: 620;
}


.contact h2 span {
    display: block;

    color:
        var(--teal-400);
}


.contact-fields {
    margin-top: 36px;

    max-width: 800px;

    font-size: 14px;

    line-height: 1.9;

    letter-spacing: .6px;

    color:
        rgba(255,255,255,.70);
}



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

footer {
    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        26px 6% 36px;

    background:
        #06151d;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}



/* ==================================================
   ANIMATION
================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:

        opacity
        .75s
        cubic-bezier(.2,.7,.2,1),

        transform
        .75s
        cubic-bezier(.2,.7,.2,1);
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}



/* ==================================================
   TABLET
================================================== */

@media
(max-width: 1080px) {

    .site-header {
        padding:
            18px 4%;
    }


    .nav {
        gap: 25px;
    }


    .nav-link {
        font-size: 13px;
    }


    .hero,
    .snapshot-head,
    .about-grid,
    .work-head,
    .resume-head {
        grid-template-columns:
            1fr;
    }


    .hero {
        gap: 40px;
    }


    .hero-visual {
        min-height: 500px;
    }


    .visual-frame {
        width:
            min(520px, 76vw);
    }


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


    .resume-row {
        grid-template-columns:
            1fr;

        gap: 28px;
    }

}



/* ==================================================
   MOBILE
================================================== */

@media
(max-width: 760px) {

    .site-header {
        grid-template-columns:
            auto 1fr;

        padding:
            14px 5%;
    }


    .brand-mark {
        width: 43px;
        height: 43px;
    }


    .brand-copy {
        display: none;
    }


    .header-spacer {
        display: none;
    }


    .nav {
        grid-column: 2;

        justify-self: end;

        gap: 13px;
    }


    .nav-link {
        font-size: 10px;
    }


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

        padding:
            115px 6% 84px;
    }


    .hero h1 {
        font-size: 51px;

        letter-spacing: -3.3px;
    }


    .hero-lead {
        font-size: 15px;
    }


    .hero-actions {
        flex-direction: column;

        align-items:
            flex-start;
    }


    .hero-method {
        display: none;
    }


    .hero-visual {
        min-height: 410px;
    }


    .visual-frame {
        width: 86vw;

        max-width: 390px;
    }


    .orbit-one {
        width: 360px;
        height: 360px;
    }


    .orbit-two {
        width: 420px;
        height: 420px;
    }


    .section-shell,
    .contact-inner {
        padding-left: 6%;
        padding-right: 6%;
    }


    .section-label {
        font-size: 14px;
    }


    .metric-grid,
    .principle-grid,
    .experience-grid {
        grid-template-columns:
            1fr;
    }


    .metric {
        border-right: 0;

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


    .principle-grid article {
        border-right: 0;

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


    .resume-entry {
        display: block;
    }


    .resume-entry > span {
        display: block;

        margin-top: 10px;
    }


    footer {
        display: block;
    }


    footer span {
        display: block;

        margin-bottom: 7px;
    }

}