.landing {
    --primary: #334a7f;
    --primary-deep: #223356;
    --accent: #4d88dd;
    --warm: #f58634;
    --green: #6a8537;
    --ink: #1a2230;
    --muted: #6b7693;
    --bg: #f4f7fc;
    --card: #ffffff;
    --gradient: linear-gradient(135deg, #334a7f 0%, #223356 100%);
    --shadow-card: 0 20px 60px rgba(34, 51, 86, 0.18), 0 4px 12px rgba(34, 51, 86, 0.06);

    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

/* ── Header ─────────────────────────────────────────────── */
.landing__header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.75rem;
    background: rgba(244, 247, 252, 0.92);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(34, 51, 86, 0.08);
}

@media (min-width: 768px) {
    .landing__header {
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

.landing__brand {
    color: var(--primary-deep);
    flex-shrink: 1;
    min-width: 0;
}

.landing__brand img {
    display: block;
    width: 28px;
    height: 28px;
}

.landing__brand .landing__brand-name {
    font-size: 1.25rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .landing__brand img {
        width: 32px;
        height: 32px;
    }

    .landing__brand .landing__brand-name {
        font-size: 1.875rem;
    }
}

.landing__nav {
    display: none;
    gap: 1.5rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .landing__nav {
        display: inline-flex;
    }
}

.landing__nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}

.landing__nav-link:hover {
    color: var(--primary-deep);
}

.landing__header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.landing__header-cta .btn {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .landing__header-cta {
        gap: 0.375rem;
    }

    .landing__header-cta .btn {
        padding: 0.35rem 0.625rem;
        font-size: 0.85rem;
    }

    .landing__signin {
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .landing__header-cta {
        margin-left: 0;
    }
}

.landing__signin {
    color: var(--primary-deep);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.landing__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.landing__eyebrow--dark {
    color: var(--primary);
    border-color: rgba(51, 74, 127, 0.25);
    background: rgba(51, 74, 127, 0.06);
}

/* ── Hero ───────────────────────────────────────────────── */
.landing__hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 7rem;
    color: #fff;
    isolation: isolate;
}

.landing__hero-bg {
    position: absolute;
    inset: -10% -5% -5% -5%;
    background: var(--gradient);
    z-index: -2;
}

.landing__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(77, 136, 221, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 90%, rgba(245, 134, 52, 0.18) 0%, transparent 50%);
}

.landing__hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
}

.landing__hero-orb--a {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    left: -6rem;
    background: radial-gradient(circle, rgba(77, 136, 221, 0.7), transparent 70%);
}

.landing__hero-orb--b {
    width: 22rem;
    height: 22rem;
    bottom: -8rem;
    right: -4rem;
    background: radial-gradient(circle, rgba(245, 134, 52, 0.6), transparent 70%);
}

.landing__hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .landing__hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.landing__hero-title {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    color: #fff;
}

.landing__hero-title em {
    font-style: italic;
    background: linear-gradient(120deg, #ffd07a, #f58634 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing__hero-sub {
    font-size: 1.125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    max-width: 36rem;
    margin: 0 0 2rem;
}

.landing__hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.landing__hero-foot {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0 0;
}

.landing__hero-art {
    position: relative;
    perspective: 1400px;
}

.landing__device {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-card);
    transform: rotate(-2deg) rotateX(6deg) rotateY(-4deg);
    transition: transform 0.3s ease;
}

.landing__device:hover {
    transform: rotate(-1deg) rotateX(3deg) rotateY(-2deg);
}

.landing__device-bar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.landing__device-bar span {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #d8dee9;
}

.landing__device-bar span:nth-child(1) { background: #ff5f57; }
.landing__device-bar span:nth-child(2) { background: #febc2e; }
.landing__device-bar span:nth-child(3) { background: #28c840; }

.landing__device-screen {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.landing__device-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.875rem;
    align-items: center;
    padding: 0.75rem 0.875rem;
    background: #f7f9fd;
    border-radius: 0.875rem;
    color: var(--ink);
}

.landing__device-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    background: var(--avatar-color, var(--primary));
}

.landing__device-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.landing__device-muted {
    font-size: 0.78rem;
    color: var(--muted);
}

.landing__device-pill {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--green);
    background: rgba(106, 133, 55, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.landing__device-pill--pts {
    color: #c46e1f;
    background: rgba(245, 134, 52, 0.12);
}

.landing__device-pill--up {
    color: var(--accent);
    background: rgba(77, 136, 221, 0.12);
}

.landing__hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    display: grid;
    place-items: start center;
    padding-top: 0.5rem;
}

.landing__hero-scroll span {
    width: 0.25rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    animation: landingScroll 1.6s ease-in-out infinite;
}

@keyframes landingScroll {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(0.5rem); opacity: 0; }
}

/* ── Section primitives ─────────────────────────────────── */
.landing__section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing__section-head {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 3.5rem;
}

.landing__section-head h2,
.landing__feature-copy h2 {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--primary-deep);
    margin: 0 0 1rem;
}

/* ── The loop (3-step) ──────────────────────────────────── */
.landing__loop-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .landing__loop-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.landing__loop-steps li {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--card);
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(34, 51, 86, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing__loop-steps li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(34, 51, 86, 0.1);
}

.landing__loop-num {
    position: absolute;
    top: -1.25rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 6px 16px rgba(51, 74, 127, 0.35);
}

.landing__loop-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.landing__loop-steps h3 {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin: 0 0 0.5rem;
}

.landing__loop-steps p {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Feature sections ───────────────────────────────────── */
.landing__feature {
    background: var(--bg);
}

.landing__feature--alt {
    background: linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
}

.landing__feature--invest {
    background: #0f1730;
    color: #fff;
}

.landing__feature--invest .landing__feature-copy h2 {
    color: #fff;
}

.landing__feature--invest .landing__feature-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.landing__feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .landing__feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .landing__feature-grid--reverse > .landing__feature-art {
        order: -1;
    }
}

.landing__feature-copy p {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.landing__feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.625rem;
}

.landing__feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--ink);
}

.landing__feature-list i {
    color: var(--green);
    background: rgba(106, 133, 55, 0.12);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.875rem;
}

.landing__feature-art {
    position: relative;
    will-change: transform;
}

/* ── Bank screenshot ────────────────────────────────────── */
.landing__shot {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transform: rotate(1.5deg);
    transition: transform 0.3s ease;
}

.landing__shot:hover {
    transform: rotate(0.5deg);
}

.landing__shot-bar {
    display: flex;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: #eef2f8;
}

.landing__shot-bar span {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #d8dee9;
}

.landing__shot-body--bank {
    padding: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.landing__bank-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 0.875rem;
    background: #f7f9fd;
}

.landing__bank-row--checking {
    background: linear-gradient(135deg, #eaf1ff 0%, #f4f7fc 100%);
}

.landing__bank-row--savings {
    background: linear-gradient(135deg, #eaf6ec 0%, #f4f7fc 100%);
}

.landing__bank-row--cd {
    background: linear-gradient(135deg, #fff1e5 0%, #f4f7fc 100%);
}

.landing__bank-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.landing__bank-amount {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-deep);
}

.landing__bank-spark {
    width: 4rem;
    height: 1.75rem;
    background:
        linear-gradient(90deg,
            transparent 0%, transparent 10%,
            rgba(77, 136, 221, 0.3) 10%, rgba(77, 136, 221, 0.3) 12%,
            transparent 12%);
    background-image:
        radial-gradient(circle at 10% 60%, var(--accent) 2px, transparent 2px),
        radial-gradient(circle at 30% 40%, var(--accent) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, var(--accent) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, var(--accent) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, var(--accent) 2px, transparent 2px);
}

.landing__bank-ring {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: conic-gradient(var(--green) 78%, rgba(106, 133, 55, 0.18) 0);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--primary-deep);
}

.landing__bank-ring span {
    background: #fff;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.landing__bank-tag {
    font-weight: 600;
    color: var(--warm);
    background: rgba(245, 134, 52, 0.14);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

/* ── Goals grid ─────────────────────────────────────────── */
.landing__goal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.landing__goal-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1rem 1rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(34, 51, 86, 0.08);
    transition: transform 0.25s ease;
}

.landing__goal-card:hover {
    transform: translateY(-4px);
}

.landing__goal-card--lifted {
    transform: translateY(-1.25rem);
}

.landing__goal-card--lifted:hover {
    transform: translateY(-1.75rem);
}

.landing__goal-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.landing__goal-title {
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 0.625rem;
}

.landing__goal-meter {
    height: 0.4rem;
    background: rgba(34, 51, 86, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.landing__goal-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #6aa1f0);
    width: var(--pct, 0%);
}

.landing__goal-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.landing__goal-card--shop {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #fff;
}

.landing__goal-card--shop .landing__goal-title,
.landing__goal-card--shop .landing__goal-meta {
    color: #fff;
    opacity: 0.92;
}

/* ── Investment chart ───────────────────────────────────── */
.landing__chart {
    position: relative;
    background: #1a2543;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.landing__chart svg {
    width: 100%;
    height: 12rem;
    display: block;
}

.landing__chart-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(106, 133, 55, 0.18);
    color: #a4c970;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

/* ── Phone mockup ───────────────────────────────────────── */
.landing__phone {
    width: 16rem;
    height: 32rem;
    margin: 0 auto;
    background: #1a2230;
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 0 30px 60px rgba(34, 51, 86, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotate(-3deg);
}

.landing__phone-notch {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 1.25rem;
    background: #1a2230;
    border-radius: 0 0 1rem 1rem;
    z-index: 2;
}

.landing__phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #334a7f 0%, #15203b 100%);
    border-radius: 1.875rem;
    color: #fff;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.landing__phone-time {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.landing__phone-lock-icon {
    font-size: 2rem;
    color: var(--warm);
    margin-bottom: 0.25rem;
}

.landing__phone-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.landing__phone-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.4;
}

.landing__phone-button {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
}

.landing__feature-art--phone {
    display: flex;
    justify-content: center;
}

/* ── Calendar mock ──────────────────────────────────────── */
.landing__cal {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
    transform: rotate(-1deg);
}

.landing__cal-head {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.landing__cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.25rem;
}

.landing__cal-grid > div {
    aspect-ratio: 1 / 1.2;
    background: #f7f9fd;
    border-radius: 0.4rem;
    padding: 0.25rem;
    display: flex;
    align-items: flex-end;
    min-width: 0;
}

.landing__cal-pill {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.15rem 0.25rem;
    border-radius: 0.3rem;
    color: #fff;
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .landing__cal-head {
        font-size: 0.78rem;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .landing__cal-grid {
        gap: 0.5rem;
    }

    .landing__cal-grid > div {
        border-radius: 0.5rem;
        padding: 0.4rem;
    }

    .landing__cal-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
        border-radius: 0.4rem;
    }
}

.landing__cal-pill--chore { background: var(--accent); }
.landing__cal-pill--job { background: var(--green); }
.landing__cal-pill--allowance { background: var(--warm); }
.landing__cal-pill--challenge { background: #6f42c1; }

/* ── Final CTA ──────────────────────────────────────────── */
.landing__cta {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem;
    text-align: center;
    color: #fff;
    isolation: isolate;
}

.landing__cta-bg {
    position: absolute;
    inset: -10% -5%;
    background: var(--gradient);
    z-index: -2;
}

.landing__cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(245, 134, 52, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(77, 136, 221, 0.3) 0%, transparent 50%);
}

.landing__cta-inner {
    max-width: 36rem;
    margin: 0 auto;
}

.landing__cta h2 {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.015em;
}

.landing__cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 2rem;
}

.landing__cta-button {
    color: var(--primary-deep);
    font-weight: 600;
    padding: 0.875rem 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.landing__cta-foot {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.landing__cta-foot a {
    color: #ffd07a;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* ── Footer ─────────────────────────────────────────────── */
.landing__footer {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 1.5rem;
}

.landing__footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
}

.landing__footer-brand {
    color: #fff;
    margin-right: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.landing__footer-brand img {
    margin-right: 0.25rem;
}

.landing__footer-nav {
    display: inline-flex;
    gap: 1.5rem;
}

.landing__footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing__footer-nav a:hover {
    color: #fff;
}

.landing__footer-copy {
    margin: 0 0 0 auto;
    font-size: 0.85rem;
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .landing__hero-scroll span {
        animation: none !important;
    }

    .landing__device,
    .landing__shot,
    .landing__phone,
    .landing__cal,
    .landing__goal-card--lifted {
        transform: none !important;
    }
}
