* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

#why-bttp,
#how,
#about,
#redemption,
#security,
#faq,
#early-access {
    scroll-margin-top: 100px
}

body {
    margin: 0;
    background: #0b0b0a;
    color: #181512;
    font-family: "DM Sans", system-ui, sans-serif;
    line-height: 1.3
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: auto
}

.section-dark {
    background: #0b0b0a;
    color: #f8f5ef
}

.light-section {
    background: #f6f1ea
}

/* ── Section theme overrides for proper alternation ──
   Flow: Hero(dark) → Problem(light) → How(dark) → Redemptions(light) → Universe(dark) → CTA(light) → Footer(dark)
*/

/* Real Redemptions: override to light theme */
.real-redemptions.section-dark {
    background: #f6f1ea;
    color: #181512
}

.real-redemptions .section-heading p {
    color: #77706a
}

.real-redemptions .eyebrow.copper {
    color: #b86d3c
}

/* Rewards Hub (inside Real Redemptions): override to light theme */
.rewards-hub.section-dark {
    background: #f6f1ea;
    color: #181512
}

.rewards-hub .hub-output strong {
    color: #181512
}

.rewards-hub .hub-output small {
    color: #6e6761
}

.rewards-hub .hub-chip span {
    color: #181512
}

.rewards-hub .hub-connector-dot {
    stroke: #f6f1ea
}

.rewards-hub .hub-connector-dot--hub {
    stroke: #f6f1ea
}

.rewards-hub .mini-card {
    background: #e8e0d5;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(0, 0, 0, .08)
}

.rewards-hub .reward-art {
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(0, 0, 0, .08)
}

/* About: override to dark theme */
#about {
    display: flex;
    flex-direction: column;
    justify-content: center
}

#about > .container {
    margin-top: 0;
    margin-bottom: 0
}

#about .eyebrow.copper {
    color: #d18652
}

#about .feature-copy>p {
    color: #b7b0a8
}

#about .feature-point-icon {
    background: transparent;
    border-color: #b86d3c;
    color: #f2d0b8
}

#about .feature-point h3 {
    color: #f8f5ef
}

#about .feature-point p {
    color: #b7b0a8
}

#about .feature-summary {
    border-top-color: rgba(248, 245, 239, .12)
}

#about .check-list li:before {
    color: #d18652
}

#about .security-cta {
    margin-top: 72px
}

/* Universe: override to dark theme */
.universe {
    padding: 75px 0;
    background: #0b0b0a;
    color: #f8f5ef
}

.universe .eyebrow.copper {
    color: #d18652
}

.universe .program-note {
    color: #a69f98
}

.universe .logo-card {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3)
}

.universe .logo-card img {
    opacity: 1
}

.nav-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 60;
    padding: 18px 0 0;
    transform: translateY(0);
    opacity: 1;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), opacity .3s ease
}

.nav-wrap.nav-hidden {
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 36px;
    background: rgba(15, 13, 11, .65);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 0 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none
}

.brand-mark {
    width: 46px;
    height: 46px;
    border: 1px solid #b86d3c;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #f2d0b8;
    font-weight: 700;
    font-size: 13px
}

.brand-name {
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.brand-name-short {
    display: none
}

.footer-brand-name {
    display: none
}

@media(min-width:901px) {
    .footer-brand-name {
        display: inline
    }
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px
}

.nav-links a,
.footer-links a {
    color: #d6d0c7;
    text-decoration: none;
    font-size: 15px
}

@media(min-width:901px) {
    .nav-link-mobile-only {
        display: none
    }
}

.nav-cta {
    display: contents
}

.nav-links a.button {
    color: #fff
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 999px;
    background: #b86d3c;
    color: #fff;
    text-decoration: none;
    border: 1px solid #b86d3c;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(184, 109, 60, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    background: #c77b47;
    box-shadow: 0 6px 16px rgba(184, 109, 60, 0.4);
}

.button-small {
    padding: 11px 20px;
    font-size: 14px
}

.button-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .25)
}

.button-light {
    background: #fff;
    border-color: #fff;
    color: #171512
}

.menu-button {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    width: 42px;
    height: 42px
}

.menu-button span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 7px;
    border-radius: 1px;
    transition: transform .25s ease, opacity .25s ease
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 32px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    align-items: center;
    gap: 64px;
    width: min(1560px, calc(100% - 64px));
    margin: auto
}

.eyebrow {
    color: #d18652;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .18em
}

.copper {
    color: #b86d3c
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.aspiration h2,
.about h2,
.final-cta h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600
}

.hero h1 {
    font-size: clamp(40px, 4.4vw, 60px);
    line-height: 1.1;
    margin: 14px 0 2px;
    max-width: none;
    color: #c67845;
    font-style: normal;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.feature-copy h2 em,
.security h2 em,
.final-cta h2 em {
    color: #c67845;
    font-style: italic
}

.hero-sub {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3.3vw, 47px);
    font-weight: 500;
    line-height: 1.2;
    color: #f2ede6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    max-width: 720px;
    display: block;
    margin: 0 0 34px;
    text-wrap: pretty
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    color: #ded8cf;
    font-size: 14px;
    font-weight: 700;
    margin-top: 48px;
    align-self: flex-start
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.15
}

.hero-proof-icon {
    width: 20px;
    height: 20px;
    color: #d18652;
    flex-shrink: 0
}

.hero-proof-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, .22);
    display: block
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    font-size: 9px;
    line-height: 1
}

.hero-product {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
    --hero-scale: 1.15;
    transform: scale(var(--hero-scale));
    transform-origin: center
}

.hero-product.reveal {
    transform: scale(var(--hero-scale)) translateY(26px)
}

.hero-product.reveal.visible {
    transform: scale(var(--hero-scale))
}

.phone-shell {
    width: 340px;
    aspect-ratio: 1084 / 2252;
    position: relative;
    z-index: 2;
    background-image: url('assets/phone-frame.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .38)
}

.phone-top {
    display: none
}

.phone-screen {
    position: absolute;
    top: 1.55%;
    bottom: 1.64%;
    left: 3.32%;
    right: 3.51%;
    border-radius: 26px;
    background: linear-gradient(180deg, #1c1b1a, #121211);
    padding: 28px 20px 20px;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.phone-screen::-webkit-scrollbar {
    display: none
}

.phone-shell-mockup {
    aspect-ratio: 363 / 688;
    background-image: none;
    box-shadow: none
}

.phone-mockup-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, .38))
}

.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa
}

.phone-screen h3 {
    font: 600 22px "Playfair Display", serif;
    margin: 2px 0 18px
}

.tiny {
    font-size: 12px
}

.muted {
    color: #999
}

.mini-label {
    font-size: 12px;
    letter-spacing: .09em;
    color: #d58b59;
    font-weight: 700
}

.wallet-main {
    padding: 14px;
    border-radius: 18px;
    background: #1e1b19;
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.big-number {
    font: 600 42px "Playfair Display", serif;
    margin: 3px 0
}

.positive {
    color: #55b36a;
    font-size: 12px
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 9px
}

.wallet-grid>div,
.wallet-row {
    min-width: 0;
    padding: 12px 10px;
    border-radius: 14px;
    background: #181614;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.wallet-grid span,
.wallet-row span {
    display: block;
    color: #aaa;
    font-size: 11px;
    line-height: 1.25;
    min-height: 2.5em
}

.wallet-row span {
    min-height: 0
}

.wallet-grid strong,
.wallet-row strong {
    font: 600 16px "Playfair Display", serif
}

.wallet-row {
    margin-top: 9px
}

.action-needed {
    display: grid;
    gap: 5px;
    background: linear-gradient(135deg, #733b23, #9e572f);
    padding: 13px;
    border-radius: 15px;
    margin-top: 8px
}

.action-needed strong {
    font-size: 14px
}

.action-needed small {
    font-size: 12px;
    color: #ead5c7
}

.float-card {
    position: absolute;
    z-index: 4;
    width: 210px;
    padding: 18px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
}

.float-card strong,
.float-card small {
    display: block
}

.float-card strong {
    font-size: 14px;
    margin: 9px 0 3px
}

.float-card small {
    color: #aaa;
    font-size: 12px
}

.alert-card {
    left: -158px;
    top: 60px
}

.trip-card {
    left: -158px;
    bottom: 93px
}

.ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: .25
}

.ambient-one {
    width: 450px;
    height: 120px;
    background: #b76e3e;
    right: -20px;
    top: 60px;
    transform: rotate(-18deg)
}

.ambient-two {
    width: 370px;
    height: 70px;
    background: #784321;
    right: 330px;
    bottom: 80px;
    transform: rotate(20deg)
}

.standalone-page-section {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.policy-body {
    padding: 80px 0 120px;
}

.policy-content {
    max-width: 720px;
}

.policy-updated {
    color: #9a8f80;
    font-size: 14px;
    margin-bottom: 4px;
}

.policy-content h2 {
    margin-top: 0;
}

.policy-content h3 {
    margin-top: 40px;
    margin-bottom: 8px;
}

.policy-content p,
.policy-content li {
    color: #4a443d;
    line-height: 1.6;
}

.policy-content a {
    color: #b86d3c;
}

.policy-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(11, 10, 9, .72);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility 0s linear .25s
}

.policy-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease
}

.policy-modal {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 85vh;
    overflow-y: auto;
    background: #faf6ef;
    border-radius: 18px;
    padding: 56px 44px 48px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    transform: translateY(16px) scale(.98);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1)
}

.policy-modal-overlay.is-open .policy-modal {
    transform: translateY(0) scale(1)
}

.policy-modal .policy-content {
    max-width: none
}

.policy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(24, 21, 18, .06);
    color: #181512;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease
}

.policy-modal-close:hover {
    background: rgba(24, 21, 18, .12)
}

@media(max-width:640px) {
    .policy-modal-overlay {
        padding: 0
    }
    .policy-modal {
        max-width: none;
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
        padding: 64px 24px 40px
    }
}

.feature,
.redemption,
.assistant,
.about {
    padding: 92px 0
}

.problem {
    padding: 92px 0
}

.problem-pin-wrap {
    position: relative;
    height: auto
}

.problem-pin {
    position: static;
    height: auto;
    display: block;
    overflow: visible
}

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

.section-heading h2 {
    font-size: 45px;
    line-height: 1.08;
    margin: 12px 0
}

.section-heading p {
    color: #77706a;
    font-size: 16px
}

.problem .section-heading p {
    font-weight: 700
}

.real-redemptions .section-heading,
.faq .section-heading {
    max-width: none
}

.real-redemptions .section-heading h2,
.faq .section-heading h2 {
    font-size: clamp(24px, 3.6vw, 40px);
    white-space: nowrap
}

@media(max-width:700px) {

    .real-redemptions .section-heading h2,
    .faq .section-heading h2 {
        white-space: normal
    }
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading>p {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.section-heading.visible .eyebrow {
    opacity: 1;
    transform: none
}

.section-heading.visible h2 {
    opacity: 1;
    transform: none;
    transition-delay: .1s
}

.section-heading.visible>p {
    opacity: 1;
    transform: none;
    transition-delay: .2s
}

.problem-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
    row-gap: 34px;
    margin-top: 36px
}

.problem-item {
    position: relative;
    max-width: none;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

.problem-item.visible {
    opacity: 1;
    transform: none
}

.problem-item h3 {
    font: 600 clamp(25px, 2.1vw, 30px) "Playfair Display", serif;
    margin: 18px 0 9px
}

.problem-item p {
    color: #6e6761;
    font-size: 16px
}

.problem-close {
    text-align: center;
    font: italic 26px "Playfair Display", serif;
    color: #b86d3c;
    margin-top: 30px
}

.problem-close.reveal {
    transform: translateY(14px) scale(.92);
    transition: opacity .7s cubic-bezier(.34, 1.56, .64, 1), transform .7s cubic-bezier(.34, 1.56, .64, 1);
    transition-delay: .15s
}

.how .section-heading p {
    color: #aaa
}

.how {
    padding: 64px 0 0
}

.how-progress-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px
}

.how-progress-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4c4843;
    transition: background .25s ease, transform .25s ease
}

.how-progress-dot.is-active {
    background: #d58b59;
    transform: scale(1.4)
}

.how-pin-wrap {
    position: relative;
    height: 320vh
}

.how-pin {
    position: sticky;
    top: 94px;
    height: calc(100vh - 94px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden
}

.how-pin .container {
    margin: 0;
    padding-top: 6px;
    transform: scale(clamp(.66, calc((100vh - 114px)/855px), 1.05));
    transform-origin: top center
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "step" "visual";
    row-gap: 0;
    margin-top: 28px;
    justify-items: center
}

.how-visual-unit {
    grid-area: visual;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: center;
    margin: 0;
    opacity: 0;
    transform: translateY(18px) scale(.97);
    pointer-events: none;
    transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1)
}

.how-visual-unit.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.how-visual-unit .float-card {
    z-index: 4
}

.how-phone {
    width: 300px
}

.how-timeline {
    grid-area: step;
    width: 100%;
    max-width: 450px;
    text-align: left
}

.how-step {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 20px;
    padding-bottom: 22px
}

.how-step:last-child {
    padding-bottom: 0
}

.how-step-marker {
    position: relative;
    display: flex;
    justify-content: center
}

.how-step-circle {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #514e4a;
    background: #14110f;
    display: grid;
    place-items: center;
    font: 600 13px "Playfair Display", serif;
    color: #a69f98;
    transition: background .35s ease, border-color .35s ease, color .35s ease
}

.how-step:not(:last-child) .how-step-marker:after {
    content: "";
    position: absolute;
    top: 38px;
    bottom: -22px;
    left: 50%;
    width: 1px;
    background: #3a3733;
    transform: translateX(-50%);
    z-index: 1;
    transition: background .4s ease
}

.how-step.is-active .how-step-circle,
.how-step.is-complete .how-step-circle {
    background: #d58b59;
    border-color: #d58b59;
    color: #1c1a17
}

.how-step.is-complete:not(:last-child) .how-step-marker:after {
    background: #b86d3c
}

.how-step-body {
    min-width: 0
}

.how-step h3 {
    font-size: 18px;
    font-weight: 500;
    color: #8f8a84;
    margin: 6px 0 0;
    transition: color .35s ease, font-size .35s ease
}

.how-step.is-active h3 {
    font-size: 26px;
    font-weight: 600;
    color: #f5f1ec;
    margin-top: 0
}

.how-step-detail {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease
}

.how-step.is-active .how-step-detail {
    grid-template-rows: 1fr
}

.how-step-detail-inner {
    overflow: hidden
}

.how-step .check-list {
    text-align: left;
    display: block
}

.how-step p {
    font-size: 15px;
    color: #a69f98;
    max-width: 400px;
    margin-top: 10px
}

@media(max-width:900px) {
    .how-timeline {
        display: grid
    }

    .how-step {
        grid-area: 1 / 1;
        display: block;
        padding-bottom: 0;
        opacity: 0;
        transform: translateY(14px);
        pointer-events: none;
        transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1)
    }

    .how-step.is-active {
        opacity: 1;
        transform: none;
        pointer-events: auto
    }

    .how-step-marker {
        display: none
    }

    .how-step h3 {
        margin-top: 0
    }
}

@media(min-width:901px) {
    .how-pin-wrap {
        height: 320vh
    }

    .how-pin {
        position: sticky;
        top: 94px;
        height: calc(100vh - 94px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden
    }

    .how-pin .container {
        margin: 0;
        padding-top: 0
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        column-gap: 80px;
        grid-template-areas: "visual step";
        margin-top: 44px;
        overflow-x: visible;
        scroll-snap-type: none
    }

    .how-visual-unit[data-how-step] {
        grid-area: visual;
        align-self: center;
        margin: 0;
        opacity: 0;
        transform: translateY(18px) scale(.97);
        pointer-events: none;
        transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1)
    }

    .how-visual-unit.is-active {
        opacity: 1;
        transform: none;
        pointer-events: auto
    }

    .how-phone {
        width: 400px
    }

    .how-timeline {
        grid-area: step;
        align-self: center
    }

    .how-pin .container {
        transform: scale(clamp(.62, calc((100vh - 88px)/860px), 1));
        transform-origin: center
    }
}

@media(min-width:1150px) {
    .how-step[data-how-step="3"] .check-list li:last-child {
        white-space: nowrap
    }
}

@media(prefers-reduced-motion:reduce) {
    .how-pin-wrap {
        height: auto
    }

    .how-pin {
        position: static;
        height: auto;
        overflow: visible
    }

    .how-visual-unit,
    .how-step,
    .how-step-circle,
    .how-step-detail,
    .how-step h3 {
        transition: none
    }

    .how-step-detail {
        grid-template-rows: 1fr
    }

    .how-step h3 {
        font-size: 26px;
        font-weight: 600;
        color: #f5f1ec
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.feature-visual {
    display: grid;
    place-items: center
}

.phone-secondary {
    width: 270px
}

.phone-secondary .phone-screen {
    background: #141312
}

.dark-number {
    color: #fff
}

.program-list {
    margin-top: 20px
}

.program {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    border-top: 1px solid #2b2927
}

.program-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    font-size: 10px;
    overflow: hidden;
    padding: 3px
}

.program-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.program-icon--card {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    padding: 0;
    background: #000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08)
}

.program-icon--card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.program small {
    font-size: 12px
}

.program strong {
    font-size: 11px
}

.bar {
    height: 3px;
    background: #302d2a;
    margin-top: 5px;
    border-radius: 9px
}

.bar i {
    display: block;
    height: 100%;
    background: #b86d3c;
    border-radius: 9px
}

.feature-copy h2 {
    font-size: 47px;
    line-height: 1.06;
    margin: 12px 0 20px
}

@media(min-width:901px) {
    .feature-copy h2 {
        font-size: clamp(22px, 3.01vw - 5.1px, 36px)
    }
}

@media(min-width:641px) and (max-width:900px) {
    .feature-copy h2 {
        font-size: clamp(36px, 6.92vw - 8.4px, 47px)
    }
}

.feature-copy>p {
    color: #6e6761;
    max-width: 530px;
    font-size: 18px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0
}

.check-list li {
    margin: 14px 0;
    font-size: 17px
}

.check-list li:before {
    content: "✓";
    color: #b86d3c;
    margin-right: 11px
}

.feature-summary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(24, 21, 18, .1)
}

.feature-summary li {
    margin: 0;
    white-space: nowrap
}

.micro-proof {
    color: #fff !important;
    font-size: 14px
}

.chat-card {
    background: #f8f5f0;
    color: #171512;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .2)
}

.card-head,
.chat-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.real-redemptions {
    padding: 92px 0
}

.real-redemptions .section-heading p {
    color: #77706a
}

@media(min-width:641px) {
    .redemption-break-mobile {
        display: none
    }
}

.real-redemptions .micro-proof {
    color: #b86d3c !important;
    font-weight: 700
}

.redemption-carousel {
    max-width: 640px;
    margin: 50px auto 0
}

.redemption-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.redemption-track::-webkit-scrollbar {
    display: none
}

.redemption-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #f8f5f0;
    color: #171512;
    border-radius: 20px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .25);
    overflow: hidden
}

.redemption-slide-body {
    padding: 32px 32px 26px
}

.redemption-program {
    display: block;
    letter-spacing: .12em;
    font-size: 12px;
    color: #8f887f;
    font-weight: 700
}

.redemption-slide h3 {
    font-size: 23px;
    margin: 8px 0 22px
}

.redemption-compare {
    display: flex;
    gap: 14px
}

.compare-box {
    flex: 1;
    border: 1px solid #e2dad0;
    border-radius: 14px;
    padding: 18px;
    position: relative;
    background: #efe9e1
}

.compare-box span {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    color: #8f887f;
    font-weight: 700
}

.compare-box strong {
    display: block;
    margin-top: 10px;
    font-size: 25px
}

.compare-box.use-points {
    background: #fff;
    border: 1.5px solid #b86d3c
}

.use-points-badge {
    position: absolute;
    top: -11px;
    left: 14px;
    background: #b86d3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 10px;
    letter-spacing: .04em
}

.redemption-slide-note {
    border-top: 1px solid #e2dad0;
    background: #efe9e1;
    padding: 16px 32px;
    text-align: center;
    font-size: 15px;
    font-weight: 700
}

.redemption-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 26px
}

.redemption-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer
}

.redemption-arrow:disabled {
    opacity: .3;
    cursor: default
}

.redemption-dots {
    display: flex;
    gap: 6px
}

.redemption-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 0;
    padding: 0;
    cursor: pointer
}

.redemption-dot.active {
    width: 20px;
    border-radius: 5px;
    background: #b86d3c
}

.redemption-close {
    text-align: center;
    font: 600 26px "Playfair Display", serif
}

.redemption-close em {
    color: #b86d3c
}

.aspiration {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.aspiration-image {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%, rgba(220, 160, 104, .25), transparent 18%), linear-gradient(90deg, #120f0c 0%, #31251c 50%, #b97c4f 105%)
}

.aspiration-image:before {
    content: "";
    position: absolute;
    right: 10%;
    top: 17%;
    width: 45%;
    height: 66%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 160px 160px 28px 28px;
    box-shadow: inset 0 0 80px rgba(255, 190, 125, .12)
}

.aspiration-image:after {
    content: "✈";
    position: absolute;
    right: 24%;
    top: 35%;
    font-size: 120px;
    color: rgba(255, 255, 255, .08)
}

.aspiration-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .44), rgba(5, 5, 5, .15))
}

.aspiration-content {
    position: relative;
    color: #fff
}

.aspiration-content h2 {
    font-size: 49px;
    max-width: 620px;
    line-height: 1.08
}

.aspiration-content h3 {
    font: italic 32px "Playfair Display", serif;
    color: #cf8050;
    max-width: 600px
}

.assistant .feature-copy>p {
    color: #6e6761
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 25px
}

.chips span {
    background: #fff;
    border: 1px solid #ddd3c9;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px
}

.chat-card {
    box-shadow: none;
    border: 1px solid #ddd3c9
}

.chat-head span {
    color: #299049;
    font-size: 12px
}

.bubble {
    max-width: 84%;
    padding: 14px;
    border-radius: 15px;
    font-size: 13px;
    margin-top: 22px
}

.bubble.user {
    background: #ebe7e2;
    margin-left: auto
}

.bubble.bot {
    background: #f2e5db
}

.bubble.bot b {
    color: #b86d3c
}

.bubble.bot p {
    margin: 5px 0 0
}

.marquee-row {
    overflow: hidden;
    margin-top: 46px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.marquee-row.smaller {
    margin-top: 18px
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: marquee-left 42s linear infinite
}

.marquee-row.reverse .marquee-track {
    animation-name: marquee-right
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused
}

.logo-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
    min-width: 190px;
    padding: 0 34px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3)
}

.logo-card img {
    max-height: 38px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain
}

.marquee-row.smaller .logo-card {
    height: 78px;
    min-width: 170px
}

.marquee-row.smaller .logo-card img {
    max-height: 32px;
    max-width: 130px
}

@keyframes marquee-left {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

@media(prefers-reduced-motion:reduce) {
    .marquee-track {
        animation: none
    }
}

.program-note {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #a69f98;
    margin-top: 18px
}

@media(max-width:640px) {
    .marquee-row {
        margin-top: 30px
    }

    .marquee-row.smaller {
        margin-top: 14px
    }

    .marquee-track {
        gap: 10px
    }

    .logo-card {
        height: 66px;
        min-width: 112px;
        padding: 0 14px;
        border-radius: 10px
    }

    .logo-card img {
        max-height: 28px;
        max-width: 84px
    }

    .marquee-row.smaller .logo-card {
        height: 58px;
        min-width: 100px
    }

    .marquee-row.smaller .logo-card img {
        max-height: 24px;
        max-width: 74px
    }
}

.mp-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 600 22px "Playfair Display", serif;
    color: #fff;
    margin: 16px 0 8px
}

.mp-route i {
    font-size: 18px;
    color: #b86d3c;
    font-style: normal
}

.mp-check {
    color: #7bc47f;
    font-size: 17px
}

.mp-connecting {
    color: #8a8480;
    font-size: 15px;
    letter-spacing: 2px
}

.mp-option {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 11px 0;
    border-top: 1px solid #2b2927
}

.mp-option small {
    font-size: 13px;
    color: #fff
}

.mp-option strong {
    font-size: 14px;
    color: #fff
}

.mp-option-best .program-icon {
    background: #b86d3c
}

.mp-option-best strong {
    color: #e2925d
}

.mp-confirmed {
    background: linear-gradient(135deg, #2f5b3d, #3c7a4f);
    padding: 16px;
    border-radius: 15px;
    margin-top: 11px;
    display: grid;
    gap: 6px
}

.mp-confirmed strong {
    font-size: 14px
}

.mp-confirmed small {
    font-size: 12px;
    color: #d7ead9
}

.mp-report {
    margin-top: 6px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(160deg, #2a2320 0%, #1a1614 75%);
    border: 1px solid rgba(216, 134, 82, .18)
}

.mp-report-amount {
    font: 600 32px "Playfair Display", serif;
    color: #e2703f
}

.mp-report-caption {
    font-size: 12px;
    color: #a69f98;
    margin: 4px 0 14px
}

.mp-report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #372f2a;
    border-bottom: 1px solid #372f2a
}

.mp-report-stat {
    display: grid;
    gap: 2px
}

.mp-report-stat strong {
    font-size: 16px;
    color: #fff
}

.mp-report-stat span {
    font-size: 11px;
    color: #a69f98;
    letter-spacing: .02em
}

.mp-report-stat--accent strong {
    color: #d18652
}

.mp-report-insights {
    display: grid;
    gap: 9px;
    margin: 14px 0
}

.mp-report-insight {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.mp-report-warn {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d18652;
    color: #1a1614;
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 1px
}

.mp-report-insight small {
    font-size: 12px;
    color: #d6d0c7;
    line-height: 1.35
}

.mp-report-cta {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 999px;
    background: #b86d3c;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: .25s ease
}

.mp-report-cta:hover {
    background: #c77b47
}

.mp-float-discover {
    left: -84px;
    top: 100px
}

.mp-float-optimise {
    right: -16px;
    bottom: 70px
}

.mp-float-travel {
    right: -14px;
    bottom: 34px
}

.security {
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.security .section-heading p {
    color: #aaa
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 50px
}

.security-grid article {
    border-top: 1px solid #403d39;
    padding-top: 22px
}

.security-grid h3 {
    font-size: 20px
}

.security-grid p {
    color: #96908a;
    font-size: 16px
}

.security-note {
    text-align: center;
    color: #5f5b57;
    font-size: 13px;
    margin-top: 35px
}

.security-cta {
    text-align: center;
    margin-top: 44px
}

.security-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 1px solid rgba(248, 245, 239, .25);
    border-radius: 999px;
    background: transparent;
    color: #f8f5ef;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease
}

.security-see-more:hover {
    background: rgba(248, 245, 239, .08);
    border-color: rgba(248, 245, 239, .5)
}

.security-see-more span {
    transition: transform .15s ease
}

.security-see-more:hover span {
    transform: translateX(3px)
}

.about-inner {
    max-width: 850px
}

.about h2 {
    font-size: 51px;
    line-height: 1.08
}

.about-inner>p:not(.eyebrow) {
    color: #6e6761;
    font-size: 18px;
    max-width: 780px
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    font-weight: 600;
    font-size: 15px
}

.about-pillars span:last-child {
    color: #b86d3c
}

.final-cta {
    padding: 0 0 95px
}

.cta-universe {
    padding-bottom: 60px
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 72px;
    padding-top: 95px
}

.final-cta h2 {
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.1
}

.cta-line {
    white-space: nowrap
}

@media(max-width:640px) {
    .cta-line {
        white-space: normal
    }
}

.final-cta p {
    color: #6e6761
}

/* Left column: eyebrow, headline, feature bullets, trusted-programs strip */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.cta-eyebrow-rule {
    width: 28px;
    height: 1px;
    background: #d18652
}

.cta-copy-sub {
    max-width: 480px;
    font-size: 17px
}

.cta-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    margin: 34px 0
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: #181512;
    line-height: 1.3
}

.cta-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(184, 109, 60, .14);
    color: #b86d3c
}

.cta-feature-icon svg {
    width: 17px;
    height: 17px
}

/* Right column: floating card stack + form card */
.cta-panel {
    position: relative
}

.cta-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 28px;
    padding: 44px 40px 32px;
    box-shadow: 0 24px 60px rgba(23, 21, 18, .1);
    text-align: center
}

.cta-card-logo {
    display: block;
    margin: 0 auto 14px
}

.cta-card-title {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 6px
}

.cta-card-sub {
    color: #6e6761;
    font-size: 14px;
    margin: 0
}

.cta-card .waitlist-form {
    max-width: none;
    margin: 24px 0 6px
}

.cta-card .waitlist-form textarea {
    min-height: 140px
}

.cta-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

.cta-disclaimer svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #9a9186
}

@media(min-width:961px) {
    .cta-card .waitlist-form input,
    .cta-card .waitlist-form textarea {
        font-size: 15px
    }
}

@media(max-width:960px) {
    .final-cta {
        text-align: center
    }

    .cta-grid {
        display: block;
        max-width: 900px;
        margin: auto
    }

    .cta-break {
        display: none
    }

    .cta-eyebrow-rule,
    .cta-features,
    .cta-card-logo,
    .cta-card-title,
    .cta-card-sub {
        display: none
    }

    .cta-copy-sub {
        max-width: none;
        margin-left: auto;
        margin-right: auto
    }

    .cta-card {
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        text-align: left
    }

    .cta-card .waitlist-form {
        max-width: 530px;
        margin: 32px auto 8px
    }
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 530px;
    margin: 32px auto 8px;
    text-align: left
}

.waitlist-form textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 20px;
    border: 1px solid #ded4c6;
    background: #fff;
    color: #181512;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.5;
    outline: none;
    resize: vertical
}

.waitlist-form textarea:focus {
    border-color: #b86d3c
}

.waitlist-form textarea::placeholder {
    color: #9a9186
}

.waitlist-form input {
    min-width: 0;
    width: 100%;
    border-radius: 999px;
    border: 1px solid #ded4c6;
    background: #fff;
    color: #181512;
    padding: 0 18px;
    font-size: 18px;
    outline: none;
    min-height: 52px
}

.waitlist-form input:focus {
    border-color: #b86d3c
}

/* Honeypot: hidden from sighted users and keyboard/tab order, but still
   present in the DOM (not display:none) so simple bots that skip
   display:none fields still fall for it. */
.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.waitlist-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #6b6255;
    cursor: pointer;
}

.waitlist-consent input {
    margin-top: 3px;
    min-height: unset;
    width: auto;
    flex-shrink: 0;
}

.waitlist-consent a {
    color: inherit;
    text-decoration: underline;
}

.form-message {
    min-height: 20px !important;
    color: #d18a59 !important;
    font-size: 13px
}

.final-cta small {
    color: #666
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

footer {
    background: #050505;
    color: #fff;
    padding: 26px 0;
    border-top: 1px solid #171717
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 30px
}

.footer-links {
    margin-left: auto;
    display: flex;
    gap: 20px
}

.footer-inner>span {
    color: #666;
    font-size: 12px
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .12s
}

.story {
    padding: 92px 0
}

.story-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center
}

.story-form {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left
}

.story-form textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 20px;
    border: 1px solid #383532;
    background: #171615;
    color: #fff;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.5;
    outline: none;
    resize: vertical
}

.story-form textarea:focus {
    border-color: #b86d3c
}

.story-form textarea::placeholder {
    color: #77706a
}

.story-form-row {
    display: flex;
    gap: 10px
}

.story-form-row input {
    min-width: 0;
    flex: 1;
    border-radius: 999px;
    border: 1px solid #383532;
    background: #171615;
    color: #fff;
    padding: 0 18px;
    font-size: 16px;
    outline: none
}

.story-form-row input:focus {
    border-color: #b86d3c
}

.story-form-row .button {
    flex-shrink: 0
}

.faq {
    padding: 92px 0;
    background: #0b0b0a;
    color: #f8f5ef;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.faq .section-heading p {
    color: #aaa
}

.faq-chat {
    max-width: 640px;
    margin: 40px auto 0
}

.faq-chat-window {
    background: linear-gradient(180deg, #1c1b1a, #121211);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    transition: opacity .2s ease
}

.faq-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0b0b0a;
    color: #fff;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.faq-chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ecf6e;
    box-shadow: 0 0 0 3px rgba(62, 207, 110, .25)
}

.faq-chat-name {
    font-weight: 600;
    font-size: 14px
}

.faq-chat-online {
    margin-left: auto;
    font-size: 12px;
    letter-spacing: .08em;
    color: #9a948d;
    font-weight: 700
}

.faq-chat-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 150px
}

.faq-chat-msg p {
    margin: 0
}

.faq-chat-msg-user {
    align-self: flex-end;
    max-width: 78%
}

.faq-chat-msg-user p {
    background: #e8934f;
    color: #1c1712;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600
}

.faq-chat-msg-bot {
    align-self: flex-start;
    display: flex;
    gap: 10px;
    max-width: 85%
}

.faq-chat-avatar {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0b0b0a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700
}

.faq-chat-bubble {
    background: rgba(255, 255, 255, .06);
    color: #ddd6cc;
    border-radius: 16px 16px 16px 4px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.5;
    transition: opacity .15s ease
}

.faq-chat-bubble.is-hidden {
    display: none
}

.faq-chat-typing {
    display: none;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border-radius: 16px 16px 16px 4px;
    padding: 14px 18px
}

.faq-chat-typing.is-visible {
    display: inline-flex
}

.faq-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8a8378;
    animation: faqTypingBounce 1s infinite ease-in-out
}

.faq-chat-typing span:nth-child(2) {
    animation-delay: .15s
}

.faq-chat-typing span:nth-child(3) {
    animation-delay: .3s
}

@keyframes faqTypingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .5
    }

    30% {
        transform: translateY(-4px);
        opacity: 1
    }
}

.faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto
}

.faq-chip {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 13.5px;
    color: #d8d2c8;
    cursor: pointer;
    transition: .2s ease
}

.faq-chip:hover {
    border-color: #b86d3c;
    color: #b86d3c
}

.faq-chip.is-active {
    background: rgba(184, 109, 60, .14);
    border-color: #b86d3c;
    color: #e8934f
}

@media(max-width:900px) {
    .nav-wrap {
        padding: 0
    }

    .nav {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 20px;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none
    }

    .menu-button {
        order: -1;
        margin-left: 0;
        display: block
    }

    .nav .brand {
        margin-left: auto
    }

    .nav-links {
        display: none
    }

    .nav.mobile-open {
        width: min(340px, 84%);
        background: rgba(246, 241, 234, .92);
        box-shadow: none
    }

    .nav.container.mobile-open {
        width: min(340px, 84%);
        max-width: none;
        margin: 0
    }

    .nav.mobile-open .brand-name {
        display: none
    }

    .nav.mobile-open .menu-button span {
        background: #171512
    }

    .nav.mobile-open .menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .nav.mobile-open .menu-button span:nth-child(2) {
        opacity: 0
    }

    .nav.mobile-open .menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .nav.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 76px;
        left: 0;
        width: min(340px, 84%);
        height: calc(100vh - 76px);
        background: rgba(246, 241, 234, .92);
        box-shadow: 4px 0 24px rgba(0, 0, 0, .2);
        clip-path: inset(0 -24px 0 0);
        overflow-y: auto;
        z-index: 1
    }

    .nav.mobile-open .nav-links > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 20px 24px;
        margin: 0 20px;
        border-bottom: 1px solid rgba(23, 21, 18, .12);
        color: #171512;
        font-size: 17px;
        font-weight: 600
    }

    .nav.mobile-open .nav-links > a::after {
        content: "\2192";
        font-size: 16px;
        color: #171512
    }

    .nav.mobile-open .nav-cta {
        display: block;
        padding: 24px
    }

    .nav.mobile-open .nav-cta .button {
        display: flex;
        width: 100%
    }

    .hero {
        padding-top: 56px
    }

    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .hero-copy {
        text-align: center
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto
    }

    .hero-cta {
        width: 100%
    }

    .hero-actions {
        justify-content: center;
        align-self: stretch
    }

    .hero-proof {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 28px;
        font-size: 14.5px;
        align-self: stretch
    }

    .hero-proof-item {
        gap: 7px
    }

    .hero-proof-icon {
        width: 19px;
        height: 19px
    }

    .hero-proof-divider {
        display: none
    }

    .hero-product {
        min-height: 520px
    }

    .redeem-grid,
    .security-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .feature-copy {
        text-align: center
    }

    .feature-copy h2 .feature-break {
        display: none
    }

    .feature-copy>p {
        margin-left: auto;
        margin-right: auto
    }

    .check-list {
        text-align: left;
        display: inline-block
    }

    .aspiration-content {
        text-align: center
    }

    .aspiration-content h2,
    .aspiration-content h3 {
        margin-left: auto;
        margin-right: auto
    }

    .problem-timeline {
        grid-template-columns: 1fr;
        row-gap: 28px
    }

    .problem-item {
        max-width: 100%
    }
}

@media(max-width:640px) {
    .feature-summary-wrap {
        width: calc(100% - 24px)
    }

    .feature-summary {
        display: grid;
        grid-template-columns: max-content max-content;
        justify-content: start;
        column-gap: 24px;
        row-gap: 14px;
        width: 100%
    }

    .feature-summary li {
        display: flex;
        align-items: flex-start;
        white-space: nowrap;
        font-size: clamp(11.5px, 3.6vw, 14.5px);
        line-height: 1.35;
        margin: 0
    }

    .feature-summary li:before {
        flex: none;
        margin-right: 6px
    }

    .nav-wrap {
        padding: 0
    }

    .nav.container {
        width: 100%;
        max-width: none;
        margin: 0
    }

    .nav {
        height: 68px;
        padding: 0 18px;
        gap: 18px
    }

    .nav.mobile-open .nav-links {
        top: 68px;
        height: calc(100vh - 68px)
    }

    .container {
        width: min(100% - 28px, 1160px)
    }

    .hero h1 {
        font-size: clamp(32px, 9.5vw, 46px);
        margin: 16px 0 40px
    }

    .hero h1 .hero-break {
        display: none
    }

    .hero-sub {
        font-size: 21px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .button {
        width: 100%
    }

    .hero-product {
        display: none
    }

    .feature,
    .redemption,
    .real-redemptions,
    .assistant,
    .about,
    .security,
    .faq,
    .story {
        padding: 70px 0
    }

    .faq-chip {
        font-size: 12.5px;
        padding: 10px 14px
    }

    .faq-chat {
        margin-top: 28px
    }

    .faq-chat-body {
        padding: 20px 18px
    }

    .redeem-grid,
    .security-grid {
        grid-template-columns: 1fr
    }

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

    .problem-item {
        max-width: 100%
    }

    .problem-item h3 {
        margin: 14px 0 6px
    }

    .how-progress-dots {
        display: none
    }

    .how-grid {
        margin-top: 8px
    }

    .how-phone .phone-screen {
        padding: 12px 12px 8px;
        border-radius: 16px
    }

    .how-phone .phone-screen h3 {
        font-size: 17px;
        margin: 2px 0 6px
    }

    .how-phone .big-number {
        font-size: 22px
    }

    .how-phone .mp-report-amount {
        font-size: 24px
    }

    .how-phone .mini-label {
        font-size: 10px;
        letter-spacing: .05em
    }

    .how-phone .wallet-main {
        padding: 8px;
        border-radius: 12px
    }

    .how-phone .wallet-grid {
        gap: 6px;
        margin-top: 2px
    }

    .how-phone .wallet-grid>div {
        padding: 6px 5px;
        border-radius: 11px
    }

    .how-phone .wallet-grid span {
        font-size: 9.5px;
        min-height: 2.5em
    }

    .how-phone .wallet-grid strong {
        font-size: 12px
    }

    .how-phone .action-needed {
        padding: 7px;
        border-radius: 12px;
        margin-top: 4px;
        gap: 3px
    }

    .how-phone .action-needed strong {
        font-size: 12px
    }

    .how-phone .action-needed small {
        font-size: 10.5px
    }

    .how-step-circle {
        width: 32px;
        height: 32px;
        font-size: 12px
    }

    .how-step:not(:last-child) .how-step-marker:after {
        top: 32px;
        bottom: -18px
    }

    .how-step {
        grid-template-columns: 32px 1fr;
        column-gap: 14px;
        padding-bottom: 18px
    }

    .how-step.is-active h3 {
        font-size: 21px
    }

    .how .section-heading h2 {
        font-size: 28px;
        line-height: 1.15
    }

    .check-list {
        margin-top: 18px
    }

    .check-list li {
        margin: 10px 0;
        font-size: 15.5px
    }

    .how-visual-unit .float-card {
        display: none
    }

    .section-heading h2,
    .about h2 {
        font-size: 39px
    }

    .problem .section-heading h2 {
        font-size: 28px;
        line-height: 1.15
    }

    .problem-item h3 {
        font-size: 20px;
        line-height: 1.25;
        margin: 14px 0 6px
    }

    .problem-close {
        font-size: 20px;
        margin-top: 22px
    }

    .real-redemptions .section-heading p {
        font-size: 15.5px
    }

    .security .section-heading h2 {
        font-size: 28px;
        line-height: 1.15
    }

    .security-grid {
        gap: 22px;
        margin-top: 28px
    }

    .security-grid article {
        padding-top: 16px
    }

    .security-grid h3 {
        font-size: 18px
    }

    .security-grid p {
        font-size: 14.5px;
        margin-top: 4px
    }

    .feature-copy h2 {
        font-size: clamp(17px, 6.25vw - 3px, 37px)
    }

    .aspiration {
        min-height: 500px
    }

    .aspiration-content h2 {
        font-size: 41px
    }

    .aspiration-content h3 {
        font-size: 27px
    }

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

    .waitlist-form {
        flex-direction: column
    }

    .story-form-row {
        flex-direction: column
    }

    .story-form-row input {
        min-height: 48px
    }

    .story-form-row .button {
        width: 100%
    }

    .waitlist-form input {
        min-height: 48px
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: center
    }

    .footer-links {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center
    }

    .brand-name {
        font-size: 12px
    }

    .nav .brand-name {
        display: none
    }
}

@media(min-width:901px) and (max-height:860px) {
    .hero {
        padding: 20px 0
    }

    .hero-grid {
        gap: 48px
    }

    .hero h1 {
        font-size: clamp(19px, 1.6vw, 24px);
        margin: 12px 0 14px
    }

    .hero-sub {
        font-size: 17px
    }

    .hero-actions {
        margin-top: 16px
    }

    .hero-proof {
        margin-top: 14px;
        gap: 16px
    }

    .hero-product {
        --hero-scale: .78;
        margin: -69px 0
    }
}

@media(min-width:901px) and (max-height:700px) {
    .hero h1 {
        font-size: clamp(17px, 1.4vw, 21px);
        margin: 8px 0 10px
    }

    .hero-sub {
        font-size: 16px
    }

    .hero-proof {
        display: none
    }

    .hero-product {
        --hero-scale: .62;
        margin: -120px 0
    }
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 10, .78), rgba(11, 11, 10, .5) 45%, rgba(11, 11, 10, .88));
    z-index: 1;
    pointer-events: none
}

.hero-grid {
    position: relative;
    z-index: 2
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.search-tab {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    color: #999;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #2b2927
}

.search-tab.is-active {
    color: #fff;
    background: #2d2a27;
    border-color: #4c4843
}

.search-field {
    border: 1px solid #2b2927;
    border-radius: 14px;
    padding: 10px 14px;
    margin-top: 10px
}

.search-field strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px
}

.search-field strong.muted {
    color: #666;
    font-weight: 500
}

.search-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.search-field-row .search-field {
    margin-top: 0
}

.search-cta {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: #b86d3c;
    color: #fff;
    font: 600 14px "DM Sans", sans-serif;
    text-align: center;
    cursor: pointer
}

.search-reco-label {
    margin-top: 20px;
    display: block
}

.search-reco-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.reco-chip {
    font-size: 12px;
    color: #ddd;
    border: 1px solid #2b2927;
    border-radius: 20px;
    padding: 7px 12px;
    white-space: nowrap
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.feature-point {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start
}

.feature-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f6f1ea;
    border: 1px solid #e3d5c3;
    display: grid;
    place-items: center;
    color: #b86d3c;
    font-size: 18px
}

.feature-point h3 {
    font-size: 19px;
    margin: 0 0 6px;
    color: #181512
}

.feature-point p {
    font-size: 16px;
    color: #6e6761;
    margin: 0;
    line-height: 1.55
}

.rewards-hub {
    padding: 24px 0 92px
}

.rewards-hub .section-heading p {
    color: #b9b1aa
}

.hub-flow {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    padding: 40px 0;
    position: relative
}

.hub-circuit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .12;
    pointer-events: none;
    z-index: 0
}

.hub-circuit path {
    fill: none;
    stroke: #b86d3c;
    stroke-width: 1.5;
    stroke-linecap: round
}

.hub-circuit-dots circle {
    fill: #f0a468
}

.hub-outputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1
}

.hub-inputs {
    display: flex;
    flex-direction: column;
    gap: 34px;
    position: relative;
    z-index: 1
}

.hub-inputs {
    padding-right: 0
}

.hub-outputs {
    padding-left: 0
}

.hub-connector {
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible
}

.hub-connector-in {
    left: 100%;
    width: 68px;
    height: 362px
}

.hub-connector-out {
    right: 100%;
    width: 68px;
    height: 336px
}

.hub-connector-line {
    fill: none;
    stroke: rgba(184, 109, 60, .4);
    stroke-width: 2.5;
    stroke-linecap: round
}

.hub-connector-dot {
    fill: #b86d3c;
    stroke: #f6f1ea;
    stroke-width: 3
}

.hub-connector-dot--hub {
    fill: #f0a468;
    stroke: #f6f1ea;
    stroke-width: 3
}

.hub-connector-pulse {
    fill: #f0a468;
    filter: drop-shadow(0 0 3px rgba(240, 164, 104, .8))
}

.hub-chip {
    display: flex;
    align-items: center;
    gap: 18px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative
}

.hub-chip span {
    font-size: 14.5px;
    font-weight: 600;
    color: #3a352f
}

.hub-chip-line {
    flex: 1 1 auto;
    min-width: 16px;
    height: 2px;
    background: rgba(184, 109, 60, .4);
    position: relative
}

.hub-chip-line:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b86d3c;
    transform: translateY(-50%)
}

.hub-row-cards {
    display: flex;
    align-items: center;
    gap: 14px
}

.hub-card-link {
    display: none
}

.hub-output-line {
    flex: 0 0 84px;
    width: 84px;
    height: 2px;
    background: rgba(184, 109, 60, .4);
    position: relative
}

.hub-output-line:after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b86d3c;
    transform: translateY(-50%)
}

.mini-card {
    width: 150px;
    height: 98px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e0d5;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(0, 0, 0, .06)
}

.mini-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hub-core {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hub-phone {
    width: 260px;
    position: relative;
    z-index: 2
}

.hub-phone picture {
    display: block;
    width: 100%;
    height: 100%
}

.hub-pick-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(216, 134, 82, .14);
    border: 1px solid rgba(216, 134, 82, .35);
    color: #e2a274;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.hub-pick-route {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.hub-pick-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08)
}

.hub-pick-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hub-pick-arrow {
    width: 22px;
    height: 10px;
    color: #b86d3c;
    flex-shrink: 0
}

.hub-pick-title {
    font: 600 14.5px "DM Sans", sans-serif;
    color: #3a352f;
    margin: 0 0 4px
}

.hub-phone .phone-screen {
    padding: 22px 16px 16px;
    border-radius: 22px
}

.hub-output {
    display: flex;
    align-items: center;
    gap: 18px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative
}


.reward-art {
    width: 172px;
    height: 92px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(0, 0, 0, .08)
}

.reward-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.reward-art:before {
    content: "";
    position: absolute;
    inset: 0
}

.reward-art-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f0a468, #b86d3c);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5), 0 0 0 2px rgba(255, 255, 255, .85);
    font-size: 13px;
    color: #1a1310;
    z-index: 2
}

.reward-art--flight {
    background: linear-gradient(150deg, #1c3350, #0c1826)
}

.reward-art--flight:before {
    background: radial-gradient(circle at 30% 20%, rgba(184, 109, 60, .55), transparent 62%)
}

.reward-art--stay {
    background: linear-gradient(150deg, #3a2115, #1a0f0a)
}

.reward-art--stay:before {
    background: radial-gradient(circle at 30% 20%, rgba(224, 158, 90, .55), transparent 62%)
}

.reward-art--trip {
    background: linear-gradient(150deg, #232016, #120f0a)
}

.reward-art--trip:before {
    background: radial-gradient(circle at 30% 20%, rgba(226, 146, 93, .55), transparent 62%)
}

.hub-output strong {
    display: block;
    font-size: 16px;
    color: #181512
}

.hub-output small {
    display: block;
    font-size: 13.5px;
    color: #6e6761;
    margin-top: 3px
}

@media(prefers-reduced-motion:reduce) {
    .hub-connector-pulse {
        animation: none;
        display: none
    }
}

.hub-merge {
    display: none
}

@media(max-width:900px) {
    .hub-flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 20px;
        padding: 20px 0 10px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        overflow: visible
    }

    .hub-inputs,
    .hub-core,
    .hub-outputs,
    .hub-merge {
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        padding: 0 20px
    }

    .hub-core {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .hub-phone {
        width: 78%;
        max-width: 270px;
        aspect-ratio: 2077/1074
    }

    .hub-merge {
        display: block;
        height: 44px
    }

    .hub-merge-in,
    .hub-merge-out {
        height: 76px
    }

    .hub-merge-svg {
        width: 100%;
        height: 100%;
        display: block;
        overflow: visible
    }

    .hub-connector,
    .hub-circuit {
        display: none
    }

    .hub-inputs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .hub-chip {
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .hub-chip-line,
    .hub-output-line {
        display: none
    }

    .hub-row-cards {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0
    }

    .mini-card {
        width: 100%;
        height: auto;
        flex: none;
        min-width: 0;
        aspect-ratio: 1.55
    }

    .hub-card-link {
        display: block;
        width: 8px;
        height: 22px;
        margin: 0 auto;
        background-repeat: no-repeat;
        background-position: top center, bottom center, center;
        background-size: 8px 8px, 8px 8px, 2px 100%;
        background-image:
            radial-gradient(circle, #f0a468 0 45%, transparent 50%),
            radial-gradient(circle, #b86d3c 0 45%, transparent 50%),
            linear-gradient(to bottom, #f0a468, #b86d3c)
    }

    .hub-outputs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }

    .hub-output {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px
    }

    .reward-art {
        flex-shrink: 0;
        min-width: 0;
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 1.3
    }
}

@media(max-width:520px) {
    .hub-output strong {
        font-size: 13px
    }

    .hub-output small {
        font-size: 11.5px
    }
}