/* FindPrices Home v2 — hi-fi styles */
:root {
  --fp-green: #27ae60;
  --fp-green-dk: #229954;
  --fp-green-soft: #e8f7ee;
  --fp-ink: #1f1f1f;
  --fp-heading: #222;
  --fp-body: #555;
  --fp-muted: #888;
  --fp-line: #e1e4e8;
  --fp-bg: #ffffff;
  --fp-bg-alt: #f9f9f9;
  --fp-red: #e74c3c;
  --fp-amber: #f39c12;
  --fp-blue: #3498db;
  --shadow-1: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-2: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-3: 0 8px 25px rgba(0,0,0,0.10);
  --shadow-hero: 0 30px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fp-body);
  background: var(--fp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--fp-green); text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--fp-heading);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--fp-green); color: #fff; box-shadow: 0 4px 14px rgba(39,174,96,0.3); }
.btn-primary:hover { background: var(--fp-green-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(39,174,96,0.4); }
.btn-secondary { background: transparent; color: var(--fp-heading); border-color: var(--fp-line); }
.btn-secondary:hover { border-color: var(--fp-heading); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 18px 34px; font-size: 17px; }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fp-line);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
  color: var(--fp-heading);
}
.nav-brand svg { color: var(--fp-green); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav-links a { color: var(--fp-body); }
.nav-links a:hover { color: var(--fp-heading); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-signin { color: var(--fp-body); font-size: 14px; font-weight: 500; }
.nav-signin:hover { color: var(--fp-heading); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(39,174,96,0.10), transparent 60%),
    radial-gradient(600px 300px at 10% 80%, rgba(39,174,96,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.hero-copy { padding-top: 8px; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--fp-green-soft); color: var(--fp-green-dk);
  font-size: 13px; font-weight: 600;
  border-radius: 999px; letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--fp-green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39,174,96,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(39,174,96,0); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 22px;
  letter-spacing: -0.028em;
}
.hero h1 .accent { color: var(--fp-green); }
.hero p.lead {
  font-size: 19px; line-height: 1.6;
  color: var(--fp-body);
  margin: 0 0 30px;
  max-width: 540px;
}
.hero-cta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta-meta { font-size: 14px; color: var(--fp-muted); }

.trust-row {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--fp-body);
}
.trust-row strong { color: var(--fp-heading); font-weight: 700; }
.trust-row .dot { width: 4px; height: 4px; border-radius: 99px; background: var(--fp-line); }
.stars { color: #f5b945; letter-spacing: 1px; }

/* Hero reviews — fill the white space below the trust row. Two stacked
   review tiles; the second hides at narrower widths so the hero stays
   roughly the same height as the right-column sidebar mock. */
.hero-reviews {
  margin-top: 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 540px;
}
.hero-review {
  margin: 0;
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-1);
}
.hero-review-stars {
  color: #f5b945;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 8px;
}
.hero-review-quote {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fp-heading);
  font-weight: 500;
}
.hero-review-who {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: var(--fp-body);
}
.hero-review-avatar {
  width: 32px; height: 32px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--fp-green), var(--fp-green-dk));
  color: #fff;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-review-name {
  display: block;
  color: var(--fp-heading);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
}
.hero-review-meta {
  display: block;
  font-size: 11.5px;
  color: var(--fp-muted);
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .hero-review--secondary { display: none; }
}

/* Hero visual — sidebar mock. The right column stretches to match the
   left column's height so the sidebar mock can extend to the bottom of
   the review tiles; the sidebar itself flexes vertically inside. */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* "Preview" corner ribbon: diagonal banner clipped to the sidebar's
   rounded top-right corner, signaling the mockup is a static demo.
   Sized to extend past the green header and overlap the amber CTA
   below it for stronger visual presence. */
.hero-preview-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.hero-preview-ribbon span {
  position: absolute;
  top: 30px;
  right: -54px;
  display: block;
  width: 220px;
  padding: 6px 0;
  text-align: center;
  background: #fff;
  color: var(--fp-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  border-top: 1px solid rgba(39,174,96,0.35);
  border-bottom: 1px solid rgba(39,174,96,0.35);
}

/* Annotation callouts: positioned to the left of the centered 380px sidebar.
   Each callout uses --top to align with its anchor inside the sidebar. */
.hero-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-callout {
  position: absolute;
  top: var(--top);
  /* Sidebar (max-width 380px) centers in .hero-visual. Right edge of the
     callout's text card lands ~28px to the left of the sidebar's left edge,
     leaving room for a short leader line + anchor dot. */
  right: calc(50% + 218px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}
.hero-callout-text {
  background: #fff;
  color: #1f1f1f;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 9px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: right;
}
.hero-callout-text strong { color: var(--fp-green); font-weight: 700; }
/* Leader line: dashed segment from card to anchor dot on the sidebar edge */
.hero-callout::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 18px;
  margin-left: 4px;
  border-top: 1.5px dashed rgba(39,174,96,0.55);
}
/* Anchor dot at the line's right end, sitting on the sidebar edge */
.hero-callout::before {
  content: '';
  position: absolute;
  left: calc(100% + 22px);
  top: 50%;
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--fp-green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(39,174,96,0.18);
  animation: hero-callout-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-callout-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(39,174,96,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(39,174,96,0.06); }
}

/* Hide callouts when the hero collapses to single-column on narrow screens.
   Badge stays visible at all widths. */
@media (max-width: 1280px) {
  .hero-callouts { display: none; }
}


.sidebar {
  position: relative;
  width: 100%;
  max-width: 380px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(0,0,0,0.06);
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f1f1f;
}

/* The marketing mockup is a static illustration — none of its
   buttons, links, or rows actually do anything. Disable pointer
   events on the whole shell so the cursor never changes to a
   pointer/hand on hover and users don't read it as live UI. */
.sidebar.is-preview {
  pointer-events: none;
}
.sidebar.is-preview * {
  cursor: default !important;
}
/* ────────────────────────────────────────────────────────────
   Sidebar mockup styles. Mirrors the live extension's design
   (extension/sidepanel.css) but scoped under .sb- prefix so the
   marketing site can render it without pulling in the extension's
   broader stylesheet.
   ──────────────────────────────────────────────────────────── */

/* Header — green band, just the wordmark. The marketing mockup
   drops the live "POTENTIAL SAVINGS" odometer the real sidepanel
   carries; the diagonal "Preview" corner ribbon owns that corner
   instead. */
.sb-header {
  background: var(--fp-green);
  color: #fff;
  height: 56px;
  padding: 0 16px;
  display: flex; align-items: center;
}
.sb-logo { height: 30px; width: auto; }

.sb-body {
  padding: 12px 14px 14px;
  flex: 1;
}

/* Amber CTA — stands out against the green header instead of
   reading as a continuation of it. */
.sb-cta {
  width: 100%; padding: 10px 12px;
  background: #F86C2A; color: #fff;
  border: 1px solid #F86C2A; border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow: none;
}
.sb-cta-icon { flex-shrink: 0; }

.sb-toggles {
  display: flex; gap: 18px; align-items: center; justify-content: center;
  padding: 10px 0 0;
  font-size: 12px; color: #3a3a3a;
}
.sb-toggle { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.sb-check {
  width: 14px; height: 14px;
  border: 1.4px solid #d6dade; border-radius: 3px;
  background: #fff; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.sb-check.checked {
  background: var(--fp-green); border-color: var(--fp-green);
  position: relative;
}
.sb-check.checked::after {
  content: ''; width: 7px; height: 4px;
  border: 1.5px solid #fff; border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(0px, -1px);
}

/* Bordered table card — wraps each results group (Popular / All).
   Mirrors .fp-table-card in extension/sidepanel.css. */
.sb-table-card {
  margin: 12px 0 0;
  background: #ffffff;
  border: 1px solid #ececef;
  border-radius: 10px;
  overflow: hidden;
}
.sb-card-header {
  padding: 12px 14px 10px;
}
.sb-card-title {
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.3px; line-height: 1.3;
  color: #1f1f1f;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin: 0 0 5px;
}
.sb-card-subtitle {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px;
  font-size: 11.5px; color: #6b7280;
  font-weight: 500;
}
.sb-card-subtitle-text {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.sb-card-subtitle-text strong {
  color: #3a3a3a;
  font-weight: 600;
}
.sb-card-subtitle-action {
  color: #6b7280;
  text-decoration: underline;
  text-decoration-color: #f0f1f3;
  text-underline-offset: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}
.sb-card-subtitle-action:hover {
  color: #1f8a4c;
  text-decoration-color: currentColor;
}
.sb-card-divider {
  border-top: 1px solid #ececef;
}

/* Stacked compact rows — favicon · identity · leader · price.
   Mirrors .price-card.compact in extension/sidepanel.css. */
.sb-results-card {
  background: #ffffff;
}
.sb-row {
  display: grid;
  grid-template-columns: 32px auto 1fr auto;
  column-gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.sb-row + .sb-row {
  border-top: 1px solid #f0f1f3;
}

/* Favicon sits in a relative-positioned cell so the 45° corner
   ribbon can anchor against the favicon's top-left corner. */
.sb-favicon-cell {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: visible;
}
.sb-favicon {
  width: 32px; height: 32px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #ececef;
  padding: 3px;
  display: block;
}

/* 45° corner ribbon — POPULAR (green), ORIGINAL (orange),
   CASHBACK (teal). Geometry tuned so the ribbon's BL_rot tip
   touches the row's left vertical line and BR_rot tip touches
   the row's top horizontal line, with the readable middle of
   the band staying inside the row.

   Note: the extension's `.compact-ribbon` sits inside an inner
   `.compact-row` grid that's wrapped by an outer `.price-card.compact`
   with 12px padding-top + 14px padding-left. That outer padding
   acts as a buffer the ribbon can extend INTO before being clipped.
   The website mockup collapses to a single `.sb-row` element so
   the ribbon's positioning context IS the outer row — to keep the
   same visual wrap, we add the missing buffer back into the
   ribbon's `top`/`left` (extension's `top: -2 / left: -25` becomes
   `top: 10 / left: -11` here). */
.sb-ribbon {
  position: absolute;
  top: 10px;
  left: -11px;
  width: 54px;
  transform: rotate(-45deg);
  transform-origin: center center;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  padding: 1.5px 0;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  text-transform: uppercase;
}
.sb-ribbon.ribbon-popular  { background: #1f8a4c; }
.sb-ribbon.ribbon-original { background: #c97a18; }
.sb-ribbon.ribbon-cashback { background: #00838f; }

.sb-identity { min-width: 0; }
.sb-name-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  color: #1f1f1f;
  line-height: 1.15;
  min-width: 0;
}
.sb-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.sb-caption {
  margin-top: 2px;
  font-size: 11px;
  line-height: 14px;
  white-space: nowrap;
}
.sb-caption .cap-instock { color: #6b7280; font-weight: 500; }

/* Inline "Best price" chip beside the winner row's retailer name. */
.sb-best-chip {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--fp-green);
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Soft 1-on / 4-off dotted leader between identity and price. */
.sb-leader {
  height: 1px;
  align-self: center;
  background: repeating-linear-gradient(
    to right,
    #f0f1f3 0 1px,
    transparent 1px 5px
  );
  margin: 0 4px;
}

/* Right column stack — price on top, optional cashback note beneath. */
.sb-price-stack {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0;
}
.sb-price {
  font-size: 16px; font-weight: 800;
  color: #1f1f1f; letter-spacing: -0.3px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Cashback explainer beneath the price — only shown when the
   displayed price has been adjusted by cashback. Two compact
   lines: rate (teal) and merchant's listed price (muted grey). */
.sb-cashback-note {
  margin-top: 3px;
  text-align: right;
  line-height: 1.2;
  white-space: nowrap;
}
.sb-cashback-note .cashback-rate {
  display: block;
  font-size: 10px; font-weight: 600;
  color: #00838f;
}
.sb-cashback-note .cashback-listed {
  display: block;
  font-size: 9.5px; font-weight: 500;
  color: #9aa0a6;
  margin-top: 1px;
}

/* Winner row — green left accent, soft green wash, green price. */
.sb-row.is-winner {
  background: #f3faf5;
  border-left: 3px solid var(--fp-green);
}
.sb-row.is-winner + .sb-row {
  border-top-color: #e0eee5;
}
.sb-row.is-winner .sb-price { color: var(--fp-green); }

/* AI / feedback caption — single muted line under the cards.
   "feedback" is rendered as a styled span (not a link) so the
   marketing mock doesn't suggest the user can click through. */
.sb-ai-disclaimer {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
}
.sb-ai-disclaimer .sb-ai-feedback-word {
  color: #1f8a4c;
  font-weight: 600;
}

/* Clean green footer bar — the marketing mockup drops the tier row
   and the link rail (both present in the real extension) for a
   calmer hero visual. Keeps just the green bar so the panel still
   reads as a complete shape. */
.sb-footer {
  background: var(--fp-green);
  height: 24px;
}

/* Original browser mock kept for reference (unused) */
.hero-visual--legacy { position: relative; }
.browser {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(0,0,0,0.06);
}
.browser-chrome {
  background: linear-gradient(180deg, #f7f7f7, #ececec);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #e1e4e8;
}
.browser-chrome .dot { width: 11px; height: 11px; border-radius: 99px; }
.browser-chrome .red { background: #ed6a5e; }
.browser-chrome .yellow { background: #f5bf4f; }
.browser-chrome .green { background: #62c554; }
.browser-url {
  flex: 1; max-width: 360px; margin-left: 14px;
  background: #fff; border: 1px solid #e1e4e8; border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px; color: #666;
  display: flex; align-items: center; gap: 6px;
}
.browser-url .lock { color: var(--fp-green); }

.product-page {
  padding: 26px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  position: relative;
}
.product-photo {
  background: linear-gradient(135deg, #f4f4f4, #e9e9e9);
  border-radius: 10px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.product-photo svg { color: #b8b8b8; }
.product-info h4 {
  font-size: 14px; font-weight: 600; color: #333;
  margin-bottom: 6px; line-height: 1.4;
}
.product-info .brand { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-info .stars-line { font-size: 11px; color: #888; margin: 6px 0 14px; }
.product-info .price-amzn { font-size: 26px; font-weight: 700; color: #333; line-height: 1; }
.product-info .price-meta { font-size: 11px; color: #888; margin-top: 4px; }
.product-info .add-cart {
  margin-top: 16px;
  padding: 8px 14px; background: #ffd814; color: #0f1111;
  border-radius: 20px; font-size: 11px; text-align: center; font-weight: 500;
}

/* FindPrices overlay floating on the product page */
.fp-overlay {
  position: absolute;
  top: 14px; right: 14px;
  width: 248px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.04);
  border: 2px solid var(--fp-green);
  padding: 14px;
  font-size: 12px; color: #1f1f1f;
  animation: overlay-in 0.6s ease-out 0.4s backwards;
}
@keyframes overlay-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fp-overlay-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.fp-overlay-head .brand-mini {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 800; font-size: 13px; color: #1f1f1f;
}
.fp-overlay-head .brand-mini svg { color: var(--fp-green); }
.fp-overlay-head .ts { font-size: 10px; color: #999; }
.fp-overlay h5 {
  font-size: 13px; font-weight: 600; color: #333;
  margin-bottom: 10px; line-height: 1.4;
}
.fp-overlay h5 em { font-style: normal; color: var(--fp-green); font-weight: 700; }
.price-pill {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 999px;
  background: #fff; border: 1px solid #e1e4e8;
  margin-bottom: 6px;
  font-size: 12px;
}
.price-pill.best { background: var(--fp-green-soft); border: 1.5px solid var(--fp-green); }
.price-pill .store {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.price-pill .store-icon {
  width: 20px; height: 20px; border-radius: 4px; background: #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #555;
}
.price-pill .price { font-weight: 700; }
.price-pill .save { color: var(--fp-green); font-weight: 700; font-size: 11px; margin-left: 8px; }
.price-pill .badge { background: var(--fp-green); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.5px; margin-left: 6px; }
.fp-overlay-cta {
  display: block; margin-top: 10px; padding: 9px 12px;
  background: var(--fp-green); color: #fff;
  border-radius: 8px; text-align: center;
  font-weight: 600; font-size: 12px;
}

/* Floating savings badge */
.savings-badge {
  position: absolute;
  bottom: -20px; left: -10px;
  padding: 12px 18px;
  background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-3);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  animation: float-in 0.6s ease-out 1.2s backwards;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.savings-badge .icon-wrap {
  width: 36px; height: 36px; border-radius: 99px;
  background: var(--fp-green-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-green);
}
.savings-badge .label { font-size: 11px; color: var(--fp-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.savings-badge .value { font-size: 16px; font-weight: 800; color: var(--fp-heading); }

/* ───────── LOGOS STRIP ───────── */
.logos-strip {
  padding: 30px 0;
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}
.logos-strip .label {
  font-size: 12px; font-weight: 600;
  color: var(--fp-muted); text-transform: uppercase; letter-spacing: 1.2px;
  text-align: center; margin-bottom: 18px;
}
.logos {
  display: flex; gap: 44px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.logo-word {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fp-muted);
  letter-spacing: -0.015em;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.logo-word:hover { opacity: 1; color: var(--fp-heading); }
.logo-word.logo-ebay { font-style: italic; letter-spacing: -0.04em; }
.logo-more {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--fp-green-dk);
  background: var(--fp-green-soft);
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

/* ───────── HOW IT WORKS ───────── */
.section { padding: 90px 0; }
.section-alt { background: var(--fp-bg-alt); }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 50px;
}
.section-head .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--fp-green); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.section-head p { font-size: 18px; color: var(--fp-body); margin: 0; line-height: 1.6; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; padding: 36px 32px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 99px;
  background: var(--fp-green-soft); color: var(--fp-green);
  font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 10px; color: var(--fp-heading); }
.step p { font-size: 15px; line-height: 1.6; color: var(--fp-body); margin: 0; }
.step .step-icon {
  position: absolute; top: 30px; right: 28px;
  color: var(--fp-green); opacity: 0.16;
}

/* ───────── FEATURES ───────── */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; padding: 36px 32px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
.feature-card .icon {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--fp-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 19px; margin: 0 0 10px; color: var(--fp-heading); }
.feature-card p { font-size: 15px; line-height: 1.65; color: var(--fp-body); margin: 0; }

/* ───────── COMPARISON TABLE ───────── */
.compare-wrap { max-width: 900px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-2);
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--fp-line);
  font-size: 15px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: var(--fp-bg-alt);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--fp-muted); font-weight: 700;
}
.compare-table thead th.us {
  color: var(--fp-green); background: var(--fp-green-soft);
}
.compare-table .row-label { font-weight: 600; color: var(--fp-heading); }
.compare-table .col-us { background: rgba(39,174,96,0.05); border-left: 2px solid var(--fp-green); border-right: 2px solid var(--fp-green); }
.compare-table tbody tr:last-child .col-us { border-bottom: 2px solid var(--fp-green); }
.compare-table .yes { color: var(--fp-green); font-weight: 700; }
.compare-table .no { color: var(--fp-red); font-weight: 600; }
.compare-table .check { display: inline-flex; align-items: center; gap: 6px; }

/* ───────── LIVE SAVINGS ───────── */
.live-savings-feed { max-width: 760px; margin: 0 auto; }
.live-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  background: #fff; border: 1px solid var(--fp-line); border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-1);
}
.live-row .left { display: flex; gap: 14px; align-items: center; }
.live-row .pulse {
  width: 9px; height: 9px; border-radius: 99px; background: var(--fp-green);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.live-row .who { font-size: 15px; font-weight: 600; color: var(--fp-heading); }
.live-row .who .save { color: var(--fp-green); }
.live-row .what { font-size: 13px; color: var(--fp-muted); margin-top: 2px; }
.live-row .verified {
  font-size: 12px; color: var(--fp-green); font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--fp-green-soft); padding: 4px 10px; border-radius: 99px;
}

/* ───────── SOCIAL PROOF (green band) ───────── */
.social-proof {
  background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-green-dk) 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.social-proof h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin: 0 auto 50px;
  max-width: 880px;
  letter-spacing: -0.02em;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px;
  max-width: 800px; margin: 0 auto;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 30px; } }
.stat .v { font-size: 56px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stat .l { font-size: 15px; opacity: 0.9; font-weight: 500; }
.social-proof .footnote {
  font-size: 14px; opacity: 0.8; margin-top: 30px;
}
.social-proof .footnote a { color: #fff; text-decoration: underline; }

/* ───────── REVIEWS ───────── */
.reviews { display: grid; grid-template-columns: minmax(0, 620px); gap: 24px; justify-content: center; }
.review {
  background: #fff; padding: 32px 30px;
  border-radius: 12px; box-shadow: var(--shadow-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
.review .stars { font-size: 14px; margin-bottom: 14px; }
.review .quote { font-size: 16px; line-height: 1.65; color: var(--fp-heading); margin: 0 0 22px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 40px; height: 40px; border-radius: 99px;
  background: linear-gradient(135deg, var(--fp-green), var(--fp-green-dk));
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.review .name { font-size: 14px; font-weight: 600; color: var(--fp-heading); }
.review .meta { font-size: 12px; color: var(--fp-muted); }

/* ───────── FOUNDER NOTE ───────── */
.founder-wrap { max-width: 880px; margin: 0 auto; }
.founder {
  background: #fff;
  border-radius: 14px;
  border-left: 5px solid var(--fp-green);
  padding: 40px;
  display: grid; grid-template-columns: 100px 1fr; gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-2);
}
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; text-align: center; } }
.founder-photo {
  width: 100px; height: 100px; border-radius: 99px; overflow: hidden;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .founder-photo { margin: 0 auto; } }
.founder .label { font-size: 13px; font-weight: 600; color: var(--fp-green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.founder p { font-size: 18px; line-height: 1.65; color: var(--fp-heading); margin: 0 0 12px; font-style: italic; }
.founder .signoff { font-size: 14px; color: var(--fp-body); font-weight: 500; font-style: normal; }

/* ───────── FAQ ───────── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 10px; padding: 22px 26px;
  margin-bottom: 12px; cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--fp-heading);
}
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 99px; flex-shrink: 0;
  background: var(--fp-green-soft); color: var(--fp-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--fp-green); color: #fff; }
.faq-a {
  font-size: 15px; line-height: 1.6; color: var(--fp-body);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, margin-top 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; margin-top: 14px; }

/* ───────── CTA SECTION ───────── */
.final-cta {
  text-align: center;
  padding: 100px 0 110px;
  position: relative;
  background:
    radial-gradient(600px 300px at 50% 100%, rgba(39,174,96,0.10), transparent 70%);
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.028em;
}
.final-cta p {
  font-size: 19px; color: var(--fp-body);
  max-width: 580px; margin: 0 auto 32px;
}

/* ───────── BLOG FEED (product → blog hub) ───────── */
.blog-feed { padding: 72px 0; background: var(--fp-bg-alt); }
.blog-feed-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.blog-feed-head h2 { font-size: 28px; font-weight: 700; color: var(--fp-ink); margin: 0; }
.blog-feed-head .blog-feed-hub { font-weight: 600; color: var(--fp-green); white-space: nowrap; }
.blog-feed-head .blog-feed-hub:hover { text-decoration: underline; }
[data-blog-feed] { min-height: 360px; }
[data-blog-feed][data-empty] { display: none; }
.blog-feed-hubs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.blog-feed-hubs a {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--fp-border, #e5e7eb);
  color: var(--fp-ink); font-size: 14px; font-weight: 600;
}
.blog-feed-hubs a:hover { border-color: var(--fp-green); color: var(--fp-green); }
@media (max-width: 700px) {
  .blog-feed { padding: 52px 0; }
  .blog-feed-head h2 { font-size: 24px; }
  [data-blog-feed] { min-height: 700px; }
}

/* ───────── FOOTER ───────── */
footer {
  background: #1a1a1a; color: #fff;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .nav-brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 14px 0 18px; max-width: 320px; }
.footer-brand .addr { font-size: 13px; line-height: 1.6; opacity: 0.6; }
footer h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
footer ul a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 700px) { .footer-copy { flex-direction: column; gap: 12px; } }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1000px) {
  .hero { padding: 50px 0 70px; }
  .section { padding: 60px 0; }
  .savings-badge { display: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .hero p.lead { font-size: 17px; }
  .product-page { grid-template-columns: 1fr; }
  .fp-overlay { position: static; margin-top: 16px; width: auto; }
}
