/* =========================================================
   JETLIST
   flyjetlist.com
========================================================= */

:root {

    --navy-950: #030b13;
    --navy-900: #06131f;
    --navy-850: #081a29;
    --navy-800: #0b2235;
    --navy-700: #123650;

    --orange: #ff5a13;
    --orange-light: #ff7b38;

    --yellow: #ffc817;
    --red: #e91524;
    --green: #24c76a;

    --white: #ffffff;
    --off-white: #f4f6f8;

    --gray-100: #e5eaf0;
    --gray-300: #aeb9c5;
    --gray-500: #738191;

    --border: rgba(255,255,255,.12);

    --max-width: 1440px;
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    background: var(--navy-950);

    color: var(--white);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

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

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


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

.site-header {

    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(3,11,19,.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

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


.nav-wrap {

    width:
        min(calc(100% - 60px), var(--max-width));

    min-height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 42px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {

    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-logo {

    display: block;

    width: 52px;
    height: 52px;

    min-width: 52px;
    max-width: 52px;

    object-fit: contain;

    flex: 0 0 52px;
}


.brand-name {

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -.8px;

    white-space: nowrap;
}


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

.main-nav {

    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 34px;
}


.main-nav a {

    color: #dbe3ea;

    font-size: 15px;

    transition: color .2s ease;
}


.main-nav a:hover {
    color: var(--orange);
}


.nav-button {

    margin-left: 15px;

    padding: 11px 18px;

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

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease;
}


.nav-button:hover {

    background: var(--orange);

    color: var(--white);
}


/* =========================================================
   COMMON
========================================================= */

.section-inner {

    width:
        min(calc(100% - 60px), var(--max-width));

    margin: 0 auto;
}


.eyebrow {

    margin-bottom: 18px;

    color: #93a6b8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.eyebrow.dark {
    color: #788596;
}


.button {

    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    border-radius: 9px;

    font-size: 15px;

    font-weight: 750;

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


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


.button-primary {

    background: var(--orange);

    color: white;

    box-shadow:
        0 10px 30px rgba(255,90,19,.2);
}


.button-primary:hover {
    background: var(--orange-light);
}


.button-secondary {

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

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

    color: white;
}


.button-secondary:hover {

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

    border-color: white;
}


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

.hero {

    position: relative;

    overflow: hidden;

    min-height: 730px;

    display: flex;
    align-items: center;

    background:

        radial-gradient(
            circle at 75% 38%,
            rgba(26,83,120,.28),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #06131f 0%,
            #071927 48%,
            #02080e 100%
        );
}


.hero::after {

    content: "";

    position: absolute;

    inset: auto 0 0 0;

    height: 180px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.32)
        );

    pointer-events: none;
}


.hero-glow {

    position: absolute;

    border-radius: 999px;

    filter: blur(90px);

    opacity: .24;
}


.hero-glow-one {

    width: 420px;
    height: 420px;

    background: #155d8b;

    right: 8%;
    top: 7%;
}


.hero-glow-two {

    width: 300px;
    height: 300px;

    background: #ff5a13;

    right: 31%;
    bottom: -200px;

    opacity: .08;
}


.hero-inner {

    position: relative;

    z-index: 2;

    width:
        min(calc(100% - 60px), var(--max-width));

    margin: 0 auto;

    padding:
        75px 0 85px;

    display: grid;

    grid-template-columns:
        1fr 1.15fr;

    align-items: center;

    gap: 55px;
}


.hero-copy {

    position: relative;

    z-index: 5;

    min-width: 0;
}


.hero h1 {

    margin:
        0 0 24px;

    max-width: 700px;

    font-size:
        clamp(52px, 4.5vw, 72px);

    line-height: 1.02;

    letter-spacing: -3px;
}


.hero-description {

    max-width: 590px;

    margin: 0;

    color: #c7d1db;

    font-size: 20px;

    line-height: 1.55;
}


.hero-actions {

    margin-top: 38px;

    display: flex;

    gap: 14px;
}


.hero-tagline {

    margin-top: 37px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #8496a6;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero-tagline span {

    width: 46px;
    height: 2px;

    flex-shrink: 0;

    background: var(--orange);
}


.quick-features {

    margin-top: 48px;

    display: grid;

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

    max-width: 590px;

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

    padding-top: 26px;
}


.quick-feature {

    min-height: 80px;

    padding: 0 15px;

    color: #bac6d0;

    font-size: 12px;

    line-height: 1.45;

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


.quick-feature:first-child {
    padding-left: 0;
}


.quick-feature:last-child {
    border-right: 0;
}


.quick-icon {

    margin-bottom: 8px;

    color: white;

    font-size: 24px;
}


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

.hero-visual {

    position: relative;

    min-height: 540px;

    transform: translateX(28px);
}


.tablet {

    position: absolute;

    overflow: hidden;

    border:
        8px solid #111a22;

    border-radius: 30px;

    background: black;

    box-shadow:
        0 35px 70px rgba(0,0,0,.55);
}


.tablet img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.tablet-main {

    width: 88%;

    aspect-ratio: 4 / 3;

    right: -6px;
    top: 42px;

    transform:
        perspective(1300px)
        rotateY(-5deg)
        rotateX(1deg);
}


.tablet-secondary {

    width: 51%;

    aspect-ratio: 4 / 3;

    left: 1%;
    bottom: 18px;

    border-radius: 24px;

    transform:
        perspective(1000px)
        rotateY(7deg);
}


.device-camera {

    position: absolute;

    z-index: 4;

    top: 7px;
    left: 50%;

    width: 5px;
    height: 5px;

    transform: translateX(-50%);

    border-radius: 100%;

    background: #26333c;
}


.product-badge {

    position: absolute;

    z-index: 10;

    top: 0;
    right: 0;

    padding: 12px 17px;

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

    border-radius: 10px;

    background:
        rgba(5,19,30,.92);

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);
}


.product-badge strong {

    display: block;

    margin-bottom: 4px;

    font-size: 13px;
}


.product-badge span {

    color: #8fa1b1;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   AIRCRAFT
========================================================= */

.aircraft-section {

    padding:
        95px 0 105px;

    background: #06131e;
}


.section-heading {

    margin-bottom: 42px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: end;
}


.section-heading h2 {

    margin: 0;

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -2px;
}


.section-heading p {

    max-width: 600px;

    margin: 0;

    color: #aab7c2;

    font-size: 17px;

    line-height: 1.6;
}


.aircraft-grid {

    display: grid;

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

    gap: 22px;
}


.aircraft-card {

    overflow: hidden;

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

    border-radius: 14px;

    background: #0a1a28;

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


.aircraft-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(255,90,19,.55);
}


.aircraft-photo {

    position: relative;

    height: 245px;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    background-size: cover;

    background-position: center;
}


.aircraft-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(3,11,19,.88)
        );
}


.aircraft-photo-cj1 {
    background-image:
        linear-gradient(
            135deg,
            rgba(25,59,82,.30),
            rgba(7,19,29,.15)
        ),
        url("/images/cj1.png");
}

.aircraft-photo-c172 {
    background-image:
        linear-gradient(
            135deg,
            rgba(49,86,106,.30),
            rgba(7,19,29,.15)
        ),
        url("/images/c172.png");
}

.aircraft-photo-duchess {
    background-image:
        linear-gradient(
            135deg,
            rgba(27,67,90,.30),
            rgba(7,19,29,.15)
        ),
        url("/images/duchess.png");
}


.aircraft-placeholder {

    position: relative;

    z-index: 2;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -1.5px;

    opacity: .28;
}


.aircraft-content {

    padding:
        25px 26px 28px;
}


.aircraft-type {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 800;
}


.aircraft-type.pro {
    color: var(--orange);
}


.aircraft-type.ga {
    color: var(--green);
}


.aircraft-type.multi {
    color: #6fb5ff;
}


.aircraft-content h3 {

    margin:
        0 0 12px;

    font-size: 25px;
}


.aircraft-content p {

    min-height: 80px;

    margin: 0;

    color: #aebbc6;

    font-size: 15px;

    line-height: 1.55;
}


.aircraft-link {

    margin-top: 23px;

    padding-top: 17px;

    display: flex;

    justify-content: space-between;

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

    color: white;

    font-size: 14px;

    font-weight: 700;
}


.aircraft-link span {
    color: var(--orange);
}


.coming-soon {

    margin-top: 24px;

    padding-top: 17px;

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

    color: #8394a4;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {

    padding:
        95px 0 105px;

    background: var(--off-white);

    color: #071526;
}


.features-title {

    text-align: center;
}


.features-title h2 {

    margin:
        0 0 10px;

    font-size:
        clamp(38px, 4vw, 55px);

    letter-spacing: -2px;
}


.features-title p {

    margin: 0;

    color: #697586;

    font-size: 18px;
}


.features-grid {

    margin-top: 58px;

    display: grid;

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


.feature {

    padding:
        10px 45px 20px;

    text-align: center;

    border-right:
        1px solid #d8dde3;
}


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


.feature-icon {

    width: 64px;
    height: 64px;

    margin:
        0 auto 21px;

    display: grid;

    place-items: center;

    border:
        2px solid #0d2d47;

    border-radius: 50%;

    color: #0c2b44;

    font-size: 29px;

    font-weight: 800;
}


.feature-icon.warning {

    border-color: var(--red);

    background: var(--red);

    color: white;
}


.feature-icon.memory {

    border-color: var(--yellow);

    color: #9a7300;
}


.feature h3 {

    margin:
        0 0 10px;

    font-size: 19px;
}


.feature p {

    margin: 0;

    color: #677383;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   TRAINING
========================================================= */

.training-section {

    padding:
        110px 0;

    background:
        linear-gradient(
            135deg,
            #071723,
            #02080d
        );
}


.training-inner {

    display: grid;

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

    align-items: center;

    gap: 80px;
}


.training-images {

    position: relative;

    min-height: 520px;
}


.screen-card {

    position: absolute;

    overflow: hidden;

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

    border-radius: 18px;

    background: black;

    box-shadow:
        0 35px 60px rgba(0,0,0,.5);
}


.screen-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.screen-main {

    width: 86%;

    aspect-ratio: 4 / 3;

    left: 0;
    top: 0;
}


.screen-small {

    width: 58%;

    aspect-ratio: 4 / 3;

    right: 0;
    bottom: 0;
}


.training-copy h2 {

    margin:
        0 0 24px;

    font-size:
        clamp(40px, 4vw, 60px);

    line-height: 1.04;

    letter-spacing: -2.5px;
}


.training-copy > p {

    margin: 0;

    color: #aebcc7;

    font-size: 17px;

    line-height: 1.65;
}


.training-points {

    margin:
        32px 0 37px;

    display: grid;

    gap: 14px;
}


.training-points div {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #d2dae1;
}


.training-points span {

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   JETLIST GA BAND
========================================================= */

.ga-band {

    position: relative;

    overflow: hidden;

    padding:
        80px 0;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(40,107,145,.35),
            transparent 35%
        ),

        linear-gradient(
            110deg,
            #12324a,
            #06131f
        );
}


.ga-band::after {

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -110px;
    bottom: -330px;

    border:
        2px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


.ga-band-inner {

    width:
        min(calc(100% - 60px), var(--max-width));

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}


.ga-label {

    margin-bottom: 18px;

    font-size: 22px;

    font-weight: 800;
}


.ga-label strong {
    color: var(--orange);
}


.ga-band h2 {

    margin:
        0 0 18px;

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

    line-height: 1.02;

    letter-spacing: -2.7px;
}


.ga-band p {

    max-width: 750px;

    margin: 0;

    color: #b8c6d1;

    font-size: 17px;

    line-height: 1.6;
}


.ga-symbol {

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

    font-size: 150px;

    transform: rotate(-8deg);
}


/* =========================================================
   DEVICES
========================================================= */

.devices-section {

    padding:
        95px 0;

    background: #07131e;
}


.devices-inner {

    display: grid;

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

    gap: 90px;

    align-items: center;
}


.devices-copy h2 {

    margin:
        0 0 19px;

    font-size:
        clamp(40px, 4vw, 58px);

    letter-spacing: -2px;
}


.devices-copy p {

    margin: 0;

    color: #9eacb8;

    font-size: 17px;

    line-height: 1.6;
}


.device-grid {

    display: grid;

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

    gap: 1px;

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


.device {

    min-height: 220px;

    padding: 36px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #091925;
}


.device-icon {

    margin-bottom: 24px;

    color: white;

    font-size: 40px;
}


.device strong {

    margin-bottom: 9px;

    font-size: 18px;
}


.device span {

    color: #8fa0af;

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding:
        100px 0;

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

    background: #030b13;
}


.final-cta-inner {

    width:
        min(calc(100% - 60px), var(--max-width));

    margin: 0 auto;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 70px;
}


.final-cta h2 {

    margin:
        0 0 18px;

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

    line-height: 1;

    letter-spacing: -3px;
}


.final-cta p {

    max-width: 650px;

    margin: 0;

    color: #9daab5;

    font-size: 17px;

    line-height: 1.6;
}


.final-actions {

    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


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

.site-footer {

    padding:
        55px 0 30px;

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

    background: #02070c;
}


.footer-inner {

    width:
        min(calc(100% - 60px), var(--max-width));

    margin: 0 auto;

    display: grid;

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

    align-items: center;

    gap: 50px;
}


.footer-brand .brand-logo {

    width: 44px;
    height: 44px;

    min-width: 44px;
    max-width: 44px;

    flex-basis: 44px;
}


.footer-brand .brand-name {
    font-size: 25px;
}


.footer-brand p {

    margin:
        12px 0 0;

    color: #71808e;

    font-size: 12px;
}


.footer-links {

    display: flex;

    gap: 28px;
}


.footer-links a {

    color: #a5b1bb;

    font-size: 13px;
}


.footer-links a:hover {
    color: white;
}


.footer-domain {

    justify-self: end;

    color: #7f8c98;

    font-size: 13px;
}


.footer-bottom {

    width:
        min(calc(100% - 60px), var(--max-width));

    margin:
        40px auto 0;

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

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

    color: #5f6b76;

    font-size: 11px;
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media
(max-width: 1100px) {

    .main-nav {
        display: none;
    }


    .nav-button {
        margin-left: auto;
    }


    .hero {
        min-height: auto;
    }


    .hero-inner {

        grid-template-columns: 1fr;

        padding-top: 75px;
    }


    .hero-copy {
        max-width: 750px;
    }


    .hero h1 {

        max-width: 700px;

        font-size:
            clamp(52px, 8vw, 72px);
    }


    .hero-visual {

        min-height: 600px;

        transform: none;
    }


    .tablet-main {

        width: 80%;

        right: 0;
    }


    .tablet-secondary {

        width: 50%;

        left: 2%;
    }


    .aircraft-grid {

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


    .aircraft-card:last-child {

        grid-column:
            1 / -1;

        max-width:
            calc(50% - 11px);
    }


    .features-grid {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 0;
    }


    .feature:nth-child(2) {
        border-right: 0;
    }


    .training-inner {
        grid-template-columns: 1fr;
    }


    .training-images {
        order: 2;
    }


    .devices-inner {
        grid-template-columns: 1fr;
    }
}


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

@media
(max-width: 720px) {

    .nav-wrap,
    .hero-inner,
    .section-inner,
    .ga-band-inner,
    .final-cta-inner,
    .footer-inner,
    .footer-bottom {

        width:
            min(calc(100% - 34px), var(--max-width));
    }


    .nav-wrap {
        min-height: 66px;
    }


    .brand {
        gap: 9px;
    }


    .brand-logo {

        width: 42px;
        height: 42px;

        min-width: 42px;
        max-width: 42px;

        flex-basis: 42px;
    }


    .brand-name {
        font-size: 24px;
    }


    .nav-button {
        display: none;
    }


    .hero-inner {

        padding:
            60px 0 65px;

        gap: 45px;
    }


    .hero h1 {

        max-width: 100%;

        font-size: 50px;

        line-height: 1.02;

        letter-spacing: -2.5px;
    }


    .hero-description {
        font-size: 17px;
    }


    .hero-actions {

        display: grid;

        grid-template-columns: 1fr;
    }


    .quick-features {

        grid-template-columns:
            1fr 1fr;

        gap:
            22px 0;
    }


    .quick-feature:nth-child(2) {
        border-right: 0;
    }


    .hero-visual {

        min-height: 390px;

        transform: none;
    }


    .tablet-main {

        width: 92%;

        right: -25px;
    }


    .tablet-secondary {

        width: 60%;

        left: -10px;

        bottom: 8px;
    }


    .product-badge {
        display: none;
    }


    .section-heading {

        grid-template-columns: 1fr;

        gap: 22px;
    }


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


    .aircraft-card:last-child {

        grid-column: auto;

        max-width: none;
    }


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


    .feature {

        border-right: 0;

        border-bottom:
            1px solid #d8dde3;

        padding-bottom: 38px;
    }


    .feature:last-child {
        border-bottom: 0;
    }


    .training-images {
        min-height: 360px;
    }


    .screen-main {
        width: 90%;
    }


    .screen-small {
        width: 62%;
    }


    .ga-band-inner {
        display: block;
    }


    .ga-symbol {
        display: none;
    }


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


    .final-cta-inner {
        display: block;
    }


    .final-actions {

        margin-top: 35px;

        display: grid;
    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-links {
        flex-wrap: wrap;
    }


    .footer-domain {
        justify-self: start;
    }


    .footer-bottom {

        gap: 20px;

        flex-direction: column;
    }

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

section {
    scroll-margin-top: 78px;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -12px;

    height: 2px;

    background: var(--orange);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .2s ease;
}

.main-nav a.active {
    color: var(--white);
}

.main-nav a.active::after {
    transform: scaleX(1);
}
}