:root {
    --ink: #132420;
    --ink-soft: #3c4d47;
    --paper: #f5f7f1;
    --paper-raised: #ffffff;
    --line: #dde3d6;
    --brand: #2d8ed6;
    --brand-deep: #164f7a;
    --brand-tint: #e5f2fc;
    --deep: #123a5c;
    --deep-darker: #0a2540;
    --deep-tint: #e7ecf2;
    --gold: #f2b705;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-card:
        0 1px 2px rgba(19, 36, 32, 0.06),
        0 12px 32px -12px rgba(19, 36, 32, 0.18);
    --shadow-soft:
        0 1px 2px rgba(19, 36, 32, 0.04), 0 8px 20px -10px rgba(19, 36, 32, 0.1);
    --container: 1160px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
h1,
h2,
h3,
h4 {
    font-family: "Sora", sans-serif;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.02em;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.mono {
    font-family: "Space Mono", monospace;
}

::selection {
    background: var(--brand-tint);
    color: var(--brand-deep);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(45, 142, 214, 0.55);
}
.btn-primary:hover {
    background: var(--brand-deep);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(19, 36, 32, 0.03);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}
.btn svg {
    flex-shrink: 0;
}

/* ---------- Nav ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 247, 241, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--brand);
}
.logo .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-tint);
}
.nav-links {
    display: flex;
    gap: 34px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
}
.nav-links a:hover {
    color: var(--ink);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-signin {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
}
.nav-signin:hover {
    color: var(--ink);
}
.burger {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

@media (max-width: 840px) {
    .nav-links {
        display: none;
    }
    .nav-signin {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    padding: 76px 0 40px;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-tint);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
}
.hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
    font-weight: 800;
}
.hero h1 .hl {
    color: var(--brand);
}
.hero p.sub {
    margin-top: 20px;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 460px;
    line-height: 1.6;
}
.hero-cta {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.trust-row {
    margin-top: 22px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-soft);
}
.trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-row svg {
    color: var(--brand);
}

/* ---------- Ticket signature element ---------- */
.ticket-stage {
    position: relative;
    height: 460px;
}
.ticket {
    position: absolute;
    width: 380px;
    background: var(--paper-raised);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.ticket-back {
    top: 10px;
    left: 26px;
    transform: rotate(-9deg);
    opacity: 0.55;
    filter: saturate(0.7);
}
.ticket-front {
    top: 52px;
    left: 0;
    transform: rotate(4deg);
    z-index: 2;
}
.ticket-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
}
.ticket-retailer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}
.ticket-badge {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 12.5px;
    color: #fff;
    background: var(--ink);
}
.ticket-status {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    background: var(--deep-tint);
    color: var(--deep-darker);
}
.ticket-status.ok {
    background: var(--brand-tint);
    color: var(--brand-deep);
}
.ticket-body {
    padding: 0 22px 6px;
}
.ticket-order {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 2px;
}
.ticket-product {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 14px;
}
.ticket-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-bottom: 16px;
}
.ticket-meta b {
    color: var(--ink);
    font-weight: 700;
    display: block;
    font-size: 13.5px;
    margin-top: 2px;
}
.perforation {
    position: relative;
    height: 0;
    border-top: 2px dashed var(--line);
    margin: 0 -2px;
}
.perforation::before,
.perforation::after {
    content: "";
    position: absolute;
    top: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--paper);
}
.ticket-back .perforation::before,
.ticket-back .perforation::after {
    background: var(--paper);
}
.perforation::before {
    left: -9px;
}
.perforation::after {
    right: -9px;
}
.ticket-foot {
    padding: 16px 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.barcode {
    height: 30px;
    width: 150px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--ink) 0 2px,
        transparent 2px 5px,
        var(--ink) 5px 6px,
        transparent 6px 10px,
        var(--ink) 10px 13px,
        transparent 13px 15px
    );
}
.ticket-points {
    text-align: right;
}
.ticket-points .num {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 19px;
    color: var(--brand-deep);
}
.ticket-points .lbl {
    font-size: 11px;
    color: var(--ink-soft);
}

.float-chip {
    position: absolute;
    background: var(--paper-raised);
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}
.float-chip.c1 {
    top: 24px;
    right: 18px;
    color: var(--brand-deep);
}
.float-chip.c2 {
    bottom: 34px;
    left: 22px;
    color: var(--deep-darker);
}
.float-chip .ico {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .ticket-stage {
        height: 400px;
        margin-top: 20px;
    }
    .ticket {
        width: 88%;
        max-width: 340px;
    }
    .ticket-front {
        left: 6%;
    }
    .ticket-back {
        left: 12%;
    }
}

/* ---------- Section shells ---------- */
section {
    padding: 88px 0;
}
.section-head {
    max-width: 600px;
    margin: 0 auto 52px;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
}
.section-head p {
    margin-top: 14px;
    font-size: 17px;
    color: var(--ink-soft);
}
.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
    display: block;
}

/* ---------- Value cards ---------- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.value-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-icon.teal {
    background: var(--brand-tint);
    color: var(--brand-deep);
}
.value-icon.coral {
    background: var(--deep-tint);
    color: var(--deep-darker);
}
.value-icon.gold {
    background: #fdf1cc;
    color: #8a6800;
}
.value-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
}

@media (max-width: 840px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- How it works ---------- */
.hiw-list {
    max-width: 980px;
    margin: 0 auto;
}
.hiw-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 52px 0;
}
.hiw-row.flip .hiw-text {
    order: 2;
}
.hiw-row.flip .hiw-visual {
    order: 1;
}
.hiw-divider {
    height: 1px;
    background: var(--line);
}
.hiw-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}
.hiw-text h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 12px;
}
.hiw-text p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 380px;
}
.hiw-visual {
    background: var(--brand-tint);
    border-radius: 24px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.hiw-card {
    background: var(--paper-raised);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 20px;
    width: 100%;
    max-width: 300px;
}
.hiw-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}
.hiw-card-row:last-child {
    border-bottom: none;
}
.hiw-card-site {
    display: flex;
    align-items: center;
    gap: 9px;
}
.hiw-favicon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}
.hiw-tracked {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-deep);
    background: var(--brand-tint);
    padding: 4px 9px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hiw-new {
    font-size: 11px;
    font-weight: 700;
    color: #8a6800;
    background: #fdf1cc;
    padding: 4px 9px;
    border-radius: 100px;
}
.hiw-gmail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.hiw-gmail-top span {
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 600;
}
.hiw-gmail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--paper);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.hiw-gmail-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--brand-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hiw-gmail-row b {
    display: block;
    font-size: 13.5px;
}
.hiw-gmail-row span {
    font-size: 11.5px;
    color: var(--ink-soft);
}
.hiw-check-badge {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hiw-trust-mini {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--ink-soft);
    font-weight: 600;
}
.hiw-trust-mini span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.hiw-trust-mini svg {
    color: var(--brand);
    flex-shrink: 0;
}
.hiw-points-card .hiw-card-row {
    border-bottom: none;
    padding: 4px 0;
}
.hiw-points-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.hiw-points-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}
.hiw-points-top b {
    font-size: 13.5px;
}
.hiw-points-top span {
    display: block;
    font-size: 11px;
    color: var(--ink-soft);
}
.hiw-points-num {
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 10px;
}
.hiw-points-num .big {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--brand);
}
.hiw-points-num .lbl {
    font-size: 11.5px;
    color: #9fb4ad;
    margin-top: 2px;
}

/* dual angled cards for "we track everything" */
.hiw-dual-stage {
    position: relative;
    width: 100%;
    height: 250px;
}
.hiw-mini-card {
    position: absolute;
    width: 230px;
    background: var(--paper-raised);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    padding: 16px;
}
.hiw-mini-card.mail-card {
    top: 2px;
    left: 2px;
    transform: rotate(-6deg);
    z-index: 1;
}
.hiw-mini-card.policy-card {
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 2;
}
.hiw-mini-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.hiw-mini-head b {
    font-size: 12.5px;
}
.hiw-mini-head span {
    display: block;
    font-size: 10.5px;
    color: var(--ink-soft);
}
.hiw-mail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
}
.hiw-mail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    margin-top: 6px;
    flex-shrink: 0;
}
.hiw-mail-row.read .hiw-mail-dot {
    background: var(--line);
}
.hiw-mail-text b {
    display: block;
    font-size: 11.5px;
    line-height: 1.3;
}
.hiw-mail-text span {
    font-size: 10.5px;
    color: var(--ink-soft);
}
.hiw-mail-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--brand-deep);
    background: var(--brand-tint);
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
}
.hiw-policy-row {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    padding: 5px 0;
}
.hiw-policy-row span:first-child {
    color: var(--ink-soft);
}
.hiw-policy-row span:last-child {
    font-weight: 700;
}

@media (max-width: 520px) {
    .hiw-dual-stage {
        height: 290px;
    }
    .hiw-mini-card {
        width: 88%;
        max-width: 220px;
    }
    .hiw-mini-card.mail-card {
        left: 0;
    }
    .hiw-mini-card.policy-card {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 840px) {
    .hiw-row,
    .hiw-row.flip {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0;
    }
    .hiw-row.flip .hiw-text {
        order: 1;
    }
    .hiw-row.flip .hiw-visual {
        order: 2;
    }
    .hiw-text p {
        max-width: none;
    }
}

/* ---------- Retailer marquee ---------- */
.retailer-band {
    padding: 44px 0;
}
.retailer-band-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 26px;
}
.marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 44px;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}
.marquee-logo-svg {
    height: 26px;
    width: auto;
    max-width: 120px;
    flex-shrink: 0;
    fill: var(--ink);
    opacity: 0.82;
}
.marquee-item.marquee-logo-only {
    gap: 0;
}

/* ---------- Rewards teaser ---------- */
.rewards-showcase {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 8px;
}
.rewards-showcase .section-tag {
    margin-bottom: 14px;
}
.rewards-showcase h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
}
.rewards-showcase p {
    font-size: 17px;
    color: var(--ink-soft);
}

/* Pin wrapper: gives scroll room for the stage to stay fixed on screen */
.rewards-pin-wrap {
    position: relative;
    height: 240vh;
}
.pin-trigger {
    position: absolute;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.rewards-stage {
    position: sticky;
    top: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    max-width: 1020px;
    margin: 0 auto;
    padding-top: 6vh;
}
.reward-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.reward-col.left {
    margin-right: -6px;
}
.reward-col.right {
    margin-left: -6px;
}
.reward-col.left .reward-float:first-child {
    transform: rotate(-7deg);
}
.reward-col.left .reward-float:last-child {
    transform: rotate(5deg);
    margin-top: 6px;
}
.reward-col.right .reward-float:first-child {
    transform: rotate(6deg);
}
.reward-col.right .reward-float:last-child {
    transform: rotate(-5deg);
    margin-top: 6px;
}

.reward-float {
    width: 150px;
    background: var(--paper-raised);
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reward-float.pin-in {
    opacity: 1;
}
.reward-col.left .reward-float:first-child.pin-in {
    transform: rotate(-7deg);
}
.reward-col.left .reward-float:last-child.pin-in {
    transform: rotate(5deg);
}
.reward-col.right .reward-float:first-child.pin-in {
    transform: rotate(6deg);
}
.reward-col.right .reward-float:last-child.pin-in {
    transform: rotate(-5deg);
}
.reward-float:hover {
    transform: rotate(0deg) translateY(-4px) !important;
}
.rf-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rf-icon.rc-blue {
    background: var(--brand-tint);
    color: var(--brand-deep);
}
.rf-icon.rc-gold {
    background: #fdf1cc;
    color: #b8860b;
}
.rf-icon.rc-teal {
    background: #ddf3ea;
    color: #0f6e56;
}
.rf-icon.rc-navy {
    background: var(--deep-tint);
    color: var(--deep-darker);
}
.rf-name {
    font-weight: 700;
    font-size: 13.5px;
}
.rf-pts {
    font-size: 11.5px;
    color: var(--ink-soft);
    margin-top: 3px;
}

.reward-phone {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 266px;
    background: var(--ink);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 54px -18px rgba(19, 36, 32, 0.4);
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.62);
    transition:
        opacity 0.8s ease,
        filter 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reward-phone.pin-in {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}
.reward-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 22px;
    background: var(--ink);
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.reward-phone-screen {
    background: var(--paper);
    border-radius: 32px;
    padding: 32px 16px 20px;
}
.reward-phone-screen .wallet-card.mini {
    padding: 20px;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reward-phone-screen .wallet-card.mini.pin-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reward-phone-screen .wallet-card.mini .wallet-balance {
    font-size: 28px;
    margin-top: 6px;
}
.reward-phone-screen .wallet-card.mini .wallet-rewards {
    display: none;
}
.reward-phone-screen .ticket {
    position: static;
    width: 100%;
    margin-top: 16px;
    transform: none;
}

@media (max-width: 900px) {
    .rewards-pin-wrap {
        height: auto;
    }
    .rewards-stage {
        position: relative;
        top: 0;
        flex-direction: column;
        gap: 24px;
        max-width: 420px;
        padding-top: 0;
    }
    .reward-phone {
        order: -1;
    }
    .reward-col {
        flex-direction: row;
        gap: 14px;
        margin: 0;
    }
    .reward-col .reward-float {
        transform: none !important;
        margin-top: 0 !important;
        flex: 1;
    }
    .reward-phone,
    .reward-float,
    .reward-phone-screen .wallet-card.mini {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
@media (max-width: 420px) {
    .reward-col {
        flex-direction: column;
    }
}

.wallet-card {
    background: var(--ink);
    border-radius: 26px;
    padding: 34px;
    color: #fff;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.wallet-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 142, 214, 0.35),
        transparent 70%
    );
}
.wallet-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.wallet-label {
    font-size: 13px;
    color: #9fb4ad;
    font-weight: 600;
}
.wallet-balance {
    font-family: "Sora", sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
}
.wallet-sub {
    font-size: 14px;
    color: #9fb4ad;
    margin-top: 4px;
}
.wallet-progress {
    margin-top: 28px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.wallet-progress i {
    display: block;
    height: 100%;
    width: 64%;
    background: var(--brand);
    border-radius: 100px;
}
.wallet-foot {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #9fb4ad;
    position: relative;
    z-index: 1;
}
.wallet-rewards {
    margin-top: 26px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.wallet-rewards span {
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
}
.wallet-rewards span.wr-blue {
    background: var(--brand);
    color: #fff;
}
.wallet-rewards span.wr-gold {
    background: #f2b705;
    color: #4a3800;
}

/* ---------- Retailer checker ---------- */
.checker-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.checker-list-wrap {
    max-width: 420px;
    margin: 0 auto 36px;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
}
.checker-list {
    max-height: 320px;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 4px;
}
.checker-list::-webkit-scrollbar {
    width: 6px;
}
.checker-list::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 100px;
}
.checker-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: background 0.15s ease;
}
.checker-list-item:hover {
    background: var(--paper);
}
.checker-list-item.active {
    background: var(--brand-tint);
    color: var(--brand-deep);
}

.checker-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 10.5px;
    color: #fff;
    flex-shrink: 0;
}
.checker-result-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}
.checker-card {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 36px 40px;
    flex-shrink: 0;
}
.checker-card.empty {
    text-align: center;
    color: var(--ink-soft);
    font-size: 15px;
    padding: 56px 40px;
}
.checker-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.checker-card-head .checker-badge {
    width: 44px;
    height: 44px;
    font-size: 15px;
}
.checker-card-head h3 {
    font-size: 21px;
    font-weight: 800;
}
.checker-card-head span {
    font-size: 13px;
    color: var(--ink-soft);
}
.checker-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}
.checker-fact {
    background: var(--paper);
    border-radius: 14px;
    padding: 16px 18px;
}
.checker-fact-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.checker-fact-label svg {
    color: var(--brand);
    flex-shrink: 0;
}
.checker-fact-value {
    font-size: 15.5px;
    font-weight: 700;
}
.checker-refund {
    background: var(--brand-tint);
    border-radius: 18px;
    padding: 22px 24px;
}
.checker-refund-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-deep);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}
.checker-refund-sub {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-bottom: 18px;
    line-height: 1.5;
}
.checker-bar-row {
    margin-bottom: 14px;
}
.checker-bar-row:last-child {
    margin-bottom: 0;
}
.checker-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}
.checker-bar-track {
    height: 10px;
    border-radius: 100px;
    background: rgba(45, 142, 214, 0.18);
    overflow: hidden;
}
.checker-bar-fill {
    height: 100%;
    border-radius: 100px;
}
.checker-bar-fill.stated {
    background: var(--brand);
}
.checker-bar-fill.actual {
    background: var(--deep);
}
.checker-disclaimer {
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 24px auto 0;
}

.checker-review {
    width: 200px;
    flex-shrink: 0;
    margin-top: 18px;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}
.checker-review.left {
    transform: rotate(-3deg);
}
.checker-review.right {
    transform: rotate(3deg);
}
.checker-review-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}
.checker-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    color: #fff;
    background: var(--ink-soft);
}
.checker-review-name {
    font-size: 12.5px;
    font-weight: 700;
}
.checker-review-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: var(--ink-soft);
}
.checker-review-stars {
    color: #d6a700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.checker-review-text {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.checker-review-source {
    margin-top: 10px;
    font-size: 10.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .checker-result-row {
        flex-direction: column;
        align-items: center;
    }
    .checker-review {
        width: 100%;
        max-width: 420px;
        transform: none !important;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .checker-facts {
        grid-template-columns: 1fr;
    }
    .checker-card {
        padding: 28px 22px;
    }
}

/* ---------- Testimonials ---------- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.testi-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.testi-card .stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-card p.quote {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 22px;
}
.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}
.testi-who b {
    display: block;
    font-size: 14px;
}
.testi-who span {
    font-size: 12.5px;
    color: var(--ink-soft);
}
@media (max-width: 840px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Final CTA ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--brand-deep), #0e2a3e);
    border-radius: 32px;
    padding: 70px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -120px;
    transform: translateX(-50%);
    width: 480px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 142, 214, 0.3),
        transparent 70%
    );
}
.cta-band h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    position: relative;
    z-index: 1;
    color: #fff;
}
.cta-band p {
    color: #bfdcf0;
    margin-top: 14px;
    font-size: 16.5px;
    position: relative;
    z-index: 1;
}
.cta-band .hero-cta {
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.cta-band .trust-row {
    justify-content: center;
    color: #9fb4ad;
    position: relative;
    z-index: 1;
}
.cta-band .trust-row svg {
    color: #8fc5ea;
}

/* ---------- Footer ---------- */
footer {
    padding: 60px 0 36px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand p {
    margin-top: 14px;
    font-size: 14px;
    color: var(--ink-soft);
    max-width: 260px;
    line-height: 1.6;
}
.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 12px;
}
.footer-col a:hover {
    color: var(--brand);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 840px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-alt {
    background: var(--paper-raised);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
