.skipass-page,
.skipass-page * {
    box-sizing: border-box;
}

.skipass-page {
    padding-top: 0;
    padding-bottom: 3rem;
    color: #172033;
    font-family: "Open Sans", Arial, sans-serif;
}

.skipass-page-header {
    width: 100%;
    margin: 1.25rem 0 1.75rem;
    padding: 0 clamp(0.5rem, 3vw, 2rem);
    background: transparent;
    text-align: center;
}

.skipass-page-header__eyebrow,
.skipass-section-label {
    margin: 0;
    color: #1670cc;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-transform: uppercase;
}

.skipass-page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}

.skipass-page-header h1 {
    margin: 0 0 0.7rem;
    color: #172033;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.12;
}

.skipass-page-header > p:last-child {
    max-width: 46rem;
    margin: 0 auto;
    color: #66758a;
    font-size: 1.05rem;
    line-height: 1.55;
}

.skipass-surface {
    overflow: hidden;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 16px 42px rgba(28, 51, 84, 0.1);
}

.skipass-lead {
    padding: clamp(1.3rem, 3.5vw, 2.2rem);
    background: #f2f7fd;
}

.skipass-lead__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.25rem, 4vw, 2.5rem);
}

.skipass-lead__copy {
    min-width: 0;
}

.skipass-lead .skipass-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.skipass-section-label__icon {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 0.65rem;
    background: #1670cc;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0;
}

.skipass-lead.is-subscribed .skipass-section-label__icon {
    background: #168058;
}

.skipass-lead.is-sale {
    background: #eef8f4;
}

.skipass-lead.is-sale .skipass-section-label__icon {
    background: #168058;
}

.skipass-lead__copy h2,
.skipass-order__heading h2,
.skipass-section-heading h2,
.skipass-resource__copy h2 {
    color: #172033;
    font-weight: 800;
    line-height: 1.25;
}

.skipass-lead__copy h2 {
    margin: 0.6rem 0 0.45rem;
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

.skipass-lead__copy > p:last-child,
.skipass-resource__copy > p:last-child {
    margin: 0;
    color: #66758a;
    font-size: 1rem;
    line-height: 1.55;
}

.skipass-lead__action {
    display: flex;
    min-width: 0;
    justify-content: flex-end;
}

.skipass-primary-action,
.skipass-secondary-action,
.skipass-subscription-toggle {
    display: inline-flex;
    min-height: 3.1rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 0;
    border-radius: 0.8rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.skipass-primary-action {
    min-width: 14rem;
    background: #1670cc;
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 112, 204, 0.18);
}

.skipass-primary-action:hover,
.skipass-primary-action:focus {
    background: #105fae;
    color: #fff;
    transform: translateY(-1px);
}

.skipass-subscription-form {
    margin: 0;
}

.skipass-subscription-toggle {
    min-width: 14rem;
    justify-content: flex-start;
    background: #fff;
    color: #33465c;
    box-shadow: 0 8px 22px rgba(28, 51, 84, 0.09);
    cursor: pointer;
}

.skipass-subscription-toggle:hover,
.skipass-subscription-toggle:focus {
    background: #e9f3ff;
    color: #155ca8;
}

.skipass-subscription-toggle__control {
    position: relative;
    width: 3.1rem;
    height: 1.75rem;
    flex: 0 0 3.1rem;
    border-radius: 999px;
    background: #a9b7c7;
    box-shadow: inset 0 1px 3px rgba(39, 54, 76, 0.16);
    transition: background-color 160ms ease;
}

.skipass-subscription-toggle__control::before {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(23, 32, 51, 0.24);
    content: "";
    transition: transform 160ms ease;
}

.skipass-subscription-toggle[aria-checked="true"] .skipass-subscription-toggle__control {
    background: #168058;
}

.skipass-subscription-toggle[aria-checked="true"] .skipass-subscription-toggle__control::before {
    transform: translateX(1.35rem);
}

.skipass-primary-action:focus-visible,
.skipass-secondary-action:focus-visible,
.skipass-subscription-toggle:focus-visible,
.skipass-support-links a:focus-visible {
    outline: 3px solid rgba(33, 135, 255, 0.28);
    outline-offset: 3px;
}

.skipass-essentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 1.6rem 0 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid #dce6f1;
    list-style: none;
}

.skipass-essentials li {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 1.15rem;
}

.skipass-essentials li:first-child {
    padding-left: 0;
}

.skipass-essentials li:last-child {
    padding-right: 0;
}

.skipass-essentials li + li {
    border-left: 1px solid #dce6f1;
}

.skipass-order {
    scroll-margin-top: 1rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border-top: 1px solid #e5ebf2;
}

.skipass-order__heading {
    max-width: 46rem;
    margin-bottom: 1.35rem;
}

.skipass-order__heading h2 {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

.skipass-order__heading > p:last-child {
    margin: 0;
    color: #66758a;
    font-size: 1rem;
    line-height: 1.55;
}

.skipass-order__frame {
    overflow: hidden;
    width: 100%;
    border-radius: 0.85rem;
    background: #f4f7fa;
}

.skipass-order__frame iframe {
    display: block;
    width: 100%;
    min-height: 1750px;
    border: 0;
    background: #fff;
}

.skipass-order__fallback {
    margin: 0.85rem 0 0;
    text-align: center;
}

.skipass-order__fallback a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1670cc;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.skipass-order__fallback a:hover,
.skipass-order__fallback a:focus {
    color: #105fae;
    text-decoration: underline;
}

.skipass-essential__icon {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 2.4rem;
    place-items: center;
    border-radius: 0.7rem;
    background: #e4effb;
    color: #1670cc;
    font-size: 0.95rem;
}

.skipass-essential__copy,
.skipass-step__copy {
    display: grid;
    min-width: 0;
    gap: 0.22rem;
}

.skipass-essential__copy strong,
.skipass-step__copy strong {
    color: #27364c;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.skipass-essential__copy > span,
.skipass-step__copy > span {
    color: #66758a;
    font-size: 1rem;
    line-height: 1.45;
}

.skipass-process {
    display: grid;
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(1.5rem, 5vw, 3.5rem);
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.skipass-section-heading h2,
.skipass-resource__copy h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
}

.skipass-process__body {
    min-width: 0;
}

.skipass-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.skipass-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1rem 0;
    border-top: 1px solid #e5ebf2;
}

.skipass-steps li:first-child {
    padding-top: 0;
    border-top: 0;
}

.skipass-step__number {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 0.65rem;
    background: #e8f2ff;
    color: #1670cc;
    font-size: 0.9rem;
    font-weight: 800;
}

.skipass-official-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.3rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e5ebf2;
    color: #486178;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.skipass-official-note i {
    margin-top: 0.16rem;
    color: #168058;
}

.skipass-resource {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.25rem, 4vw, 3rem);
    padding: clamp(1.4rem, 4vw, 2.2rem) clamp(1.5rem, 4vw, 2.4rem);
    border-top: 1px solid #e5ebf2;
}

.skipass-resource__copy {
    min-width: 0;
}

.skipass-resource__copy > p:last-child {
    max-width: 42rem;
    margin-top: 0.55rem;
}

.skipass-secondary-action {
    background: #eaf3ff;
    color: #155ca8;
    white-space: nowrap;
}

.skipass-secondary-action:hover,
.skipass-secondary-action:focus {
    background: #d9ebff;
    color: #104d8d;
    transform: translateY(-1px);
}

.skipass-support-links {
    display: flex;
    max-width: 28rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
}

.skipass-support-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0;
    color: #1670cc;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.skipass-support-links a:hover,
.skipass-support-links a:focus {
    color: #105fae;
}

body.dark .skipass-page {
    color: #eef4fc;
}

body.dark .skipass-page-header {
    background: transparent;
}

body.dark .skipass-page-header__eyebrow,
body.dark .skipass-section-label {
    color: #8bc3ff;
}

body.dark .skipass-page-header h1,
body.dark .skipass-lead__copy h2,
body.dark .skipass-order__heading h2,
body.dark .skipass-section-heading h2,
body.dark .skipass-resource__copy h2,
body.dark .skipass-essential__copy strong,
body.dark .skipass-step__copy strong {
    color: #f1f6fd;
}

body.dark .skipass-page-header > p:last-child,
body.dark .skipass-lead__copy > p:last-child,
body.dark .skipass-order__heading > p:last-child,
body.dark .skipass-resource__copy > p:last-child,
body.dark .skipass-essential__copy > span,
body.dark .skipass-step__copy > span {
    color: #aab7c8;
}

body.dark .skipass-surface {
    background: #222b36;
    box-shadow: 0 16px 42px rgba(12, 19, 28, 0.28);
}

body.dark .skipass-lead {
    background: #29323d;
}

body.dark .skipass-lead.is-sale {
    background: #293b38;
}

body.dark .skipass-section-label__icon {
    background: #1f6eae;
}

body.dark .skipass-lead.is-subscribed .skipass-section-label__icon {
    background: #277c61;
}

body.dark .skipass-primary-action {
    background: #1f6eae;
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 69, 108, 0.3);
}

body.dark .skipass-primary-action:hover,
body.dark .skipass-primary-action:focus {
    background: #195d94;
    color: #fff;
}

body.dark .skipass-subscription-toggle {
    background: #222b36;
    color: #d8e3ef;
    box-shadow: 0 8px 22px rgba(12, 19, 28, 0.2);
}

body.dark .skipass-subscription-toggle:hover,
body.dark .skipass-subscription-toggle:focus {
    background: #33404e;
    color: #9acbff;
}

body.dark .skipass-subscription-toggle__control {
    background: #647588;
}

body.dark .skipass-subscription-toggle[aria-checked="true"] .skipass-subscription-toggle__control {
    background: #3b9876;
}

body.dark .skipass-essentials,
body.dark .skipass-essentials li + li,
body.dark .skipass-order,
body.dark .skipass-steps li,
body.dark .skipass-official-note,
body.dark .skipass-resource {
    border-color: rgba(177, 195, 216, 0.16);
}

body.dark .skipass-essential__icon,
body.dark .skipass-step__number {
    background: #33404e;
    color: #9acbff;
}

body.dark .skipass-official-note {
    color: #b7c4d4;
}

body.dark .skipass-official-note i {
    color: #69d2a4;
}

body.dark .skipass-secondary-action {
    background: #33404e;
    color: #9acbff;
}

body.dark .skipass-secondary-action:hover,
body.dark .skipass-secondary-action:focus {
    background: #3c4b5b;
    color: #c5e2ff;
}

body.dark .skipass-order__frame {
    background: #29323d;
}

body.dark .skipass-order__fallback a {
    color: #8bc3ff;
}

body.dark .skipass-order__fallback a:hover,
body.dark .skipass-order__fallback a:focus {
    color: #c5e2ff;
}

body.dark .skipass-support-links a {
    color: #8bc3ff;
}

body.dark .skipass-support-links a:hover,
body.dark .skipass-support-links a:focus {
    color: #c5e2ff;
}

@media (max-width: 900px) {
    .skipass-lead__main,
    .skipass-process,
    .skipass-resource {
        grid-template-columns: minmax(0, 1fr);
    }

    .skipass-lead__action {
        justify-content: flex-start;
    }

    .skipass-section-heading {
        max-width: 34rem;
    }

    .skipass-resource {
        gap: 1rem;
    }

    .skipass-secondary-action {
        justify-self: start;
    }

    .skipass-support-links {
        max-width: none;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .skipass-essentials {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .skipass-essentials li,
    .skipass-essentials li:first-child,
    .skipass-essentials li:last-child {
        padding: 0.9rem 0;
    }

    .skipass-essentials li:first-child {
        padding-top: 0;
    }

    .skipass-essentials li:last-child {
        padding-bottom: 0;
    }

    .skipass-essentials li + li {
        border-top: 1px solid #dce6f1;
        border-left: 0;
    }
}

@media (max-width: 600px) {
    .skipass-page {
        padding-bottom: 2rem;
    }

    .skipass-page-header {
        margin-top: 0.65rem;
        margin-bottom: 1.25rem;
    }

    .skipass-surface {
        border-radius: 0.9rem;
    }

    .skipass-lead,
    .skipass-order,
    .skipass-process,
    .skipass-resource {
        padding: 1.2rem;
    }

    .skipass-lead__main {
        gap: 1.15rem;
    }

    .skipass-lead__action,
    .skipass-subscription-form,
    .skipass-primary-action,
    .skipass-subscription-toggle,
    .skipass-secondary-action {
        width: 100%;
    }

    .skipass-subscription-toggle {
        justify-content: space-between;
    }

    .skipass-support-links {
        align-items: flex-start;
        flex-direction: column;
    }
}
