:root {
    --marketing-gradient: linear-gradient(133deg, rgba(0, 113, 206, .8) 8.3%, #005ab6 43.6%, #062f87 97.5%);
    --marketing-blue: #005ab6;
    --marketing-blue-deep: #062f87;
    --marketing-text: #26262a;
    --marketing-muted: #626262;
    --marketing-cloud: #f1f7fe;
    --marketing-white: #fff;
    --marketing-gutter: 120px;
    --marketing-max: 1200px;
}

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

body.marketing-site {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--marketing-text);
    background: var(--marketing-white);
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
}

.marketing-site *,
.marketing-site *::before,
.marketing-site *::after {
    box-sizing: border-box;
}

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

.marketing-site a,
.marketing-site button,
.marketing-site input,
.marketing-site select {
    font: inherit;
}

.marketing-site a {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    color: #062f87;
    background: #fff;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.marketing-container {
    width: min(calc(100% - (var(--marketing-gutter) * 2)), var(--marketing-max));
    margin-inline: auto;
}

.marketing-header {
    position: sticky;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 74px;
    margin-bottom: -74px;
    border-bottom: .5px solid rgba(241, 241, 241, .72);
    color: #fff;
    background: rgba(0, 78, 162, .9);
    box-shadow: 0 6px 18px rgba(0, 31, 81, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.marketing-header__inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.marketing-header__inner a {
    display: inline-flex;
    align-items: center;
}

.marketing-header__inner img {
    width: 126px;
    height: auto;
}

.marketing-hero {
    position: relative;
    isolation: isolate;
    height: 1028px;
    overflow: hidden;
    color: #fff;
    background: var(--marketing-gradient);
}

.marketing-hero__air-traffic {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.marketing-hero__plane {
    position: absolute;
    display: block;
    aspect-ratio: 1;
    opacity: .58;
    filter: drop-shadow(0 3px 8px rgba(0, 31, 81, .22));
    will-change: transform;
}

.marketing-hero__plane img {
    display: block;
    width: 100%;
    height: 100%;
}

.marketing-hero__plane--1 {
    top: 12%;
    left: -64px;
    width: 38px;
    animation: hero-plane-east 18s linear -4s infinite;
}

.marketing-hero__plane--2 {
    top: 27%;
    left: calc(100% + 64px);
    width: 30px;
    opacity: .46;
    animation: hero-plane-west 24s linear -13s infinite;
}

.marketing-hero__plane--3 {
    top: 68%;
    left: -64px;
    width: 46px;
    opacity: .64;
    animation: hero-plane-northeast 29s linear -9s infinite;
}

.marketing-hero__plane--4 {
    top: 15%;
    left: calc(100% + 64px);
    width: 34px;
    opacity: .52;
    animation: hero-plane-southwest 21s linear -5s infinite;
}

.marketing-hero__plane--5 {
    top: 34%;
    left: -64px;
    width: 28px;
    opacity: .42;
    animation: hero-plane-southeast 32s linear -22s infinite;
}

@keyframes hero-plane-east {
    0% { transform: translate3d(0, 0, 0) rotate(-24deg); }
    25% { transform: translate3d(calc(25vw + 32px), -125px, 0) rotate(-14deg); }
    50% { transform: translate3d(calc(50vw + 64px), -205px, 0) rotate(0deg); }
    75% { transform: translate3d(calc(75vw + 96px), -130px, 0) rotate(14deg); }
    100% { transform: translate3d(calc(100vw + 128px), 10px, 0) rotate(24deg); }
}

@keyframes hero-plane-west {
    0% { transform: translate3d(0, 0, 0) rotate(204deg); }
    25% { transform: translate3d(calc(-25vw - 32px), 125px, 0) rotate(194deg); }
    50% { transform: translate3d(calc(-50vw - 64px), 205px, 0) rotate(180deg); }
    75% { transform: translate3d(calc(-75vw - 96px), 130px, 0) rotate(166deg); }
    100% { transform: translate3d(calc(-100vw - 128px), -10px, 0) rotate(156deg); }
}

@keyframes hero-plane-northeast {
    0% { transform: translate3d(0, 0, 0) rotate(-42deg); }
    30% { transform: translate3d(calc(28vw + 38px), -32vh, 0) rotate(-28deg); }
    60% { transform: translate3d(calc(62vw + 78px), -48vh, 0) rotate(0deg); }
    100% { transform: translate3d(calc(100vw + 128px), -28vh, 0) rotate(34deg); }
}

@keyframes hero-plane-southwest {
    0% { transform: translate3d(0, 0, 0) rotate(138deg); }
    30% { transform: translate3d(calc(-28vw - 38px), 31vh, 0) rotate(152deg); }
    60% { transform: translate3d(calc(-62vw - 78px), 47vh, 0) rotate(180deg); }
    100% { transform: translate3d(calc(-100vw - 128px), 27vh, 0) rotate(214deg); }
}

@keyframes hero-plane-southeast {
    0% { transform: translate3d(0, 0, 0) rotate(38deg); }
    30% { transform: translate3d(calc(28vw + 38px), 25vh, 0) rotate(24deg); }
    60% { transform: translate3d(calc(62vw + 78px), 38vh, 0) rotate(0deg); }
    100% { transform: translate3d(calc(100vw + 128px), 21vh, 0) rotate(-30deg); }
}

@keyframes hero-plane-orbit {
    from { offset-distance: 0%; }
    to { offset-distance: 100%; }
}

@supports (offset-path: ellipse(60% 40% at 50% 50%)) {
    .marketing-hero__plane {
        top: 0;
        left: 0;
        offset-anchor: center;
        offset-rotate: auto;
        transform: none;
    }

    .marketing-hero__plane--1 {
        offset-path: ellipse(62% 34% at 50% 38%);
        animation-name: hero-plane-orbit;
    }

    .marketing-hero__plane--2 {
        offset-path: ellipse(58% 42% at 50% 50%);
        offset-rotate: auto 180deg;
        animation-name: hero-plane-orbit;
        animation-direction: reverse;
    }

    .marketing-hero__plane--3 {
        offset-path: ellipse(72% 50% at 50% 62%);
        animation-name: hero-plane-orbit;
    }

    .marketing-hero__plane--4 {
        offset-path: ellipse(68% 31% at 48% 31%);
        offset-rotate: auto 180deg;
        animation-name: hero-plane-orbit;
        animation-direction: reverse;
    }

    .marketing-hero__plane--5 {
        offset-path: ellipse(61% 47% at 52% 58%);
        animation-name: hero-plane-orbit;
    }
}

.marketing-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1062px, calc(100% - 64px));
    margin-inline: auto;
    padding-top: 174px;
    text-align: center;
}

.marketing-hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .96px;
}

.marketing-hero__copy > p {
    width: min(764px, 100%);
    margin: 10px 0 0;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: .4px;
}

.marketing-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 450px;
    max-width: 100%;
    margin-top: 32px;
}

.marketing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .28px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.marketing-button:focus-visible,
.marketing-site summary:focus-visible,
.marketing-site input:focus-visible,
.marketing-site select:focus-visible {
    outline: 3px solid rgba(51, 141, 216, .42);
    outline-offset: 2px;
}

.marketing-site .marketing-button--light {
    color: var(--marketing-blue);
    background: #fff;
}

.marketing-button--outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.marketing-site .marketing-button--primary {
    border-color: var(--marketing-blue);
    color: #fff;
    background: var(--marketing-gradient);
}

.marketing-button--full {
    width: 100%;
}

.marketing-hero__visual {
    position: absolute;
    z-index: 1;
    top: 426px;
    left: 50%;
    width: 1440px;
    height: 602px;
    transform: translateX(-50%);
}

.marketing-hero__laptop,
.marketing-hero__phone {
    position: absolute;
    max-width: none;
    height: auto;
}

.marketing-hero__laptop {
    top: 1px;
    left: 426px;
    width: 1015px;
}

.marketing-hero__phone {
    top: 89px;
    left: 164px;
    width: 519px;
}

.marketing-section {
    position: relative;
    overflow: hidden;
}

.marketing-section__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.marketing-section__header h2 {
    margin: 0;
    color: transparent;
    background: var(--marketing-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .96px;
}

.marketing-section__header p {
    margin: 0;
    color: var(--marketing-muted);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: .4px;
}

.marketing-section__header--center {
    align-items: center;
    text-align: center;
}

.marketing-section__header--light h2,
.marketing-section__header--light p {
    color: #fff;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.marketing-problem {
    height: 1750px;
    padding-top: 120px;
    background: #fafcfe;
}

.marketing-problem .marketing-section__header {
    gap: 16px;
}

.marketing-problem .marketing-section__header h2 {
    width: 100%;
}

.problem-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-top: 75px;
}

.problem-grid::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: calc(100% + 120px);
    left: 50%;
    width: 100vw;
    height: 1200px;
    transform: translateX(-50%);
    background: #fff;
    pointer-events: none;
}

.problem-card {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 348px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 10px 12px 40px 4px rgba(0, 90, 182, .06);
}

.problem-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 126px;
    overflow: hidden;
    background: var(--marketing-gradient);
}

.problem-card__visual img {
    width: auto;
    max-width: 100%;
    max-height: 126px;
}

.problem-card__body {
    height: calc(100% - 126px);
    padding: 24px;
}

.problem-card h3 {
    margin: 0 0 16px;
    color: transparent;
    background: var(--marketing-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.problem-card ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.problem-card li {
    position: relative;
    padding-left: 26px;
    color: var(--marketing-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: .28px;
}

.problem-card li::before {
    content: "−";
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(139, 82, 0, .22);
    border-radius: 50%;
    color: #8b5200;
    background: #fff0cc;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.unified-solution {
    position: relative;
    z-index: 1;
    isolation: isolate;
    scroll-margin-top: 98px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 240px 0 0;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #061e51;
    box-shadow: 10px 12px 40px 4px rgba(0, 90, 182, .1);
}

.unified-solution::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(3, 31, 91, .88) 0%, rgba(3, 31, 91, .48) 24%, rgba(3, 31, 91, 0) 47%),
        linear-gradient(90deg, rgba(3, 31, 91, .2) 0%, rgba(3, 31, 91, 0) 62%);
}

.unified-solution__copy {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 0;
    text-align: center;
    pointer-events: none;
}

.unified-solution h3 {
    margin: 0;
    font-size: clamp(22px, 2.67vw, 32px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .64px;
}

.unified-solution__copy p {
    margin: 4px 0 0;
    font-size: clamp(12px, 1.34vw, 16px);
    line-height: 1.2;
    letter-spacing: .32px;
}

.unified-solution__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 203px;
    min-height: 42px;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 24px;
    color: var(--marketing-blue);
    background: #fff;
    box-shadow: 0 2px 8px rgba(6, 47, 135, .08);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .28px;
}

.unified-solution__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: #061e51;
}

.unified-solution__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #061e51;
}

.unified-solution__video-toggle {
    position: absolute;
    z-index: 4;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 24px;
    color: #fff;
    background: rgba(3, 31, 91, .76);
    box-shadow: 0 4px 18px rgba(3, 31, 91, .24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
}

.unified-solution__video-toggle:hover {
    background: rgba(3, 31, 91, .92);
}

.unified-solution__video-toggle:focus-visible {
    outline: 3px solid #ffd966;
    outline-offset: 3px;
}

.unified-solution__video-toggle-icon {
    display: inline-flex;
    width: 12px;
    height: 14px;
    border-right: 4px solid currentColor;
    border-left: 4px solid currentColor;
}

.unified-solution__video-toggle.is-paused .unified-solution__video-toggle-icon {
    width: 0;
    height: 0;
    margin-left: 2px;
    border: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
}

.marketing-details {
    height: 995px;
    padding-top: 120px;
    background: #fafcfe;
}

.detail-tabs {
    margin-top: 48px;
}

.detail-tabs__panels {
    min-height: 460px;
    aspect-ratio: 1200 / 500;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background-color: var(--marketing-blue);
    background-image: url("../marketing/details/semantic/background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 10px 12px 40px 4px rgba(0, 90, 182, .08);
}

.detail-tab-panel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.detail-tab-panel[hidden] {
    display: none;
}

.detail-tab-panel:not([hidden]) {
    animation: detail-tab-reveal 180ms ease-out;
}

.detail-tab-panel__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 6.667%;
    width: 43.333%;
    transform: translateY(-50%);
}

.detail-tab-panel__content h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .64px;
}

.detail-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-fields--single {
    grid-template-columns: 1fr;
}

.detail-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 56px;
    padding: 12px 18px 12px 16px;
    border-radius: 8px;
    color: var(--marketing-muted);
    background: #fafcfe;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .32px;
}

.detail-field img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.detail-field img.detail-field__icon--blue {
    filter: brightness(0) saturate(100%) invert(27%) sepia(85%) saturate(1795%) hue-rotate(185deg) brightness(91%) contrast(105%);
}

.detail-field span:last-child {
    min-width: 0;
}

.detail-field__tag {
    display: inline-flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 16px;
    border-radius: 24px;
    color: #fafcfe;
    background: var(--marketing-gradient);
    font-size: 6.5px;
    letter-spacing: .03px;
}

.detail-tab-panel__media {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 4.5%;
    width: 43%;
    aspect-ratio: 16 / 9;
    transform: translateY(-50%);
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .96);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 31, 81, .3);
}

.detail-tab-panel__video {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 821px) {
    .detail-tab-panel--route .detail-tab-panel__content,
    .detail-tab-panel--travel .detail-tab-panel__content {
        width: 32%;
    }

    .detail-tab-panel--route .detail-tab-panel__media,
    .detail-tab-panel--travel .detail-tab-panel__media {
        width: 52%;
    }
}

.detail-tabs__list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.detail-tab {
    position: relative;
    min-height: 72px;
    margin-left: -1px;
    padding: 16px 14px;
    border: 1px solid var(--tintsyellow-60);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    color: var(--marketing-blue-deep);
    background: var(--tintsyellow-10);
    box-shadow: inset 0 -1px 0 rgba(139, 82, 0, .08);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .32px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.detail-tab:first-child {
    margin-left: 0;
}

.detail-tab:hover:not([aria-selected="true"]) {
    color: var(--marketing-blue-deep);
    background: var(--tintsyellow-20);
    box-shadow: inset 0 4px 0 var(--tintsyellow-80);
}

.detail-tab[aria-selected="true"] {
    z-index: 2;
    border-color: var(--tintsyellow-80);
    color: var(--marketing-blue-deep);
    background: var(--tintsyellow-80);
    box-shadow: none;
}

.detail-tab[aria-selected="true"]::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -2px;
    left: -1px;
    height: 3px;
    background: var(--marketing-blue);
}

.detail-tab:focus-visible,
.detail-tab-panel:focus-visible {
    outline: 3px solid rgba(51, 141, 216, .42);
    outline-offset: 3px;
}

@keyframes detail-tab-reveal {
    from {
        opacity: .5;
    }

    to {
        opacity: 1;
    }
}

.marketing-patterns {
    height: auto;
    padding-block: 120px;
    color: #fff;
    background: var(--marketing-gradient);
}

.marketing-patterns .marketing-section__header {
    max-width: 980px;
    margin-inline: auto;
}

.marketing-insights {
    display: flex;
    width: min(100%, 1060px);
    margin: 48px auto 0;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.marketing-insight {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(78, 135, 224, .92);
    border-radius: 14px;
    background: #fff;
    box-shadow: 8px 14px 34px rgba(0, 31, 81, .18);
}

.marketing-insights__columns {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.marketing-insights__column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 18px;
}

.marketing-insights__footer {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.marketing-insight--airlines {
    grid-column: 1;
}

.marketing-insight--moon {
    grid-column: 2 / 4;
}

@media (min-width: 821px) {
    .marketing-insight--airlines {
        transform: translateY(-54%);
    }
}

.marketing-insight__screenshot {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    border-radius: 13px;
}

.marketing-insight__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marketing-insight__header > div {
    min-width: 0;
}

.marketing-insight__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 8px;
    background: var(--tintsblue-10);
}

.marketing-insight__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.marketing-insight h3 {
    margin: 0;
    color: var(--marketing-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .32px;
}

.marketing-insight__header p {
    margin: 2px 0 0;
    overflow: hidden;
    color: var(--marketing-muted);
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: .2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.marketing-insight__route {
    display: grid;
    grid-template-columns: auto minmax(80px, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.marketing-insight__route > span:not(.marketing-insight__route-line) {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.marketing-insight__route > span:last-child {
    align-items: flex-end;
    text-align: right;
}

.marketing-insight__route strong {
    color: var(--marketing-blue-deep);
    font-size: 30px;
    line-height: 1;
}

.marketing-insight__route small {
    color: var(--marketing-muted);
    font-size: 12px;
}

.marketing-insight__route-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.marketing-insight__route-line::before,
.marketing-insight__route-line::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    border-top: 1px dashed #66aee2;
}

.marketing-insight__route-line img {
    width: 26px;
    height: 26px;
    margin: 0 8px;
}

.marketing-insight__summary {
    margin: 24px 0 0;
    color: var(--marketing-muted);
    font-size: 13px;
}

.marketing-insight__summary strong {
    margin-right: 4px;
    color: var(--marketing-blue);
    font-size: 22px;
}

.marketing-insight__bars,
.marketing-insight__ranked,
.marketing-insight__aircraft-list,
.marketing-insight__seat-layout ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.marketing-insight__bars {
    display: grid;
    gap: 18px;
}

.marketing-insight__bars li {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 9px;
    color: var(--marketing-muted);
    font-size: 12px;
}

.marketing-insight__bars li::before,
.marketing-insight__bars li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    border-radius: 5px;
}

.marketing-insight__bars li::before {
    width: 100%;
    background: var(--marketing-cloud);
}

.marketing-insight__bars li::after {
    width: var(--insight-value);
    background: var(--marketing-gradient);
}

.marketing-insight__bars strong,
.marketing-insight__ranked strong,
.marketing-insight__aircraft-list strong {
    color: var(--marketing-blue-deep);
}

.marketing-insight__ranked,
.marketing-insight__aircraft-list {
    display: grid;
    gap: 10px;
}

.marketing-insight__ranked li,
.marketing-insight__aircraft-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--marketing-cloud);
}

.marketing-insight__ranked span {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.marketing-insight__ranked b {
    color: var(--marketing-blue-deep);
    font-size: 16px;
}

.marketing-insight__ranked small,
.marketing-insight__aircraft-list span {
    color: var(--marketing-muted);
    font-size: 12px;
}

.marketing-insight__aircraft-list li {
    min-height: 40px;
}

.marketing-insight__seat-layout {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-top: 22px;
}

.marketing-insight__donut {
    position: relative;
    display: flex;
    width: 124px;
    height: 124px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: conic-gradient(var(--marketing-blue) 0 62%, #66aee2 62% 93%, var(--tintsyellow-80) 93% 100%);
}

.marketing-insight__donut::after {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: #fff;
}

.marketing-insight__donut strong,
.marketing-insight__donut span {
    position: relative;
    z-index: 1;
}

.marketing-insight__donut strong {
    color: var(--marketing-blue-deep);
    font-size: 25px;
}

.marketing-insight__donut span {
    color: var(--marketing-muted);
    font-size: 11px;
}

.marketing-insight__seat-layout ul {
    display: grid;
    gap: 12px;
    margin: 0;
}

.marketing-insight__seat-layout li {
    display: grid;
    grid-template-columns: 9px 1fr auto;
    align-items: center;
    gap: 8px;
    color: var(--marketing-muted);
    font-size: 12px;
}

.marketing-insight__seat-layout i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--marketing-blue);
}

.marketing-insight__seat-layout i.is-aisle {
    background: #66aee2;
}

.marketing-insight__seat-layout i.is-middle {
    background: var(--tintsyellow-80);
}

.marketing-insight__seat-layout strong {
    color: var(--marketing-blue-deep);
}

.marketing-insight__badges {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.marketing-insight__badges > img {
    width: 68px;
    height: 68px;
    margin-right: -10px;
    filter: drop-shadow(0 8px 14px rgba(0, 90, 182, .14));
}

.marketing-insight__badges p {
    display: flex;
    margin: 0 0 0 28px;
    flex-direction: column;
}

.marketing-insight__badges p strong {
    color: var(--marketing-blue-deep);
    font-size: 30px;
    line-height: 1;
}

.marketing-insight__badges p span {
    margin-top: 4px;
    color: var(--marketing-muted);
    font-size: 12px;
}

.marketing-insight__footprint-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.marketing-insight__footprint-stats p {
    display: flex;
    min-width: 0;
    margin: 0;
    padding: 14px;
    flex-direction: column;
    border-radius: 8px;
    background: var(--marketing-cloud);
}

.marketing-insight__footprint-stats strong {
    overflow: hidden;
    color: var(--marketing-blue-deep);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
    text-overflow: ellipsis;
}

.marketing-insight__footprint-stats span {
    margin-top: 5px;
    color: var(--marketing-muted);
    font-size: 11px;
}

.marketing-insight__map {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #dff1f8;
    background-image: linear-gradient(rgba(255, 255, 255, .26), rgba(255, 255, 255, .26)), url("../bg_map_route_plane_light.svg");
    background-position: center;
    background-size: cover;
}

.marketing-insight__map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 90, 182, .1));
}

.marketing-insight__map > span {
    position: absolute;
    z-index: 1;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--marketing-blue);
    box-shadow: 0 0 0 3px rgba(0, 90, 182, .18);
}

.marketing-insight__map .is-point-1 { top: 30%; left: 18%; }
.marketing-insight__map .is-point-2 { top: 46%; left: 35%; }
.marketing-insight__map .is-point-3 { top: 29%; left: 50%; }
.marketing-insight__map .is-point-4 { top: 54%; left: 69%; }
.marketing-insight__map .is-point-5 { top: 72%; left: 82%; }

.marketing-patterns__note {
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .24px;
    text-align: center;
}

.marketing-comparison {
    height: 980px;
    padding-top: 100px;
    background: #fff;
}

.comparison-scroll {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    min-width: 860px;
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
    color: var(--marketing-muted);
    background: var(--marketing-cloud);
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    height: 72px;
    padding: 16px 32px;
    border-bottom: 1px solid #99c6eb;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .32px;
    text-align: center;
}

.comparison-table th:first-child {
    width: 38%;
    text-align: left;
}

.comparison-table thead th {
    height: 76px;
    border-bottom-color: transparent;
    color: #fff;
    background: var(--marketing-blue-deep);
    font-size: 20px;
}

.comparison-table thead th:first-child {
    border-radius: 8px 0 0;
    font-weight: 600;
}

.comparison-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.comparison-table__flewit {
    width: 172px;
    color: #fff;
    background: var(--marketing-gradient) !important;
}

.comparison-table__logo {
    display: block;
    width: 104px;
    height: auto;
    margin-inline: auto;
}

.comparison-table tbody th {
    font-weight: 600;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody tr:last-child th:first-child {
    border-radius: 0 0 0 8px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px;
}

.comparison-table td img {
    width: 24px;
    height: 24px;
    margin-inline: auto;
}

.comparison-table__status-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--Gray, #8E8E93);
    border-radius: 50%;
    color: var(--marketing-cloud);
    background: var(--Gray, #8E8E93);
    line-height: 1;
}

.comparison-table__status-icon--yes::before {
    content: "✓";
    font-size: 15px;
    font-weight: 700;
}

.comparison-table__status-icon--flewit {
    border-color: var(--tintsyellow-80, #FFC549);
    color: var(--marketing-blue);
    background: var(--tintsyellow-80, #FFC549);
}

.comparison-table__status-icon--no::before {
    content: "−";
    font-size: 18px;
    font-weight: 600;
}

.marketing-pricing {
    height: auto;
    padding-block: 100px;
    background: #fafcfe;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 210px;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 10px 12px 20px rgba(0, 90, 182, .06);
}

.pricing-card--featured {
    border-color: rgba(0, 113, 206, .8);
}

.pricing-card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 0 24px;
    overflow: hidden;
    color: #fff;
    background: var(--marketing-gradient);
    font-size: 16px;
}

.pricing-card__header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 50px;
    background: url("../marketing/pricing-planes.png") right center / auto 50px no-repeat;
}

.pricing-card__header span {
    position: relative;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 24px;
    color: var(--marketing-blue);
    background: #fff;
    font-size: 12px;
}

.pricing-card__header > strong {
    position: relative;
    z-index: 2;
    font-size: 22px;
}

.pricing-card__header--monthly {
    color: var(--marketing-blue);
    background: var(--tintsblue-20, #CCE3F5);
}

.pricing-card__header--monthly::after,
.pricing-card__header--free::after {
    content: none;
}

.pricing-card__monthly-routes,
.pricing-card__monthly-planes,
.pricing-card__monthly-plane {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
}

.pricing-card__monthly-routes {
    z-index: 0;
    top: -43px;
    right: -1px;
    width: 196px;
    height: 196px;
    opacity: .15;
    transform: scaleX(-1);
}

.pricing-card__monthly-routes img {
    display: block;
    width: 100%;
    height: 100%;
}

.pricing-card__monthly-planes {
    z-index: 1;
    top: -7px;
    right: 2px;
    width: 150px;
    height: 77px;
}

.pricing-card__monthly-plane--a {
    top: 0;
    left: 0;
    width: 24.728px;
    height: 52.171px;
}

.pricing-card__monthly-plane--b {
    top: 49.387px;
    left: 99.588px;
    width: 24.728px;
    height: 52.17px;
    transform: translate(-50%, -50%) rotate(42.6deg) scaleY(-1);
}

.pricing-card__monthly-plane--c {
    top: 15px;
    left: 21px;
    width: 29.981px;
    height: 42.131px;
}

.pricing-card__monthly-plane--d {
    top: 41.145px;
    left: 125.016px;
    width: 63.429px;
    height: 34.499px;
    transform: translate(-50%, -50%) rotate(-74.66deg);
}

.pricing-card__monthly-plane--e {
    top: 33.344px;
    left: 77.429px;
    width: 54.587px;
    height: 25.145px;
    transform: translate(-50%, -50%) rotate(-19.13deg) scaleY(-1);
}

.pricing-card__header--free {
    border-bottom: 1px solid var(--Neutrals-Light-Gray, #F1F1F1);
    color: var(--marketing-blue);
    background: #fff;
}

.pricing-card__header--free > strong {
    background: var(--Core-Skyline-Gradient, linear-gradient(124deg, rgba(0, 113, 206, .80) -8.3%, #005AB6 43.6%, #062F87 97.5%));
    background-clip: text;
    color: transparent;
    font-family: var(--font-family-body, "DM Sans");
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .32px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card__discount {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 16px;
    border-top: 1px solid rgba(6, 47, 135, .18);
    border-bottom: 1px solid rgba(6, 47, 135, .18);
    color: var(--marketing-blue-deep, #062F87);
    background: var(--tintsyellow-80, #FFC549);
    text-transform: uppercase;
}

.pricing-card__discount strong {
    font-size: 18px;
    line-height: 1;
    letter-spacing: .2px;
}

.pricing-card__discount span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .7px;
}

.pricing-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.pricing-card__header--free + .pricing-card__body {
    padding-top: 66px;
}

.pricing-card__price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-card__price strong {
    font-size: 24px;
    line-height: 1;
}

.pricing-card__price span {
    font-size: 12px;
    font-weight: 600;
}

.pricing-card__price em {
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 24px;
    color: #fff;
    background: var(--marketing-gradient);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
}

.pricing-card__regular-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 6px;
    color: var(--Gray, #8E8E93);
    font-size: 12px;
}

.pricing-card__regular-price s {
    font-size: 14px;
    font-weight: 600;
}

.pricing-card__body p {
    margin: 12px 0 0;
    color: var(--marketing-muted);
    font-size: 14px;
    line-height: 1.25;
}

.pricing-features {
    margin-top: 44px;
}

.pricing-features__header,
.pricing-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px 80px;
    align-items: center;
}

.pricing-features__header {
    min-height: 50px;
    font-size: 20px;
}

.pricing-features__header strong:not(:first-child) {
    text-align: center;
}

.pricing-features__pro {
    justify-self: center;
    padding: 4px 10px;
    border-radius: 24px;
    color: #fff;
    background: var(--marketing-gradient);
}

.pricing-feature {
    min-height: 70px;
    border-bottom: 1px solid #f1f1f1;
    color: var(--marketing-muted);
}

.pricing-feature > span:first-child {
    display: grid;
    gap: 4px;
}

.pricing-feature strong {
    font-size: 16px;
    font-weight: 400;
}

.pricing-feature small {
    color: #8e8e93;
    font-size: 14px;
}

.pricing-feature__value {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.pricing-feature__value > span {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
}

.pricing-feature img {
    width: 24px;
    height: 24px;
    margin-inline: auto;
}

.pricing-card__cta {
    margin-top: auto;
    padding-top: 24px;
}

.pricing-card__cta .marketing-button {
    min-height: 68px;
}

.marketing-pricing .pricing-card__cta .marketing-button--full {
    margin-top: 0;
}

.marketing-stats {
    height: 582px;
    padding-top: 120px;
    color: #fff;
    background: var(--marketing-gradient);
}

.marketing-stats .marketing-section__header {
    gap: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 120px;
    margin-top: 48px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat > span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 8px;
    background: var(--marketing-cloud);
}

.stat > span img {
    width: 48px;
    height: 48px;
}

.stat strong {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.stat small {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
}

.marketing-stats__disclaimer {
    margin: 120px 0 0;
    font-size: 12px;
    letter-spacing: .24px;
}

.marketing-waitlist {
    height: auto;
    padding-block: 120px;
    background: #fff;
}

#waitlist-heading {
    color: transparent;
    background: var(--marketing-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#waitlist-heading.waitlist-heading--confirmed {
    color: var(--marketing-blue);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.marketing-alert {
    margin-top: 24px;
    padding: 12px 16px;
    border: 1px solid;
    border-radius: 8px;
    font-size: 14px;
}

.marketing-alert--success {
    border-color: #7bcba3;
    color: #075f35;
    background: #ecfbf3;
}

.marketing-alert--error {
    border-color: #f3a6ae;
    color: #8e1c28;
    background: #fff1f2;
}

.waitlist-form {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 34px;
    width: min(100%, 960px);
    margin: 48px 0 0;
}

.waitlist-form--signup {
    row-gap: 16px;
}

.marketing-alert + .waitlist-form {
    margin-top: 24px;
}

.waitlist-form__honeypot {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.waitlist-field {
    display: flex;
    flex-direction: column;
    width: min(100%, 584px);
    color: var(--marketing-muted);
    font-size: 14px;
    font-weight: 600;
}

.waitlist-email-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.waitlist-email-row .waitlist-field {
    flex: 0 1 584px;
}

.waitlist-email-row__button {
    flex: 0 0 auto;
    min-height: 56px;
    margin-top: 13.5px;
    padding-inline: 28px;
    white-space: nowrap;
}

.waitlist-email-row__button[disabled] {
    cursor: wait;
    opacity: .72;
}

.waitlist-field__note {
    margin-top: 8px;
    color: var(--marketing-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.waitlist-field__note a {
    color: var(--marketing-blue);
}

.waitlist-heading__plane {
    color: initial;
    background: none;
    -webkit-text-fill-color: initial;
}

.waitlist-survey-intro {
    width: min(100%, 760px);
    margin-top: 32px;
}

.waitlist-survey-intro--step-two {
    margin-top: 0;
}

.waitlist-survey-intro h3 {
    margin: 0;
    color: var(--marketing-blue);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .6px;
}

.waitlist-survey-intro p {
    margin: 12px 0 0;
    color: var(--marketing-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.waitlist-field small {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin: 10px 0 -9px 12px;
    padding: 0 4px;
    color: var(--marketing-blue);
    background: #fff;
    font-size: 10px;
}

.waitlist-field input,
.waitlist-field select {
    width: 100%;
    height: 56px;
    padding: 12px 14px;
    border: 1px solid var(--marketing-blue);
    border-radius: 8px;
    color: var(--marketing-muted);
    background: #fff;
    font-size: 16px;
}

.waitlist-options {
    display: grid;
    align-content: start;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.waitlist-options legend {
    margin-bottom: 12px;
    color: var(--marketing-muted);
    font-size: 14px;
    font-weight: 600;
}

.waitlist-options legend small {
    display: block;
    margin-top: 4px;
    color: #8e8e93;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.waitlist-options__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 24px;
}

.waitlist-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--marketing-muted);
    font-size: 14px;
    cursor: pointer;
}

.waitlist-options input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--marketing-blue);
}

.waitlist-options input:checked + span {
    color: var(--marketing-blue);
    font-weight: 600;
}

.waitlist-option-row--other {
    display: grid;
    grid-template-columns: auto minmax(0, 220px);
    align-items: start;
    justify-content: start;
    gap: 12px;
}

.waitlist-options input.waitlist-options__detail {
    width: 100%;
    height: 32px;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid var(--marketing-blue);
    border-radius: 8px;
    color: var(--marketing-muted);
    background: #fff;
    font: inherit;
}

.waitlist-options input.waitlist-options__detail::placeholder {
    color: #8e8e93;
}

.waitlist-options input.waitlist-options__detail:focus {
    outline: 2px solid rgba(0, 90, 182, .2);
    outline-offset: 2px;
}

.waitlist-options input.waitlist-options__detail[hidden] {
    display: none;
}

.waitlist-options--paid {
    grid-column: 1;
}

.waitlist-newsletter {
    grid-column: 1;
    display: flex;
    align-items: center;
    align-self: start;
    gap: 10px;
    color: var(--marketing-muted);
    font-size: 14px;
    cursor: pointer;
}

.waitlist-newsletter input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--marketing-blue);
}

.waitlist-newsletter input:checked + span {
    color: var(--marketing-blue);
    font-weight: 600;
}

.waitlist-form__privacy {
    grid-column: 1 / -1;
    margin: -12px 0 0;
    color: var(--marketing-muted);
    font-size: 12px;
}

.waitlist-form__privacy a {
    color: var(--marketing-blue);
}

.waitlist-form__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.waitlist-form__actions .marketing-button {
    min-width: 220px;
}

.waitlist-form__skip {
    color: var(--marketing-blue);
    font-size: 14px;
    font-weight: 600;
    text-underline-offset: 3px;
}

.waitlist-form__submit {
    grid-column: 1 / -1;
    margin-top: -6px;
}

.waitlist-form__submit[disabled] {
    cursor: wait;
    opacity: .72;
}

.marketing-faq {
    height: auto;
    padding-block: 120px;
    background: #fafcfe;
}

.faq-list {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.faq-list details {
    overflow: hidden;
    border-radius: 8px;
    background: var(--marketing-cloud);
}

.faq-list summary {
    position: relative;
    min-height: 56px;
    padding: 19px 52px 18px 16px;
    color: var(--marketing-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    background: url("../marketing/icons/faq-chevron.svg") center / contain no-repeat;
    transform: translateY(-50%) rotate(180deg);
    transition: transform 160ms ease;
}

.faq-list details[open] summary {
    font-weight: 600;
}

.faq-list details[open] summary::after {
    transform: translateY(-50%);
}

.faq-list__answer {
    margin: 0;
    padding: 16px;
    border-top: 1px solid #f1f1f1;
    color: #8e8e93;
    background: #fff;
    font-size: 16px;
    line-height: 1.25;
}

.faq-list__answer p {
    margin: 0;
}

.faq-list__answer p + p {
    margin-top: 12px;
}

.faq-list__answer a,
.faq-list__more a {
    color: var(--marketing-blue);
    font-weight: 600;
}

.faq-list__more {
    margin: 32px 0 0;
    color: var(--marketing-muted);
    font-size: 14px;
}

.marketing-footer {
    height: 176px;
    color: #fff;
    background: var(--marketing-gradient);
}

.marketing-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    padding: 48px 4px;
}

.marketing-footer__inner > div:first-child > img {
    width: 128px;
}

.marketing-footer nav {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.marketing-footer nav a {
    color: #fafcfe;
    font-size: 14px;
    text-decoration: none;
}

.marketing-footer nav a:hover {
    text-decoration: underline;
}

.marketing-footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 6px;
    font-size: 14px;
}

.marketing-footer__social img {
    width: 24px;
    height: 24px;
}

@media (max-width: 1180px) {
    :root {
        --marketing-gutter: 48px;
    }

    .marketing-problem,
    .marketing-details,
    .marketing-patterns,
    .marketing-comparison,
    .marketing-pricing,
    .marketing-stats,
    .marketing-waitlist,
    .marketing-faq {
        height: auto;
        min-height: 0;
        padding-block: 96px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 64px;
    }

    .problem-grid::after {
        top: calc(100% + 96px);
    }

    .unified-solution {
        width: 100%;
        margin: 192px 0 0;
    }

    .detail-tabs {
        margin-top: 48px;
    }

    .marketing-insights,
    .marketing-insights__columns,
    .marketing-insights__column,
    .marketing-insights__footer {
        gap: 16px;
    }

    .stats-grid {
        gap: 48px;
    }

    .marketing-stats__disclaimer {
        margin-top: 40px;
    }

}

@media (max-width: 960px) {
    .pricing-grid {
        width: min(100%, 680px);
        margin-inline: auto;
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 0;
    }

    .pricing-card__header--free + .pricing-card__body {
        padding-top: 24px;
    }
}

@media (max-width: 820px) {
    :root {
        --marketing-gutter: 24px;
    }

    .marketing-header {
        height: 68px;
        margin-bottom: -68px;
    }

    .marketing-hero {
        height: 780px;
    }

    .marketing-hero__copy {
        padding-top: 132px;
    }

    .marketing-hero h1,
    .marketing-section__header h2 {
        font-size: clamp(34px, 8vw, 42px);
    }

    .marketing-hero__copy > p,
    .marketing-section__header p {
        font-size: 18px;
    }

    .marketing-section__header h2 {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .marketing-hero__visual {
        top: 390px;
        width: 1000px;
        transform: translateX(-50%) scale(.68);
        transform-origin: top center;
    }

    .marketing-hero__laptop {
        left: 280px;
    }

    .marketing-hero__phone {
        left: 20px;
    }

    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .pricing-card {
        min-height: 0;
    }

    .pricing-card__header--free + .pricing-card__body {
        padding-top: 24px;
    }

    .stats-grid {
        gap: 24px;
    }

    .comparison-scroll,
    .pricing-features,
    .detail-tabs__list {
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .marketing-insights {
        width: min(100%, 680px);
    }

    .marketing-insight--airlines,
    .marketing-insight--moon {
        grid-column: 1;
        width: 100%;
    }

    .marketing-insights__columns,
    .marketing-insights__footer {
        width: min(100%, 540px);
        grid-template-columns: 1fr;
    }

    .marketing-insights__column {
        gap: 18px;
    }

    .marketing-insight__map {
        margin-top: 24px;
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .waitlist-email-row {
        flex-direction: column;
        align-items: stretch;
    }

    .waitlist-email-row .waitlist-field {
        flex-basis: auto;
        width: 100%;
    }

    .waitlist-email-row__button {
        width: 100%;
        margin-top: 0;
    }

    .waitlist-form__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .waitlist-form__actions .marketing-button {
        width: 100%;
    }

    .waitlist-form__skip {
        align-self: center;
    }

    .waitlist-options__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-tabs__list {
        gap: 0;
    }

    .detail-tabs__panels {
        height: 730px;
        aspect-ratio: auto;
    }

    .detail-tab-panel__content {
        top: 32px;
        left: 32px;
        width: min(520px, calc(100% - 64px));
        transform: none;
    }

    .detail-tab-panel__media {
        top: auto;
        right: 32px;
        bottom: 32px;
        width: min(520px, calc(100% - 64px));
        transform: none;
    }

    .detail-tab {
        min-height: 64px;
        padding: 10px 8px;
        font-size: 12px;
    }

    .waitlist-options--paid,
    .waitlist-newsletter,
    .waitlist-form__privacy,
    .waitlist-form__submit {
        grid-column: 1;
    }

    .marketing-footer {
        height: auto;
    }

    .marketing-footer__inner {
        align-items: flex-start;
        gap: 40px;
        padding-block: 48px;
    }

    .marketing-footer nav {
        flex-wrap: wrap;
    }

    .faq-list {
        gap: 16px;
    }
}

@media (max-width: 600px) {
    :root {
        --marketing-gutter: 20px;
    }

    .marketing-hero__plane--4,
    .marketing-hero__plane--5 {
        display: none;
    }

    .marketing-hero__plane--1 {
        width: 30px;
        opacity: .52;
    }

    .marketing-hero__plane--2 {
        width: 25px;
    }

    .marketing-hero__plane--3 {
        width: 36px;
        opacity: .54;
    }

    .marketing-actions {
        grid-template-columns: 1fr;
        width: min(100%, 280px);
    }

    .marketing-hero {
        height: 790px;
    }

    .marketing-hero__copy {
        width: calc(100% - 40px);
        padding-top: 112px;
    }

    .marketing-hero h1 {
        font-size: 34px;
        letter-spacing: .5px;
    }

    .marketing-hero__copy > p,
    .marketing-section__header p {
        font-size: 16px;
        line-height: 1.45;
    }

    .marketing-section__header {
        gap: 12px;
    }

    .marketing-hero__visual {
        top: 490px;
        transform: translateX(-50%) scale(.46);
    }

    .marketing-problem,
    .marketing-details,
    .marketing-patterns,
    .marketing-comparison,
    .marketing-pricing,
    .marketing-stats,
    .marketing-waitlist,
    .marketing-faq {
        padding-block: 72px;
    }

    .marketing-problem .marketing-section__header h2 br,
    .marketing-stats .marketing-section__header h2 br {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }

    .problem-grid::after {
        top: calc(100% + 72px);
    }

    .problem-card {
        height: auto;
        min-height: 348px;
    }

    .problem-card__body {
        height: auto;
        padding: 20px;
    }

    .problem-card li {
        font-size: 15px;
        line-height: 1.35;
    }

    .unified-solution {
        min-height: 0;
        aspect-ratio: 16 / 9;
        margin-top: 144px;
    }

    .unified-solution__copy {
        align-items: flex-start;
        padding: 14px 54px 0 16px;
        text-align: left;
    }

    .unified-solution h3 {
        font-size: 20px;
    }

    .unified-solution__copy p,
    .unified-solution__status {
        display: none;
    }

    .unified-solution__video-toggle {
        right: 10px;
        bottom: 10px;
        width: 36px;
        min-height: 36px;
        padding: 0;
        border-radius: 50%;
    }

    .unified-solution__video-toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .marketing-insights {
        gap: 18px;
        margin-top: 36px;
    }

    .marketing-insights__columns,
    .marketing-insights__column,
    .marketing-insights__footer {
        gap: 18px;
    }

    .marketing-insight {
        min-height: 0;
        padding: 0;
    }

    .marketing-insight__route {
        grid-template-columns: auto minmax(56px, 1fr) auto;
        gap: 8px;
    }

    .marketing-insight__route strong {
        font-size: 26px;
    }

    .marketing-insight__route-line img {
        width: 22px;
        height: 22px;
        margin-inline: 5px;
    }

    .marketing-insight__seat-layout {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 16px;
    }

    .marketing-insight__donut {
        width: 104px;
        height: 104px;
    }

    .marketing-insight__badges > img {
        width: 56px;
        height: 56px;
    }

    .marketing-insight__badges p {
        margin-left: 20px;
    }

    .marketing-insight__footprint-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-insight__footprint-stats p:last-child {
        grid-column: 1 / -1;
    }

    .marketing-insight__map {
        min-height: 190px;
    }

    .marketing-patterns__note {
        margin-top: 24px;
    }

    .detail-tabs__list {
        grid-template-columns: none;
        grid-auto-columns: minmax(154px, 44vw);
        grid-auto-flow: column;
        gap: 0;
        overflow-x: auto;
        padding: 0;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .detail-tabs__panels {
        height: clamp(780px, 210vw, 900px);
    }

    .detail-tab-panel__content {
        top: 24px;
        left: 24px;
        width: calc(100% - 48px);
    }

    .detail-tab-panel__media {
        right: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
        border-width: 4px;
        border-radius: 9px;
    }

    .detail-tab-panel__content h3 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .detail-fields,
    .detail-fields--single {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .detail-field {
        min-height: 52px;
        gap: 10px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .detail-field img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .detail-tab {
        min-height: 64px;
        padding-inline: 12px;
        font-size: 14px;
        scroll-snap-align: start;
    }

    .pricing-features {
        margin-top: 36px;
        overflow: visible;
    }

    .pricing-features__header,
    .pricing-feature {
        min-width: 0;
        grid-template-columns: minmax(0, 1fr) 52px 52px;
        column-gap: 6px;
    }

    .pricing-features__header {
        min-height: 44px;
        font-size: 16px;
    }

    .pricing-feature {
        min-height: 0;
        padding-block: 14px;
    }

    .pricing-feature strong {
        font-size: 15px;
    }

    .pricing-feature small {
        font-size: 12px;
        line-height: 1.4;
    }

    .pricing-feature__value > span {
        position: static;
        white-space: normal;
        transform: none;
    }

    .pricing-grid {
        gap: 24px;
        margin-top: 36px;
    }

    .pricing-card__body {
        padding: 20px;
    }

    .pricing-card__price {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .comparison-table {
        min-width: 760px;
    }

    .comparison-table th,
    .comparison-table td {
        height: 64px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .comparison-table thead th {
        height: 68px;
        font-size: 16px;
    }

    .comparison-table__flewit {
        width: 150px;
    }

    .stats-grid {
        margin-top: 36px;
    }

    .stat {
        gap: 12px;
    }

    .stat > span {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .stat > span img {
        width: 40px;
        height: 40px;
    }

    .stat strong {
        font-size: 28px;
    }

    .marketing-stats__disclaimer {
        line-height: 1.45;
    }

    .waitlist-form {
        margin-top: 36px;
        row-gap: 28px;
    }

    .waitlist-survey-intro h3 {
        font-size: 26px;
    }

    .waitlist-options__grid {
        gap: 12px 16px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-list summary {
        padding-block: 17px;
        font-size: 15px;
        line-height: 1.35;
    }

    .faq-list__answer {
        font-size: 15px;
        line-height: 1.5;
    }

    .marketing-footer__inner {
        flex-direction: column;
    }

    .marketing-footer__social {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .waitlist-options__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    :root {
        --marketing-gutter: 16px;
    }

    .marketing-header {
        height: 64px;
        margin-bottom: -64px;
    }

    .marketing-header__inner img {
        width: 116px;
    }

    .marketing-hero {
        height: 780px;
    }

    .marketing-hero__copy {
        width: calc(100% - 32px);
        padding-top: 104px;
    }

    .marketing-hero h1,
    .marketing-section__header h2 {
        font-size: 32px;
        letter-spacing: .4px;
    }

    .marketing-actions {
        margin-top: 24px;
    }

    .marketing-hero__visual {
        top: 500px;
        transform: translateX(-50%) scale(.42);
    }

    .marketing-problem,
    .marketing-details,
    .marketing-patterns,
    .marketing-comparison,
    .marketing-pricing,
    .marketing-stats,
    .marketing-waitlist,
    .marketing-faq {
        padding-block: 64px;
    }

    .problem-card {
        min-height: 340px;
    }

    .detail-tabs {
        margin-top: 36px;
    }

    .detail-tabs__list {
        grid-auto-columns: minmax(144px, 72vw);
    }

    .detail-tabs__panels {
        height: 760px;
    }

    .detail-tab-panel__content {
        top: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .detail-tab-panel__media {
        right: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }

    .pricing-card__header {
        padding-inline: 20px;
    }

    .pricing-card__body {
        padding: 18px;
    }

    .pricing-card__discount {
        align-items: center;
        flex-wrap: wrap;
    }

    .stat > span {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .waitlist-email-row__button {
        padding-inline: 18px;
        white-space: normal;
    }

    .waitlist-option-row--other {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .waitlist-options input.waitlist-options__detail {
        max-width: 220px;
    }

    .faq-list summary {
        padding-right: 44px;
    }

    .marketing-footer__inner {
        gap: 32px;
        padding-block: 40px;
    }

    .marketing-footer__social {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .marketing-hero__air-traffic {
        display: none;
    }

    .marketing-site *,
    .marketing-site *::before,
    .marketing-site *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
