
:root {
  --brand: #0E9488;
  --brand-dark: #075E55;
  --brand-soft: #E6F7F4;
  --accent: #F26B5E;
  --accent-soft: #FFF1EE;
  --ink: #0F1B22;
  --ink-soft: #4A5763;
  --muted: #7A8693;
  --bg: #FBFAF7;
  --card: #FFFFFF;
  --border: #E6E2D9;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(15,27,34,.04), 0 6px 24px rgba(15,27,34,.06);
  --max: 1180px;
  --fs-display: clamp(2rem, 4.6vw, 3.4rem);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 8px 12px; z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

/* Header */
.site-header { background: var(--card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.25rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; font-weight: 800; letter-spacing: .5px; font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(14,148,136,.35);
}
.brand.small .brand-mark { width: 30px; height: 30px; font-size: .85rem; }
.brand-text strong { font-weight: 800; color: var(--brand-dark); }
.primary-nav a {
  margin-left: 18px; color: var(--ink-soft); font-weight: 500; font-size: 0.96rem;
}
.primary-nav a:hover { color: var(--brand-dark); }

.trust-strip { background: var(--brand-soft); border-bottom: 1px solid var(--border); }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; padding: 8px 20px; font-size: 0.83rem; color: var(--brand-dark); }
.trust-pill { white-space: nowrap; }

/* Hero */
.hero { padding: 56px 0 36px; background:
  radial-gradient(1200px 400px at 90% -10%, var(--brand-soft) 0%, transparent 60%),
  radial-gradient(900px 380px at -10% 110%, var(--accent-soft) 0%, transparent 55%),
  var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: var(--fs-display); line-height: 1.05; margin: 0 0 14px; letter-spacing: -.02em; }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 20px; }
.hero .stat-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; }
.stat strong { display: block; font-size: 1.4rem; color: var(--brand-dark); }
.stat span { font-size: .85rem; color: var(--muted); }

.hero-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-art img { width: 100%; display: block; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .primary-nav a:first-child { margin-left: 0; }
}

/* Lead form */
.lead-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.lead-hero { padding: 28px; }
.lead-eyebrow { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.lead-title { font-size: 1.45rem; margin: 6px 0 6px; line-height: 1.25; }
.lead-sub { color: var(--ink-soft); margin: 0 0 14px; }
.lead-fields { display: grid; grid-template-columns: 1fr; gap: 8px; }
.lead-fields input, .lead-side input {
  padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff;
}
.lead-fields button, .lead-side button {
  padding: 12px 16px; background: var(--brand); color: #fff; font-weight: 700;
  border: 0; border-radius: 10px; cursor: pointer; font-size: 1rem;
}
.lead-fields button:hover, .lead-side button:hover { background: var(--brand-dark); }
.lead-meta { color: var(--muted); font-size: .82rem; margin-top: 10px; }
.lead-side h3 { margin: 0 0 8px; color: var(--brand-dark); }
.lead-side form { display: grid; gap: 8px; margin: 10px 0; }

/* Press strip */
.press-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.press-label { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.press-logos { display: flex; flex-wrap: wrap; gap: 22px; color: var(--ink-soft); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 1rem; }

/* Sections */
.section { padding: 44px 0; }
.section h2 { font-size: 1.65rem; margin: 0 0 6px; letter-spacing: -.01em; }
.section .section-sub { color: var(--ink-soft); margin: 0 0 22px; }

/* Coupon cards */
.coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.coupon-card {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; color: var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.coupon-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brand); text-decoration: none; }
.coupon-store { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-dark); font-weight: 700; }
.coupon-discount { font-size: 1.35rem; font-weight: 800; color: var(--accent); margin: 4px 0; }
.coupon-product { color: var(--ink); font-weight: 500; }
.coupon-meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: .8rem; color: var(--muted); }
.coupon-code { background: var(--brand-soft); color: var(--brand-dark); padding: 2px 8px; border-radius: 6px; font-family: ui-monospace, "SF Mono", Menlo, monospace; }

/* Store directory */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.store-tile {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; color: var(--ink);
}
.store-tile:hover { border-color: var(--brand); text-decoration: none; box-shadow: var(--shadow); }
.store-tile h3 { margin: 0 0 4px; }
.store-tile .count { color: var(--accent); font-weight: 700; }

/* Layout w/ sidebar */
.with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; }
@media (max-width: 980px) { .with-sidebar { grid-template-columns: 1fr; } }
.sidebar > * + * { margin-top: 18px; }

/* Article body */
.article {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.article h1 { font-size: 2rem; margin: 6px 0 10px; letter-spacing: -.01em; }
.article h2 { font-size: 1.3rem; margin: 28px 0 8px; }
.article h3 { font-size: 1.1rem; margin: 22px 0 6px; }
.article p { margin: 0 0 14px; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 6px; }
.article .deal-card {
  margin: 18px 0; padding: 18px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 60%);
  border: 1px dashed var(--brand);
}
.article .deal-row { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: baseline; margin-bottom: 8px; }
.article .deal-row strong { color: var(--brand-dark); }
.article .copy-code {
  display: inline-block; padding: 6px 12px; background: var(--ink); color: #fff;
  border-radius: 8px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.05rem; letter-spacing: .04em;
}
.article .pill { display:inline-block; padding: 3px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: .78rem; font-weight: 700; }

.btn-primary {
  display: inline-block; padding: 12px 18px; background: var(--brand); color: #fff !important; font-weight: 700;
  border-radius: 10px; text-decoration: none;
}
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-secondary {
  display: inline-block; padding: 11px 16px; background: var(--accent); color: #fff !important; font-weight: 700;
  border-radius: 10px; text-decoration: none;
}
.btn-secondary:hover { filter: brightness(.95); text-decoration: none; }

/* CTAs */
.cta-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.cta-eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--accent); }
.cta-cashback { border-left: 4px solid var(--brand); }
.cta-card-credit { border-left: 4px solid var(--accent); }
.cta-card h3 { margin: 6px 0 6px; font-size: 1.1rem; }
.cta-card p { color: var(--ink-soft); margin: 0 0 12px; font-size: .95rem; }

/* Crumbs */
.crumbs { font-size: .85rem; color: var(--muted); margin: 18px 0 4px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.crumbs li + li::before { content: " / "; color: var(--muted); margin-right: 6px; }

/* Ad slots */
.ad-slot {
  margin: 22px 0; padding: 16px; text-align: center; color: var(--muted);
  background: repeating-linear-gradient(45deg, #f4f1eb, #f4f1eb 8px, #faf8f3 8px, #faf8f3 16px);
  border: 1px dashed var(--border); border-radius: var(--radius); font-size: .82rem;
}

/* Footer */
.site-footer { background: #0F1B22; color: #C7D1DA; margin-top: 60px; padding: 44px 0 32px; }
.site-footer h4 { color: #fff; margin: 0 0 10px; font-size: 1rem; }
.site-footer a { color: #9CC2BD; }
.site-footer .brand-text strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { margin-bottom: 6px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Tables */
table.deals { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .95rem; }
table.deals th, table.deals td { padding: 10px 8px; border-bottom: 1px solid var(--border); text-align: left; }
table.deals th { color: var(--muted); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

/* Tag chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.chip { display: inline-block; padding: 6px 12px; background: var(--card); border: 1px solid var(--border); border-radius: 999px; font-size: .85rem; color: var(--ink-soft); }
.chip:hover { border-color: var(--brand); color: var(--brand-dark); text-decoration: none; }
