:root {
    --navy: #071d49;
    --navy-2: #0d2f68;
    --blue: #06a8cc;
    --blue-light: #dff7fb;
    --yellow: #ffd21f;
    --paper: #f7f8fa;
    --ink: #111c2d;
    --muted: #637083;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: white;
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
    word-break: keep-all;
}

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

button, summary {
    font: inherit;
}

main {
    overflow: hidden;
}

.mobile-break {
    display: none;
}

.section {
    padding: 120px max(6vw, 24px);
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .13em;
}

.eyebrow.light {
    color: var(--yellow);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.13;
    letter-spacing: -.055em;
}

.section-heading > p:last-child {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.topbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(4.5vw, 20px);
    background: #fff;
    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.brand i {
    display: block;
    width: 1px;
    height: 18px;
    margin: 0 6px;
    background: #cbd1da;
}

.brand strong {
    font-size: 15px;
    letter-spacing: .12em;
}

.brand-logos {
    gap: 13px;
}

.brand-logos i {
    height: 24px;
    margin: 0 2px;
}

.brand-logos img {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logos .kb-logo {
    height: 28px;
}

.brand-logos .cruisia-logo {
    height: 31px;
    max-width: 145px;
}

.kb-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 4px 10px 4px 10px;
    font-size: 12px;
    font-weight: 950;
}

.header-link {
    font-size: 14px;
    font-weight: 800;
}

.header-link span {
    margin-left: 8px;
    color: var(--blue);
}

.hero {
    min-height: calc(100vh - 72px);
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 3vw;
    align-items: center;
    padding: 7vw max(6vw, 32px) 9vw;
    color: white;
    background: radial-gradient(circle at 70% 20%, #174e85 0%, var(--navy-2) 33%, var(--navy) 72%);
    isolation: isolate;
}

.hero::before {
    content: none;
}

.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    right: 3%;
    top: 2%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 560px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(40px, 4.6vw, 68px);
    line-height: 1.1;
    letter-spacing: -.06em;
    font-weight: 800;
}

.hero h1 em {
    color: var(--yellow);
    font-style: normal;
}

.hero-copy {
    max-width: 600px;
    margin: 26px 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.7;
}

.hero-copy strong, .hero-copy span {
    display: block;
}

.hero-copy strong {
    margin-bottom: 7px;
    color: #fff;
    font-weight: 800;
}

.hero-copy span {
    color: rgba(255, 255, 255, .68);
}

.hero-date {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}

.hero-date span {
    color: #62d9ef;
    font-size: 14px;
    letter-spacing: .13em;
    font-weight: 950;
}

.hero-date b {
    font-size: 18px;
    letter-spacing: .04em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    min-width: 280px;
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.btn.primary {
    background: var(--yellow);
    color: var(--ink);
}

.btn span {
    font-size: 22px;
}

.hero-visual {
    height: min(600px, 44vw);
    position: relative;
    z-index: 2;
}

.hero-image-frame {
    --hero-float-y: 14px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-float 5.8s ease-in-out infinite;
    transform-origin: center 58%;
    will-change: transform;
}

.hero-image-frame::after {
    content: none;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

@keyframes hero-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-.25deg);
    }
    50% {
        transform: translate3d(0, calc(-1 * var(--hero-float-y)), 0) rotate(.25deg);
    }
}

.sun {
    position: absolute;
    width: 360px;
    height: 360px;
    right: 4%;
    top: 5%;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd940, #ffb81c);
    box-shadow: 0 0 100px rgba(255, 210, 31, .18);
}

.cloud {
    position: absolute;
    height: 18px;
    width: 120px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50px;
    filter: blur(1px);
}

.cloud::before, .cloud::after {
    content: "";
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
}

.cloud::before {
    width: 48px;
    height: 48px;
    left: 22px;
}

.cloud::after {
    width: 62px;
    height: 62px;
    right: 18px;
}

.cloud-one {
    right: 0;
    top: 10%;
}

.cloud-two {
    left: 5%;
    top: 32%;
    transform: scale(.7);
    opacity: .6;
}

.card-mock, .mini-card {
    position: absolute;
    width: 300px;
    aspect-ratio: 1.58;
    padding: 24px;
    color: var(--ink);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff9cf, #ffd72d);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
    transform: rotate(-8deg);
    z-index: 5;
}

.card-mock {
    left: 2%;
    top: 5%;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.card-top small {
    font-size: 10px;
}

.card-chip {
    width: 42px;
    height: 30px;
    border: 1px solid #a88d28;
    border-radius: 7px;
    margin-top: 25px;
    background: linear-gradient(135deg, #ddc56e, #fff1aa, #ba9e43);
}

.card-mock p, .mini-card p {
    margin: 18px 0 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

.card-number {
    font-size: 11px;
    letter-spacing: .08em;
}

.cash-badge {
    position: absolute;
    right: 3%;
    top: 5%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: white;
    color: var(--navy);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transform: rotate(7deg);
}

.cash-badge small {
    font-size: 11px;
    font-weight: 800;
}

.cash-badge strong {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -.08em;
}

.cash-badge span {
    margin-top: 4px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.ship {
    position: absolute;
    right: 4%;
    bottom: 10%;
    width: 72%;
    z-index: 4;
    filter: drop-shadow(0 26px 22px rgba(0, 0, 0, .24));
}

.ship-top {
    height: 92px;
    width: 65%;
    margin-left: 20%;
    padding: 18px 26px;
    border-radius: 50px 14px 0 0;
    background: #fff;
    display: flex;
    align-items: end;
    gap: 12px;
}

.ship-top::before {
    content: "";
    width: 30px;
    height: 42px;
    border-radius: 4px 4px 0 0;
    background: var(--blue);
}

.ship-top i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy-2);
}

.ship-body {
    height: 120px;
    position: relative;
    padding: 25px 18%;
    background: linear-gradient(155deg, #fff 0 62%, #c9dbe7 63%);
    clip-path: polygon(0 0, 100% 0, 84% 100%, 18% 85%);
    display: flex;
    gap: 18px;
}

.ship-body::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 7%;
    bottom: 22%;
    height: 8px;
    background: var(--blue);
    transform: skewY(2deg);
}

.ship-body span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--navy);
}

.wave {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 80px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    background: #0caed0;
    transform: rotate(-3deg);
    z-index: 3;
}

.wave-two {
    bottom: -28px;
    left: -3%;
    opacity: .45;
    background: #a4edf5;
    transform: rotate(4deg);
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: max(7vw, 32px);
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 800;
}

.scroll-cue span {
    display: inline-flex;
    margin-left: 12px;
    color: var(--yellow);
    font-size: 18px;
    animation: bob 1.6s infinite;
}

@keyframes bob {
    50% {
        transform: translateY(5px);
    }
}

.benefits {
    background: var(--paper);
}

.benefit {
    border-radius: 26px;
    overflow: hidden;
}

.benefit-cash {
    margin: 0;
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    background: white;
    box-shadow: 0 18px 60px rgba(16, 42, 78, .07);
}

.benefit-num {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    padding: 10px 16px;
    border-radius: 999px;
    color: white;
    background: var(--blue);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .1em;
}

.benefit h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 2.7vw, 42px);
    line-height: 1.17;
    letter-spacing: -.055em;
}

.benefit h3 mark {
    padding: 0;
    background: linear-gradient(transparent 68%, var(--yellow) 68%);
    color: inherit;
}

.benefit-copy p, .benefit > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.benefit-intro {
    min-height: 0;
    margin: 18px 0 0;
}

.cash-table {
    margin-top: 24px;
    padding: 10px 18px 18px;
    border-radius: 18px;
    background: #f5f8fc;
}

.cash-row {
    min-height: 72px;
    display: grid;
    grid-template-columns:1.3fr 1fr;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #dce3eb;
    color: #26364d;
    font-size: 16px;
    font-weight: 700;
}

.cash-row:last-child {
    border-bottom: 0;
}

.cash-row.head {
    min-height: 56px;
    color: #6f7e91;
    font-size: 14px;
    font-weight: 900;
}

.cash-row.head span:last-child {
    text-align: right;
}

.cash-row b, .cash-row.featured b {
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
    text-align: right;
    letter-spacing: -.035em;
}

.cash-table small {
    display: block;
    color: #66768a;
    font-size: 12px;
    line-height: 1.5;
}

.benefit-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns:1fr;
    gap: 28px;
    align-items: stretch;
}

.benefit-grid .benefit {
    min-height: 0;
    padding: 52px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.benefit-grid .benefit-cash {
    gap: 0;
}

.benefit-grid .benefit h3 {
    min-height: 0;
}

.benefit-credit h3, .benefit-prize h3 {
    max-width: 100%;
}

.benefit-credit {
    background: var(--navy);
    color: white;
}

.benefit-credit h3 {
    color: white;
}

.benefit-credit .benefit-num {
    color: var(--navy);
    background: var(--yellow);
}

.benefit-credit > p {
    color: rgba(255, 255, 255, .62);
    max-width: none;
}

.credit-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns:1fr;
    gap: 14px;
}

.credit-list div {
    min-width: 0;
    padding: 22px 26px;
    display: grid;
    grid-template-columns:180px 1fr;
    grid-template-rows:auto auto;
    align-items: center;
    column-gap: 30px;
    row-gap: 5px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

.credit-list img, .credit-list div:last-child img {
    grid-row: 1 / 3;
    width: 180px;
    max-width: none;
    height: 58px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    object-position: left center;
    opacity: .92;
}

.credit-list span {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.45;
    letter-spacing: -.01em;
}

.credit-list b {
    color: white;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: -.03em;
}

.benefit-prize {
    background: var(--blue-light);
}

.benefit-prize > p {
    max-width: none;
}

.prize-content {
    margin-top: 24px;
    display: grid;
    grid-template-columns:1.08fr .92fr;
    overflow: hidden;
    border: 1px solid rgba(7, 29, 73, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .58);
}

.prize-ship-image {
    width: 100%;
    height: 100%;
    min-height: 330px;
    display: block;
    object-fit: cover;
    object-position: center 62%;
    background: #dff4ff;
}

.prize-details {
    margin: 0;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.prize-details p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.prize-brand-logo {
    width: 140px;
    height: 44px;
    margin-bottom: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    object-position: left center;
}

.prize-details .prize-label {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
}

.prize-ticket-name {
    display: block;
    margin: 5px 0;
    color: var(--navy);
    font-size: 28px;
    font-weight: 950;
    line-height: 1.3;
    letter-spacing: -.045em;
}

.prize-details .prize-message {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(7, 29, 73, .12);
    color: var(--blue) !important;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.55;
}

.prize-message {
    color: var(--blue) !important;
    font-weight: 850;
}

.auto-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    margin-top: 18px;
    padding: 13px 20px;
    border: 0;
    border-radius: 30px;
    background: var(--yellow);
    color: var(--navy);
    font-family: inherit;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 8px 22px rgba(7, 29, 73, .1);
}

.auto-tag span {
    transform: translateY(1px);
}

.entry-button {
    cursor: default;
}

.entry-button span {
    color: var(--blue);
    font-size: 17px;
    line-height: 1;
}

.benefit-notes {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(7, 29, 73, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
}

.benefit-notes small {
    display: block;
    color: #536277;
    font-size: 16px;
    line-height: 1.7;
}

.benefit-credit .benefit-notes {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
}

.benefit-credit .benefit-notes small {
    color: rgba(255, 255, 255, .62);
}

.benefit-prize .benefit-notes {
    margin-top: 22px;
}

.benefit-cash > .benefit-notes {
    margin-top: 22px;
}

.section-footnote {
    max-width: 1380px;
    margin: 26px auto 0;
    color: #919aa8;
    font-size: 11px;
}

.how {
    background: var(--navy);
    color: white;
}

.section-heading.inverse h2 {
    color: white;
}

.section-heading.inverse > p:last-child {
    color: rgba(255, 255, 255, .55);
}

.steps {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 70px 1fr 70px 1fr;
    align-items: stretch;
}

.steps article {
    height: 100%;
    min-height: 390px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    background: rgba(255, 255, 255, .035);
}

.steps article > span {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.02em;
}

.step-icon {
    width: 68px;
    height: 68px;
    margin: 24px 0;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(3, 174, 207, .16);
    color: #60e2f0;
    font-size: 34px;
}

.step-icon img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.steps h3 {
    min-height: 60px;
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.45;
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.65;
}

.step-line {
    height: 1px;
    align-self: center;
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, .3) 0 5px, transparent 5px 11px);
}

.how-note {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 210, 31, .1);
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

.how-note b {
    color: var(--yellow);
}

.traveler-banner {
    min-height: 0;
    padding: 42px max(6vw, 24px);
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(115deg, #0093bd, #1bc4d4);
    position: relative;
}

.traveler-banner > div {
    width: 100%;
}

.traveler-banner::after {
    content: none;
}

.traveler-banner .eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
}

.traveler-banner h2 {
    margin: 0;
    font-size: clamp(26px, 2.6vw, 36px);
    line-height: 1.18;
    letter-spacing: -.04em;
}

.traveler-banner > div > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.text-link {
    display: inline-block;
    margin-top: 25px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    font-size: 14px;
    font-weight: 900;
}

.text-link span {
    margin-left: 30px;
}

.mini-card {
    position: relative;
    width: min(380px, 80%);
    justify-self: center;
    z-index: 2;
    transform: rotate(-6deg);
}

.mini-card strong {
    display: block;
    margin-top: 25px;
    font-size: 9px;
    letter-spacing: .2em;
}

.products {
    background: white;
}

.section-heading.left {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    text-align: left;
}

.section-heading.left > p {
    text-align: right;
}

.section-heading.left.products-heading {
    display: block;
}

.product-groups {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 48px;
}

.product-group-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--navy);
}

.product-group-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-group-brand img {
    width: auto;
    max-width: 100px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
}

.product-group-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: 30px;
    letter-spacing: -.04em;
}

.product-group-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    font-size: 16px;
    font-weight: 850;
}

.product-group.ncl .product-group-heading span {
    background: #4d8a48;
    color: white;
}

.product-group.msc .product-group-heading span {
    background: #df7654;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    border: 1px solid #e2e6eb;
    border-radius: 22px;
    overflow: hidden;
    background: white;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(7, 29, 73, .12);
}

.product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-image .product-badges span {
    display: inline-block;
    padding: 11px 16px;
    color: white;
    background: #009fc4;
    border: 0;
    border-radius: 24px;
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.01em;
    box-shadow: 0 7px 22px rgba(7, 29, 73, .36);
}

.product-image .product-badges span.hot {
    color: white;
    background: #f04452;
}

.product-image b {
    display: grid;
    place-items: center;
    min-width: 46px;
    height: 46px;
    padding: 0 10px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--yellow);
    font-size: 12px;
}

.product-body {
    flex: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.32;
    letter-spacing: -.03em;
}

.product-body dl {
    margin: 16px 0 0;
    display: grid;
    gap: 7px;
}

.product-body dl div {
    display: grid;
    grid-template-columns:52px 1fr;
    gap: 10px;
}

.product-body dt {
    color: #8994a3;
    font-size: 14px;
    font-weight: 800;
}

.product-body dd {
    margin: 0;
    color: #3f4d62;
    font-size: 15px;
    line-height: 1.55;
}

.departure-lines {
    display: grid;
    gap: 7px;
}

.departure-lines span {
    display: block;
    padding: 7px 9px;
    border-radius: 8px;
    background: #f5f7fa;
}

.departure-lines span + span {
    color: var(--navy);
    background: #edf7fa;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eaedf1;
}

.product-bottom strong {
    color: #ee4f45;
    font-size: 26px;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.product-card-link i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-style: normal;
}

.product-caption {
    max-width: 1200px;
    margin: 22px auto 0;
    color: #9aa3af;
    font-size: 11px;
}

.company-cruise-link {
    width: max-content;
    max-width: 100%;
    min-height: 44px;
    margin: 26px auto 0;
    padding: 6px 2px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-size: 16px;
    font-weight: 900;
    transition: color .2s, border-color .2s;
}

.company-cruise-link:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.company-cruise-link span {
    display: inline-block;
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
    transition: transform .2s;
}

.company-cruise-link:hover span {
    transform: translateX(4px);
}

.check {
    display: block;
    background: var(--yellow);
}

.check-intro {
    margin: 0 auto 52px;
    text-align: center;
}

.check-intro h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -.06em;
}

.check-intro .eyebrow {
    color: var(--navy);
    opacity: .6;
}

.check-list {
    max-width: 1000px;
    margin: auto;
    border-top: 2px solid var(--navy);
}

.check-list div {
    min-height: 82px;
    display: grid;
    grid-template-columns:48px 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(7, 29, 73, .25);
}

.check-list span {
    font-size: 13px;
    font-weight: 900;
    opacity: .55;
}

.check-list p {
    margin: 0;
    color: var(--navy);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.55;
}

.notice {
    max-width: 1400px;
    margin: auto;
    display: block;
}

.notice-title {
    margin: 0 auto 52px;
    text-align: center;
}

.notice-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -.055em;
}

.notice-title > p:last-child {
    color: var(--muted);
    font-size: 17px;
}

.accordions {
    max-width: 1000px;
    margin: auto;
    border-top: 2px solid var(--navy);
}

details {
    border-bottom: 1px solid #dfe4ea;
}

summary {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary span {
    font-size: 11px;
    color: #a0a8b3;
}

.accordions summary b {
    margin-left: auto;
    font-size: 23px;
    font-weight: 400;
    transition: transform .2s;
}

details[open] summary b {
    transform: rotate(45deg);
}

details ul {
    margin: 0 0 30px;
    padding: 28px 30px 28px 48px;
    border-radius: 14px;
    background: var(--paper);
    color: #536174;
    font-size: 15px;
    line-height: 1.9;
}

details li {
    position: relative;
    list-style: none;
    padding-left: 15px;
}

details li::before {
    content: "-";
    position: absolute;
    left: 0;
}

.contact {
    min-height: 420px;
    padding: 80px max(7vw, 32px) 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 38px;
    text-align: center;
    color: white;
    background: var(--navy);
}

.contact h2 {
    margin: 0;
    font-size: clamp(36px, 4.8vw, 60px);
    letter-spacing: -.055em;
}

.contact > div > p:last-child {
    color: rgba(255, 255, 255, .55);
}

.contact-methods {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.contact-methods a {
    min-width: 0;
    padding: 26px 28px;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.contact-methods a:last-child {
    border-right: 0;
}

.contact-methods small {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.contact-methods strong {
    display: block;
    margin: 9px 0 14px;
    color: var(--yellow);
    font-size: clamp(21px, 2.2vw, 30px);
    line-height: 1.25;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
}

.contact-methods span {
    color: #62d9ef;
    font-size: 14px;
    font-weight: 900;
}

.sticky-cta {
    position: fixed;
    z-index: 50;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(640px, calc(100% - 32px));
    min-height: 70px;
    padding: 12px 16px 12px 24px;
    display: grid;
    grid-template-columns:1fr auto 44px;
    align-items: center;
    gap: 20px;
    color: var(--navy);
    background: var(--yellow);
    border: 2px solid rgba(7, 29, 73, .14);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(7, 29, 73, .34);
}

.sticky-cta span {
    color: rgba(7, 29, 73, .62);
    font-size: 11px;
    font-weight: 850;
}

.sticky-cta b {
    font-size: 17px;
    font-weight: 950;
}

.sticky-cta i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--navy);
    color: white;
    font-style: normal;
}

@media (max-width: 900px) {
    .section {
        padding: 88px 24px;
    }

    .hero {
        min-height: auto;
        grid-template-columns:1fr;
        gap: 0;
        padding: 70px 24px 40px;
    }

    .hero-content {
        width: min(100%, 680px);
        margin: 0 auto;
        text-align: center;
    }

    .hero-copy {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .hero-date {
        justify-content: center;
    }

    .btn {
        min-width: min(100%, 320px);
    }

    .hero-visual {
        height: 440px;
        width: min(620px, 100%);
        margin: 35px auto 0;
    }

    .hero-main-image {
        object-position: center;
    }

    .hero-glow {
        width: 380px;
        height: 380px;
        right: -100px;
    }

    .sun {
        width: 270px;
        height: 270px;
        right: 5%;
        top: 12%;
    }

    .card-mock {
        width: 230px;
    }

    .cash-badge {
        width: 105px;
        height: 105px;
    }

    .cash-badge strong {
        font-size: 34px;
    }

    .ship {
        width: 80%;
    }

    .scroll-cue {
        display: none;
    }

    .benefit-cash {
        padding: 38px;
        grid-template-columns:1fr;
        gap: 30px;
    }

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

    .benefit-grid .benefit {
        min-height: 500px;
        padding: 42px;
    }

    .prize-content {
        grid-template-columns:1fr;
    }

    .prize-ship-image {
        min-height: 280px;
        height: 280px;
    }

    .prize-details {
        padding: 30px;
    }

    .steps {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .step-line {
        display: none;
    }

    .steps article {
        min-height: 360px;
    }

    .traveler-banner {
        text-align: center;
    }

    .section-heading.left {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: 24px;
        align-items: end;
    }

    .section-heading.left > p {
        text-align: left;
    }

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

    .check, .notice {
        grid-template-columns:1fr;
        gap: 50px;
    }

    .contact {
        align-items: center;
        flex-direction: column;
    }

    .contact-methods {
        grid-template-columns:1fr;
    }

    .contact-methods a {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .contact-methods a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    body {
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .mobile-break {
        display: block;
    }

    .desktop-break {
        display: none;
    }

    .section {
        padding: 72px 18px;
    }

    .topbar {
        height: 60px;
    }

    .header-link {
        font-size: 12px;
    }

    .brand strong {
        font-size: 12px;
    }

    .brand-logos {
        gap: 8px;
    }

    .brand-logos i {
        height: 20px;
        margin: 0;
    }

    .brand-logos .kb-logo {
        height: 21px;
    }

    .brand-logos .cruisia-logo {
        height: 23px;
        max-width: 102px;
    }

    .hero {
        padding: 52px 18px 34px;
    }

    .hero h1 {
        font-size: clamp(30px, 9vw, 34px);
        line-height: 1.18;
    }

    .desktop {
        display: none;
    }

    .hero-copy {
        margin: 20px auto;
        max-width: 430px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-copy br {
        display: none;
    }

    .hero-date {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 26px;
    }

    .hero-date b {
        font-size: 16px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-main-image {
        object-position: center center;
    }

    .hero-image-frame {
        --hero-float-y: 8px;
        animation-duration: 6.4s;
    }

    .sun {
        width: 210px;
        height: 210px;
    }

    .card-mock {
        width: 175px;
        padding: 16px;
        border-radius: 13px;
    }

    .card-mock .card-chip {
        margin-top: 14px;
        width: 32px;
        height: 22px;
    }

    .card-mock p {
        margin: 12px 0 5px;
        font-size: 11px;
    }

    .card-number {
        font-size: 7px;
    }

    .cash-badge {
        width: 85px;
        height: 85px;
        right: 0;
    }

    .cash-badge strong {
        font-size: 28px;
    }

    .ship {
        width: 92%;
        right: -3%;
        bottom: 7%;
    }

    .ship-top {
        height: 62px;
    }

    .ship-body {
        height: 80px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading > p:last-child {
        font-size: 15px;
    }

    .benefit-cash {
        margin: 0;
        padding: 26px 18px;
    }

    .benefit h3 {
        font-size: clamp(27px, 8vw, 30px);
        line-height: 1.25;
    }

    .benefit-copy p, .benefit > p {
        font-size: 15px;
    }

    .cash-table {
        padding: 8px 12px 14px;
    }

    .cash-row {
        min-height: 62px;
        grid-template-columns:minmax(0, 1.2fr) minmax(105px, .8fr);
        gap: 7px;
        font-size: 13px;
    }

    .cash-row.head {
        font-size: 12px;
    }

    .cash-row b, .cash-row.featured b {
        font-size: 16px;
        font-weight: 700;
    }

    .benefit-grid {
        gap: 18px;
    }

    .benefit-grid .benefit {
        min-height: 0;
        padding: 28px 20px;
    }

    .benefit-num {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .benefit-notes {
        padding: 14px;
    }

    .benefit-notes small {
        font-size: 13px;
    }

    .credit-list {
        gap: 16px;
    }

    .credit-list div {
        padding: 20px 18px;
        grid-template-columns:1fr auto;
        grid-template-rows:auto auto;
        gap: 16px 10px;
    }

    .credit-list img, .credit-list div:last-child img {
        grid-row: auto;
        grid-column: 1 / 3;
        width: 116px;
        height: 38px;
        margin-bottom: 4px;
    }

    .credit-list span {
        grid-column: 1;
        font-size: 14px;
    }

    .credit-list b {
        grid-column: 2;
        font-size: 16px;
        text-align: right;
    }

    .prize-content {
        margin-top: 18px;
    }

    .prize-ship-image {
        min-height: 210px;
        height: 210px;
    }

    .prize-details {
        padding: 24px 18px;
    }

    .prize-brand-logo {
        width: 112px;
        height: 36px;
    }

    .prize-ticket-name {
        font-size: 24px;
    }

    .prize-details .prize-message {
        font-size: 15px;
    }

    .auto-tag {
        width: 100%;
        text-align: center;
    }

    .steps article {
        min-height: 0;
        padding: 28px 24px;
    }

    .steps article > span {
        font-size: 19px;
    }

    .step-icon {
        margin: 20px 0;
    }

    .steps h3 {
        min-height: 0;
        font-size: 19px;
    }

    .steps p {
        font-size: 14px;
    }

    .traveler-banner {
        min-height: 0;
        padding: 36px 24px;
    }

    .traveler-banner h2 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns:1fr;
        gap: 18px;
    }

    .product-image {
        height: 210px;
    }

    .product-body {
        padding: 20px 18px;
    }

    .product-body h3 {
        font-size: 21px;
        line-height: 1.35;
    }

    .product-body dd {
        font-size: 14px;
    }

    .departure-lines span {
        overflow-wrap: anywhere;
        line-height: 1.55;
    }

    .product-bottom strong {
        font-size: 23px;
    }

    .section-heading.left {
        grid-template-columns:1.05fr .95fr;
        gap: 14px;
        align-items: center;
    }

    .section-heading.left .eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .section-heading.left h2 {
        font-size: 27px;
    }

    .section-heading.left > p {
        margin: 0;
        text-align: right;
        font-size: 12px;
        line-height: 1.6;
    }

    .product-group-heading {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .product-group-brand {
        min-width: 0;
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

    .product-group-brand img {
        flex: 0 0 auto;
        max-width: 54px;
        height: 26px;
    }

    .product-group-heading h3 {
        font-size: 20px;
        white-space: nowrap;
    }

    .product-group-heading span {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 14px;
        line-height: 1.35;
        white-space: normal;
    }

    .company-cruise-link {
        min-height: 42px;
        margin-top: 20px;
        padding: 5px 2px 7px;
        font-size: 15px;
    }

    .check-intro {
        margin-bottom: 36px;
    }

    .check-intro h2 {
        font-size: 38px;
    }

    .check-list div {
        grid-template-columns:34px 1fr;
        min-height: 88px;
    }

    .check-list p {
        font-size: 15px;
    }

    .notice {
        padding-left: 18px;
        padding-right: 18px;
    }

    .notice-title {
        margin-bottom: 36px;
    }

    .notice-title h2 {
        font-size: 38px;
    }

    .notice-title > p:last-child {
        font-size: 15px;
    }

    summary {
        min-height: 78px;
        gap: 10px;
        font-size: 16px;
    }

    .accordions summary b {
        font-size: 20px;
    }

    details ul {
        padding: 20px 18px 20px 34px;
        font-size: 14px;
    }

    .contact {
        min-height: 0;
        padding: 64px 18px 120px;
        align-items: center;
        text-align: center;
    }

    .contact h2 {
        font-size: 38px;
    }

    .contact-methods a {
        padding: 22px 10px;
    }

    .contact-methods strong {
        font-size: 23px;
    }

    .sticky-cta {
        bottom: 10px;
        width: calc(100% - 20px);
        min-height: 62px;
        padding: 9px 10px 9px 18px;
        grid-template-columns:minmax(0, 1fr) 40px;
        gap: 10px;
    }

    .sticky-cta span {
        display: none;
    }

    .sticky-cta b {
        min-width: 0;
        font-size: 15px;
        line-height: 1.3;
        white-space: normal;
    }

    .sticky-cta i {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-copy {
        font-size: 14px;
    }

    .btn {
        min-width: 0;
        width: 100%;
        padding-left: 18px;
        padding-right: 14px;
    }

    .cash-table {
        margin-top: 24px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .cash-row {
        grid-template-columns:minmax(0, 1.15fr) minmax(98px, .85fr);
        font-size: 12px;
    }

    .cash-row b, .cash-row.featured b {
        font-size: 15px;
        letter-spacing: -.045em;
    }

    .credit-list div {
        padding: 18px 16px;
        grid-template-columns:1fr;
        grid-template-rows:auto;
        gap: 8px;
    }

    .credit-list img, .credit-list div:last-child img {
        grid-column: 1;
        width: 104px;
        height: 34px;
        margin-bottom: 8px;
    }

    .credit-list span, .credit-list b {
        grid-column: 1;
        text-align: left;
    }

    .credit-list b {
        font-size: 17px;
    }

    .section-heading.left {
        display: block;
        text-align: center;
    }

    .section-heading.left > p {
        margin: 14px auto 0;
        max-width: 290px;
        text-align: center;
        font-size: 13px;
        line-height: 1.7;
    }

    .product-group-heading {
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .product-group-brand {
        width: 100%;
        justify-content: center;
    }

    .product-group-heading h3,
    .product-group-heading span {
        white-space: normal;
    }

    .product-group-heading span {
        max-width: 100%;
        text-align: center;
        line-height: 1.35;
    }

    .product-bottom {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 12px;
    }

    .product-card-link {
        white-space: normal;
    }

    .prize-ticket-name {
        font-size: 22px;
        line-height: 1.35;
    }

    .prize-details .prize-message {
        line-height: 1.65;
    }

    .auto-tag {
        white-space: normal;
        line-height: 1.35;
    }

    .sticky-cta {
        padding-left: 15px;
    }

    .sticky-cta b {
        font-size: 14px;
    }
}

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

    * {
        animation: none !important;
        transition: none !important;
    }
}
