/* =============================================================
 * Fins — v2 marketing landing (monarch.com-inspired)
 *
 * DESIGN SPEC (compact, per design-md skill)
 *
 *  Mission       Convert visitors into Fins users with a calm,
 *                premium, finance-grade marketing site.
 *  Brand         Fins · credit-card rewards intelligence
 *  Tone          Warm, confident, modern. Plain language.
 *  Palette       cream #F6F1E6 (bg)  · ivory #FBF7EE (alt)
 *                ink   #0B1F1A (text) · muted #5B6A66
 *                emerald #1D6B4A (accent) · deep #144F37
 *                gold  #E8B948 (highlight) · sand #ECE5D2
 *  Type          Display: "Fraunces", serif (400/500)
 *                Body:    "Inter",    sans (400/500/600/700)
 *                Hero:    clamp(2.8rem, 6.2vw, 5.4rem) / 0.98
 *                H2:      clamp(2rem,   4vw,  3.2rem) / 1.05
 *                Body:    1.05rem / 1.6
 *  Radii         10 / 16 / 22 / 999 (pills)
 *  Shadow        sm 0 1px 2px rgba(11,31,26,.06)
 *                md 0 12px 32px rgba(11,31,26,.08)
 *                lg 0 30px 80px rgba(11,31,26,.12)
 *  Motion        160ms ease for hovers, 320ms for tab swaps
 *  Grid          max 1180px content; 24px / 80px section padding
 *  A11y          WCAG AA color contrast; focus ring = emerald 3px
 *                offset 3px; reduced-motion respected
 * ============================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --v2-bg:        #F6F1E6;
    --v2-bg-alt:    #FBF7EE;
    --v2-sand:      #ECE5D2;
    --v2-ink:       #0B1F1A;
    --v2-ink-soft:  #1c3530;
    --v2-muted:     #2F3A37;
    --v2-emerald:   #1D6B4A;
    --v2-emerald-d: #144F37;
    --v2-gold:      #E8B948;
    --v2-line:      rgba(11, 31, 26, 0.10);
    --v2-line-soft: rgba(11, 31, 26, 0.06);
    --v2-shadow-sm: 0 1px 2px rgba(11, 31, 26, 0.06);
    --v2-shadow-md: 0 12px 32px rgba(11, 31, 26, 0.08);
    --v2-shadow-lg: 0 30px 80px rgba(11, 31, 26, 0.12);
    --v2-radius:    16px;
    --v2-radius-lg: 22px;
    --v2-max:       1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.v2 {
    margin: 0;
    background: var(--v2-bg);
    color: var(--v2-ink);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.v2 a { color: var(--v2-emerald-d); text-decoration: none; }
.v2 a:hover { color: var(--v2-ink); }

.v2 .container {
    max-width: var(--v2-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* -------- skip link / a11y -------- */
.v2 .skip {
    position: absolute; left: 1rem; top: 1rem;
    padding: 0.5rem 0.85rem;
    background: var(--v2-ink); color: var(--v2-bg);
    border-radius: 8px; font-weight: 600; font-size: 0.9rem;
    transform: translateY(-200%); transition: transform 120ms ease;
    z-index: 100;
}
.v2 .skip:focus { transform: translateY(0); }

.v2 :focus-visible {
    outline: 3px solid var(--v2-emerald);
    outline-offset: 3px;
    border-radius: 6px;
}

/* -------- promo banner -------- */
.v2 .promo {
    background: var(--v2-ink);
    color: var(--v2-bg);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}
.v2 .promo strong { color: var(--v2-gold); font-weight: 600; }
.v2 .promo a { color: var(--v2-bg); text-decoration: underline; text-underline-offset: 3px; }

/* -------- nav -------- */
.v2 .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 241, 230, 0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.v2 .nav.is-scrolled {
    background: rgba(251, 247, 238, 0.95);
    border-bottom-color: var(--v2-line-soft);
    box-shadow: var(--v2-shadow-sm);
}
.v2 .nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.85rem 0;
}
.v2 .nav-brand {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-weight: 700; font-size: 1.2rem; color: var(--v2-ink);
    letter-spacing: -0.01em;
}
.v2 .nav-brand .mark {
    display: inline-grid; place-items: center;
    width: 32px; height: 32px;
}
.v2 .nav-brand .mark svg,
.v2 .nav-brand .mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.v2 .nav-links {
    display: flex; gap: 1.75rem;
    margin-left: 1rem;
    list-style: none; padding: 0;
}
.v2 .nav-links a {
    color: var(--v2-ink-soft); font-weight: 500; font-size: 0.95rem;
    padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.v2 .nav-links a:hover { color: var(--v2-emerald-d); border-bottom-color: var(--v2-emerald); }
.v2 .nav-cta {
    margin-left: auto;
    display: flex; gap: 0.6rem; align-items: center;
}

/* -------- buttons -------- */
.v2 .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-family: inherit; font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease,
                transform 80ms ease, box-shadow 160ms ease;
}
.v2 .btn:active { transform: translateY(1px); }
.v2 .btn-primary {
    background: var(--v2-ink); color: var(--v2-bg);
}
.v2 .btn-primary:hover { background: var(--v2-emerald-d); color: #fff; }
.v2 .btn-emerald {
    background: var(--v2-emerald); color: #fff;
}
.v2 .btn-emerald:hover { background: var(--v2-emerald-d); box-shadow: var(--v2-shadow-md); }
.v2 .btn-ghost {
    background: transparent; color: var(--v2-ink); border-color: var(--v2-line);
}
.v2 .btn-ghost:hover { border-color: var(--v2-ink); background: rgba(11,31,26,0.04); }
.v2 .btn-text {
    background: transparent; color: var(--v2-ink); padding: 0.5rem 0.6rem;
}
.v2 .btn-text:hover { color: var(--v2-emerald-d); }
.v2 .btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }

/* -------- typography helpers -------- */
.v2 .display { font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
.v2 .eyebrow {
    text-transform: uppercase; letter-spacing: 0.16em;
    font-size: 0.78rem; font-weight: 600; color: var(--v2-emerald-d);
    margin: 0;
}
.v2 .muted { color: var(--v2-muted); }

/* -------- hero -------- */
.v2 .hero {
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.v2 .hero > .container { position: relative; z-index: 2; }
.v2 .hero > .press { position: relative; z-index: 2; }

/* Hero background layer: optional <video> + animated CSS fallback + cream veil */
.v2 .hero-bg {
    position: absolute; inset: 0;
    z-index: 0; pointer-events: none;
    overflow: hidden;
}
.v2 .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: saturate(0.9) contrast(0.95);
}
/* Animated gradient + drifting orbs fallback (always on; sits behind video if present) */
.v2 .hero-bg-motion {
    position: absolute; inset: -10%;
    background:
        radial-gradient(40% 50% at 18% 28%, rgba(29, 107, 74, 0.28), transparent 70%),
        radial-gradient(36% 46% at 82% 22%, rgba(232, 185, 72, 0.22), transparent 70%),
        radial-gradient(50% 60% at 70% 78%, rgba(20, 79, 55, 0.30), transparent 72%),
        radial-gradient(45% 55% at 12% 82%, rgba(232, 185, 72, 0.18), transparent 70%);
    filter: blur(20px);
    animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
    0%   { transform: translate3d(-2%, -1%, 0) scale(1.02); }
    50%  { transform: translate3d(2%, 1%, 0) scale(1.06); }
    100% { transform: translate3d(-1%, 2%, 0) scale(1.03); }
}
/* Cream veil so hero text always sits on calm bg */
.v2 .hero-bg-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(246, 241, 230, 0.55) 0%,
        rgba(246, 241, 230, 0.72) 55%,
        rgba(246, 241, 230, 0.92) 100%);
}
.v2 .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
}
.v2 .hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.8rem, 6.2vw, 5.4rem);
}
.v2 .hero h1 em { color: var(--v2-emerald-d); font-style: italic; font-weight: 500; }
.v2 .hero-sub {
    margin: 0 0 2rem;
    font-size: 1.18rem; color: var(--v2-ink-soft);
    max-width: 36ch;
}
.v2 .hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.v2 .hero-trust {
    margin: 1.5rem 0 0;
    display: flex; gap: 1rem; align-items: center;
    font-size: 0.85rem; color: var(--v2-muted);
}
.v2 .hero-trust .stars { color: var(--v2-gold); letter-spacing: 1px; }

/* -------- Chromeless live mocks (no fake browser bar) -------- */
.v2 .mock {
    background: transparent;
    border-radius: var(--v2-radius-lg);
    border: 0;
    box-shadow: none;
    overflow: visible;
    transform: none;
}
/* Hide any legacy fake-browser bar markup left in the page. */
.v2 .mock-bar { display: none !important; }
.v2 .mock-body { padding: 0; }
.v2 .mock-body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--v2-shadow-lg);
    background: #fff;
}
.v2 .mock-shot .mock-body { padding: 0; }
.v2 .mock-shot .mock-body img {
    border-radius: 14px;
    box-shadow: var(--v2-shadow-lg);
}

/* -------- Cropped screenshot frames --------
   Show only a region (cx,cy,cw,ch in source-image pixels) of a 1440-wide
   screenshot. Lets us reuse one app capture across many mocks while only
   exposing the relevant component (a single card, the chart, etc.).
*/
.v2 .shot-crop {
    position: relative;
    width: 100%;
    aspect-ratio: calc(var(--cw)) / calc(var(--ch));
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--v2-shadow-lg);
}
.v2 .shot-crop img {
    position: absolute;
    /* image natural width is var(--iw) (default 1440); scale so cw px fills container width */
    width: calc(var(--iw, 1440) / var(--cw) * 100%);
    height: auto;
    max-width: none;
    left: calc(var(--cx) * -100% / var(--cw));
    top: calc(var(--cy) * -100% / var(--ch));
}
.v2 .mock-shot .mock-body .shot-crop { border-radius: 8px; }

/* -------- CSV mock (replaces SVG with real-looking buttons) -------- */
.v2 .mock-csv .mock-body { padding: 1.5rem; }
.v2 .csv-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: 240px;
}
.v2 .csv-card-left,
.v2 .csv-card-right {
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.v2 .csv-card-left {
    background: var(--v2-bg-alt);
    border: 1px solid var(--v2-line-soft);
}
.v2 .csv-card-right {
    background: linear-gradient(155deg, var(--v2-emerald) 0%, var(--v2-emerald-d) 100%);
    color: #F6F1E6;
}
.v2 .csv-eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--v2-ink);
}
.v2 .csv-eyebrow-light { color: #fff; }
.v2 .csv-sub {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: var(--v2-muted);
}
.v2 .csv-sub-gold { color: var(--v2-gold); font-weight: 500; }
.v2 .csv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.25rem 0 0.75rem;
}
.v2 .csv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.v2 .csv-btn svg { flex-shrink: 0; }
.v2 .csv-btn-primary {
    background: var(--v2-ink);
    color: #F6F1E6;
    border: 1px solid var(--v2-ink);
    box-shadow: 0 2px 0 rgba(11, 31, 26, 0.18), 0 6px 18px -8px rgba(11, 31, 26, 0.4);
}
.v2 .csv-btn-primary:hover { transform: translateY(-1px); }
.v2 .csv-btn-ghost {
    background: transparent;
    color: var(--v2-ink);
    border: 1px solid var(--v2-line);
}
.v2 .csv-btn-ghost:hover { background: rgba(11, 31, 26, 0.04); }
.v2 .csv-meta {
    margin: auto 0 0;
    font-size: 0.75rem;
    color: var(--v2-muted);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    line-height: 1.5;
}
.v2 .csv-meta span { opacity: 0.7; }
.v2 .csv-bullets {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    font-size: 0.88rem;
}
.v2 .csv-bullets li {
    position: relative;
    padding-left: 1.4rem;
}
.v2 .csv-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--v2-gold);
    font-weight: 700;
}

/* -------- press strip -------- */
.v2 .press {
    border-top: 1px solid var(--v2-line-soft);
    border-bottom: 1px solid var(--v2-line-soft);
    margin-top: 3rem;
    padding: 2rem 0;
    background: var(--v2-bg-alt);
}
.v2 .press-row {
    display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center;
    justify-content: space-between;
    color: var(--v2-ink);
}
.v2 .press-row .label {
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
    color: var(--v2-ink);
}
.v2 .press-row .logo {
    font-family: "Fraunces", serif; font-weight: 600;
    font-size: 1.2rem; color: var(--v2-ink);
}

/* -------- generic section -------- */
.v2 section { padding: 6rem 0; }
.v2 .section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.v2 .section-head h2 {
    font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.02em;
    margin: 0.75rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05;
}
.v2 .section-head p { margin: 0; color: var(--v2-muted); font-size: 1.1rem; }
.v2 .section-head p.eyebrow { color: var(--v2-emerald-d); font-size: 0.78rem; }

/* -------- "home base" intro -------- */
.v2 .homebase {
    background: var(--v2-sand);
    text-align: center;
}
.v2 .homebase h2 {
    font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.02em;
    margin: 0.75rem auto 1.25rem;
    font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02;
    max-width: 18ch;
}
.v2 .homebase p { max-width: 60ch; margin: 0 auto 2.5rem; color: var(--v2-ink-soft); font-size: 1.1rem; }

/* -------- tabbed features -------- */
.v2 .feature-tabs {
    background: var(--v2-bg-alt);
}
.v2 .tab-bar {
    display: inline-flex; gap: 0.4rem;
    padding: 0.4rem; margin: 0 auto 3rem;
    background: #fff; border: 1px solid var(--v2-line-soft);
    border-radius: 999px;
    box-shadow: var(--v2-shadow-sm);
}
.v2 .tab-bar-wrap { text-align: center; }
.v2 .tab-btn {
    background: transparent; border: none;
    padding: 0.65rem 1.25rem; border-radius: 999px;
    font: 600 0.95rem "Inter", sans-serif; color: var(--v2-muted);
    cursor: pointer; transition: background 160ms ease, color 160ms ease;
}
.v2 .tab-btn:hover { color: var(--v2-ink); }
.v2 .tab-btn[aria-selected="true"] {
    background: var(--v2-ink); color: var(--v2-bg);
}
.v2 .tab-panel { display: none; }
.v2 .tab-panel.is-active { display: grid; animation: v2-fade 320ms ease; }
@keyframes v2-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.v2 .tab-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}
.v2 .tab-panel h3 {
    font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.01em;
    font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.08;
    margin: 0.5rem 0 1rem;
}
.v2 .tab-panel p { color: var(--v2-ink-soft); font-size: 1.05rem; margin: 0 0 1.5rem; }
.v2 .tab-panel .tab-bullets {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    display: grid; gap: 0.6rem;
}
.v2 .tab-bullets li {
    display: grid; grid-template-columns: 22px 1fr; gap: 0.6rem; align-items: start;
    color: var(--v2-ink-soft); font-size: 0.98rem;
}
.v2 .tab-bullets svg { color: var(--v2-emerald); margin-top: 4px; }

/* -------- alternating feature rows -------- */
.v2 .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
}
.v2 .feature-row + .feature-row { border-top: 1px solid var(--v2-line-soft); }
.v2 .feature-row.reverse > :first-child { order: 2; }
.v2 .feature-row h3 {
    font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.01em;
    font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.08;
    margin: 0.5rem 0 1rem;
}
.v2 .feature-row p { color: var(--v2-ink-soft); font-size: 1.05rem; margin: 0; }

/* -------- reviews -------- */
.v2 .reviews {
    background: var(--v2-bg-alt);
}
.v2 .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.v2 .review {
    background: #fff;
    border: 1px solid var(--v2-line-soft);
    border-radius: var(--v2-radius);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--v2-shadow-sm);
    display: flex; flex-direction: column; gap: 0.75rem;
}
.v2 .review .stars { color: var(--v2-gold); font-size: 0.95rem; letter-spacing: 2px; }
.v2 .review blockquote { margin: 0; font-size: 1rem; color: var(--v2-ink-soft); line-height: 1.5; }
.v2 .review cite { font-style: normal; font-size: 0.85rem; color: var(--v2-muted); margin-top: auto; }

/* -------- pricing -------- */
.v2 .pricing-card {
    max-width: 540px; margin: 0 auto;
    background: var(--v2-ink);
    color: var(--v2-bg);
    border-radius: var(--v2-radius-lg);
    padding: 2.5rem 2.25rem;
    text-align: center;
    box-shadow: var(--v2-shadow-lg);
}
.v2 .pricing-card .eyebrow { color: var(--v2-gold); }
.v2 .pricing-card h2 {
    font-family: "Fraunces", serif; font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.05;
    margin: 0.5rem 0 1rem;
}
.v2 .pricing-card .price { font-size: 1.05rem; opacity: 0.85; margin-bottom: 1.5rem; }
.v2 .pricing-card .price strong { font-size: 2.4rem; font-weight: 500; font-family: "Fraunces", serif; }
.v2 .pricing-card ul {
    text-align: left; list-style: none; padding: 0; margin: 0 0 2rem;
    display: grid; gap: 0.55rem;
}
.v2 .pricing-card li {
    display: grid; grid-template-columns: 22px 1fr; gap: 0.6rem; align-items: start;
    font-size: 0.95rem; opacity: 0.95;
}
.v2 .pricing-card li svg { color: var(--v2-gold); margin-top: 3px; }
.v2 .pricing-card .btn-emerald { background: var(--v2-gold); color: var(--v2-ink); }
.v2 .pricing-card .btn-emerald:hover { background: #f3cd72; }

/* -------- footer -------- */
.v2 .footer {
    background: var(--v2-ink);
    color: rgba(246, 241, 230, 0.85);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.v2 .footer a { color: rgba(246, 241, 230, 0.85); }
.v2 .footer a:hover { color: #fff; }
.v2 .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(246, 241, 230, 0.12);
}
.v2 .footer h4 { font-family: "Inter", sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(246,241,230,0.6); margin: 0 0 1rem; font-weight: 600; }
.v2 .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.v2 .footer-brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.2rem; color: var(--v2-bg); margin-bottom: 1rem; }
.v2 .footer-brand .mark { display: inline-grid; place-items: center; width: 32px; height: 32px; }
.v2 .footer-brand .mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.v2 .footer-tag { max-width: 30ch; font-size: 0.95rem; color: rgba(246, 241, 230, 0.7); }
.v2 .footer-bottom {
    padding-top: 1.5rem;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
    font-size: 0.82rem; color: rgba(246, 241, 230, 0.55);
}

/* -------- responsive -------- */
@media (max-width: 980px) {
    .v2 section { padding: 4rem 0; }
    .v2 .hero { padding-top: 2.5rem; }
    .v2 .hero-grid,
    .v2 .tab-panel,
    .v2 .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
    .v2 .feature-row.reverse > :first-child { order: 0; }
    .v2 .reviews-grid { grid-template-columns: 1fr 1fr; }
    .v2 .footer-grid { grid-template-columns: 1fr 1fr; }
    .v2 .nav-links { display: none; }
    .v2 .tab-bar { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 560px) {
    .v2 .reviews-grid,
    .v2 .footer-grid { grid-template-columns: 1fr; }
    .v2 .promo { font-size: 0.8rem; }
    .v2 .nav-cta .btn-ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .v2 *, .v2 *::before, .v2 *::after {
        animation-duration: 0ms !important;
        transition-duration: 0ms !important;
    }
    .v2 .hero-video { display: none; }
    .v2 .hero-bg-motion { animation: none; }
    html { scroll-behavior: auto; }
}

@media (max-width: 720px) {
    .v2 .csv-card { grid-template-columns: 1fr; }
}

/* ============================================================
   SUB-PAGES (features, pricing, about, faq, security, etc.)
   ============================================================ */
.v2 .page-hero {
    padding: 5rem 0 3rem;
    /* Solid tinted background — the previous gradient referenced an
     * undefined --v2-ivory token, which invalidated the gradient and
     * exposed the body color, producing a hard seam against the next
     * section in both light and dark mode. */
    background: var(--v2-bg-alt, #FBF7EE);
    border-bottom: 1px solid var(--v2-line-soft);
    text-align: center;
}
.v2 .page-hero .eyebrow { justify-content: center; display: inline-flex; }
.v2 .page-hero h1 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0.8rem 0 1rem;
    color: var(--v2-ink);
}
.v2 .page-hero p.lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--v2-ink-soft);
    line-height: 1.55;
}
.v2 .section { padding: 4rem 0; }
.v2 .section + .section { border-top: 1px solid var(--v2-line-soft); }
.v2 .section-alt { background: var(--v2-ivory); }

.v2 .prose {
    max-width: 720px;
    margin: 0 auto;
    color: var(--v2-ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
}
.v2 .prose h2 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: 1.9rem;
    color: var(--v2-ink);
    margin: 2.5rem 0 0.8rem;
    letter-spacing: -0.01em;
}
.v2 .prose h2:first-child { margin-top: 0; }
.v2 .prose h3 {
    font-size: 1.15rem; font-weight: 600; color: var(--v2-ink);
    margin: 1.8rem 0 0.5rem;
}
.v2 .prose p { margin: 0 0 1rem; }
.v2 .prose ul, .v2 .prose ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.v2 .prose li { margin-bottom: 0.4rem; }
.v2 .prose a { color: var(--v2-emerald-d); text-decoration: underline; text-underline-offset: 3px; }
.v2 .prose code {
    background: var(--v2-ivory);
    border: 1px solid var(--v2-line-soft);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

/* FAQ accordion */
.v2 .faq-list { max-width: 760px; margin: 0 auto; }
.v2 .faq-item {
    border-top: 1px solid var(--v2-line-soft);
}
.v2 .faq-list .faq-item:last-child { border-bottom: 1px solid var(--v2-line-soft); }
.v2 .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 0;
    font-weight: 600;
    color: var(--v2-ink);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.v2 .faq-item summary::-webkit-details-marker { display: none; }
.v2 .faq-item summary::after {
    content: "+";
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--v2-emerald);
    transition: transform 0.2s ease;
}
.v2 .faq-item[open] summary::after { content: "−"; }
.v2 .faq-item .faq-body {
    padding: 0 0 1.4rem;
    color: var(--v2-ink-soft);
    line-height: 1.6;
    max-width: 640px;
}

/* Step list (how it works) */
.v2 .step-list {
    max-width: 820px; margin: 0 auto;
    display: grid; gap: 1.25rem;
}
.v2 .step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--v2-line-soft);
    border-radius: 16px;
}
.v2 .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--v2-emerald);
    color: #fff;
    display: grid; place-items: center;
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-weight: 500;
}
.v2 .step h3 { margin: 0 0 0.4rem; font-size: 1.2rem; color: var(--v2-ink); }
.v2 .step p { margin: 0; color: var(--v2-ink-soft); line-height: 1.55; }

/* Generic 3-column feature grid */
.v2 .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 880px) { .v2 .grid-3 { grid-template-columns: 1fr; } }
.v2 .tile {
    background: #fff;
    border: 1px solid var(--v2-line-soft);
    border-radius: 16px;
    padding: 1.75rem;
}
.v2 .tile h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    color: var(--v2-ink);
}
.v2 .tile p { margin: 0; color: var(--v2-ink-soft); line-height: 1.55; }

/* CTA band */
.v2 .cta-band {
    background: var(--v2-emerald-d);
    color: #fff;
    text-align: center;
    padding: 3.5rem 1rem;
    border-radius: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.v2 .cta-band h2 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 0.8rem;
    color: #fff;
}
.v2 .cta-band p { margin: 0 0 1.5rem; opacity: 0.9; }

/* Changelog */
.v2 .changelog { max-width: 760px; margin: 0 auto; }
.v2 .release {
    padding: 2rem 0;
    border-top: 1px solid var(--v2-line-soft);
}
.v2 .release:first-child { border-top: none; }
.v2 .release-head {
    display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 0.8rem;
}
.v2 .release-version {
    font-family: "Fraunces", serif; font-size: 1.5rem;
    color: var(--v2-ink);
}
.v2 .release-date { color: var(--v2-muted); font-size: 0.9rem; }
.v2 .release-tag {
    background: var(--v2-emerald);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
}
.v2 .release ul { padding-left: 1.2rem; color: var(--v2-ink-soft); }
.v2 .release li { margin-bottom: 0.3rem; }

/* Contact form */
.v2 .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 820px) { .v2 .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.v2 .contact-form { display: grid; gap: 1rem; }
.v2 .contact-form label {
    display: grid; gap: 0.4rem;
    font-size: 0.9rem; color: var(--v2-ink);
    font-weight: 500;
}
.v2 .contact-form input,
.v2 .contact-form textarea {
    font: inherit;
    padding: 0.8rem 1rem;
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    background: #fff;
    color: var(--v2-ink);
}
.v2 .contact-form textarea { min-height: 140px; resize: vertical; }
.v2 .contact-form input:focus,
.v2 .contact-form textarea:focus { outline: 2px solid var(--v2-emerald); outline-offset: 1px; }

/* Pricing tiers (subpage) */
.v2 .pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}
@media (max-width: 880px) { .v2 .pricing-tiers { grid-template-columns: 1fr; max-width: 480px; } }
.v2 .tier {
    background: #fff;
    border: 1px solid var(--v2-line-soft);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.v2 .tier h3 {
    margin: 0.4rem 0 0.6rem;
    font-size: 1.1rem;
    color: var(--v2-ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v2 .tier-price {
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    color: var(--v2-ink);
    margin: 0;
}
.v2 .tier-price strong {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-right: 0.2rem;
}
.v2 .tier-price span { color: var(--v2-muted); font-size: 1rem; }
.v2 .tier-sub { color: var(--v2-muted); margin: 0.3rem 0 1.5rem; font-size: 0.9rem; }
.v2 .tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.65rem;
    flex: 1;
}
.v2 .tier-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--v2-ink-soft);
    font-size: 0.95rem;
    line-height: 1.4;
}
.v2 .tier-list li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--v2-emerald);
    font-weight: 700;
}
.v2 .tier-cta { width: 100%; text-align: center; justify-content: center; }
.v2 .tier-featured {
    background: var(--v2-ink);
    color: #fff;
    border-color: var(--v2-ink);
    position: relative;
    transform: translateY(-8px);
    box-shadow: var(--v2-shadow-lg);
}
.v2 .tier-featured h3 { color: #fff; }
.v2 .tier-featured .eyebrow { color: var(--v2-gold); }
.v2 .tier-featured .tier-price { color: #fff; }
.v2 .tier-featured .tier-price span { color: rgba(255,255,255,0.7); }
.v2 .tier-featured .tier-sub { color: rgba(255,255,255,0.7); }
.v2 .tier-featured .tier-list li { color: rgba(255,255,255,0.92); }
.v2 .tier-featured .tier-list li::before { color: var(--v2-gold); }
@media (max-width: 880px) { .v2 .tier-featured { transform: none; } }

/* =============================================================
 * LIVE PREVIEW COMPONENTS (replace static screenshots)
 * Hand-built HTML/CSS mimicking the real app, so the marketing
 * page shows the actual UI instead of cropped PNGs.
 * ============================================================= */

/* ---------- Dashboard preview (hero + Track tab) ---------- */
.v2 .dash-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.25rem 1.25rem 1rem;
    display: grid;
    gap: 1rem;
    color: var(--v2-ink);
    font-family: "Inter", system-ui, sans-serif;
    overflow: hidden;
}
.v2 .dash-preview .dash-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem; color: var(--v2-muted);
    border-bottom: 1px solid var(--v2-line-soft); padding-bottom: 0.6rem;
}
.v2 .dash-preview .dash-head strong { color: var(--v2-ink); font-weight: 600; font-size: 0.92rem; }
.v2 .dash-preview .dash-head .pill {
    background: rgba(29,107,74,0.10); color: var(--v2-emerald-d);
    padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.v2 .dash-preview .kpis {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
}
.v2 .dash-preview .kpi {
    background: var(--v2-bg-alt);
    border: 1px solid var(--v2-line-soft);
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    display: grid; gap: 0.15rem;
}
.v2 .dash-preview .kpi .lbl { font-size: 0.66rem; color: var(--v2-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.v2 .dash-preview .kpi .val { font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 500; color: var(--v2-ink); }
.v2 .dash-preview .kpi .delta { font-size: 0.7rem; color: var(--v2-emerald); font-weight: 600; }
.v2 .dash-preview .chart {
    position: relative;
    height: 160px;
    background: linear-gradient(180deg, rgba(29,107,74,0.06), rgba(29,107,74,0));
    border-radius: 12px;
    padding: 0.5rem;
}
.v2 .dash-preview .chart svg { width: 100%; height: 100%; display: block; }
.v2 .dash-preview .chart .line {
    fill: none; stroke: var(--v2-emerald); stroke-width: 2.2;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: dashDraw 2.4s ease-out 0.3s forwards;
}
.v2 .dash-preview .chart .area { fill: url(#dashFill); opacity: 0; animation: fadeIn 1s ease 1.6s forwards; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
.v2 .dash-preview .chart .ticks {
    position: absolute; inset: auto 0.5rem 0.4rem; display: flex; justify-content: space-between;
    font-size: 0.62rem; color: var(--v2-muted);
}

/* ---------- Cards carousel (replaces cards.png) ---------- */
.v2 .cards-marquee {
    position: relative; width: 100%; overflow: hidden;
    padding: 1.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v2 .cards-track {
    display: flex; gap: 1.1rem; width: max-content;
    animation: cardsScroll 38s linear infinite;
}
.v2 .cards-marquee:hover .cards-track { animation-play-state: paused; }
@keyframes cardsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.v2 .cc-chip {
    flex: 0 0 280px;
    aspect-ratio: 1.586 / 1; /* real card ratio */
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    color: #fff;
    display: grid;
    grid-template-rows: auto 1fr auto;
    box-shadow: 0 18px 40px rgba(11,31,26,0.18);
    position: relative; overflow: hidden;
    font-family: "Inter", sans-serif;
    transition: transform 240ms ease, box-shadow 240ms ease;
}
.v2 .cc-chip:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(11,31,26,0.25); }
.v2 .cc-chip::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.v2 .cc-chip .cc-issuer { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; font-weight: 600; }
.v2 .cc-chip .cc-name   { font-family: "Fraunces", serif; font-size: 1.15rem; line-height: 1.2; margin-top: 0.35rem; align-self: end; }
.v2 .cc-chip .cc-foot   { display: flex; justify-content: space-between; align-items: end; font-size: 0.78rem; }
.v2 .cc-chip .cc-foot .pts { font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 500; }
.v2 .cc-chip .cc-foot .pts small { display: block; font-family: "Inter", sans-serif; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; font-weight: 600; }
/* Card color variants */
.v2 .cc-chip.amex-plat   { background: linear-gradient(135deg, #c8c8c8 0%, #8c8c8c 100%); color: #1a1a1a; }
.v2 .cc-chip.amex-plat::after { background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.35), transparent 60%); }
.v2 .cc-chip.csr         { background: linear-gradient(135deg, #1f4068 0%, #0a1e3a 100%); }
.v2 .cc-chip.venture-x   { background: linear-gradient(135deg, #2c2c2c 0%, #0a0a0a 100%); }
.v2 .cc-chip.citi-prem   { background: linear-gradient(135deg, #1b1b1b 0%, #0f0f0f 100%); }
.v2 .cc-chip.amex-gold   { background: linear-gradient(135deg, #d4af37 0%, #8a6d1f 100%); color: #1a1a1a; }
.v2 .cc-chip.bilt        { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }
.v2 .cc-chip.csp         { background: linear-gradient(135deg, #1665c0 0%, #0d3d7a 100%); }
.v2 .cc-chip.freedom-u   { background: linear-gradient(135deg, #1b6cb0 0%, #0e3f6a 100%); }

/* ---------- Perks checklist (replaces perks.png) ---------- */
.v2 .perks-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.1rem 1.2rem;
    display: grid; gap: 0.6rem;
    color: var(--v2-ink);
}
.v2 .perks-preview h4 { margin: 0 0 0.3rem; font-family: "Fraunces", serif; font-weight: 500; font-size: 1rem; }
.v2 .perk-row {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.8rem;
    padding: 0.6rem 0.7rem; border-radius: 10px; background: var(--v2-bg-alt); border: 1px solid var(--v2-line-soft);
}
.v2 .perk-row .check {
    width: 22px; height: 22px; border-radius: 999px;
    display: grid; place-items: center;
    background: var(--v2-emerald); color: #fff;
    font-size: 0.7rem; font-weight: 700;
}
.v2 .perk-row.pending .check { background: var(--v2-sand); color: var(--v2-muted); }
.v2 .perk-row .title { font-size: 0.88rem; font-weight: 500; color: var(--v2-ink); }
.v2 .perk-row .title small { display: block; font-size: 0.72rem; color: var(--v2-muted); font-weight: 400; margin-top: 0.1rem; }
.v2 .perk-row .val { font-family: "Fraunces", serif; font-size: 0.95rem; color: var(--v2-emerald-d); }
.v2 .perk-row.pending .val { color: var(--v2-muted); }

@media (max-width: 760px) {
    .v2 .dash-preview .kpis { grid-template-columns: repeat(2, 1fr); }
    .v2 .cc-chip { flex-basis: 230px; }
}

@media (prefers-reduced-motion: reduce) {
    .v2 .cards-track { animation: none; }
    .v2 .dash-preview .chart .line { animation: none; stroke-dashoffset: 0; }
    .v2 .dash-preview .chart .area { animation: none; opacity: 1; }
}

/* =============================================================
 * EXTENDED LIVE PREVIEWS — Optimize / Plan / Transactions / Export
 * Mirror the .dash-preview look, with animated status bars.
 * ============================================================= */

/* Shared bar fill animation */
@keyframes barFill { from { width: 0; } to { width: var(--w, 0%); } }
@keyframes gaugeFill { from { stroke-dashoffset: 100; } }
@keyframes rowSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Optimize preview ---------- */
.v2 .optimize-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.1rem 1.2rem;
    display: grid; gap: 0.7rem;
    color: var(--v2-ink);
    overflow: hidden;
}
.v2 .op-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem; color: var(--v2-muted);
    border-bottom: 1px solid var(--v2-line-soft); padding-bottom: 0.6rem;
}
.v2 .op-head strong { color: var(--v2-ink); font-weight: 600; font-size: 0.92rem; }
.v2 .op-head .pill {
    background: rgba(29,107,74,0.10); color: var(--v2-emerald-d);
    padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.v2 .op-row {
    display: grid; gap: 0.45rem;
    padding: 0.6rem 0.7rem;
    background: var(--v2-bg-alt);
    border: 1px solid var(--v2-line-soft);
    border-radius: 12px;
    opacity: 0; animation: rowSlide 480ms ease forwards;
}
.v2 .op-row:nth-child(2) { animation-delay: 120ms; }
.v2 .op-row:nth-child(3) { animation-delay: 220ms; }
.v2 .op-row:nth-child(4) { animation-delay: 320ms; }
.v2 .op-row:nth-child(5) { animation-delay: 420ms; }
.v2 .op-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.v2 .op-name { font-size: 0.88rem; font-weight: 600; color: var(--v2-ink); display: flex; flex-direction: column; }
.v2 .op-name small { font-size: 0.7rem; color: var(--v2-muted); font-weight: 400; margin-top: 0.1rem; }
.v2 .op-net { font-family: "Fraunces", serif; font-size: 0.95rem; font-weight: 500; }
.v2 .op-net.pos  { color: var(--v2-emerald-d); }
.v2 .op-net.warn { color: #b8651f; }
.v2 .op-bar {
    height: 8px; border-radius: 999px; background: var(--v2-line-soft); overflow: hidden;
}
.v2 .op-bar i {
    display: block; height: 100%; background: var(--v2-emerald);
    border-radius: 999px;
    width: 0;
    animation: barFill 1.4s cubic-bezier(.2,.7,.2,1) 0.5s forwards;
}
.v2 .op-bar.mid i { background: var(--v2-gold); }
.v2 .op-bar.low i { background: #d77a3a; }
.v2 .op-sub { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--v2-muted); }

/* ---------- Plan preview (sign-up bonuses + renewals) ---------- */
.v2 .plan-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.1rem 1.2rem;
    display: grid; gap: 0.8rem;
    color: var(--v2-ink);
}
.v2 .plan-head {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--v2-line-soft); padding-bottom: 0.6rem;
    font-size: 0.78rem; color: var(--v2-muted);
}
.v2 .plan-head strong { color: var(--v2-ink); font-weight: 600; font-size: 0.92rem; }
.v2 .plan-head .pill {
    background: rgba(232,185,72,0.18); color: #8a5e10;
    padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.v2 .sub-card {
    background: var(--v2-bg-alt);
    border: 1px solid var(--v2-line-soft);
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    display: grid; gap: 0.45rem;
    opacity: 0; animation: rowSlide 480ms ease forwards;
}
.v2 .sub-card:nth-of-type(2) { animation-delay: 140ms; }
.v2 .sub-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.v2 .sub-name { font-size: 0.88rem; font-weight: 600; color: var(--v2-ink); display: flex; flex-direction: column; }
.v2 .sub-name small { font-size: 0.7rem; color: var(--v2-muted); font-weight: 400; margin-top: 0.1rem; }
.v2 .sub-bonus {
    font-family: "Fraunces", serif; font-size: 0.95rem; color: var(--v2-emerald-d); font-weight: 500;
}
.v2 .sub-bar {
    height: 8px; border-radius: 999px; background: var(--v2-line-soft); overflow: hidden;
}
.v2 .sub-bar i {
    display: block; height: 100%; background: var(--v2-emerald); border-radius: 999px;
    width: 0; animation: barFill 1.4s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
.v2 .sub-bar.mid i { background: var(--v2-gold); }
.v2 .sub-meta { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--v2-muted); }
.v2 .sub-meta .warn { color: #b8651f; font-weight: 600; }
.v2 .plan-fees {
    border-top: 1px solid var(--v2-line-soft);
    padding-top: 0.7rem;
    display: grid; gap: 0.4rem;
}
.v2 .plan-fees strong { font-size: 0.78rem; color: var(--v2-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.v2 .fee-row {
    display: grid; grid-template-columns: 14px 1fr auto auto; align-items: center; gap: 0.6rem;
    font-size: 0.82rem;
    padding: 0.35rem 0.1rem;
}
.v2 .fee-row .dot {
    width: 10px; height: 10px; border-radius: 999px;
    background: #8c8c8c;
}
.v2 .fee-row .dot.dot-gold { background: #d4af37; }
.v2 .fee-row .dot.dot-blue { background: #1f4068; }
.v2 .fee-row .fee-name { color: var(--v2-ink); font-weight: 500; }
.v2 .fee-row .fee-when { color: var(--v2-muted); font-size: 0.74rem; }
.v2 .fee-row .fee-amt {
    font-family: "Fraunces", serif; color: var(--v2-ink); font-weight: 500;
    min-width: 50px; text-align: right;
}

/* ---------- Perks (refreshed: header gauge + per-perk progress) ---------- */
.v2 .perks-preview .perks-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--v2-line-soft);
    padding-bottom: 0.7rem;
}
.v2 .perks-preview .perks-head h4 { margin: 0; }
.v2 .perks-preview .perks-sub { font-size: 0.72rem; color: var(--v2-muted); }
.v2 .perks-gauge {
    position: relative;
    width: 80px; height: 48px;
    display: grid; place-items: end center;
}
.v2 .perks-gauge svg { display: block; }
.v2 .perks-gauge .gauge-fill {
    animation: gaugeFill 1.8s cubic-bezier(.2,.7,.2,1) 0.4s both;
}
.v2 .perks-gauge .gauge-pct {
    position: absolute; bottom: 0; left: 0; right: 0;
    text-align: center;
    font-family: "Fraunces", serif; font-size: 0.95rem; color: var(--v2-emerald-d); font-weight: 500;
}
.v2 .perk-row {
    grid-template-columns: 22px 1fr auto;
    opacity: 0; animation: rowSlide 420ms ease forwards;
}
.v2 .perk-row:nth-of-type(2) { animation-delay: 80ms; }
.v2 .perk-row:nth-of-type(3) { animation-delay: 160ms; }
.v2 .perk-row:nth-of-type(4) { animation-delay: 240ms; }
.v2 .perk-row:nth-of-type(5) { animation-delay: 320ms; }
.v2 .perk-row .perk-body { display: grid; gap: 0.35rem; }
.v2 .perk-bar {
    height: 5px; border-radius: 999px; background: var(--v2-line-soft); overflow: hidden;
}
.v2 .perk-bar i {
    display: block; height: 100%; background: var(--v2-emerald); border-radius: 999px;
    width: 0; animation: barFill 1.2s cubic-bezier(.2,.7,.2,1) 0.55s forwards;
}
.v2 .perk-row.pending .perk-bar i { background: var(--v2-gold); }

/* ---------- Transactions preview ---------- */
.v2 .txn-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.1rem 1.2rem;
    display: grid; gap: 0.5rem;
    color: var(--v2-ink);
    overflow: hidden;
}
.v2 .txn-head {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--v2-line-soft); padding-bottom: 0.6rem;
    font-size: 0.78rem; color: var(--v2-muted);
}
.v2 .txn-head strong { color: var(--v2-ink); font-weight: 600; font-size: 0.92rem; }
.v2 .txn-head .pill {
    background: rgba(29,107,74,0.10); color: var(--v2-emerald-d);
    padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.v2 .txn-row {
    display: grid; grid-template-columns: 14px 1fr auto; align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 0.2rem;
    border-bottom: 1px dashed var(--v2-line-soft);
    opacity: 0; animation: rowSlide 420ms ease forwards;
}
.v2 .txn-row:last-of-type { border-bottom: none; }
.v2 .txn-row:nth-of-type(2) { animation-delay: 90ms; }
.v2 .txn-row:nth-of-type(3) { animation-delay: 180ms; }
.v2 .txn-row:nth-of-type(4) { animation-delay: 270ms; }
.v2 .txn-row:nth-of-type(5) { animation-delay: 360ms; }
.v2 .txn-row:nth-of-type(6) { animation-delay: 450ms; }
.v2 .txn-row:nth-of-type(7) { animation-delay: 540ms; }
.v2 .txn-dot {
    width: 10px; height: 10px; border-radius: 999px;
    background: #8c8c8c;
}
.v2 .txn-dot.dot-plat   { background: linear-gradient(135deg, #d4af37, #8a6d1f); }
.v2 .txn-dot.dot-plat-silver { background: linear-gradient(135deg, #c8c8c8, #8c8c8c); }
.v2 .txn-dot.dot-blue   { background: #1f4068; }
.v2 .txn-dot.dot-gold   { background: #d4af37; }
.v2 .txn-dot.dot-black  { background: #1a1a1a; }
.v2 .txn-body { display: grid; gap: 0.15rem; min-width: 0; }
.v2 .txn-title { font-size: 0.88rem; font-weight: 500; color: var(--v2-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2 .txn-meta  { font-size: 0.7rem; color: var(--v2-muted); }
.v2 .txn-amt {
    font-family: "Fraunces", serif; font-size: 0.95rem; font-weight: 500;
    white-space: nowrap;
}
.v2 .txn-amt.earn   { color: var(--v2-emerald-d); }
.v2 .txn-amt.redeem { color: #b8651f; }
.v2 .txn-row.muted-row .txn-title { color: var(--v2-ink-soft); }

/* ---------- Export preview (sleeker CSV card) ---------- */
.v2 .export-preview {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--v2-shadow-lg);
    padding: 1.1rem 1.2rem;
    display: grid; gap: 0.9rem;
    color: var(--v2-ink);
    overflow: hidden;
}
.v2 .export-head {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--v2-line-soft); padding-bottom: 0.6rem;
    font-size: 0.78rem; color: var(--v2-muted);
}
.v2 .export-head strong { color: var(--v2-ink); font-weight: 600; font-size: 0.92rem; }
.v2 .export-head .pill {
    background: rgba(29,107,74,0.10); color: var(--v2-emerald-d);
    padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.v2 .export-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 0.9rem;
}
.v2 .export-pane {
    background: var(--v2-bg-alt);
    border: 1px solid var(--v2-line-soft);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    display: grid; gap: 0.7rem;
}
.v2 .export-file { display: flex; align-items: center; gap: 0.7rem; }
.v2 .export-file .file-icon {
    width: 36px; height: 44px;
    border-radius: 6px;
    background: var(--v2-emerald);
    color: #fff;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
    display: grid; place-items: center;
    position: relative;
}
.v2 .export-file .file-icon::after {
    content: ""; position: absolute; top: 0; right: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent rgba(0,0,0,0.18) transparent;
}
.v2 .export-file .file-meta { display: grid; gap: 0.15rem; }
.v2 .export-file .file-name { font-size: 0.86rem; color: var(--v2-ink); font-weight: 600; }
.v2 .export-file .file-sub  { font-size: 0.72rem; color: var(--v2-muted); }
.v2 .export-bar {
    height: 8px; border-radius: 999px; background: var(--v2-line-soft); overflow: hidden;
}
.v2 .export-bar i {
    display: block; height: 100%; background: var(--v2-emerald); border-radius: 999px;
    width: 0; animation: barFill 1.6s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
.v2 .export-sub { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--v2-muted); }
.v2 .export-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.2rem; }
.v2 .export-pane-dark {
    background: var(--v2-ink);
    color: var(--v2-cream);
    border-color: transparent;
}
.v2 .export-pane-dark .export-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(246,241,230,0.7);
    font-weight: 600;
}
.v2 .export-pane-dark .export-tag {
    font-family: "Fraunces", serif; font-size: 1.15rem; line-height: 1.25;
    color: var(--v2-gold);
    margin: 0;
}
.v2 .export-bullets {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 0.45rem;
    font-size: 0.82rem;
    color: rgba(246,241,230,0.92);
}
.v2 .export-bullets li { display: flex; align-items: center; gap: 0.55rem; }
.v2 .export-bullets .dot-ok {
    width: 14px; height: 14px; border-radius: 999px;
    background: var(--v2-emerald);
    display: grid; place-items: center;
    flex-shrink: 0;
    position: relative;
}
.v2 .export-bullets .dot-ok::after {
    content: ""; width: 6px; height: 3px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(0, -1px);
}

@media (max-width: 760px) {
    .v2 .export-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .v2 .op-row, .v2 .sub-card, .v2 .perk-row, .v2 .txn-row { opacity: 1; animation: none; }
    .v2 .op-bar i, .v2 .sub-bar i, .v2 .perk-bar i, .v2 .export-bar i { width: var(--w, 100%); animation: none; }
    .v2 .perks-gauge .gauge-fill { animation: none; }
}

/* ============================================================
   DECORATIVE: floating credit-card stack (reused on sub-pages)
   ============================================================ */
.v2 .page-hero--split {
    text-align: left;
    padding-bottom: 4rem;
}
.v2 .page-hero--split .page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.v2 .page-hero--split .eyebrow { justify-content: flex-start; }
.v2 .page-hero--split p.lead { margin: 0; }
.v2 .landing-hero-art {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2 .landing-card {
    position: absolute;
    width: 260px;
    height: 160px;
    border-radius: 18px;
    padding: 1.1rem 1.25rem;
    color: #f6f1e6;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease;
}
.v2 .landing-card-issuer { font-size: 0.72rem; opacity: 0.85; }
.v2 .landing-card-balance { font-size: 1.5rem; font-weight: 700; }
.v2 .landing-card-balance em { font-style: normal; font-size: 0.85rem; opacity: 0.85; margin-left: 4px; }
.v2 .landing-card-chip {
    width: 36px; height: 26px; border-radius: 5px;
    background: linear-gradient(135deg, #d4a64a 0%, #b8862c 100%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.v2 .landing-card-1 {
    background: linear-gradient(135deg, #1d6b4a 0%, #144f37 100%);
    transform: translate(-110px, -50px) rotate(-8deg);
    z-index: 3;
}
.v2 .landing-card-2 {
    background: linear-gradient(135deg, #2a313b 0%, #161a1f 100%);
    transform: translate(20px, 10px) rotate(2deg);
    z-index: 2;
}
.v2 .landing-card-3 {
    background: linear-gradient(135deg, #8a5a1f 0%, #6b4416 100%);
    transform: translate(110px, 60px) rotate(10deg);
    z-index: 1;
}
.v2 .landing-hero-art:hover .landing-card-1 { transform: translate(-130px, -60px) rotate(-10deg); }
.v2 .landing-hero-art:hover .landing-card-3 { transform: translate(130px, 70px) rotate(12deg); }

/* Hold-to-feature: after ~1s of hover, JS adds .landing-card-featured.
   The card slides up + center, untilts, and z-pops above the others.
   Removing the class returns it to its baseline position via the
   existing transition. */
.v2 .landing-card-featured {
    transform: translate(0, -110px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.28), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.v2 .landing-hero-art:hover .landing-card-featured {
    /* Override the generic :hover fan-out for whichever card is featured */
    transform: translate(0, -110px) rotate(0deg) scale(1.05) !important;
}

@media (max-width: 900px) {
    .v2 .page-hero--split { text-align: center; }
    .v2 .page-hero--split .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .v2 .page-hero--split .eyebrow { justify-content: center; }
    .v2 .page-hero--split p.lead { margin: 0 auto; }
    .v2 .landing-hero-art { min-height: 260px; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
    .v2 .landing-card { transition: none; }
}

/* ============================================================
   FINS HERO (homepage + about) — "Make every swipe count."
   ============================================================ */
.v2 .fins-hero {
    padding: 4rem 0 3.5rem;
}
.v2 .fins-hero .container { max-width: 1180px; }
.v2 .fins-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.v2 .fins-hero .eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--v2-emerald, #1D6B4A);
    font-weight: 700;
    margin: 0 0 1rem;
}
.v2 .fins-hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.05;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
}
.v2 .fins-hero p.lead {
    font-size: 1.08rem;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 1.6rem;
    color: rgba(0, 0, 0, 0.72);
}
.v2 .fins-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0 0 1rem;
}
.v2 .fins-hero-trust {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}
.v2 .fins-hero-trust code {
    background: rgba(29, 107, 74, 0.08);
    color: var(--v2-emerald, #1D6B4A);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .v2 .fins-hero { padding: 2.5rem 0 2rem; text-align: center; }
    .v2 .fins-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .v2 .fins-hero p.lead { margin-left: auto; margin-right: auto; }
    .v2 .fins-hero-cta { justify-content: center; }
}

/* ============================================================
   FINS FEATURE GRID — "Everything you need, all in one app"
   ============================================================ */
.v2 .fins-everything {
    padding: 4rem 0;
    background: #ffffff;
}
.v2 .fins-everything .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.v2 .fins-everything .section-head h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}
.v2 .fins-everything .section-head p {
    color: rgba(0, 0, 0, 0.65);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}
.v2 .fins-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.v2 .fins-feature-card {
    background: #f8f5ef;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.v2 .fins-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--v2-emerald, #1D6B4A);
    color: #fff;
    display: inline-grid;
    place-items: center;
    line-height: 0;
    padding: 0;
}
.v2 .fins-feature-icon svg { display: block; width: 22px; height: 22px; }
.v2 .fins-feature-card h3 {
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
}
.v2 .fins-feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.68);
    margin: 0;
}

@media (max-width: 1000px) {
    .v2 .fins-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .v2 .fins-feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FINS TESTIMONIAL — single centered quote card
   ============================================================ */
.v2 .fins-testimonial {
    padding: 3rem 0 4rem;
    background: #ffffff;
}
.v2 .fins-testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    background: #f8f5ef;
    border-radius: 18px;
    padding: 2rem 2.25rem;
    text-align: center;
}
.v2 .fins-testimonial-card blockquote {
    margin: 0 0 1rem;
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.85);
    font-style: italic;
}
.v2 .fins-testimonial-card cite {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.04em;
}

/* ============================================================
   FINS SPOTLIGHT — two-column feature show-and-tell
   ============================================================ */
.v2 .fins-spotlight {
    padding: 4rem 0;
    background: #f6f1e6;
}
.v2 .fins-spotlight-alt { background: #ffffff; }
.v2 .fins-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: center;
}
.v2 .fins-spotlight-grid.reverse > .fins-spotlight-art { order: -1; }
.v2 .fins-spotlight-copy .eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--v2-emerald, #1D6B4A);
    font-weight: 700;
    margin: 0 0 0.85rem;
}
.v2 .fins-spotlight-copy h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin: 0 0 0.9rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.v2 .fins-spotlight-copy > p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    max-width: 480px;
}
.v2 .fins-spotlight-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: 0.55rem;
}
.v2 .fins-spotlight-bullets li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.72);
    align-items: flex-start;
}
.v2 .fins-spotlight-bullets .dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--v2-emerald, #1D6B4A);
    margin-top: 0.55em;
    flex-shrink: 0;
}
.v2 .fins-spotlight-art {
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .v2 .fins-spotlight-grid { grid-template-columns: 1fr; gap: 2rem; }
    .v2 .fins-spotlight-grid.reverse > .fins-spotlight-art { order: 0; }
}

/* ============================================================
   OFFERS MOCK — preview card for the offers spotlight
   ============================================================ */
.v2 .offers-mock {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.v2 .offers-mock-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.85rem;
}
.v2 .offers-mock-head strong { font-size: 1.05rem; }
.v2 .offers-mock-count { font-size: 0.78rem; color: rgba(0,0,0,0.55); }
.v2 .offers-mock-pills {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
    margin-bottom: 1rem;
}
.v2 .offers-mock-pills .pill {
    background: #f3eee2;
    color: rgba(0,0,0,0.65);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.v2 .offers-mock-pills .pill.active {
    background: var(--v2-emerald, #1D6B4A);
    color: #fff;
}
.v2 .offers-mock-pills .pill.warn {
    background: #fef0c8;
    color: #7a5400;
}
.v2 .offers-mock-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.v2 .offers-mock-row:first-of-type { border-top: none; }
.v2 .offers-mock-row .merch {
    width: 36px; height: 36px; border-radius: 10px;
    display: grid; place-items: center;
    font-weight: 700; font-size: 0.9rem;
    color: #fff;
}
.v2 .merch-uber     { background: #000000; }
.v2 .merch-doordash { background: #eb1700; }
.v2 .merch-walmart  { background: #0071ce; }
.v2 .merch-sephora  { background: #1f1f1f; }
.v2 .offers-mock-row .row-title {
    display: flex; flex-direction: column;
    font-size: 0.92rem; font-weight: 600;
}
.v2 .offers-mock-row .row-title small {
    font-size: 0.75rem; font-weight: 400; color: rgba(0,0,0,0.55);
    margin-top: 2px;
}
.v2 .offers-mock-row .row-val {
    font-size: 0.9rem; font-weight: 700;
    color: var(--v2-emerald, #1D6B4A);
}
.v2 .offers-mock-row .row-val.warn { color: #b46500; }

/* Offers preview inside the .feature-tabs panel — inherits offers-mock visuals */
.v2 .offers-preview {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================================
   EXTENSION MOCK — fake browser frame for extension spotlight
   ============================================================ */
.v2 .ext-mock {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.v2 .ext-mock-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ebe7df;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.v2 .ext-dot { width: 11px; height: 11px; border-radius: 999px; }
.v2 .ext-dot-r { background: #ff5f57; }
.v2 .ext-dot-y { background: #febc2e; }
.v2 .ext-dot-g { background: #28c840; }
.v2 .ext-mock-url {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.78rem;
    color: rgba(0,0,0,0.65);
    margin-left: 8px;
}
.v2 .ext-mock-pin {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--v2-emerald, #1D6B4A);
    color: #fff;
    display: grid; place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 0.85rem;
}
.v2 .ext-mock-body {
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
    position: relative;
    min-height: 200px;
}
.v2 .ext-mock-portal {
    background: #fff;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex; flex-direction: column; gap: 6px;
    border: 1px solid rgba(0,0,0,0.05);
}
.v2 .ext-mock-portal-label {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.v2 .ext-mock-portal-val {
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #111;
}
.v2 .ext-mock-portal-val em {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
    margin-left: 4px;
    font-family: inherit;
    font-weight: 400;
}
.v2 .ext-mock-toast {
    margin-top: 1rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    box-shadow: 0 8px 20px rgba(29, 107, 74, 0.18);
    border-left: 3px solid var(--v2-emerald, #1D6B4A);
}
.v2 .ext-toast-dot {
    width: 26px; height: 26px; border-radius: 999px;
    background: var(--v2-emerald, #1D6B4A);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
}
.v2 .ext-mock-toast strong {
    display: block;
    font-size: 0.9rem;
}
.v2 .ext-mock-toast span {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.6);
}

/* ============================================================
   HOMEPAGE SECTION RHYTHM — alternating cream / off-white
   bands a la Monarch. Order on index.html:
     1. fins-hero       cream      (body --v2-bg)
     2. homebase        off-white  (--v2-bg-alt)
     3. feature-tabs    cream
     4. #cards          off-white
     5. fins-spotlight  cream
     6. reviews         off-white  (already set)
     7. #pricing        cream
   ============================================================ */
.v2 .homebase            { background: var(--v2-bg-alt); }
.v2 .feature-tabs        { background: var(--v2-bg); }
.v2 #cards               { background: var(--v2-bg-alt); }
.v2 .fins-spotlight,
.v2 .fins-spotlight-alt  { background: var(--v2-bg); }
.v2 #pricing             { background: var(--v2-bg); }
