/* =========================================================
   ORBIT WEBSITE
   ========================================================= */


/* =========================
   GLOBAL
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 8% 45%,
            rgba(135, 25, 220, 0.24),
            transparent 22%
        ),
        radial-gradient(
            circle at 91% 56%,
            rgba(145, 30, 235, 0.22),
            transparent 23%
        ),
        #020204;

    color: white;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


/* =========================
   RANDOM STARS
   ========================= */

#stars {
    position: fixed;
    inset: 0;

    pointer-events: none;

    z-index: -1;
}

.star {
    position: absolute;

    background: white;

    border-radius: 50%;

    opacity: 0.7;

    box-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 8px rgba(170, 90, 255, 0.6);
}


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

header {
    height: 105px;

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

    padding: 0 5%;

    background: rgba(0, 0, 0, 0.55);

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


/* LOGO */

.header-logo {
    width: 190px;
}

.header-logo img,
.hero-logo img {
    display: block;

    width: 100%;
    height: auto;

    background: transparent;
}


/* NAVIGATION */

nav {
    display: flex;

    gap: 48px;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 3px;

    opacity: 0.85;

    transition: 0.25s;
}

nav a:hover {
    color: #b65cff;
}

nav a.active {
    color: #bd69ff;

    padding-bottom: 14px;

    border-bottom:
        2px solid #a64dff;
}


/* =========================================================
   HOME PAGE
   ========================================================= */

.hero {
    min-height: 650px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 60px 20px;
}

.hero-logo {
    width: min(650px, 80vw);

    margin-bottom: 20px;
}

.hero-logo img {
    object-fit: contain;

    filter:
        drop-shadow(
            0 0 10px
            rgba(155, 60, 255, 0.35)
        )
        drop-shadow(
            0 0 25px
            rgba(130, 30, 230, 0.2)
        );
}

.subtitle {
    color: #ad52ff;

    font-size: 22px;
    font-weight: 400;

    letter-spacing: 11px;

    margin-top: 5px;
}

.divider {
    width: min(620px, 75vw);
    height: 1px;

    margin: 35px 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #6d1acb,
            #c06cff,
            #6d1acb,
            transparent
        );

    box-shadow:
        0 0 10px #9237ef;
}

.tagline {
    color: #eeeeee;

    font-size: 18px;

    letter-spacing: 5px;

    margin-bottom: 40px;
}


/* EXPLORE BUTTON */

.explore-button {
    display: inline-block;

    color: white;

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 4px;

    padding: 18px 36px;

    border:
        1px solid #ad51ff;

    border-radius: 7px;

    background:
        rgba(120, 30, 200, 0.05);

    box-shadow:
        0 0 15px
            rgba(151, 48, 255, 0.35),
        inset
        0 0 10px
            rgba(120, 30, 220, 0.1);

    transition: 0.25s;
}

.explore-button:hover {
    background:
        rgba(145, 55, 255, 0.16);

    box-shadow:
        0 0 25px
        rgba(160, 65, 255, 0.65);
}


/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

.product-page {
    padding-bottom: 55px;
}

.product-layout {
    max-width: 1180px;

    margin: 0 auto;

    padding:
        38px
        40px
        55px;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 70px;

    align-items: start;
}


/* PRODUCT INFO */

.product-left {
    text-align: left;
}

.product-kicker {
    color: #b557ff;

    font-size: 12px;

    letter-spacing: 5px;

    margin-bottom: 8px;
}

.product-left h1 {
    margin:
        0
        0
        14px;

    color: white;

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

    font-weight: 300;

    letter-spacing: 7px;
}

.product-photo {
    display: block;

    width: 100%;
    max-width: 500px;

    margin-bottom: 14px;

    border-radius: 16px;

    box-shadow:
        0 0 24px
            rgba(145, 55, 255, 0.22),
        0 0 60px
            rgba(100, 20, 200, 0.12);
}

.product-left h2 {
    margin:
        0
        0
        8px;

    color: #b557ff;

    font-size: 24px;

    letter-spacing: 5px;
}

.product-copy {
    max-width: 560px;

    color: #c7c7cf;

    font-size: 15px;

    line-height: 1.55;

    margin-bottom: 12px;
}


/* PRODUCT TAGS */

.product-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.product-tags span {
    padding: 7px 12px;

    border:
        1px solid
        rgba(177, 80, 255, 0.65);

    border-radius: 30px;

    color: #d6b3ff;

    font-size: 10px;

    letter-spacing: 2px;
}


/* PRODUCT VIDEO */

.product-right {
    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding-top: 85px;
}

.motion-heading {
    color: #b557ff;

    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 14px;
}

.product-right video {
    display: block;

    width: 100%;
    max-width: 370px;

    border-radius: 15px;

    box-shadow:
        0 0 20px
            rgba(150, 55, 255, 0.20),
        0 0 45px
            rgba(100, 20, 200, 0.10);
}


/* MORE IN ORBIT */

.coming-soon {
    max-width: 800px;

    margin: 55px auto 0;

    padding:
        65px
        35px
        80px;

    text-align: center;
}

.coming-kicker {
    color: #b557ff;

    font-size: 12px;

    letter-spacing: 6px;

    margin-bottom: 14px;
}

.coming-soon h2 {
    margin:
        0
        0
        18px;

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    font-weight: 300;

    letter-spacing: 5px;
}

.coming-copy {
    max-width: 620px;

    margin: 0 auto;

    color: #bdbdc7;

    font-size: 16px;

    line-height: 1.8;
}


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

.about-page {
    max-width: 1100px;

    margin: 0 auto;

    padding:
        70px
        40px
        100px;
}

.about-hero {
    max-width: 800px;

    margin:
        0
        auto
        70px;

    text-align: center;
}

.about-kicker {
    color: #b557ff;

    font-size: 13px;

    letter-spacing: 6px;

    margin-bottom: 15px;
}

.about-hero h1 {
    font-size:
        clamp(
            42px,
            6vw,
            72px
        );

    font-weight: 300;

    letter-spacing: 7px;

    margin-bottom: 25px;
}

.about-intro {
    color: #c7c7cf;

    font-size: 18px;

    line-height: 1.8;
}

.about-grid {
    display: grid;

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

    gap: 25px;
}

.about-card {
    padding: 35px 28px;

    border:
        1px solid
        rgba(177, 80, 255, 0.35);

    border-radius: 16px;

    background:
        rgba(10, 5, 18, 0.55);

    box-shadow:
        0 0 20px
        rgba(145, 55, 255, 0.10);
}

.about-card h2 {
    color: #b557ff;

    font-size: 17px;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.about-card p {
    color: #bdbdc7;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   MISSION PAGE
   ========================================================= */

.mission-page {
    max-width: 1100px;

    margin: 0 auto;

    padding:
        70px
        40px
        100px;
}

.mission-hero {
    max-width: 850px;

    margin:
        0
        auto
        70px;

    text-align: center;
}

.mission-kicker {
    color: #b557ff;

    font-size: 13px;

    letter-spacing: 6px;

    margin-bottom: 15px;
}

.mission-hero h1 {
    font-size:
        clamp(
            40px,
            5vw,
            66px
        );

    font-weight: 300;

    line-height: 1.15;

    letter-spacing: 5px;

    margin-bottom: 25px;
}

.mission-intro {
    max-width: 680px;

    margin: 0 auto;

    color: #c7c7cf;

    font-size: 18px;

    line-height: 1.8;
}

.mission-grid {
    display: grid;

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

    gap: 25px;

    margin-bottom: 20px;
}

.mission-card {
    padding: 38px 30px;

    text-align: center;

    border:
        1px solid
        rgba(177, 80, 255, 0.35);

    border-radius: 16px;

    background:
        rgba(10, 5, 18, 0.55);

    box-shadow:
        0 0 20px
        rgba(145, 55, 255, 0.10);
}

.mission-card h2 {
    color: #b557ff;

    font-size: 20px;

    letter-spacing: 5px;

    margin-bottom: 18px;
}

.mission-card p {
    color: #bdbdc7;

    font-size: 15px;

    line-height: 1.7;
}


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

.contact-page {
    max-width: 900px;

    margin: 0 auto;

    padding:
        65px
        35px
        100px;
}

.contact-hero {
    max-width: 700px;

    margin:
        0
        auto
        50px;

    text-align: center;
}

.contact-kicker {
    color: #b557ff;

    font-size: 13px;

    letter-spacing: 6px;

    margin-bottom: 15px;
}

.contact-hero h1 {
    margin-bottom: 20px;

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

    font-weight: 300;

    letter-spacing: 6px;
}

.contact-hero p {
    color: #c7c7cf;

    font-size: 17px;

    line-height: 1.8;
}


/* CONTACT CARD */

.contact-card {
    max-width: 650px;

    margin: 0 auto;

    padding: 38px;

    border:
        1px solid
        rgba(177, 80, 255, 0.35);

    border-radius: 18px;

    background:
        rgba(10, 5, 18, 0.65);

    box-shadow:
        0 0 25px
        rgba(145, 55, 255, 0.12);
}

.contact-card form {
    display: flex;

    flex-direction: column;
}


/* FIRST + LAST NAME */

.name-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 18px;
}

.form-field {
    display: flex;

    flex-direction: column;
}


/* LABELS */

.contact-card label {
    margin-top: 18px;

    margin-bottom: 8px;

    color: #c06cff;

    font-size: 12px;

    letter-spacing: 3px;
}

.required-star {
    color: #b557ff;

    margin-left: 3px;
}


/* FORM INPUTS */

.contact-card input,
.contact-card textarea,
.contact-card select {
    width: 100%;

    padding: 14px 15px;

    border:
        1px solid
        rgba(177, 80, 255, 0.35);

    border-radius: 9px;

    background:
        rgba(0, 0, 0, 0.45);

    color: white;

    font-size: 15px;

    outline: none;
}

.contact-card textarea {
    resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
    border-color: #b557ff;

    box-shadow:
        0 0 12px
        rgba(177, 80, 255, 0.22);
}


/* CONTACT DROPDOWN */

#subject {
    appearance: none;

    -webkit-appearance: none;

    padding:
        14px
        45px
        14px
        15px;

    cursor: pointer;

    background-color:
        rgba(0, 0, 0, 0.45);

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #b557ff 50%
        ),
        linear-gradient(
            135deg,
            #b557ff 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 14px) 50%;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

#subject:hover,
#subject:focus {
    border-color: #b557ff;

    box-shadow:
        0 0 14px
        rgba(177, 80, 255, 0.25);
}

#subject option {
    background: #0b0712;

    color: white;
}


/* SEND BUTTON */

.contact-submit {
    margin-top: 28px;

    padding: 16px 22px;

    border:
        1px solid #b557ff;

    border-radius: 9px;

    background:
        rgba(150, 55, 255, 0.12);

    color: white;

    font-size: 13px;

    letter-spacing: 4px;

    cursor: pointer;

    transition: 0.25s;
}

.contact-submit:hover {
    background:
        rgba(150, 55, 255, 0.25);

    box-shadow:
        0 0 20px
        rgba(150, 55, 255, 0.35);
}


/* =========================================================
   FLOATING CUSTOM PRINT WIDGET
   ========================================================= */

.custom-widget-button {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 1000;

    width: 62px;
    height: 62px;

    border:
        1px solid #b55cff;

    border-radius: 50%;

    background:
        rgba(10, 5, 18, 0.95);

    color: #c06cff;

    font-size: 30px;

    cursor: pointer;

    box-shadow:
        0 0 15px
            rgba(170, 75, 255, 0.55),
        0 0 35px
            rgba(125, 35, 220, 0.25);

    animation:
        widgetFloat
        3s
        ease-in-out
        infinite;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.custom-widget-button:hover {
    transform:
        scale(1.08);

    box-shadow:
        0 0 22px
            rgba(185, 90, 255, 0.8),
        0 0 45px
            rgba(130, 40, 230, 0.35);
}


/* FLOAT ANIMATION */

@keyframes widgetFloat {

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

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


/* WIDGET CARD */

.custom-widget-card {
    position: fixed;

    right: 28px;
    bottom: 105px;

    z-index: 999;

    width: 310px;

    padding: 26px;

    border:
        1px solid
        rgba(180, 85, 255, 0.75);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 7, 22, 0.98),
            rgba(5, 3, 10, 0.98)
        );

    box-shadow:
        0 0 25px
        rgba(150, 55, 255, 0.25);

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(10px)
        scale(0.96);

    transition:
        opacity 0.25s,
        transform 0.25s;
}

.custom-widget-card.open {
    opacity: 1;

    pointer-events: auto;

    transform:
        translateY(0)
        scale(1);
}

.custom-widget-card h3 {
    margin-bottom: 12px;

    color: white;

    font-size: 18px;

    line-height: 1.4;
}

.custom-widget-card p {
    margin-bottom: 20px;

    color: #bdbdc7;

    font-size: 14px;

    line-height: 1.6;
}

.custom-widget-card a {
    color: #c06cff;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 3px;
}

.custom-widget-card a:hover {
    color: white;
}

.custom-widget-close {
    position: absolute;

    top: 10px;
    right: 12px;

    border: none;

    background: none;

    color: #b8b8c2;

    font-size: 22px;

    cursor: pointer;
}


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

@media (max-width: 850px) {

    header {
        height: 90px;
    }

    .header-logo {
        width: 150px;
    }

    nav {
        display: none;
    }


    /* HOME */

    .hero {
        min-height: 600px;

        padding-top: 40px;
    }

    .hero-logo {
        width:
            min(
                500px,
                90vw
            );
    }

    .subtitle {
        font-size: 15px;

        letter-spacing: 6px;
    }

    .tagline {
        font-size: 14px;

        letter-spacing: 3px;

        line-height: 1.8;
    }

    .divider {
        width: 80%;
    }


    /* PRODUCTS */

    .product-layout {
        grid-template-columns: 1fr;

        padding:
            35px
            22px
            75px;

        gap: 40px;
    }

    .product-left {
        text-align: center;
    }

    .product-photo {
        margin-left: auto;
        margin-right: auto;
    }

    .product-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .product-tags {
        justify-content: center;
    }

    .product-right {
        padding-top: 0;
    }


    /* ABOUT */

    .about-page {
        padding:
            45px
            22px
            80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        margin-bottom: 45px;
    }


    /* MISSION */

    .mission-page {
        padding:
            45px
            22px
            80px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-hero {
        margin-bottom: 45px;
    }
}


/* PHONE */

@media (max-width: 600px) {

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

        gap: 0;
    }

    .contact-page {
        padding:
            40px
            20px
            80px;
    }

    .contact-card {
        padding:
            25px
            20px;
    }

    .custom-widget-button {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;
    }

    .custom-widget-card {
        right: 18px;
        bottom: 90px;

        width:
            calc(100vw - 36px);

        max-width: 320px;
    }
}
/* =========================
   MOBILE NAVIGATION
   ========================= */

@media (max-width: 850px) {

    header {
        height: auto;
        min-height: 80px;

        padding: 12px 18px;

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

        gap: 15px;
    }

    .header-logo {
        width: 105px;
        flex-shrink: 0;
    }

    nav {
        display: flex;

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

        gap: 13px;

        flex: 1;
    }

    nav a {
        font-size: 9px;
        letter-spacing: 1px;

        white-space: nowrap;

        padding: 8px 0;
    }

    nav a.active {
        padding-bottom: 7px;
    }
}


/* EXTRA SMALL PHONES */

@media (max-width: 600px) {

    header {
        padding: 10px 12px;
        gap: 10px;
    }

    .header-logo {
        width: 82px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

}
/* MOBILE NAV SIZE TWEAK */

@media (max-width: 850px) {

    .header-logo {
        width: 115px;
    }

    nav {
        gap: 16px;
    }

    nav a {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (max-width: 600px) {

    .header-logo {
        width: 95px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}
/* =========================
   MOBILE NAV - FINAL SIZE
   ========================= */

@media (max-width: 850px) {

    header {
        padding: 12px 28px 12px 20px;
        gap: 20px;
    }

    .header-logo {
        width: 135px;
        flex-shrink: 0;
    }

    nav {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 19px;

        /* Pull navigation slightly away from right edge */
        padding-right: 18px;
    }

    nav a {
        font-size: 13px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    nav a.active {
        padding-bottom: 8px;
    }
}


/* ACTUAL SMALL PHONES */

@media (max-width: 600px) {

    header {
        padding: 10px 14px;
        gap: 10px;
    }

    .header-logo {
        width: 105px;
    }

    nav {
        gap: 10px;
        padding-right: 5px;
    }

    nav a {
        font-size: 10px;
        letter-spacing: 0;
    }
}