:root {
    --navy: #061426;
    --navy-2: #091c32;
    --navy-3: #0d2945;

    --blue: #2589ff;
    --blue-light: #5da9ff;

    --white: #f5f8fc;
    --muted: #8291a3;
    --line: rgba(255,255,255,.10);

    --mono: "DM Mono", monospace;
    --sans: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--white);

    font-family: var(--sans);

    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(1180px, 88%);
    margin: auto;
}


/* =================================
   LOADER
================================= */

.loader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    background: var(--navy);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px 40px;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);

    background-size: 70px 70px;

    opacity: .25;

    pointer-events: none;
}

.loader-top,
.loader-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 10px;

    letter-spacing: 1px;
}

.loader-center {
    position: relative;
    z-index: 2;

    width: min(650px, 90%);

    margin: auto;
}

.loader-number {
    color: var(--blue);

    font-family: var(--mono);
    font-size: 12px;

    margin-bottom: 20px;
}

.greeting {
    min-height: 90px;

    font-size: clamp(45px, 9vw, 100px);

    font-weight: 700;

    letter-spacing: -5px;

    transition: .2s;
}

.greeting.change {
    opacity: 0;
    transform: translateY(8px);
}

.loader-line {
    width: 100%;
    height: 2px;

    margin-top: 30px;

    background: rgba(255,255,255,.12);
}

.loader-line div {
    width: 0;
    height: 100%;

    background: var(--blue);

    box-shadow: 0 0 20px rgba(37,137,255,.7);
}

.loader-center p {
    margin-top: 15px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 10px;

    letter-spacing: 1px;
}


/* =================================
   NAVBAR
================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid var(--line);

    background: rgba(6,20,38,.88);

    backdrop-filter: blur(14px);
}

.nav-inner {
    width: min(1280px, 92%);
    height: 72px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--mono);

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 1px;
}

.brand span {
    color: var(--blue);
}

.nav-inner nav {
    display: flex;
    gap: 30px;
}

.nav-inner nav a {
    color: var(--muted);

    font-family: var(--mono);

    font-size: 10px;

    text-transform: uppercase;

    transition: .25s;
}

.nav-inner nav a:hover {
    color: white;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 9px;
}

.nav-status i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #35d17d;

    box-shadow: 0 0 10px #35d17d;
}


/* =================================
   HERO
================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: grid;

    grid-template-columns: 80px 1fr 420px;

    align-items: center;

    gap: 50px;

    padding: 130px 6% 80px;

    overflow: hidden;
}

.tech-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 85%
    );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: 20%;

    border: 1px solid rgba(37,137,255,.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(37,137,255,.03),
        0 0 0 140px rgba(37,137,255,.02);
}

.hero-index {
    align-self: center;

    color: var(--blue);

    font-family: var(--mono);

    font-size: 12px;

    writing-mode: vertical-rl;

    letter-spacing: 3px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--blue-light);

    font-family: var(--mono);

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 35px;
}

.eyebrow span {
    width: 28px;
    height: 1px;

    background: var(--blue);
}

.intro {
    color: var(--muted);

    font-family: var(--mono);

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(48px, 6.5vw, 92px);

    line-height: .98;

    letter-spacing: -5px;

    font-weight: 700;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text {
    max-width: 540px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 35px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 15px 20px;

    background: var(--blue);

    color: white;

    font-family: var(--mono);

    font-size: 10px;

    transition: .3s;
}

.primary-button:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
}

.text-button {
    color: var(--muted);

    font-family: var(--mono);

    font-size: 10px;

    border-bottom: 1px solid var(--muted);

    padding-bottom: 4px;
}

.text-button:hover {
    color: white;
    border-color: white;
}


/* =================================
   PROFILE
================================= */

.hero-profile {
    position: relative;
    z-index: 2;

    justify-self: end;

    width: 360px;
}

.profile-number {
    color: var(--blue);

    font-family: var(--mono);

    font-size: 9px;

    text-align: right;

    margin-bottom: 12px;
}

.profile-frame {
    position: relative;

    height: 480px;

    border: 1px solid rgba(255,255,255,.15);

    background: var(--navy-2);
}

.profile-frame img {
    height: 100%;

    object-fit: cover;

    filter: saturate(.8);

    opacity: .9;
}

.profile-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(37,137,255,.18),
            transparent 50%
        );

    pointer-events: none;
}

.frame-corner {
    position: absolute;

    z-index: 5;

    width: 25px;
    height: 25px;

    border-color: var(--blue);
}

.top-left {
    top: -1px;
    left: -1px;

    border-top: 2px solid;
    border-left: 2px solid;
}

.top-right {
    top: -1px;
    right: -1px;

    border-top: 2px solid;
    border-right: 2px solid;
}

.bottom-left {
    bottom: -1px;
    left: -1px;

    border-bottom: 2px solid;
    border-left: 2px solid;
}

.bottom-right {
    bottom: -1px;
    right: -1px;

    border-bottom: 2px solid;
    border-right: 2px solid;
}

.image-label {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 4;

    display: flex;
    justify-content: space-between;

    font-family: var(--mono);
    font-size: 8px;

    color: white;

    letter-spacing: 1px;
}

.profile-info {
    display: flex;
    justify-content: space-between;

    padding-top: 13px;

    font-family: var(--mono);

    font-size: 8px;
}

.profile-info span {
    color: var(--muted);
}

.profile-info strong {
    color: white;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 6%;

    display: flex;
    align-items: center;
    gap: 15px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 8px;

    letter-spacing: 2px;
}

.hero-scroll span {
    display: block;

    width: 50px;
    height: 1px;

    background: var(--blue);
}


/* =================================
   SECTION
================================= */

.section {
    position: relative;

    padding: 150px 0;

    border-top: 1px solid var(--line);
}

.section-number {
    position: absolute;

    top: 50px;
    left: 3%;

    color: rgba(255,255,255,.06);

    font-size: 120px;

    font-weight: 800;

    letter-spacing: -10px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.section-header small,
.about-text > small,
.contact > .container > small {
    color: var(--blue-light);

    font-family: var(--mono);

    font-size: 9px;

    letter-spacing: 3px;
}

.section-header h2 {
    margin-top: 15px;

    font-size: clamp(50px, 7vw, 85px);

    line-height: .9;

    letter-spacing: -6px;
}

.section-header h2 span {
    color: var(--blue);
}

.section-header > p {
    max-width: 300px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =================================
   DATA
================================= */

.data-list {
    border-top: 1px solid var(--line);
}

.data-row {
    display: grid;

    grid-template-columns: 60px 190px 1fr;

    align-items: center;

    min-height: 82px;

    border-bottom: 1px solid var(--line);

    transition: .25s;
}

.data-row:hover {
    padding-left: 15px;

    background: rgba(37,137,255,.04);
}

.data-row > span {
    color: var(--blue);

    font-family: var(--mono);

    font-size: 9px;
}

.data-row small {
    color: var(--muted);

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: 1px;
}

.data-row strong {
    font-size: 14px;

    font-weight: 500;
}


/* =================================
   ABOUT
================================= */

.about {
    background: var(--navy-2);
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.about-photo {
    position: relative;

    height: 570px;
}

.about-photo img {
    height: 100%;

    object-fit: cover;

    filter: grayscale(.2);

    border-left: 1px solid var(--blue);
}

.vertical-label {
    position: absolute;

    z-index: 2;

    top: 30px;
    left: -35px;

    color: var(--blue);

    font-family: var(--mono);

    font-size: 8px;

    writing-mode: vertical-rl;

    letter-spacing: 2px;
}

.photo-index {
    position: absolute;

    bottom: 15px;
    right: 15px;

    padding: 7px 10px;

    background: var(--navy);

    color: white;

    font-family: var(--mono);

    font-size: 8px;
}

.about-text h2 {
    margin-top: 20px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .95;

    letter-spacing: -5px;
}

.about-text h2 span {
    color: var(--blue);
}

.about-text > p {
    max-width: 600px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;

    margin-top: 25px;
}

.interest-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
}

.interest-list span {
    padding: 8px 12px;

    border: 1px solid var(--line);

    color: var(--muted);

    font-family: var(--mono);

    font-size: 8px;

    transition: .25s;
}

.interest-list span:hover {
    color: white;
    border-color: var(--blue);
}


/* =================================
   STATEMENT
================================= */

.statement {
    position: relative;

    display: grid;

    grid-template-columns: 1px 1fr 100px;

    gap: 50px;

    padding: 160px 12%;

    background: #051120;
}

.statement-line {
    width: 1px;

    background: var(--blue);
}

.statement-content {
    max-width: 850px;
}

.statement-content small {
    color: var(--blue-light);

    font-family: var(--mono);

    font-size: 9px;

    letter-spacing: 3px;
}

.statement-content h2 {
    margin: 25px 0;

    font-size: clamp(42px, 6vw, 75px);

    line-height: .95;

    letter-spacing: -5px;
}

.statement-content h2 span {
    color: var(--blue);
}

.statement-content p {
    max-width: 620px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}

.statement-number {
    color: rgba(255,255,255,.1);

    font-size: 70px;

    font-weight: 800;
}


/* =================================
   FUTURE
================================= */

.future {
    padding: 160px 0;

    background:
        linear-gradient(
            120deg,
            #061426 0%,
            #0a2340 50%,
            #061426 100%
        );
}

.future-top {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-family: var(--mono);

    font-size: 9px;

    letter-spacing: 2px;
}

.future h2 {
    margin-top: 70px;

    font-size: clamp(60px, 10vw, 130px);

    line-height: .82;

    letter-spacing: -9px;
}

.future h2 span {
    color: var(--blue);
}

.future p {
    max-width: 550px;

    margin-top: 50px;
    margin-left: 35%;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =================================
   GALLERY
================================= */

.gallery {
    display: grid;

    grid-template-columns: 1.4fr .8fr .8fr;

    gap: 12px;
}

.gallery-item {
    position: relative;

    height: 430px;

    overflow: hidden;

    border: 1px solid var(--line);
}

.gallery-large {
    height: 540px;
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition: transform .7s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-number {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 10px;

    background: var(--navy);

    color: var(--blue);

    font-family: var(--mono);

    font-size: 9px;
}


/* =================================
   CONTACT
================================= */

.contact {
    position: relative;

    padding: 180px 0;

    border-top: 1px solid var(--line);

    text-align: center;

    overflow: hidden;
}

.contact::before {
    content: "NITA";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: rgba(37,137,255,.025);

    font-size: 30vw;

    font-weight: 800;

    pointer-events: none;
}

.contact h2 {
    position: relative;

    margin: 25px 0;

    font-size: clamp(55px, 8vw, 100px);

    line-height: .9;

    letter-spacing: -7px;
}

.contact h2 span {
    color: var(--blue);
}

.contact > .container > p {
    position: relative;

    max-width: 500px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.contact-links {
    position: relative;

    display: flex;
    justify-content: center;

    gap: 0;

    margin-top: 45px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 14px 20px;

    border: 1px solid var(--line);

    color: var(--muted);

    font-family: var(--mono);

    font-size: 9px;

    transition: .25s;
}

.contact-links a + a {
    border-left: 0;
}

.contact-links a:hover {
    color: white;

    background: var(--blue);

    border-color: var(--blue);
}

.contact-links span {
    color: var(--blue);
}

.contact-links a:hover span {
    color: white;
}


/* =================================
   FOOTER
================================= */

footer {
    border-top: 1px solid var(--line);

    padding: 25px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-family: var(--mono);

    font-size: 8px;

    letter-spacing: 1px;
}

footer .container span:first-child {
    color: white;
}


/* =================================
   RESPONSIVE
================================= */

@media(max-width: 1000px) {

    .hero {
        grid-template-columns: 40px 1fr;

        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-profile {
        grid-column: 2;

        justify-self: start;

        margin-top: 40px;
    }

    .hero-scroll {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-photo {
        width: min(500px, 100%);
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-column: span 2;
    }
}


@media(max-width: 700px) {

    .navbar {
        display: none;
    }

    .hero {
        display: block;

        padding-top: 100px;
    }

    .hero-index {
        display: none;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -4px;
    }

    .hero-profile {
        width: min(360px, 100%);

        margin: 70px auto 0;
    }

    .profile-frame {
        height: 430px;
    }

    .section {
        padding: 100px 0;
    }

    .section-number {
        font-size: 80px;
    }

    .section-header {
        display: block;
    }

    .section-header > p {
        margin-top: 30px;
    }

    .data-row {
        grid-template-columns: 35px 120px 1fr;

        min-height: 75px;
    }

    .data-row strong {
        font-size: 12px;
    }

    .statement {
        grid-template-columns: 1px 1fr;

        padding: 100px 8%;
    }

    .statement-number {
        display: none;
    }

    .future h2 {
        font-size: 70px;

        letter-spacing: -6px;
    }

    .future p {
        margin-left: 0;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: auto;

        height: 400px;
    }

    .gallery-item {
        height: 350px;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links a + a {
        border-left: 1px solid var(--line);
        border-top: 0;
    }

    footer .container {
        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
}