/* =================================================================
   archive-fp_deal.css — Deal Archive + AI Deal Finder Hub
   Namespace: .fp-dag-*  (Deal Archive Grid)
   Tokens only · mobile-first · matches CC-archive + single-deal V5 DNA
   Breakpoints: 600px · 768px (tablet) · 1024px (desktop) · 1280px (wide)
   ================================================================= */

/* ──────────────────────────────────────────────────────────────
   1. Page shell + utilities
   ────────────────────────────────────────────────────────────── */
.fp-dag-page {
    background: #fafafa;
    color: var(--fp-text-main);
    font-family: var(--fp-font);
    padding: var(--fp-space-6) 0 var(--fp-space-16);
    display: flex;
    flex-direction: column;
    gap: var(--fp-space-10);
}
.fp-dag-page > section { padding: 0 var(--fp-space-4); }
@media (min-width: 768px)  { .fp-dag-page { padding-top: var(--fp-space-8); gap: var(--fp-space-12); } .fp-dag-page > section { padding: 0 var(--fp-space-6); } }
@media (min-width: 1024px) { .fp-dag-page { padding-top: var(--fp-space-10); } .fp-dag-page > section { padding: 0 var(--fp-space-8); max-width: 1320px; margin-left: auto; margin-right: auto; width: 100%; } }

.fp-dag-page .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.fp-dag-icon { flex-shrink: 0; vertical-align: middle; }

/* Pulse dot (Just-Dropped, ticker) */
.fp-dag-pulse {
    width: 8px; height: 8px;
    border-radius: var(--fp-radius-circle);
    background: var(--fp-green);
    box-shadow: 0 0 0 0 rgba(46,204,113,0.7);
    animation: fpDagPulse 1.8s ease-out infinite;
    display: inline-block;
    vertical-align: middle;
}
@keyframes fpDagPulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ──────────────────────────────────────────────────────────────
   2. Section head + buttons
   ────────────────────────────────────────────────────────────── */
.fp-dag-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--fp-space-2);
    margin-bottom: var(--fp-space-5);
}
.fp-dag-section-head--center { align-items: center; text-align: center; }
.fp-dag-section-head--inline {
    flex-direction: row; align-items: center; gap: var(--fp-space-3);
    flex-wrap: wrap;
}

.fp-dag-section-eyebrow {
    display: inline-flex; align-items: center; gap: var(--fp-space-2);
    background: var(--fp-lime-soft); color: var(--fp-lime-dark);
    border: 1px solid var(--fp-lime-glow);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-sm); font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.fp-dag-section-eyebrow .fp-dag-icon { width: 14px; height: 14px; }
.fp-dag-section-eyebrow--red  { background: #fff1f2; color: #be123c; border-color: #fda4af; }
.fp-dag-section-eyebrow--lime { background: var(--fp-lime); color: #1a1a1a; border-color: var(--fp-lime-deep); }
.fp-dag-section-eyebrow--ai   { background: var(--fp-indigo-soft); color: var(--fp-secondary); border-color: var(--fp-indigo-border); }

.fp-dag-section-h2 {
    margin: 0;
    font-size: var(--fp-text-2xl);
    line-height: 1.2; font-weight: 800; letter-spacing: -0.01em;
}
.fp-dag-section-h2 em {
    font-style: normal;
    background: var(--fp-gradient-lime);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-section-sub {
    margin: 0; color: var(--fp-text-muted);
    font-size: var(--fp-text-md); line-height: 1.5; max-width: 60ch;
}

@media (min-width: 768px) { .fp-dag-section-h2 { font-size: var(--fp-text-3xl); } }
@media (min-width: 1024px) { .fp-dag-section-h2 { font-size: var(--fp-text-4xl); } }

.fp-dag-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--fp-space-2);
    border: 0; cursor: pointer; font-family: inherit;
    font-weight: 700; font-size: var(--fp-text-md); line-height: 1;
    padding: var(--fp-space-3) var(--fp-space-5);
    border-radius: var(--fp-radius-pill);
    min-height: 44px;
    text-decoration: none;
    transition: var(--fp-transition);
}
.fp-dag-btn--lime  { background: var(--fp-gradient-lime); color: #1a1a1a; box-shadow: 0 6px 14px var(--fp-lime-glow); }
.fp-dag-btn--lime:hover { transform: translateY(-1px); box-shadow: 0 10px 22px var(--fp-lime-glow); }
.fp-dag-btn--dark  { background: var(--fp-text-main); color: #fff; }
.fp-dag-btn--dark:hover { background: #000; }
.fp-dag-btn--white { background: #fff; color: var(--fp-text-main); }
.fp-dag-btn--ghost { background: transparent; color: var(--fp-text-main); border: 1px solid var(--fp-border); }
.fp-dag-btn--ghost:hover { background: #f5f5f5; }

/* ──────────────────────────────────────────────────────────────
   3. Tile  — main grid + every rail
   ────────────────────────────────────────────────────────────── */
.fp-dag-tile {
    position: relative;
    display: flex; flex-direction: column;
    gap: var(--fp-space-1);
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    padding: var(--fp-space-2);
    width: 100%;
    transition: var(--fp-transition);
}
.fp-dag-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--fp-shadow-md);
    border-color: transparent;
}
.fp-dag-tile--rail    { min-width: 200px; max-width: 200px; scroll-snap-align: start; }
.fp-dag-tile--compact { padding: var(--fp-space-2); gap: var(--fp-space-1); }

@media (min-width: 768px) {
    .fp-dag-tile { gap: var(--fp-space-2); padding: var(--fp-space-3); border-radius: var(--fp-radius-lg); }
    .fp-dag-tile--rail { min-width: 220px; max-width: 220px; }
}
@media (min-width: 1024px) { .fp-dag-tile { padding: var(--fp-space-3); } }

.fp-dag-tile-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: var(--fp-text-2xs);
    color: var(--fp-text-muted);
}
.fp-dag-tile-store {
    font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--fp-text-main);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fp-dag-tile-score {
    display: inline-flex; align-items: center; gap: 2px;
    background: #f3f4f6;
    color: var(--fp-text-main);
    border-radius: var(--fp-radius-xs);
    padding: 1px 4px;
    font-size: var(--fp-text-2xs); font-weight: 800;
    font-feature-settings: 'tnum';
    flex-shrink: 0;
}
.fp-dag-tile-score .fp-dag-icon { width: 10px; height: 10px; }
@media (min-width: 768px) {
    .fp-dag-tile-head { font-size: var(--fp-text-xs); }
    .fp-dag-tile-score { font-size: var(--fp-text-sm); padding: 2px var(--fp-space-2); border-radius: var(--fp-radius-sm); }
    .fp-dag-tile-score .fp-dag-icon { width: 12px; height: 12px; }
}
.fp-dag-tile-score--a { background: var(--fp-lime); color: #1a1a1a; }
.fp-dag-tile-score--b { background: var(--fp-green-soft); color: var(--fp-green-dark); }
.fp-dag-tile-score--c { background: #fff7ed; color: #c2410c; }
.fp-dag-tile-score--d { background: #fee2e2; color: #b91c1c; }

.fp-dag-tile-visual {
    position: relative; display: block;
    border-radius: var(--fp-radius-sm);
    overflow: hidden;
    background: #fafafa;
    aspect-ratio: 5 / 3;
}
@media (min-width: 768px)  { .fp-dag-tile-visual { aspect-ratio: 3 / 2; } }
@media (min-width: 1024px) { .fp-dag-tile-visual { aspect-ratio: 5 / 4; } }
.fp-dag-tile-visual img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.fp-dag-tile:hover .fp-dag-tile-visual img { transform: scale(1.05); }

.fp-dag-tile-flag {
    position: absolute; top: 6px; left: 6px;
    display: inline-flex; align-items: center; gap: 2px;
    font-size: var(--fp-text-4xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
    padding: 2px 6px;
    border-radius: var(--fp-radius-xs);
    background: var(--fp-text-main); color: #fff;
    max-width: calc(100% - 12px);
    white-space: nowrap;
}
.fp-dag-tile-flag .fp-dag-icon { width: 8px; height: 8px; }
@media (min-width: 768px) {
    .fp-dag-tile-flag { top: var(--fp-space-2); left: var(--fp-space-2); font-size: var(--fp-text-3xs); padding: 4px var(--fp-space-2); border-radius: var(--fp-radius-sm); gap: 4px; }
    .fp-dag-tile-flag .fp-dag-icon { width: 10px; height: 10px; }
}
.fp-dag-tile-flag--atl   { background: var(--fp-gradient-green); }
.fp-dag-tile-flag--flash { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.fp-dag-tile-flag--fresh { background: var(--fp-lime); color: #1a1a1a; }

.fp-dag-tile-discount {
    position: absolute; top: 6px; right: 6px;
    background: #ef4444; color: #fff;
    border-radius: var(--fp-radius-xs);
    padding: 2px 6px;
    font-size: var(--fp-text-xs); font-weight: 800;
    font-feature-settings: 'tnum';
}
@media (min-width: 768px) {
    .fp-dag-tile-discount { top: var(--fp-space-2); right: var(--fp-space-2); font-size: var(--fp-text-sm); padding: 4px var(--fp-space-2); border-radius: var(--fp-radius-sm); }
}

.fp-dag-tile-save {
    position: absolute; bottom: 6px; right: 6px;
    width: 28px; height: 28px;
    border-radius: var(--fp-radius-circle);
    background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
    border: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--fp-text-main);
    transition: var(--fp-transition);
}
.fp-dag-tile-save .fp-dag-icon { width: 14px; height: 14px; }
.fp-dag-tile-save:hover { background: #fff; transform: scale(1.05); }
@media (min-width: 768px) {
    .fp-dag-tile-save { width: 32px; height: 32px; bottom: var(--fp-space-2); right: var(--fp-space-2); }
    .fp-dag-tile-save .fp-dag-icon { width: 16px; height: 16px; }
}
.fp-dag-tile-save[aria-pressed="true"] { background: var(--fp-text-main); color: var(--fp-lime); }
.fp-dag-tile-save[aria-pressed="true"] .fp-dag-icon { fill: var(--fp-lime); }

.fp-dag-tile-title {
    margin: 0;
    font-size: var(--fp-text-sm2); font-weight: 700; line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}
.fp-dag-tile-title a {
    color: var(--fp-text-main); text-decoration: none;
}
.fp-dag-tile-title a:hover { text-decoration: underline; }
@media (min-width: 768px) { .fp-dag-tile-title { font-size: var(--fp-text-base); } }

.fp-dag-tile-price {
    display: flex; align-items: baseline; flex-wrap: wrap;
    gap: 2px var(--fp-space-1);
}
.fp-dag-tile-deal-price {
    font-size: var(--fp-text-md); font-weight: 900;
    color: var(--fp-text-main);
    font-feature-settings: 'tnum';
}
.fp-dag-tile-original {
    font-size: var(--fp-text-xs); color: var(--fp-text-muted);
    text-decoration: line-through;
}
.fp-dag-tile-save-amt {
    display: none;
    width: 100%;
    font-size: var(--fp-text-xs);
    color: var(--fp-green-dark); font-weight: 700;
}
@media (min-width: 768px) {
    .fp-dag-tile-deal-price { font-size: var(--fp-text-lg); }
    .fp-dag-tile-original   { font-size: var(--fp-text-sm); }
}
@media (min-width: 1024px) {
    .fp-dag-tile-deal-price { font-size: var(--fp-text-lg2); }
    .fp-dag-tile-save-amt   { display: block; }
}

.fp-dag-tile-spark {
    display: none;
    align-items: center; gap: var(--fp-space-2);
    color: var(--fp-text-muted);
    font-size: var(--fp-text-xs);
}
@media (min-width: 1024px) { .fp-dag-tile-spark { display: flex; } }
.fp-dag-tile-spark--down { color: var(--fp-green-dark); }
.fp-dag-tile-spark--up   { color: #b91c1c; }
.fp-dag-tile-spark svg { display: block; }
.fp-dag-tile-spark-label {
    font-weight: 700;
    background: var(--fp-green-soft); color: var(--fp-green-dark);
    padding: 2px 6px;
    border-radius: var(--fp-radius-xs);
}
.fp-dag-tile-spark--up .fp-dag-tile-spark-label {
    background: #fee2e2; color: #b91c1c;
}

.fp-dag-tile-effective {
    display: none;
    align-items: center; gap: var(--fp-space-2);
    background: var(--fp-gradient-green);
    color: #fff;
    border-radius: var(--fp-radius-sm);
    padding: 4px var(--fp-space-2);
    font-size: var(--fp-text-2xs);
    line-height: 1.3;
}
.fp-dag-tile-effective .fp-dag-icon { width: 12px; height: 12px; color: #fff; flex-shrink: 0; }
.fp-dag-tile-effective strong { font-weight: 900; }
@media (min-width: 768px)  { .fp-dag-tile-effective { display: flex; font-size: var(--fp-text-xs); border-radius: var(--fp-radius-md); padding: var(--fp-space-2) var(--fp-space-3); } }

.fp-dag-tile-bank {
    margin: 0;
    display: none;
    align-items: center; gap: 4px;
    font-size: var(--fp-text-xs);
    color: var(--fp-text-muted);
}
.fp-dag-tile-bank .fp-dag-icon { width: 12px; height: 12px; }
.fp-dag-tile-bank strong { color: var(--fp-text-main); }
@media (min-width: 1024px) { .fp-dag-tile-bank { display: flex; } }

.fp-dag-tile-verdict {
    margin: 0;
    display: none;
    gap: var(--fp-space-1);
    font-size: var(--fp-text-xs); line-height: 1.4;
    color: var(--fp-text-main);
    padding: 6px var(--fp-space-2);
    border-left: 2px solid var(--fp-lime);
    background: linear-gradient(90deg, var(--fp-lime-soft), transparent);
}
.fp-dag-tile-verdict-icon { color: var(--fp-lime-dark); flex-shrink: 0; }
.fp-dag-tile-verdict-icon .fp-dag-icon { width: 12px; height: 12px; }
@media (min-width: 1024px) { .fp-dag-tile-verdict { display: flex; } }

.fp-dag-tile-foot {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 'buy';
    align-items: center;
    gap: var(--fp-space-1);
    padding-top: var(--fp-space-1);
    border-top: 1px dashed var(--fp-border);
    margin-top: auto;
}
.fp-dag-tile-best, .fp-dag-tile-stock, .fp-dag-tile-posted { display: none; }
@media (min-width: 768px) {
    .fp-dag-tile-foot {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: 'best stock buy';
        padding-top: var(--fp-space-2);
    }
    .fp-dag-tile-best { display: inline-flex; }
    .fp-dag-tile-stock, .fp-dag-tile-posted { display: inline; }
}
.fp-dag-tile-best, .fp-dag-tile-buy { grid-area: buy; }

.fp-dag-tile-stock,
.fp-dag-tile-posted {
    grid-area: stock;
    justify-self: end;
    font-size: var(--fp-text-2xs);
    color: var(--fp-text-muted);
    line-height: 1.2;
    text-align: right;
}
.fp-dag-tile-stock { color: #b91c1c; font-weight: 700; }
@media (min-width: 1024px) {
    .fp-dag-tile-stock, .fp-dag-tile-posted { font-size: var(--fp-text-xs); }
}

.fp-dag-tile-best {
    display: none;
    align-items: center; gap: 4px;
    font-size: var(--fp-text-2xs); font-weight: 700;
    padding: 3px 6px;
    border-radius: var(--fp-radius-xs);
    line-height: 1;
}
@media (min-width: 1024px) {
    .fp-dag-tile-best { font-size: var(--fp-text-xs); padding: 4px var(--fp-space-2); border-radius: var(--fp-radius-sm); }
}
.fp-dag-tile-best--now  { background: var(--fp-green-soft); color: var(--fp-green-dark); }
.fp-dag-tile-best--wait { background: #fff7ed; color: #c2410c; }
.fp-dag-tile-best--soon { background: #fef3c7; color: #92400e; }
.fp-dag-tile-best .fp-dag-icon { width: 12px; height: 12px; }

.fp-dag-tile-buy {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px;
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-5);
    font-size: var(--fp-text-sm); font-weight: 800;
    text-decoration: none; min-height: 34px;
    transition: var(--fp-transition);
    min-width: 72px;
}
.fp-dag-tile-buy:hover { background: #000; transform: translateY(-1px); }
.fp-dag-tile-buy .fp-dag-icon { width: 16px; height: 16px; }
@media (min-width: 768px) {
    .fp-dag-tile-best  { grid-area: best; }
    .fp-dag-tile-buy   { grid-area: buy; min-height: 38px; min-width: 90px; font-size: var(--fp-text-md); padding: var(--fp-space-2) var(--fp-space-6); }
    .fp-dag-tile-buy .fp-dag-icon { width: 18px; height: 18px; }
}

/* ─── List view ───
   Tile becomes a 2-column grid: image left (spanning all rows), every other
   child auto-flows into column 2 in DOM order. No aspect-ratio conflicts. */
.fp-dag-grid[data-fp-dag-view="list"] {
    grid-template-columns: 1fr !important;
    gap: var(--fp-space-2) !important;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile {
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: repeat(5, auto);
    column-gap: var(--fp-space-3);
    row-gap: var(--fp-space-1);
    align-items: center;
    padding: var(--fp-space-3);
    border-radius: var(--fp-radius-lg);
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-visual {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 110px;
    height: 110px;
    aspect-ratio: 1;
    align-self: center;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile > :not(.fp-dag-tile-visual) {
    grid-column: 2;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-spark,
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-bank,
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-verdict,
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-save-amt {
    display: none !important;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-effective {
    display: flex;
    font-size: var(--fp-text-xs);
    padding: 4px var(--fp-space-2);
    width: max-content;
    max-width: 100%;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-title {
    min-height: 0;
    -webkit-line-clamp: 2;
    font-size: var(--fp-text-md);
    align-self: start;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-foot {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: 'best stock buy';
    padding-top: var(--fp-space-2);
    margin-top: 0;
    border-top: 1px dashed var(--fp-border);
    gap: var(--fp-space-2);
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-best {
    display: inline-flex; grid-area: best;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-stock,
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-posted {
    display: inline; grid-area: stock; justify-self: end;
}
.fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-buy { grid-area: buy; }

@media (min-width: 768px) {
    .fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile {
        grid-template-columns: 160px 1fr;
        column-gap: var(--fp-space-4);
        padding: var(--fp-space-4);
    }
    .fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-visual {
        width: 160px; height: 160px;
    }
    .fp-dag-grid[data-fp-dag-view="list"] .fp-dag-tile-title { font-size: var(--fp-text-lg); }
}

/* ──────────────────────────────────────────────────────────────
   4. Hero
   ────────────────────────────────────────────────────────────── */
.fp-dag-hero {
    position: relative;
    background: var(--fp-surface);
    border-radius: var(--fp-radius-2xl);
    padding: var(--fp-space-8) var(--fp-space-5) var(--fp-space-10);
    box-shadow: var(--fp-shadow-md);
    overflow: hidden;
}
.fp-dag-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.fp-dag-hero-bg-mesh {
    position: absolute; inset: -20%;
    background:
        radial-gradient(circle at 12% 18%, var(--fp-lime-soft) 0%, transparent 35%),
        radial-gradient(circle at 88% 8%, #fff1f2 0%, transparent 30%),
        radial-gradient(circle at 50% 95%, var(--fp-green-light) 0%, transparent 30%);
    opacity: 0.85;
}
.fp-dag-hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.fp-dag-hero-bg-orb {
    position: absolute;
    border-radius: var(--fp-radius-circle);
    filter: blur(40px);
    opacity: 0.5;
}
.fp-dag-hero-bg-orb--a { width: 200px; height: 200px; top: -60px; right: -60px; background: var(--fp-lime); }
.fp-dag-hero-bg-orb--b { width: 240px; height: 240px; bottom: -80px; left: -80px; background: #fda4af; }
.fp-dag-hero > * { position: relative; z-index: 1; }

.fp-dag-breadcrumb {
    display: flex; gap: var(--fp-space-2);
    font-size: var(--fp-text-sm); color: var(--fp-text-muted);
    margin-bottom: var(--fp-space-4);
}
.fp-dag-breadcrumb a { color: var(--fp-text-muted); text-decoration: none; }
.fp-dag-breadcrumb a:hover { color: var(--fp-text-main); text-decoration: underline; }

.fp-dag-hero-eyebrow {
    display: inline-flex; align-items: center; gap: var(--fp-space-2);
    background: var(--fp-lime-soft); color: var(--fp-lime-dark);
    border: 1px solid var(--fp-lime-glow);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: var(--fp-space-3);
}
.fp-dag-hero-eyebrow .fp-dag-icon { width: 14px; height: 14px; }

.fp-dag-hero-h1 {
    margin: 0 0 var(--fp-space-3);
    font-size: var(--fp-text-3xl); line-height: 1.1;
    font-weight: 900; letter-spacing: -0.02em;
}
.fp-dag-hero-h1 em {
    font-style: normal;
    background: var(--fp-gradient-lime);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-hero-sub {
    margin: 0 0 var(--fp-space-6);
    color: var(--fp-text-muted); font-size: var(--fp-text-md); line-height: 1.5;
}
.fp-dag-hero-sub strong { color: var(--fp-text-main); }

@media (min-width: 768px) { .fp-dag-hero { padding: var(--fp-space-10) var(--fp-space-8) var(--fp-space-12); } .fp-dag-hero-h1 { font-size: var(--fp-text-4xl); } }
@media (min-width: 1024px) { .fp-dag-hero { padding: var(--fp-space-12) var(--fp-space-10) var(--fp-space-16); } .fp-dag-hero-h1 { font-size: var(--fp-text-5xl); } }

/* Quiz */
.fp-dag-quiz {
    background: #fafafa;
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-4);
    border: 1px solid var(--fp-border);
}
.fp-dag-quiz-steps {
    display: flex; list-style: none; margin: 0 0 var(--fp-space-5);
    padding: 0; gap: var(--fp-space-2);
    overflow-x: auto; scrollbar-width: none;
}
.fp-dag-quiz-steps::-webkit-scrollbar { display: none; }
.fp-dag-quiz-step {
    display: inline-flex; align-items: center; gap: var(--fp-space-2);
    background: #fff;
    color: var(--fp-text-muted);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-sm); font-weight: 700;
    white-space: nowrap;
}
.fp-dag-quiz-step span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: #f5f5f5;
    border-radius: var(--fp-radius-circle);
    font-size: var(--fp-text-xs);
}
.fp-dag-quiz-step.is-active { background: var(--fp-text-main); color: #fff; border-color: var(--fp-text-main); }
.fp-dag-quiz-step.is-active span { background: var(--fp-lime); color: #1a1a1a; }
.fp-dag-quiz-step.is-done { background: var(--fp-lime-soft); color: var(--fp-lime-dark); border-color: var(--fp-lime); }
.fp-dag-quiz-step.is-done span { background: var(--fp-lime); color: #1a1a1a; }

.fp-dag-quiz-pane { border: 0; margin: 0; padding: 0; }
.fp-dag-quiz-pane legend {
    font-size: var(--fp-text-lg); font-weight: 800;
    color: var(--fp-text-main);
    margin-bottom: var(--fp-space-3); padding: 0;
}
.fp-dag-quiz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--fp-space-2); }
.fp-dag-quiz-grid--3 { grid-template-columns: repeat(2, 1fr); }
.fp-dag-quiz-grid--4 { grid-template-columns: repeat(2, 1fr); }
.fp-dag-quiz-card {
    position: relative; display: block;
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    padding: var(--fp-space-3);
    cursor: pointer; min-height: 56px;
    transition: var(--fp-transition);
}
.fp-dag-quiz-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.fp-dag-quiz-card span {
    display: flex; align-items: center; gap: var(--fp-space-2);
    font-size: var(--fp-text-md); font-weight: 600; color: var(--fp-text-main);
}
.fp-dag-quiz-card span .fp-dag-icon { width: 18px; height: 18px; color: var(--fp-text-muted); }
.fp-dag-quiz-card:hover { border-color: var(--fp-lime); }
.fp-dag-quiz-card:has(input:checked) {
    border-color: var(--fp-lime-deep);
    background: var(--fp-lime-soft);
    box-shadow: 0 4px 12px var(--fp-lime-glow);
}
.fp-dag-quiz-card:has(input:checked) span .fp-dag-icon { color: var(--fp-lime-dark); }

.fp-dag-quiz-bar {
    display: flex; align-items: center; gap: var(--fp-space-2);
    margin-top: var(--fp-space-5); flex-wrap: wrap;
}
.fp-dag-quiz-back, .fp-dag-quiz-skip, .fp-dag-quiz-next {
    border: 0; cursor: pointer; font-family: inherit;
    font-weight: 700; font-size: var(--fp-text-md);
    text-decoration: none;
    border-radius: var(--fp-radius-pill);
    min-height: 44px; padding: 0 var(--fp-space-4);
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.fp-dag-quiz-back { background: transparent; color: var(--fp-text-muted); }
.fp-dag-quiz-skip { background: transparent; color: var(--fp-text-muted); margin-left: auto; }
.fp-dag-quiz-next { background: var(--fp-text-main); color: #fff; padding: 0 var(--fp-space-6); }
.fp-dag-quiz-next:hover { background: #000; }
.fp-dag-quiz-next .fp-dag-icon { width: 16px; height: 16px; }

@media (min-width: 768px) {
    .fp-dag-quiz-grid { grid-template-columns: repeat(3, 1fr); }
    .fp-dag-quiz-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .fp-dag-quiz-grid--4 { grid-template-columns: repeat(4, 1fr); }
    .fp-dag-quiz-card { min-height: 72px; }
}

/* Finder results */
.fp-dag-results-list {
    display: grid; grid-template-columns: 1fr; gap: var(--fp-space-4);
    list-style: none; margin: 0; padding: 0;
}
.fp-dag-result { position: relative; }
.fp-dag-result-rank, .fp-dag-result-match {
    position: absolute; top: -8px; z-index: 2;
    font-size: var(--fp-text-xs); font-weight: 800;
    padding: 4px var(--fp-space-2); border-radius: var(--fp-radius-sm);
}
.fp-dag-result-rank { left: var(--fp-space-3); background: var(--fp-text-main); color: #fff; }
.fp-dag-result-match { right: var(--fp-space-3); background: var(--fp-gradient-lime); color: #1a1a1a; }
.fp-dag-results-actions {
    display: flex; gap: var(--fp-space-3);
    margin-top: var(--fp-space-5); flex-wrap: wrap;
}
.fp-dag-results-retake {
    background: transparent; color: var(--fp-text-muted);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-3) var(--fp-space-5);
    cursor: pointer; font-weight: 700;
    min-height: 44px;
}
.fp-dag-results-grid {
    display: inline-flex; align-items: center; gap: var(--fp-space-1);
    color: var(--fp-text-main); font-weight: 800; text-decoration: none;
    padding: var(--fp-space-3) var(--fp-space-2);
}
@media (min-width: 1024px) { .fp-dag-results-list { grid-template-columns: repeat(3, 1fr); } }

/* ──────────────────────────────────────────────────────────────
   5. Stats strip
   ────────────────────────────────────────────────────────────── */
.fp-dag-stats-list {
    display: flex; gap: var(--fp-space-3);
    list-style: none; margin: 0; padding: 0;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.fp-dag-stats-list::-webkit-scrollbar { display: none; }
.fp-dag-stat {
    flex-shrink: 0; scroll-snap-align: start;
    display: flex; align-items: center; gap: var(--fp-space-2);
    background: var(--fp-surface); border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-3) var(--fp-space-4);
    font-size: var(--fp-text-sm);
}
.fp-dag-stat .fp-dag-icon { width: 18px; height: 18px; color: var(--fp-text-muted); }
.fp-dag-stat strong { font-size: var(--fp-text-md); font-weight: 800; color: var(--fp-text-main); }
.fp-dag-stat span { color: var(--fp-text-muted); }
.fp-dag-stat--cashback { background: var(--fp-gradient-green); border-color: transparent; color: #fff; }
.fp-dag-stat--cashback strong, .fp-dag-stat--cashback span, .fp-dag-stat--cashback .fp-dag-icon { color: #fff; }

/* ──────────────────────────────────────────────────────────────
   6. Saved deals · Hottest · Just-Dropped · Recently-Launched-style rails
   ────────────────────────────────────────────────────────────── */
.fp-dag-saved-clear {
    margin-left: auto;
    background: transparent;
    border: 0; cursor: pointer;
    color: var(--fp-text-muted);
    font-weight: 700; font-size: var(--fp-text-sm);
    text-decoration: underline;
}

.fp-dag-rail { position: relative; }
.fp-dag-rail-track {
    display: flex; gap: var(--fp-space-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--fp-space-2);
    padding: var(--fp-space-2) 0 var(--fp-space-4);
    scrollbar-width: thin;
}
.fp-dag-rail-track::-webkit-scrollbar { height: 6px; }
.fp-dag-rail-track::-webkit-scrollbar-thumb { background: var(--fp-border); border-radius: 3px; }

.fp-dag-rail-arrow {
    display: none;
    position: absolute; top: 45%;
    width: 40px; height: 40px;
    border-radius: var(--fp-radius-circle);
    background: #fff; border: 1px solid var(--fp-border);
    cursor: pointer;
    align-items: center; justify-content: center;
    box-shadow: var(--fp-shadow-md);
    z-index: 2; color: var(--fp-text-main);
}
.fp-dag-rail-arrow--prev { left: -10px; transform: translateY(-50%) rotate(90deg); }
.fp-dag-rail-arrow--next { right: -10px; transform: translateY(-50%) rotate(-90deg); }
.fp-dag-rail-arrow .fp-dag-icon { width: 20px; height: 20px; }
@media (min-width: 1024px) { .fp-dag-rail-arrow { display: inline-flex; } }

.fp-dag-fresh-wrap {
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding-top: var(--fp-space-4);
    width: 200px;
}
.fp-dag-fresh-wrap .fp-dag-tile--rail { min-width: 0; max-width: 100%; width: 100%; }
@media (min-width: 768px) { .fp-dag-fresh-wrap { width: 220px; } }
.fp-dag-fresh-time {
    position: absolute; top: 0; left: var(--fp-space-2);
    background: #fff; border: 1px solid var(--fp-lime);
    color: var(--fp-lime-dark);
    font-size: var(--fp-text-2xs); font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--fp-radius-pill);
    display: inline-flex; align-items: center; gap: 4px;
    z-index: 2;
    line-height: 1.2;
    white-space: nowrap;
}
.fp-dag-fresh-time .fp-dag-icon { width: 10px; height: 10px; }

/* ──────────────────────────────────────────────────────────────
   7. Quick filter pills
   ────────────────────────────────────────────────────────────── */
.fp-dag-pills { padding-bottom: 0 !important; }
.fp-dag-pills-scroll {
    display: flex; gap: var(--fp-space-2);
    overflow-x: auto;
    scrollbar-width: none;
    padding: var(--fp-space-1) 0 var(--fp-space-2);
}
.fp-dag-pills-scroll::-webkit-scrollbar { display: none; }
.fp-dag-pill {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: var(--fp-space-2);
    background: var(--fp-surface);
    color: var(--fp-text-main);
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-4);
    font-family: inherit; font-weight: 700; font-size: var(--fp-text-sm);
    cursor: pointer; min-height: 40px;
    transition: var(--fp-transition);
}
.fp-dag-pill:hover { border-color: var(--fp-text-main); }
.fp-dag-pill .fp-dag-icon { width: 14px; height: 14px; color: var(--fp-text-muted); }
.fp-dag-pill.is-active {
    background: var(--fp-text-main); color: #fff; border-color: var(--fp-text-main);
}
.fp-dag-pill.is-active .fp-dag-icon { color: var(--fp-lime); }

/* ──────────────────────────────────────────────────────────────
   8. Sticky filter bar + drawer
   ────────────────────────────────────────────────────────────── */
.fp-dag-filterbar {
    position: sticky; top: 0; z-index: 20;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: var(--fp-space-3) var(--fp-space-4);
    border-bottom: 1px solid var(--fp-border);
    margin-left: calc(var(--fp-space-4) * -1);
    margin-right: calc(var(--fp-space-4) * -1);
}
.fp-dag-filterbar-row { display: flex; align-items: center; gap: var(--fp-space-2); }
.fp-dag-search {
    display: flex; align-items: center; gap: var(--fp-space-2);
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-4);
    flex: 1; min-width: 0; min-height: 44px;
}
.fp-dag-search:focus-within { border-color: var(--fp-lime-deep); box-shadow: 0 0 0 3px var(--fp-lime-glow); }
.fp-dag-search .fp-dag-icon { width: 18px; height: 18px; color: var(--fp-text-muted); flex-shrink: 0; }
.fp-dag-search input {
    border: 0; background: transparent;
    font-family: inherit; font-size: var(--fp-text-md);
    color: var(--fp-text-main); flex: 1; min-width: 0; outline: none;
}
.fp-dag-search-clear {
    border: 0; background: #f5f5f5; cursor: pointer;
    width: 24px; height: 24px;
    border-radius: var(--fp-radius-circle);
    color: var(--fp-text-muted);
}

.fp-dag-filterbar-open {
    display: inline-flex; align-items: center; gap: var(--fp-space-1);
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-4);
    cursor: pointer; font-family: inherit;
    font-weight: 700; font-size: var(--fp-text-sm);
    color: var(--fp-text-main); min-height: 44px;
}
.fp-dag-filterbar-open .fp-dag-icon { width: 16px; height: 16px; }
.fp-dag-filterbar-open span:not(.fp-dag-filterbar-count) { display: none; }
.fp-dag-filterbar-count {
    background: var(--fp-text-main); color: #fff;
    font-size: var(--fp-text-xs); font-weight: 800;
    width: 20px; height: 20px;
    border-radius: var(--fp-radius-circle);
    display: inline-flex; align-items: center; justify-content: center;
}
.fp-dag-sort {
    display: inline-flex; align-items: center; gap: var(--fp-space-1);
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 0 var(--fp-space-3); min-height: 44px;
}
.fp-dag-sort .fp-dag-icon { width: 16px; height: 16px; color: var(--fp-text-muted); }
.fp-dag-sort select {
    border: 0; background: transparent;
    font-family: inherit; font-size: var(--fp-text-sm); font-weight: 700;
    color: var(--fp-text-main); cursor: pointer; outline: none;
    padding: var(--fp-space-2) 0;
}
.fp-dag-view {
    display: none;
    align-items: center; gap: 4px;
    background: #fff; border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 4px;
}
.fp-dag-view-btn {
    border: 0; background: transparent;
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: var(--fp-radius-pill);
    color: var(--fp-text-muted);
    display: inline-flex; align-items: center; justify-content: center;
}
.fp-dag-view-btn.is-active { background: var(--fp-text-main); color: #fff; }

@media (min-width: 768px) {
    .fp-dag-filterbar-open span:not(.fp-dag-filterbar-count) { display: inline; }
    .fp-dag-view { display: inline-flex; }
}

.fp-dag-filterbar-chips {
    display: flex; flex-wrap: wrap; gap: var(--fp-space-1);
    margin-top: var(--fp-space-2);
}
.fp-dag-filterbar-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--fp-text-main); color: #fff;
    font-size: var(--fp-text-xs); font-weight: 700;
    padding: 4px var(--fp-space-2);
    border-radius: var(--fp-radius-pill);
}
.fp-dag-filterbar-chip button { border: 0; background: transparent; color: #fff; cursor: pointer; }

/* Drawer */
.fp-dag-drawer {
    position: fixed; inset: 0; z-index: 100;
    display: flex; align-items: flex-end; justify-content: flex-end;
}
.fp-dag-drawer[hidden] { display: none; }
.fp-dag-drawer-scrim { position: absolute; inset: 0; background: rgba(17,24,39,0.55); backdrop-filter: blur(2px); }
.fp-dag-drawer-panel {
    position: relative; background: #fff;
    width: 100%; max-height: 86vh;
    border-top-left-radius: var(--fp-radius-2xl);
    border-top-right-radius: var(--fp-radius-2xl);
    display: flex; flex-direction: column;
    animation: fpDagDrawerUp 0.28s cubic-bezier(0.22,0.61,0.36,1);
}
@keyframes fpDagDrawerUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.fp-dag-drawer-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--fp-space-4) var(--fp-space-5);
    border-bottom: 1px solid var(--fp-border);
}
.fp-dag-drawer-head h2 {
    display: inline-flex; align-items: center; gap: var(--fp-space-2);
    margin: 0; font-size: var(--fp-text-lg2); font-weight: 800;
}
.fp-dag-drawer-head h2 .fp-dag-icon { width: 18px; height: 18px; color: var(--fp-text-muted); }
.fp-dag-drawer-close {
    border: 0; background: #f5f5f5;
    width: 36px; height: 36px;
    border-radius: var(--fp-radius-circle);
    cursor: pointer; font-size: var(--fp-text-xl); color: var(--fp-text-main);
}
.fp-dag-drawer-body { flex: 1; overflow-y: auto; padding: var(--fp-space-3) var(--fp-space-5); }
.fp-dag-fgroup { border-bottom: 1px solid var(--fp-border); padding: var(--fp-space-3) 0; }
.fp-dag-fgroup summary {
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 700; font-size: var(--fp-text-md);
}
.fp-dag-fgroup summary::-webkit-details-marker { display: none; }
.fp-dag-fgroup summary .fp-dag-icon { width: 16px; height: 16px; transition: transform 0.2s ease; color: var(--fp-text-muted); }
.fp-dag-fgroup[open] summary .fp-dag-icon { transform: rotate(180deg); }
.fp-dag-fgroup-list { display: flex; flex-direction: column; gap: var(--fp-space-1); padding: var(--fp-space-3) 0 0; }
.fp-dag-fopt {
    display: grid; grid-template-columns: 22px 1fr auto;
    align-items: center; gap: var(--fp-space-2);
    padding: var(--fp-space-2);
    border-radius: var(--fp-radius-sm);
    cursor: pointer; font-size: var(--fp-text-md);
}
.fp-dag-fopt:hover { background: #fafafa; }
.fp-dag-fopt input { width: 18px; height: 18px; accent-color: var(--fp-lime-deep); }
.fp-dag-fopt em { font-style: normal; color: var(--fp-text-muted); font-size: var(--fp-text-sm); }
.fp-dag-drawer-foot {
    display: flex; gap: var(--fp-space-2);
    padding: var(--fp-space-4) var(--fp-space-5);
    border-top: 1px solid var(--fp-border);
}
.fp-dag-drawer-foot .fp-dag-btn { flex: 1; }
.fp-dag-drawer-foot .fp-dag-btn--ghost { flex: 0 0 auto; }
@media (min-width: 1024px) {
    .fp-dag-drawer-panel {
        width: 420px; max-height: 100vh; height: 100vh;
        border-radius: 0;
        border-top-left-radius: var(--fp-radius-2xl);
        border-bottom-left-radius: var(--fp-radius-2xl);
        animation: fpDagDrawerRight 0.28s cubic-bezier(0.22,0.61,0.36,1);
    }
    @keyframes fpDagDrawerRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
}

/* ──────────────────────────────────────────────────────────────
   9. Main grid
   ────────────────────────────────────────────────────────────── */
.fp-dag-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fp-space-2);
}
@media (min-width: 768px)  { .fp-dag-grid { grid-template-columns: repeat(3, 1fr); gap: var(--fp-space-3); } }
@media (min-width: 1024px) { .fp-dag-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .fp-dag-grid { grid-template-columns: repeat(5, 1fr); gap: var(--fp-space-3); } }

.fp-dag-grid-empty {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: var(--fp-space-2);
    padding: var(--fp-space-12) var(--fp-space-4);
    background: var(--fp-surface);
    border: 1px dashed var(--fp-border);
    border-radius: var(--fp-radius-xl);
    color: var(--fp-text-muted);
}
.fp-dag-grid-empty .fp-dag-icon { width: 32px; height: 32px; }
.fp-dag-grid-empty h3 { margin: 0; color: var(--fp-text-main); }
.fp-dag-grid-more {
    margin: var(--fp-space-5) auto 0; display: block;
    background: #fff; border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-3) var(--fp-space-6);
    font-weight: 700; cursor: pointer; min-height: 44px;
}

/* ──────────────────────────────────────────────────────────────
   10. Biggest price drops list
   ────────────────────────────────────────────────────────────── */
.fp-dag-drops-list {
    display: flex; flex-direction: column; gap: var(--fp-space-2);
    list-style: none; margin: 0; padding: 0;
}
.fp-dag-drops-row {
    display: grid;
    grid-template-columns: 32px 64px minmax(0, 1fr) auto auto auto;
    grid-template-areas: 'rank img meta price pct cta';
    align-items: center; gap: var(--fp-space-3);
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-lg);
    padding: var(--fp-space-3);
}
.fp-dag-drops-row > .fp-dag-drops-rank  { grid-area: rank; }
.fp-dag-drops-row > .fp-dag-drops-img   { grid-area: img; }
.fp-dag-drops-row > .fp-dag-drops-meta  { grid-area: meta; min-width: 0; }
.fp-dag-drops-row > .fp-dag-drops-price { grid-area: price; }
.fp-dag-drops-row > .fp-dag-drops-pct   { grid-area: pct; }
.fp-dag-drops-row > .fp-dag-drops-cta   { grid-area: cta; }
.fp-dag-drops-rank {
    background: var(--fp-text-main); color: #fff;
    font-weight: 800; padding: 4px var(--fp-space-2);
    border-radius: var(--fp-radius-sm);
    font-size: var(--fp-text-sm);
    text-align: center;
}
.fp-dag-drops-row[data-fp-dag-rank="1"] .fp-dag-drops-rank { background: var(--fp-lime); color: #1a1a1a; }
.fp-dag-drops-img img { border-radius: var(--fp-radius-sm); object-fit: cover; }
.fp-dag-drops-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fp-dag-drops-title {
    color: var(--fp-text-main); font-weight: 700; text-decoration: none;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fp-dag-drops-store { font-size: var(--fp-text-xs); color: var(--fp-text-muted); }
.fp-dag-drops-price { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.fp-dag-drops-now { font-weight: 800; }
.fp-dag-drops-was { font-size: var(--fp-text-xs); color: var(--fp-text-muted); text-decoration: line-through; }
.fp-dag-drops-pct {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--fp-green-soft); color: var(--fp-green-dark);
    font-weight: 800; padding: 4px var(--fp-space-2);
    border-radius: var(--fp-radius-sm);
}
.fp-dag-drops-pct .fp-dag-icon { width: 12px; height: 12px; }
.fp-dag-drops-cta {
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-sm); font-weight: 700;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
}
.fp-dag-drops-cta .fp-dag-icon { width: 14px; height: 14px; }
@media (max-width: 600px) {
    .fp-dag-drops-row {
        grid-template-columns: 24px 56px minmax(0, 1fr) auto;
        grid-template-areas:
            'rank img meta pct'
            'rank img meta cta';
        gap: var(--fp-space-2);
        padding: var(--fp-space-2);
    }
    .fp-dag-drops-row > .fp-dag-drops-rank  { grid-area: rank; }
    .fp-dag-drops-row > .fp-dag-drops-img   { grid-area: img; }
    .fp-dag-drops-row > .fp-dag-drops-img img { width: 56px; height: 56px; }
    .fp-dag-drops-row > .fp-dag-drops-meta  { grid-area: meta; }
    .fp-dag-drops-row > .fp-dag-drops-price { display: none; }
    .fp-dag-drops-row > .fp-dag-drops-pct   { grid-area: pct; }
    .fp-dag-drops-row > .fp-dag-drops-cta   { grid-area: cta; }
}

/* ──────────────────────────────────────────────────────────────
   11. Bundle / Stack builder
   ────────────────────────────────────────────────────────────── */
.fp-dag-stack {
    background: var(--fp-surface);
    border-radius: var(--fp-radius-2xl);
    padding: var(--fp-space-6) var(--fp-space-5) var(--fp-space-8);
    box-shadow: var(--fp-shadow-sm);
}
@media (min-width: 768px)  { .fp-dag-stack { padding: var(--fp-space-8) var(--fp-space-8); } }
@media (min-width: 1024px) { .fp-dag-stack { padding: var(--fp-space-10); } }

/* ──────────────────────────────────────────────────────────────
   12. Should-I-Buy widget
   ────────────────────────────────────────────────────────────── */
.fp-dag-sib {
    position: relative;
    background: var(--fp-surface);
    border-radius: var(--fp-radius-2xl);
    padding: var(--fp-space-6) var(--fp-space-5) var(--fp-space-8);
    box-shadow: var(--fp-shadow-sm);
    overflow: hidden;
}
.fp-dag-sib-check {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: var(--fp-space-2);
    background: #fff;
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-lg);
    padding: var(--fp-space-4);
    transition: var(--fp-transition);
}
.fp-dag-sib-check[data-result="yes"] .fp-dag-sib-check-icon { background: var(--fp-green); color: #fff; }
.fp-dag-sib-check[data-result="yes"] .fp-dag-sib-check-icon::after { content: '\2713'; }
.fp-dag-sib-check[data-result="no"] .fp-dag-sib-check-icon { background: #fee2e2; color: #b91c1c; }
.fp-dag-sib-check[data-result="no"] .fp-dag-sib-check-icon::after { content: '\2715'; }
.fp-dag-sib-check[data-result] .fp-dag-sib-check-icon { font-size: 0; }
.fp-dag-sib-check[data-result] .fp-dag-sib-check-icon::after { font-size: var(--fp-text-md); }
.fp-dag-sib-check-val { font-size: var(--fp-text-xs); color: var(--fp-text-muted); }

/* ──────────────────────────────────────────────────────────────
   13. Category-stats + Bank-combos tables
   ────────────────────────────────────────────────────────────── */
.fp-dag-catstats-wrap, .fp-dag-banks-wrap {
    overflow-x: auto;
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
}
.fp-dag-catstats-table, .fp-dag-banks-table {
    width: 100%; border-collapse: collapse;
    font-size: var(--fp-text-sm);
    min-width: 600px;
}
.fp-dag-catstats-table th, .fp-dag-catstats-table td,
.fp-dag-banks-table th,    .fp-dag-banks-table td {
    padding: var(--fp-space-3);
    text-align: left;
    border-bottom: 1px solid var(--fp-border);
    font-weight: 500;
}
.fp-dag-catstats-table thead th, .fp-dag-banks-table thead th {
    background: #fafafa;
    font-size: var(--fp-text-xs); text-transform: uppercase;
    letter-spacing: 0.05em; font-weight: 800; color: var(--fp-text-muted);
}
.fp-dag-catstats-table tbody tr:last-child th,
.fp-dag-catstats-table tbody tr:last-child td,
.fp-dag-banks-table tbody tr:last-child th,
.fp-dag-banks-table tbody tr:last-child td { border-bottom: 0; }
.fp-dag-catstats-cat { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; }
.fp-dag-catstats-cat .fp-dag-icon { width: 18px; height: 18px; color: var(--fp-text-muted); }
.fp-dag-catstats-name { color: var(--fp-text-main); text-decoration: none; }
.fp-dag-catstats-name small { display: block; color: var(--fp-text-muted); font-size: var(--fp-text-xs); }
.fp-dag-catstats-pct {
    background: var(--fp-green-soft); color: var(--fp-green-dark);
    padding: 2px var(--fp-space-2);
    border-radius: var(--fp-radius-sm); font-weight: 800;
}
.fp-dag-catstats-score {
    background: var(--fp-lime); color: #1a1a1a;
    padding: 2px var(--fp-space-2);
    border-radius: var(--fp-radius-sm); font-weight: 800;
}
.fp-dag-catstats-cta, .fp-dag-banks-cta {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-sm); font-weight: 700; text-decoration: none;
}
.fp-dag-banks-bank-name { font-weight: 800; }
.fp-dag-banks-bank small { display: block; color: var(--fp-green-dark); font-weight: 700; font-size: var(--fp-text-xs); }
.fp-dag-banks-final strong { font-size: var(--fp-text-md); }
.fp-dag-banks-cta-row {
    margin: var(--fp-space-3) 0 0;
    padding: var(--fp-space-3) var(--fp-space-4);
    text-align: center;
    color: var(--fp-text-muted);
    background: #fafafa;
}
.fp-dag-banks-cta-row a { color: var(--fp-text-main); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.fp-dag-banks-cta-row a .fp-dag-icon { width: 14px; height: 14px; }

/* ──────────────────────────────────────────────────────────────
   14. Store tabs
   ────────────────────────────────────────────────────────────── */
.fp-dag-stores-tabs {
    display: flex; gap: var(--fp-space-2);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: var(--fp-space-3);
    margin-bottom: var(--fp-space-3);
    border-bottom: 1px solid var(--fp-border);
}
.fp-dag-stores-tabs::-webkit-scrollbar { display: none; }
.fp-dag-stores-tab {
    flex-shrink: 0;
    background: transparent; border: 0; cursor: pointer;
    padding: var(--fp-space-2) var(--fp-space-4);
    border-radius: var(--fp-radius-pill);
    font-family: inherit;
    display: inline-flex; flex-direction: column; align-items: flex-start;
    gap: 0;
    color: var(--fp-text-muted);
    border: 1.5px solid var(--fp-border);
    background: #fff;
}
.fp-dag-stores-tab strong { font-size: var(--fp-text-md); color: var(--fp-text-main); font-weight: 800; }
.fp-dag-stores-tab small  { font-size: var(--fp-text-xs); }
.fp-dag-stores-tab.is-active { background: var(--fp-text-main); border-color: var(--fp-text-main); }
.fp-dag-stores-tab.is-active strong, .fp-dag-stores-tab.is-active small { color: #fff; }
.fp-dag-stores-all {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: var(--fp-space-2);
    color: var(--fp-text-main); font-weight: 800; text-decoration: none;
}
.fp-dag-stores-empty { color: var(--fp-text-muted); padding: var(--fp-space-6); text-align: center; }/* ──────────────────────────────────────────────────────────────
   15. Loss aversion
   ────────────────────────────────────────────────────────────── */
.fp-dag-loss-warn .fp-dag-icon { width: 14px; height: 14px; }

/* ──────────────────────────────────────────────────────────────
   16. FlashAI CTA
   ────────────────────────────────────────────────────────────── */
.fp-dag-flashai {
    position: relative;
    background:
        radial-gradient(circle at 20% 0%, rgba(94, 87, 230, 0.30) 0%, transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(196, 245, 66, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #05060f 0%, #0c0a1f 50%, #14102f 100%);
    color: #fff;
    border-radius: var(--fp-radius-2xl);
    padding: var(--fp-space-10) var(--fp-space-5);
    overflow: hidden;
}
@media (min-width: 768px)  { .fp-dag-flashai { padding: var(--fp-space-10) var(--fp-space-8); } }
@media (min-width: 1024px) { .fp-dag-flashai { padding: var(--fp-space-12) var(--fp-space-10); } }
.fp-dag-flashai-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fp-dag-flashai-orb {
    position: absolute; border-radius: var(--fp-radius-circle);
    filter: blur(50px); opacity: 0.4;
}
.fp-dag-flashai-orb--a { width: 260px; height: 260px; top: -120px; left: -90px; background: var(--fp-secondary); }
.fp-dag-flashai-orb--b { width: 180px; height: 180px; bottom: -80px; right: -50px; background: var(--fp-lime); opacity: 0.28; }
.fp-dag-flashai-orb--c { width: 220px; height: 220px; top: 35%; right: 28%; background: #be185d; opacity: 0.22; }
.fp-dag-flashai-inner { position: relative; z-index: 1; }

.fp-dag-flashai-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: var(--fp-space-3);
    backdrop-filter: blur(6px);
}
.fp-dag-flashai-eyebrow .fp-dag-icon { width: 14px; height: 14px; color: var(--fp-lime); }
.fp-dag-flashai-h2 { margin: 0 0 var(--fp-space-3); font-size: var(--fp-text-2xl); font-weight: 900; }
.fp-dag-flashai-sub { margin: 0 0 var(--fp-space-5); color: rgba(255,255,255,0.75); font-size: var(--fp-text-md); max-width: 50ch; }
@media (min-width: 768px) { .fp-dag-flashai-h2 { font-size: var(--fp-text-3xl); } }

.fp-dag-flashai-chips {
    display: flex; flex-wrap: wrap; gap: var(--fp-space-2);
    list-style: none; margin: 0 0 var(--fp-space-5); padding: 0;
}
.fp-dag-flashai-chip {
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-family: inherit; font-size: var(--fp-text-sm); font-weight: 600;
    cursor: pointer; backdrop-filter: blur(6px);
    transition: var(--fp-transition);
}
.fp-dag-flashai-chip:hover { background: rgba(255,255,255,0.18); border-color: var(--fp-lime); }

.fp-dag-flashai-form { display: flex; gap: var(--fp-space-2); flex-wrap: wrap; }
.fp-dag-flashai-input {
    flex: 1; min-width: 200px;
    display: flex; align-items: center; gap: var(--fp-space-2);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-4);
    backdrop-filter: blur(6px);
}
.fp-dag-flashai-input .fp-dag-icon { width: 16px; height: 16px; color: var(--fp-lime); }
.fp-dag-flashai-input input {
    border: 0; background: transparent; color: #fff;
    font-family: inherit; font-size: var(--fp-text-md); flex: 1; outline: none;
}
.fp-dag-flashai-input input::placeholder { color: rgba(255,255,255,0.55); }
.fp-dag-flashai-go {
    background: var(--fp-gradient-lime); color: #1a1a1a;
    border: 0; cursor: pointer; font-family: inherit;
    font-weight: 800; font-size: var(--fp-text-md);
    padding: var(--fp-space-2) var(--fp-space-5);
    border-radius: var(--fp-radius-pill);
    min-height: 44px;
    display: inline-flex; align-items: center; gap: 6px;
}
.fp-dag-flashai-go .fp-dag-icon { width: 14px; height: 14px; }

/* ──────────────────────────────────────────────────────────────
   17. Telegram + WhatsApp opt-in
   ────────────────────────────────────────────────────────────── */
.fp-dag-optin-inner {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-2xl);
    padding: var(--fp-space-6) var(--fp-space-5);
    display: grid; gap: var(--fp-space-5);
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .fp-dag-optin-inner { grid-template-columns: 1.4fr 1fr; align-items: center; padding: var(--fp-space-8) var(--fp-space-8); } }
.fp-dag-optin-text h2 { margin: var(--fp-space-2) 0; }
.fp-dag-optin-text p { margin: 0; color: var(--fp-text-muted); }
.fp-dag-optin-actions {
    display: grid; grid-template-columns: 1fr; gap: var(--fp-space-2);
}
@media (min-width: 480px) { .fp-dag-optin-actions { grid-template-columns: 1fr 1fr; } }
.fp-dag-optin-btn {
    display: flex; align-items: center; gap: var(--fp-space-3);
    background: var(--fp-surface);
    border: 1.5px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-3) var(--fp-space-4);
    text-decoration: none; color: var(--fp-text-main);
    min-height: 60px;
    transition: var(--fp-transition);
}
.fp-dag-optin-btn:hover { transform: translateY(-1px); box-shadow: var(--fp-shadow-sm); }
.fp-dag-optin-btn .fp-dag-icon { width: 32px; height: 32px; padding: 6px; border-radius: var(--fp-radius-circle); color: #fff; flex-shrink: 0; }
.fp-dag-optin-btn--tg .fp-dag-icon { background: #229ED9; }
.fp-dag-optin-btn--wa .fp-dag-icon { background: #25D366; }
.fp-dag-optin-btn span { display: flex; flex-direction: column; gap: 0; line-height: 1.2; }
.fp-dag-optin-btn span strong { font-size: var(--fp-text-md); }
.fp-dag-optin-btn span small { font-size: var(--fp-text-xs); color: var(--fp-text-muted); }/* ──────────────────────────────────────────────────────────────
   18. Recently expired
   ────────────────────────────────────────────────────────────── *//* ──────────────────────────────────────────────────────────────
   19. Promo slots
   ────────────────────────────────────────────────────────────── */
.fp-dag-promo .fp-dag-btn { width: max-content; }
.fp-dag-promo--cashback .fp-dag-promo-eyebrow .fp-dag-icon { width: 16px; height: 16px; color: #fff; }
.fp-dag-promo--ext .fp-dag-btn--dark { background: var(--fp-lime); color: #1a1a1a; }

/* ──────────────────────────────────────────────────────────────
   20. Social proof + Live ticker + Trust
   ────────────────────────────────────────────────────────────── */
.fp-dag-ticker {
    display: flex; align-items: center; gap: var(--fp-space-3);
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-4);
    margin: var(--fp-space-3) 0 var(--fp-space-5);
    overflow: hidden;
}
.fp-dag-ticker-dot {
    width: 10px; height: 10px;
    border-radius: var(--fp-radius-circle);
    background: #ef4444;
    flex-shrink: 0;
    animation: fpDagPulse 1.4s ease-out infinite;
    box-shadow: 0 0 0 0 rgba(239,68,68,0.7);
}
.fp-dag-ticker-track {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 1.4em;
}
.fp-dag-ticker-item {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    font-size: var(--fp-text-sm);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(100%);
}
.fp-dag-ticker-item.is-active { opacity: 1; transform: translateY(0); }
.fp-dag-ticker-item.is-leaving { opacity: 0; transform: translateY(-100%); }

.fp-dag-proof-grid {
    display: grid; grid-template-columns: 1fr; gap: var(--fp-space-3);
    list-style: none; margin: 0 0 var(--fp-space-5); padding: 0;
}
@media (min-width: 600px) { .fp-dag-proof-grid { grid-template-columns: repeat(3, 1fr); } }
.fp-dag-proof-card {
    text-align: center;
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5);
}
.fp-dag-proof-card strong { display: block; font-size: var(--fp-text-2xl); font-weight: 900; color: var(--fp-text-main); }
.fp-dag-proof-card span   { display: block; color: var(--fp-text-muted); font-size: var(--fp-text-sm); margin-top: 4px; }

.fp-dag-trust {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--fp-space-2) var(--fp-space-4);
    list-style: none; margin: 0; padding: 0;
}
.fp-dag-trust li {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--fp-text-sm); color: var(--fp-text-muted);
}
.fp-dag-trust li .fp-dag-icon { width: 14px; height: 14px; color: var(--fp-green-deep); }

/* ──────────────────────────────────────────────────────────────
   21. FAQ + Long-form + Back-to-top
   ────────────────────────────────────────────────────────────── */
.fp-dag-faq-list {
    display: flex; flex-direction: column; gap: var(--fp-space-2);
    list-style: none; margin: 0; padding: 0;
}
.fp-dag-faq-item details {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-lg);
    overflow: hidden;
    transition: var(--fp-transition);
}
.fp-dag-faq-item details[open] { box-shadow: var(--fp-shadow-sm); border-color: var(--fp-lime); }
.fp-dag-faq-item summary {
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--fp-space-4) var(--fp-space-5);
    cursor: pointer; font-size: var(--fp-text-md); font-weight: 700;
    gap: var(--fp-space-3);
}
.fp-dag-faq-item summary::-webkit-details-marker { display: none; }
.fp-dag-faq-item summary .fp-dag-icon { width: 20px; height: 20px; color: var(--fp-text-muted); flex-shrink: 0; }
.fp-dag-faq-item .fp-dag-faq-icon-minus { display: none; }
.fp-dag-faq-item details[open] .fp-dag-faq-icon-plus { display: none; }
.fp-dag-faq-item details[open] .fp-dag-faq-icon-minus { display: inline; }
.fp-dag-faq-body { padding: 0 var(--fp-space-5) var(--fp-space-4); color: var(--fp-text-muted); }
.fp-dag-faq-body p { margin: 0; font-size: var(--fp-text-md); line-height: 1.6; }

.fp-dag-longform-body {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-6) var(--fp-space-5);
    max-width: 75ch;
}
.fp-dag-longform-body h3 { margin: var(--fp-space-6) 0 var(--fp-space-2); font-size: var(--fp-text-lg2); font-weight: 800; }
.fp-dag-longform-body h3:first-child { margin-top: 0; }
.fp-dag-longform-body p, .fp-dag-longform-body ul {
    margin: 0 0 var(--fp-space-3);
    color: var(--fp-text-main);
    font-size: var(--fp-text-md); line-height: 1.7;
}
.fp-dag-longform-body ul { padding-left: var(--fp-space-5); display: flex; flex-direction: column; gap: var(--fp-space-2); }
.fp-dag-longform-body a {
    color: var(--fp-text-main); font-weight: 700;
    border-bottom: 1.5px solid var(--fp-lime); text-decoration: none;
}
.fp-dag-longform-body a:hover { background: var(--fp-lime-soft); }
.fp-dag-longform-cta {
    display: flex; gap: var(--fp-space-3); flex-wrap: wrap;
    margin: var(--fp-space-6) 0 0;
    padding-top: var(--fp-space-5);
    border-top: 1px dashed var(--fp-border);
}
.fp-dag-longform-cta a { border-bottom: 0; }

.fp-dag-related {
    margin-top: var(--fp-space-6);
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5);
}
.fp-dag-related h3 { margin: 0 0 var(--fp-space-3); font-size: var(--fp-text-md); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--fp-text-muted); }
.fp-dag-related ul {
    display: flex; flex-wrap: wrap; gap: var(--fp-space-2);
    list-style: none; margin: 0; padding: 0;
}
.fp-dag-related a {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fafafa;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    color: var(--fp-text-main); text-decoration: none; font-weight: 700;
    font-size: var(--fp-text-sm);
}
.fp-dag-related a:hover { background: #fff; border-color: var(--fp-text-main); }
.fp-dag-related a .fp-dag-icon { width: 14px; height: 14px; color: var(--fp-text-muted); }

.fp-dag-back-top {
    position: fixed; right: var(--fp-space-4); bottom: 92px;
    z-index: 30;
    width: 44px; height: 44px;
    border-radius: var(--fp-radius-circle);
    border: 0;
    background: var(--fp-text-main); color: #fff;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--fp-shadow-lg);
    transition: var(--fp-transition);
}
.fp-dag-back-top[hidden] { display: none; }
.fp-dag-back-top:hover { transform: translateY(-2px); }
.fp-dag-back-top .fp-dag-icon { width: 20px; height: 20px; }

/* Body state when drawer open */
.fp-dag-drawer-open { overflow: hidden; }

/* =================================================================
   DISTRIBUTED CTAs — each visually distinct, placed at strategic
   scroll points instead of bundled in one section.
   ================================================================= */

/* ── Shared CTA section eyebrow + heading + button style ── */
.fp-dag-cta-cb,
.fp-dag-cta-ext,
.fp-dag-cta-trk,
.fp-dag-cta-cc,
.fp-dag-cta-cpn { position: relative; overflow: hidden; }

.fp-dag-cta-cb h2,
.fp-dag-cta-ext h2,
.fp-dag-cta-trk h2,
.fp-dag-cta-cc h2,
.fp-dag-cta-cpn h2 {
    margin: 0 0 var(--fp-space-2);
    font-size: var(--fp-text-lg2);
    line-height: 1.25; font-weight: 900; letter-spacing: -0.01em;
}
.fp-dag-cta-cb h2 em,
.fp-dag-cta-ext h2 em,
.fp-dag-cta-trk h2 em,
.fp-dag-cta-cc h2 em,
.fp-dag-cta-cpn h2 em { font-style: normal; }

@media (min-width: 768px) {
    .fp-dag-cta-cb h2,
    .fp-dag-cta-ext h2,
    .fp-dag-cta-trk h2,
    .fp-dag-cta-cc h2,
    .fp-dag-cta-cpn h2 { font-size: var(--fp-text-2xl); }
}
@media (min-width: 1024px) {
    .fp-dag-cta-cb h2,
    .fp-dag-cta-ext h2,
    .fp-dag-cta-trk h2,
    .fp-dag-cta-cc h2,
    .fp-dag-cta-cpn h2 { font-size: var(--fp-text-3xl); }
}

/* ──────────────────────────────────────────────────────────────
   CTA #1 — Cashback. Green gradient + floating coins + shimmer.
   ────────────────────────────────────────────────────────────── */
.fp-dag-cta-cb {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 40%, #22c55e 100%);
    color: #fff;
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5) var(--fp-space-4);
}
@media (min-width: 768px)  { .fp-dag-cta-cb { padding: var(--fp-space-10) var(--fp-space-8); border-radius: var(--fp-radius-2xl); } }
@media (min-width: 1024px) { .fp-dag-cta-cb { padding: var(--fp-space-12) var(--fp-space-10); } }

.fp-dag-cta-cb-bg { position: absolute; inset: 0; pointer-events: none; }
.fp-dag-cta-cb-shimmer {
    position: absolute; top: -50%; left: -20%;
    width: 60%; height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    animation: fpDagCtaShimmer 6s ease-in-out infinite;
}
@keyframes fpDagCtaShimmer {
    0%, 100% { transform: translateX(-30%) skewX(-20deg); opacity: 0; }
    50%      { transform: translateX(220%) skewX(-20deg); opacity: 1; }
}
.fp-dag-cta-cb-coin {
    position: absolute;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
    animation: fpDagCtaFloat 5s ease-in-out infinite;
}
.fp-dag-cta-cb-coin--a { width: 44px; height: 44px; top: 14%; right: 14%; animation-delay: 0s; }
.fp-dag-cta-cb-coin--b { width: 32px; height: 32px; bottom: 14%; right: 6%; animation-delay: 1.2s; }
.fp-dag-cta-cb-coin--c { display: none; }
@media (min-width: 768px) {
    .fp-dag-cta-cb-coin--a { width: 64px; height: 64px; top: 14%; right: 18%; }
    .fp-dag-cta-cb-coin--b { width: 44px; height: 44px; bottom: 22%; right: 10%; top: auto; }
    .fp-dag-cta-cb-coin--c { display: block; width: 52px; height: 52px; top: 32%; right: 38%; }
}
.fp-dag-cta-cb p { font-size: var(--fp-text-sm); margin-bottom: var(--fp-space-4); }
@media (min-width: 768px) { .fp-dag-cta-cb p { font-size: var(--fp-text-md); margin-bottom: var(--fp-space-5); } }
.fp-dag-cta-cb-btn { min-height: 42px; padding: var(--fp-space-2) var(--fp-space-5); font-size: var(--fp-text-sm); }
@media (min-width: 768px) { .fp-dag-cta-cb-btn { min-height: 48px; padding: var(--fp-space-3) var(--fp-space-6); font-size: var(--fp-text-md); } }
@keyframes fpDagCtaFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-12px) rotate(6deg); }
}

.fp-dag-cta-cb-inner { position: relative; z-index: 1; max-width: 60ch; }
.fp-dag-cta-cb-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.18); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-3);
    backdrop-filter: blur(6px);
}
.fp-dag-cta-cb h2 em {
    background: linear-gradient(90deg, #fef9c3, #fde047);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-cta-cb p {
    margin: 0 0 var(--fp-space-5);
    color: rgba(255,255,255,0.85);
    font-size: var(--fp-text-md);
    line-height: 1.5;
}
.fp-dag-cta-cb-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #15803d;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-3) var(--fp-space-6);
    font-size: var(--fp-text-md); font-weight: 800;
    text-decoration: none; min-height: 48px;
    transition: var(--fp-transition);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.fp-dag-cta-cb-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }

/* ──────────────────────────────────────────────────────────────
   CTA #2 — Browser extension. Dark + real browser logos + checkout mock.
   ────────────────────────────────────────────────────────────── */
.fp-dag-cta-ext {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5) var(--fp-space-4);
}
@media (min-width: 768px)  { .fp-dag-cta-ext { padding: var(--fp-space-10) var(--fp-space-8); border-radius: var(--fp-radius-2xl); } }
@media (min-width: 1024px) { .fp-dag-cta-ext { padding: var(--fp-space-12) var(--fp-space-10); } }

.fp-dag-cta-ext::before {
    content: '';
    position: absolute; top: -40%; right: -10%;
    width: 60%; height: 140%;
    background: radial-gradient(circle, rgba(196,245,66,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.fp-dag-cta-ext-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: var(--fp-space-6);
    align-items: center;
}
@media (min-width: 1024px) { .fp-dag-cta-ext-grid { grid-template-columns: 1.1fr 1fr; gap: var(--fp-space-8); } }

.fp-dag-cta-ext-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(196,245,66,0.15); color: var(--fp-lime);
    border: 1px solid rgba(196,245,66,0.25);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-3);
}
.fp-dag-cta-ext h2 em {
    background: linear-gradient(135deg, var(--fp-lime), #fbbf24);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-cta-ext p {
    margin: 0 0 var(--fp-space-4);
    color: rgba(255,255,255,0.7);
    font-size: var(--fp-text-md); line-height: 1.55;
}

.fp-dag-cta-ext-browsers {
    display: flex; gap: var(--fp-space-2);
    list-style: none; padding: 0;
    margin: 0 0 var(--fp-space-5);
}
.fp-dag-cta-ext-browsers li {
    width: 36px; height: 36px;
    border-radius: var(--fp-radius-circle);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: inline-flex; align-items: center; justify-content: center;
    transition: var(--fp-transition);
    opacity: 0;
    animation: fpDagCtaBrowserIn 0.5s cubic-bezier(0.22,0.61,0.36,1) forwards;
}
@media (min-width: 768px) { .fp-dag-cta-ext-browsers li { width: 44px; height: 44px; } }
.fp-dag-cta-ext-browsers li:nth-child(1) { animation-delay: 0.1s; }
.fp-dag-cta-ext-browsers li:nth-child(2) { animation-delay: 0.2s; }
.fp-dag-cta-ext-browsers li:nth-child(3) { animation-delay: 0.3s; }
.fp-dag-cta-ext-browsers li:nth-child(4) { animation-delay: 0.4s; }
.fp-dag-cta-ext-browsers li:nth-child(5) { animation-delay: 0.5s; }
@keyframes fpDagCtaBrowserIn {
    from { opacity: 0; transform: translateY(8px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.fp-dag-cta-ext-browsers li:hover { transform: translateY(-3px); background: rgba(255,255,255,0.15); }
.fp-dag-cta-ext-browsers svg { width: 22px; height: 22px; }
@media (min-width: 768px) { .fp-dag-cta-ext-browsers svg { width: 28px; height: 28px; } }

.fp-dag-cta-ext p { font-size: var(--fp-text-sm); margin-bottom: var(--fp-space-3); }
@media (min-width: 768px) { .fp-dag-cta-ext p { font-size: var(--fp-text-md); margin-bottom: var(--fp-space-4); } }
.fp-dag-cta-ext-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--fp-gradient-lime); color: #1a1a1a;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-5);
    font-size: var(--fp-text-sm); font-weight: 800;
    text-decoration: none; min-height: 42px;
    transition: var(--fp-transition);
    box-shadow: 0 10px 28px var(--fp-lime-glow);
}
@media (min-width: 768px) {
    .fp-dag-cta-ext-btn { padding: var(--fp-space-3) var(--fp-space-6); font-size: var(--fp-text-md); min-height: 48px; }
}
.fp-dag-cta-ext-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px var(--fp-lime-glow); }

/* Mock browser window — hidden on mobile (too large for compact CTA) */
.fp-dag-cta-ext-mock {
    display: none;
    perspective: 1200px;
    justify-content: center;
}
@media (min-width: 768px) { .fp-dag-cta-ext-mock { display: flex; } }
.fp-dag-cta-ext-window {
    position: relative;
    width: 100%; max-width: 360px;
    background: #fff;
    border-radius: var(--fp-radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: rotateX(8deg) rotateY(-12deg);
    transform-style: preserve-3d;
    overflow: hidden;
}
.fp-dag-cta-ext-window-bar {
    display: flex; align-items: center; gap: 6px;
    background: #f5f5f5; border-bottom: 1px solid var(--fp-border);
    padding: 8px 12px;
}
.fp-dag-cta-ext-dot {
    width: 10px; height: 10px; border-radius: var(--fp-radius-circle);
}
.fp-dag-cta-ext-dot--r { background: #ef4444; }
.fp-dag-cta-ext-dot--y { background: #fbbf24; }
.fp-dag-cta-ext-dot--g { background: #22c55e; }
.fp-dag-cta-ext-url {
    margin-left: var(--fp-space-2);
    font-size: var(--fp-text-xs); color: var(--fp-text-muted);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
}
.fp-dag-cta-ext-window-body { padding: var(--fp-space-4); display: flex; flex-direction: column; gap: 8px; }
.fp-dag-cta-ext-line {
    height: 8px; background: #f3f4f6; border-radius: var(--fp-radius-pill);
}
.fp-dag-cta-ext-line--lg { width: 80%; height: 12px; background: #e5e7eb; }
.fp-dag-cta-ext-line--sm { width: 50%; }
.fp-dag-cta-ext-toast {
    position: absolute; bottom: 16px; right: 16px;
    background: linear-gradient(135deg, #15803d, #22c55e);
    color: #fff;
    border-radius: var(--fp-radius-md);
    padding: 8px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fp-text-xs);
    box-shadow: 0 12px 24px rgba(34,197,94,0.4);
    animation: fpDagCtaToast 4s ease-in-out infinite;
}
.fp-dag-cta-ext-toast strong { display: block; font-weight: 800; }
.fp-dag-cta-ext-toast small  { display: block; opacity: 0.85; font-size: 9px; margin-top: 2px; }
.fp-dag-cta-ext-toast-tick {
    width: 22px; height: 22px;
    border-radius: var(--fp-radius-circle);
    background: rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; justify-content: center;
}
@keyframes fpDagCtaToast {
    0%, 35% { opacity: 0; transform: translateY(10px) scale(0.9); }
    50%, 90% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-4px) scale(0.95); }
}

/* ──────────────────────────────────────────────────────────────
   CTA #3 — Price tracker. White + animated sparkline + toast.
   ────────────────────────────────────────────────────────────── */
.fp-dag-cta-trk {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5) var(--fp-space-4);
}
@media (min-width: 768px)  { .fp-dag-cta-trk { padding: var(--fp-space-8); border-radius: var(--fp-radius-2xl); } }
@media (min-width: 1024px) { .fp-dag-cta-trk { padding: var(--fp-space-10); } }
.fp-dag-cta-trk p { font-size: var(--fp-text-sm); margin-bottom: var(--fp-space-3); }
@media (min-width: 768px) { .fp-dag-cta-trk p { font-size: var(--fp-text-md); margin-bottom: var(--fp-space-4); } }

.fp-dag-cta-trk-grid {
    display: grid; grid-template-columns: 1fr;
    gap: var(--fp-space-5);
    align-items: center;
}
@media (min-width: 1024px) { .fp-dag-cta-trk-grid { grid-template-columns: 1fr 1fr; gap: var(--fp-space-8); } }

.fp-dag-cta-trk-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--fp-green-soft); color: var(--fp-green-dark);
    border: 1px solid #bbf7d0;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-3);
}
.fp-dag-cta-trk h2 em {
    background: linear-gradient(135deg, var(--fp-green-deep), #16a34a);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-cta-trk p {
    margin: 0 0 var(--fp-space-4);
    color: var(--fp-text-muted);
    font-size: var(--fp-text-md); line-height: 1.55;
}
.fp-dag-cta-trk-form {
    display: flex; gap: var(--fp-space-2); flex-wrap: wrap;
    background: #fafafa; border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 6px;
}
.fp-dag-cta-trk-input {
    flex: 1; min-width: 180px;
    display: flex; align-items: center; gap: 6px;
    padding: 0 var(--fp-space-3);
}
.fp-dag-cta-trk-input svg { color: var(--fp-text-muted); }
.fp-dag-cta-trk-input input {
    border: 0; background: transparent;
    font-family: inherit; font-size: var(--fp-text-md);
    color: var(--fp-text-main);
    flex: 1; outline: none; min-width: 0;
}
.fp-dag-cta-trk-go {
    background: var(--fp-text-main); color: #fff;
    border: 0; cursor: pointer; font-family: inherit;
    font-weight: 800; font-size: var(--fp-text-sm);
    padding: 0 var(--fp-space-4);
    border-radius: var(--fp-radius-pill);
    min-height: 40px;
    display: inline-flex; align-items: center; gap: 6px;
}
.fp-dag-cta-trk-go:hover { background: #000; }

/* Chart */
.fp-dag-cta-trk-chart {
    position: relative;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid #d1fae5;
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-3);
    overflow: hidden;
}
.fp-dag-cta-trk-chart svg { display: block; width: 100%; height: auto; }
.fp-dag-cta-trk-line {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: fpDagCtaLineDraw 2.5s ease-out 0.3s forwards;
}
@keyframes fpDagCtaLineDraw {
    to { stroke-dashoffset: 0; }
}
.fp-dag-cta-trk-area { opacity: 0; animation: fpDagCtaFadeIn 1.5s ease-out 1.5s forwards; }
.fp-dag-cta-trk-dot {
    opacity: 0;
    animation: fpDagCtaFadeIn 0.4s ease-out 2.7s forwards;
    transform-origin: center;
}
@keyframes fpDagCtaFadeIn { to { opacity: 1; } }
.fp-dag-cta-trk-toast {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-md);
    padding: 8px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fp-text-xs);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fpDagCtaFadeUp 0.5s ease-out 3s forwards;
}
@keyframes fpDagCtaFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fp-dag-cta-trk-toast strong { display: block; font-weight: 800; }
.fp-dag-cta-trk-toast small  { display: block; opacity: 0.7; font-size: 9px; margin-top: 2px; }
.fp-dag-cta-trk-toast-tick {
    width: 20px; height: 20px;
    border-radius: var(--fp-radius-circle);
    background: var(--fp-green);
    display: inline-flex; align-items: center; justify-content: center;
}

/* ──────────────────────────────────────────────────────────────
   CTA #4 — Credit card pairing. White + tilted card + gradient border.
   ────────────────────────────────────────────────────────────── */
.fp-dag-cta-cc {
    position: relative;
    border-radius: var(--fp-radius-xl);
    padding: 2px; /* room for gradient border */
    background: linear-gradient(135deg, var(--fp-secondary), #5B57F0 45%, var(--fp-lime) 100%);
}
.fp-dag-cta-cc-inner {
    background: var(--fp-surface);
    border-radius: calc(var(--fp-radius-xl) - 2px);
    padding: var(--fp-space-5) var(--fp-space-4);
    display: grid; grid-template-columns: 1fr;
    gap: var(--fp-space-3);
    align-items: center;
}
@media (min-width: 768px) {
    .fp-dag-cta-cc { border-radius: var(--fp-radius-2xl); }
    .fp-dag-cta-cc-inner { padding: var(--fp-space-8); border-radius: calc(var(--fp-radius-2xl) - 2px); gap: var(--fp-space-5); }
}
@media (min-width: 1024px) { .fp-dag-cta-cc-inner { grid-template-columns: 1.1fr 1fr; gap: var(--fp-space-10); padding: var(--fp-space-10); } }

.fp-dag-cta-cc-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fef3c7; color: #b45309;
    border: 1px solid #fde68a;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-3);
}
.fp-dag-cta-cc h2 em {
    background: linear-gradient(135deg, #f59e0b, #ec4899 50%, var(--fp-lime-deep) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-cta-cc p {
    margin: 0 0 var(--fp-space-4);
    color: var(--fp-text-muted);
    font-size: var(--fp-text-md); line-height: 1.55;
}
.fp-dag-cta-cc-list {
    display: none;
    list-style: none; margin: 0 0 var(--fp-space-4); padding: 0;
    flex-direction: column; gap: var(--fp-space-2);
}
@media (min-width: 768px) { .fp-dag-cta-cc-list { display: flex; margin-bottom: var(--fp-space-5); } }
.fp-dag-cta-cc-list li {
    display: flex; align-items: center; gap: var(--fp-space-2);
    font-size: var(--fp-text-md);
    color: var(--fp-text-main);
}
.fp-dag-cta-cc p { font-size: var(--fp-text-sm); margin-bottom: var(--fp-space-3); }
@media (min-width: 768px) { .fp-dag-cta-cc p { font-size: var(--fp-text-md); margin-bottom: var(--fp-space-4); } }
.fp-dag-cta-cc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--fp-text-main); color: #fff;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-5);
    font-size: var(--fp-text-sm); font-weight: 800;
    text-decoration: none; min-height: 42px;
    transition: var(--fp-transition);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
@media (min-width: 768px) {
    .fp-dag-cta-cc-btn { padding: var(--fp-space-3) var(--fp-space-6); font-size: var(--fp-text-md); min-height: 48px; }
}
.fp-dag-cta-cc-btn:hover { background: #000; transform: translateY(-2px); }

.fp-dag-cta-cc-visual {
    position: relative;
    min-height: 140px;
    display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .fp-dag-cta-cc-visual { min-height: 220px; } }
.fp-dag-cta-cc-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245,158,11,0.25) 0%, transparent 65%);
    filter: blur(20px);
}
.fp-dag-cta-cc-card {
    position: absolute;
    width: 220px; height: auto;
    object-fit: contain;
    border-radius: var(--fp-radius-md);
    transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
.fp-dag-cta-cc-card--back {
    transform: rotate(-14deg) translate(-30px, 18px);
    filter: blur(2px) brightness(0.92);
    opacity: 0.7;
}
.fp-dag-cta-cc-card--front {
    transform: rotate(6deg) translate(20px, -10px);
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.25));
    z-index: 2;
}
.fp-dag-cta-cc:hover .fp-dag-cta-cc-card--front { transform: rotate(2deg) translate(10px, -16px); }
.fp-dag-cta-cc:hover .fp-dag-cta-cc-card--back  { transform: rotate(-18deg) translate(-40px, 22px); }

.fp-dag-cta-cc-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-pill);
    padding: 6px 12px;
    font-size: var(--fp-text-xs); font-weight: 800;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 3;
    animation: fpDagCtaFloat 4s ease-in-out infinite;
}
.fp-dag-cta-cc-chip--a { top: 8%;  right: 4%;  color: #15803d; animation-delay: 0s;   }
.fp-dag-cta-cc-chip--b { display: none; bottom: 22%; left: 0;  color: #be185d; animation-delay: 1.2s; }
.fp-dag-cta-cc-chip--c { display: none; top: 38%;  left: -4%; color: #1e40af; animation-delay: 2.4s; }
@media (min-width: 768px) {
    .fp-dag-cta-cc-chip--b, .fp-dag-cta-cc-chip--c { display: inline-flex; }
}
@media (max-width: 600px) {
    .fp-dag-cta-cc-card { width: 140px; }
    .fp-dag-cta-cc-chip { font-size: var(--fp-text-2xs); padding: 4px 8px; }
}

/* ──────────────────────────────────────────────────────────────
   CTA #5 — Coupons stack. Dark + 3 fanned tickets.
   ────────────────────────────────────────────────────────────── */
.fp-dag-cta-cpn {
    background: linear-gradient(135deg, #0b1020 0%, #1e1b4b 50%, #312e81 100%);
    color: #fff;
    border-radius: var(--fp-radius-xl);
    padding: var(--fp-space-5) var(--fp-space-4);
}
@media (min-width: 768px)  { .fp-dag-cta-cpn { padding: var(--fp-space-10) var(--fp-space-8); border-radius: var(--fp-radius-2xl); } }
@media (min-width: 1024px) { .fp-dag-cta-cpn { padding: var(--fp-space-12) var(--fp-space-10); } }
.fp-dag-cta-cpn p { font-size: var(--fp-text-sm); margin-bottom: var(--fp-space-3); }
@media (min-width: 768px) { .fp-dag-cta-cpn p { font-size: var(--fp-text-md); margin-bottom: var(--fp-space-5); } }

.fp-dag-cta-cpn-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fp-dag-cta-cpn-orb {
    position: absolute; border-radius: var(--fp-radius-circle);
    filter: blur(60px); opacity: 0.35;
}
.fp-dag-cta-cpn-orb--a { width: 280px; height: 280px; top: -100px; right: -80px; background: #ec4899; }
.fp-dag-cta-cpn-orb--b { width: 220px; height: 220px; bottom: -60px; left: 20%;  background: var(--fp-lime); opacity: 0.2; }

.fp-dag-cta-cpn-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: var(--fp-space-6);
    align-items: center;
}
@media (min-width: 1024px) { .fp-dag-cta-cpn-grid { grid-template-columns: 1.1fr 1fr; gap: var(--fp-space-8); } }

.fp-dag-cta-cpn-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(196,245,66,0.15); color: var(--fp-lime);
    border: 1px solid rgba(196,245,66,0.3);
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-3);
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-3);
}
.fp-dag-cta-cpn h2 em {
    background: linear-gradient(135deg, #fde047, var(--fp-lime));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-dag-cta-cpn p {
    margin: 0 0 var(--fp-space-5);
    color: rgba(255,255,255,0.75);
    font-size: var(--fp-text-md); line-height: 1.55;
    max-width: 50ch;
}
.fp-dag-cta-cpn-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fp-space-2);
    margin-bottom: var(--fp-space-4);
    padding: var(--fp-space-3);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--fp-radius-lg);
    backdrop-filter: blur(6px);
}
@media (min-width: 768px) {
    .fp-dag-cta-cpn-stats { gap: var(--fp-space-3); margin-bottom: var(--fp-space-5); padding: var(--fp-space-4); border-radius: var(--fp-radius-xl); }
}
.fp-dag-cta-cpn-stats > div { text-align: center; }
.fp-dag-cta-cpn-stats strong { display: block; font-size: var(--fp-text-md); font-weight: 900; color: var(--fp-lime); }
.fp-dag-cta-cpn-stats span   { font-size: var(--fp-text-2xs); color: rgba(255,255,255,0.6); line-height: 1.3; }
@media (min-width: 768px) {
    .fp-dag-cta-cpn-stats strong { font-size: var(--fp-text-xl); }
    .fp-dag-cta-cpn-stats span   { font-size: var(--fp-text-xs); }
}

.fp-dag-cta-cpn-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #2d1b3d;
    border-radius: var(--fp-radius-pill);
    padding: var(--fp-space-2) var(--fp-space-5);
    font-size: var(--fp-text-sm); font-weight: 800;
    text-decoration: none; min-height: 42px;
    transition: var(--fp-transition);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
    .fp-dag-cta-cpn-btn { padding: var(--fp-space-3) var(--fp-space-6); font-size: var(--fp-text-md); min-height: 48px; }
}
.fp-dag-cta-cpn-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.4); }

/* Fanned ticket coupons */
.fp-dag-cta-cpn-tickets {
    position: relative;
    height: 180px;
    perspective: 800px;
}
@media (min-width: 768px) { .fp-dag-cta-cpn-tickets { height: 280px; } }
.fp-dag-cta-cpn-ticket {
    position: absolute; left: 50%; top: 50%;
    width: 200px;
    background: #fff;
    color: #1a1a1a;
    border-radius: var(--fp-radius-md);
    padding: var(--fp-space-3);
    display: flex; flex-direction: column; gap: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1);
}
@media (min-width: 768px) {
    .fp-dag-cta-cpn-ticket { width: 260px; padding: var(--fp-space-4); gap: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
}
.fp-dag-cta-cpn-ticket--a { transform: translate(-50%, -50%) rotate(-10deg) translateX(-22px); z-index: 1; background: linear-gradient(135deg, #fff, #fef9c3); }
.fp-dag-cta-cpn-ticket--b { transform: translate(-50%, -50%) rotate(2deg);  z-index: 2; }
.fp-dag-cta-cpn-ticket--c { transform: translate(-50%, -50%) rotate(12deg)  translateX(22px); z-index: 3; background: linear-gradient(135deg, #fff, #f3e8ff); }
@media (min-width: 768px) {
    .fp-dag-cta-cpn-ticket--a { transform: translate(-50%, -50%) rotate(-12deg) translateX(-40px); }
    .fp-dag-cta-cpn-ticket--c { transform: translate(-50%, -50%) rotate(14deg)  translateX(40px); }
    .fp-dag-cta-cpn:hover .fp-dag-cta-cpn-ticket--a { transform: translate(-50%, -50%) rotate(-18deg) translateX(-70px); }
    .fp-dag-cta-cpn:hover .fp-dag-cta-cpn-ticket--c { transform: translate(-50%, -50%) rotate(20deg)  translateX(70px); }
}
.fp-dag-cta-cpn-ticket-store {
    font-size: var(--fp-text-xs); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--fp-text-muted);
}
.fp-dag-cta-cpn-ticket-code {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: var(--fp-text-md); font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.04em;
}
@media (min-width: 768px) { .fp-dag-cta-cpn-ticket-code { font-size: var(--fp-text-xl); } }
.fp-dag-cta-cpn-ticket-rate {
    font-size: var(--fp-text-sm);
    color: var(--fp-text-muted);
}
.fp-dag-cta-cpn-ticket-edge {
    position: absolute; top: 50%;
    width: 16px; height: 16px;
    border-radius: var(--fp-radius-circle);
    background: #1a0f1f;
    transform: translateY(-50%);
}
.fp-dag-cta-cpn-ticket-edge--l { left: -8px; }
.fp-dag-cta-cpn-ticket-edge--r { right: -8px; }
.fp-dag-cta-cpn-ticket--a .fp-dag-cta-cpn-ticket-edge { background: #1a0f1f; }
@media (max-width: 600px) {
    .fp-dag-cta-cpn-tickets { height: 220px; }
    .fp-dag-cta-cpn-ticket { width: 220px; padding: var(--fp-space-3); }
    .fp-dag-cta-cpn-ticket-code { font-size: var(--fp-text-lg); }
}
