/* ONEWallet landing — cash.app inspired interactive page */

:root {
    --ink: #0b0b0f;
    --ink-soft: #16161d;
    --paper: #f6f5f1;
    --white: #ffffff;
    --red: #f0413e;
    --red-deep: #d4322f;
    --blue: #1670f0;
    --blue-deep: #0d5cd0;
    --yellow: #ffc940;
    --green: #00c244;
    --muted: rgba(255, 255, 255, 0.64);
    --radius-panel: 40px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 11, 15, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.logo img { width: 34px; height: 34px; border-radius: 9px; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-cta {
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25); }

/* Language selector */
.language-selector { position: relative; }

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 14px;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.language-btn:hover { background: rgba(255, 255, 255, 0.18); }

.language-arrow { font-size: 0.7rem; transition: transform 0.2s ease; }
.language-selector.active .language-arrow { transform: rotate(180deg); }

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #1b1b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    padding: 9px 12px;
    border-radius: 10px;
    transition: background 0.15s ease;
}

.language-option:hover { background: rgba(255, 255, 255, 0.08); }
.language-option.active { background: rgba(255, 255, 255, 0.12); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 140px 24px 0;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -30%; left: 50%;
    width: 1200px; height: 900px;
    transform: translateX(-50%);
    background:
        radial-gradient(closest-side at 30% 40%, rgba(240, 65, 62, 0.28), transparent 70%),
        radial-gradient(closest-side at 70% 35%, rgba(22, 112, 240, 0.3), transparent 70%),
        radial-gradient(closest-side at 50% 70%, rgba(255, 201, 64, 0.14), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }

.hero-title {
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.045em;
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-sub {
    margin: 24px auto 0;
    max-width: 540px;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    line-height: 1.55;
    color: var(--muted);
    animation: rise 0.9s 0.12s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-cta-row {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 14px;
    animation: rise 0.9s 0.22s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.btn-primary {
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 34px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover { transform: scale(1.06); box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: scale(1.04); }

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero stage: phone + floating cards */
.hero-stage {
    position: relative;
    margin-top: 64px;
    height: 840px;
    animation: rise 1s 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

/* Phone frame (shared) */
.phone {
    width: 300px;
    border-radius: 46px;
    background: #15151a;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 30px 80px rgba(0, 0, 0, 0.55);
}

.phone-screen {
    border-radius: 37px;
    overflow: hidden;
    aspect-ratio: 1080 / 2400;
    background: #0c0c0e;
}

.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

.phone-hero {
    position: absolute;
    left: 50%;
    top: 60px;
    width: 370px;
    margin-left: -185px;
}

/* Floating decorative cards — real-card proportions (85.6 x 54mm) */
.float-card {
    position: absolute;
    width: 290px;
    aspect-ratio: 856 / 540;
    border-radius: 17px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: var(--white);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 24px 48px rgba(0, 0, 0, 0.5);
    animation: bob 5s ease-in-out infinite;
}

/* Glossy light sweep across the plastic */
.float-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 32%,
        rgba(255, 255, 255, 0.22) 44%,
        rgba(255, 255, 255, 0.06) 52%,
        transparent 62%);
    pointer-events: none;
}

.fc-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-logo {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: currentColor;
    font-size: 1.15rem;
    font-weight: 900;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.card-green .fc-logo { color: #008a37; }
.card-red .fc-logo { color: #c52320; }
.card-yellow .fc-logo { color: #8a6400; }

.fc-brand {
    display: flex;
    flex-direction: column;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.fc-brand small {
    font-size: 0.84rem;
    font-weight: 600;
    opacity: 0.75;
}

/* Barcode band (loyalty / boarding cards) — printed white strip bleeding to the card edges */
.fc-barcode {
    background: #fff;
    margin: 0 -20px -18px;
    padding: 8px 24px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.fc-barsvg {
    display: block;
    width: 100%;
    height: 26px;
}

.fc-digits {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: #222;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* QR block (red card) */
.fc-qr-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.fc-qr-digits {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.85;
    font-variant-numeric: tabular-nums;
}

.fc-qr {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 8px;
    padding: 7px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}

.fc-qr svg { display: block; width: 100%; height: 100%; }

/* Credit-card details (blue card) */
.fc-chip {
    width: 47px; height: 35px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f3d27a, #d9a93c 55%, #f0cd72);
    box-shadow: inset 0 0 0 1px rgba(120, 84, 10, 0.45);
    position: relative;
}

.fc-chip::after {
    content: '';
    position: absolute;
    inset: 4px 3px;
    border: 1px solid rgba(120, 84, 10, 0.45);
    border-radius: 3px;
}

.fc-wave {
    width: 32px; height: 32px;
    margin-left: auto;
    opacity: 0.85;
}

.fc-number {
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.fc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.fc-holder {
    font-size: 1rem;
    font-weight: 800;
}

.fc-tier {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0.8;
}

.card-green { background: linear-gradient(135deg, #00a843, #00c95a); top: 23%; left: 6%; animation-delay: 0s; rotate: -7deg; }
.card-red { background: linear-gradient(135deg, #e02825, #f4534f); top: 63%; left: 3%; animation-delay: 1.2s; rotate: 5deg; }
.card-blue { background: linear-gradient(135deg, #0d5cd0, #2e85ff); top: 29%; right: 7%; animation-delay: 0.6s; rotate: 6deg; }
.card-yellow { background: linear-gradient(135deg, #f0a800, #ffc940); top: 69%; right: 12%; animation-delay: 1.8s; rotate: -5deg; }
.card-yellow { color: #4a3500; }
.card-yellow .fc-brand small { opacity: 0.85; }

@keyframes bob {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -16px; }
}

/* ---------- Marquee ---------- */
.marquee {
    overflow: hidden;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--ink-soft);
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 48px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: var(--white);
}

.marquee-item .dot { color: var(--yellow); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Panels ---------- */
.panel {
    max-width: 1240px;
    margin: 28px auto;
    padding: clamp(48px, 7vw, 96px) clamp(28px, 6vw, 88px) 0;
    border-radius: var(--radius-panel);
    overflow: hidden;
}

.panel-red { background: linear-gradient(160deg, var(--red), var(--red-deep)); }
.panel-blue { background: linear-gradient(160deg, var(--blue), var(--blue-deep)); }
.panel-cream { background: var(--paper); color: var(--ink); }
.panel-dark { background: var(--ink-soft); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }

.panel-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.panel-flip { flex-direction: row-reverse; }

.panel-copy { flex: 1; padding-bottom: clamp(48px, 7vw, 96px); }

.panel-copy h2 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.panel-copy p {
    margin-top: 20px;
    max-width: 420px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
    opacity: 0.82;
}

.panel-visual { flex-shrink: 0; }

.panel .phone {
    width: clamp(240px, 26vw, 320px);
    border-radius: 46px 46px 0 0;
    padding-bottom: 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.panel .phone-screen {
    border-radius: 37px 37px 0 0;
    aspect-ratio: 1080 / 2000;
}

.panel .phone-screen img { object-position: top; }

.tilt-left { transform: rotate(4deg) translateY(40px); }
.tilt-right { transform: rotate(-4deg) translateY(40px); }

.panel.visible .tilt-left,
.panel.visible .tilt-right { transform: rotate(0deg) translateY(12px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Tour (carousel) ---------- */
.tour {
    padding: clamp(72px, 9vw, 130px) 24px 0;
    text-align: center;
}

.tour-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tour-hint { margin-top: 12px; color: var(--muted); font-size: 1rem; }

.tour-stage {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.phone-tour { touch-action: pan-y; cursor: grab; user-select: none; -webkit-user-select: none; }
.phone-tour.dragging { cursor: grabbing; }

.phone-tour .phone-screen { position: relative; }

.tour-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tour-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    pointer-events: none;
}

.tour-caption {
    margin-top: 24px;
    font-size: 1.05rem;
    font-weight: 700;
    min-height: 1.5em;
}

.tour-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tour-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.tour-dots button.active { background: var(--white); transform: scale(1.3); }

/* ---------- Stats ---------- */
.stats {
    max-width: 980px;
    margin: clamp(72px, 9vw, 130px) auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.stat-star { color: var(--yellow); margin-left: 4px; }

.stat-label {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ---------- Reviews ---------- */
.reviews {
    margin-top: clamp(72px, 9vw, 130px);
    overflow: hidden;
}

.reviews h2 {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
    padding: 0 24px;
}

.review-marquee { display: flex; flex-direction: column; gap: 20px; }

.review-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.review-row[data-dir="right"] { animation-direction: reverse; }
.review-row:hover { animation-play-state: paused; }

.review-card {
    width: 360px;
    flex-shrink: 0;
    background: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    text-align: left;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 0.95rem;
}

.review-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }

.review-card p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ---------- Product Hunt ---------- */
.product-hunt {
    margin-top: clamp(56px, 7vw, 90px);
    display: flex;
    justify-content: center;
}

/* ---------- CTA ---------- */
.cta { padding: clamp(56px, 7vw, 90px) 24px; }

.cta-box {
    max-width: 1240px;
    margin: 0 auto;
    background: linear-gradient(150deg, #1c1c24, #101015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-panel);
    padding: clamp(56px, 8vw, 110px) 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(closest-side at 20% 30%, rgba(240, 65, 62, 0.18), transparent 70%),
        radial-gradient(closest-side at 80% 70%, rgba(22, 112, 240, 0.2), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.cta-box > * { position: relative; }

.cta-box h2 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.cta-box p {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.store-btn img {
    height: 52px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.store-btn:hover img { transform: scale(1.06); }

.qr-btn {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}

.qr-btn:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.06); }

/* ---------- QR Modal ---------- */
.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.qr-modal.active { opacity: 1; visibility: visible; }

.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.qr-modal-content {
    position: relative;
    background: var(--white);
    color: var(--ink);
    border-radius: 28px;
    padding: 40px;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.qr-modal.active .qr-modal-content { transform: scale(1); }

.qr-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    color: var(--ink);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.qr-modal-close:hover { opacity: 1; }

.qr-modal-body { text-align: center; }
.qr-modal-body img { width: 220px; height: 220px; margin: 0 auto 16px; }
.qr-modal-body p { font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 64px 24px 48px;
    background: var(--ink);
}

.footer-inner { max-width: 1240px; margin: 0 auto; }

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
}

.footer-logo img { width: 30px; height: 30px; border-radius: 8px; }

.footer-tagline {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social { margin-top: 20px; display: flex; gap: 12px; }

.footer-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.1); }

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }

.footer-section a {
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-section a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .panel-inner, .panel-flip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .panel-copy { padding-bottom: 0; }
    .panel-copy p { margin-left: auto; margin-right: auto; }

    .panel .phone { width: min(70vw, 280px); }

    .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
    .stat:nth-child(3) { grid-column: 1 / -1; }

    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand-section { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .hero { padding-top: 110px; }
    .hero-stage { height: 640px; }

    .phone { width: 240px; }
    .phone-hero { top: 32px; width: 280px; margin-left: -140px; }

    .float-card { width: 200px; padding: 12px 14px; border-radius: 12px; }
    .fc-logo { width: 29px; height: 29px; font-size: 0.85rem; }
    .fc-brand { font-size: 0.78rem; }
    .fc-brand small { font-size: 0.64rem; }
    .fc-barcode { margin: 0 -14px -12px; padding: 6px 16px 5px; gap: 2px; }
    .fc-barsvg { height: 17px; }
    .fc-digits { font-size: 0.5rem; letter-spacing: 0.24em; }
    .fc-chip { width: 33px; height: 25px; }
    .fc-number { font-size: 0.86rem; }
    .fc-holder { font-size: 0.72rem; }
    .fc-tier { font-size: 0.6rem; }
    .fc-qr { width: 52px; height: 52px; padding: 5px; border-radius: 6px; }
    .fc-qr-digits { font-size: 0.5rem; }
    .card-green { left: -2%; }
    .card-red { left: 1%; }
    .card-blue { right: -2%; }
    .card-yellow { right: 0; }

    .hero-cta-row { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: min(100%, 300px); justify-content: center; text-align: center; }

    .marquee-item { font-size: 1.1rem; }

    .panel { margin: 16px 14px; border-radius: 30px; }

    .review-card { width: 290px; padding: 20px; }

    .header-cta { display: none; }
}

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

    .hero-title, .hero-sub, .hero-cta-row, .hero-stage { animation: none; }
    .float-card { animation: none; }
    .marquee-track, .review-row { animation: none; }
    .review-row, .marquee-track { flex-wrap: wrap; width: auto; justify-content: center; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
