:root {
  color-scheme: light;
  --bg: #f0f7f4;
  --bg-mint: #e5f5ee;
  --surface: #ffffff;
  --text: #0f1f1a;
  --muted: #5a7068;
  --finder: #0d9488;
  --finder-dark: #0f766e;
  --finder-dim: rgba(13, 148, 136, 0.12);
  --cash: #16a34a;
  --cash-glow: rgba(22, 163, 74, 0.15);
  --bang: #f59e0b;
  --bang-soft: rgba(245, 158, 11, 0.18);
  --border: rgba(15, 31, 26, 0.09);
  --shadow: 0 18px 50px rgba(13, 148, 136, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display:
    "SF Pro Display",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "SF Pro Text",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 10%, var(--finder-dim), transparent 50%),
    radial-gradient(ellipse 40% 30% at 90% 85%, var(--cash-glow), transparent 45%),
    radial-gradient(circle at 70% 20%, var(--bang-soft), transparent 35%),
    linear-gradient(165deg, var(--bg-mint) 0%, var(--bg) 50%, #fafcfb 100%);
}

.backdrop__coin {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 72px;
  height: 72px;
  border: 4px solid rgba(22, 163, 74, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245, 158, 11, 0.25), transparent 60%);
}

.backdrop__coin::after {
  content: "%";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(22, 163, 74, 0.25);
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__card {
  padding: 34px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--finder) 0%, var(--cash) 50%, var(--bang) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--finder-dark);
  background: var(--finder-dim);
  border-radius: 999px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-title .finder {
  color: var(--finder);
}

.brand-title .cashback {
  display: block;
  margin-top: 4px;
  color: var(--cash);
}

.brand-title .cashback em {
  font-style: normal;
  color: var(--bang);
}

h1 {
  margin: 20px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 14px;
  max-width: 52ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.78;
}

.updated {
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--finder);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-bottom: 3px solid var(--finder);
}

.highlights li:nth-child(2) {
  border-bottom: 3px solid var(--cash);
}

.highlights li:nth-child(3) {
  border-bottom: 3px solid var(--bang);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--finder);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-mint) 100%);
  border-color: rgba(13, 148, 136, 0.18);
}

a {
  color: var(--finder);
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.3);
}

a:hover {
  color: var(--cash);
}

.footer {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .finder {
  color: var(--finder);
}

.footer strong .cash {
  color: var(--cash);
}

.footer strong .bang {
  color: var(--bang);
}

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

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__card {
    padding: 26px 20px 22px;
  }

  .backdrop__coin {
    width: 48px;
    height: 48px;
    top: 6%;
    right: 4%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 900px);
  }
}
