/* Chargeback Shield — site styles */
:root {
  --blue: #1d63ee;
  --teal: #18c6b5;
  --navy: #0f1d4a;
  --ink: #1a2233;
  --muted: #5b6478;
  --bg: #f7f9fd;
  --card: #ffffff;
  --stroke: #e3e9f4;
  --max: 980px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e6ebf5;
    --muted: #9aa5bd;
    --bg: #0b1220;
    --card: #141d33;
    --stroke: #26324e;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--blue); }
img { max-width: 100%; height: auto; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.nav .logo { font-weight: 800; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.nav .logo span { color: var(--blue); }
.nav nav a { margin-left: 18px; font-size: .95rem; text-decoration: none; color: var(--muted); }
.nav nav a:hover { color: var(--blue); }
.hero {
  text-align: center;
  padding: 56px 0 40px;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { max-width: 620px; margin: 0 auto 26px; color: var(--muted); font-size: 1.1rem; }
.store-badge img { height: 54px; width: auto; }
.trial-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.section { padding: 44px 0; }
.section h2 { font-size: 1.6rem; letter-spacing: -0.01em; margin: 0 0 22px; }
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 16px;
  padding: 20px 22px;
}
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.steps { counter-reset: step; }
.steps .card { position: relative; padding-left: 64px; }
.steps .card::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.shots { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.shots img {
  width: min(300px, 80vw); border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(15, 29, 74, .14);
}
.faq details {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); }
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 22px; color: #fff; padding: 40px 24px; margin: 20px 0 40px;
}
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 20px; }
footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0 40px; color: var(--muted); font-size: .9rem;
}
footer .links a { margin-right: 16px; color: var(--muted); }
article { max-width: 760px; margin: 0 auto; }
article h1 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); line-height: 1.2; letter-spacing: -0.02em; }
article h2 { margin-top: 2.2em; font-size: 1.45rem; }
article h3 { margin-top: 1.6em; font-size: 1.15rem; }
article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
article .toc { background: var(--card); border: 1px solid var(--stroke); border-radius: 12px; padding: 16px 22px; font-size: .95rem; }
article .callout {
  background: var(--card); border: 1px solid var(--stroke); border-left: 4px solid var(--teal);
  border-radius: 10px; padding: 14px 18px; margin: 22px 0;
}
article .template {
  background: var(--card); border: 1px solid var(--stroke); border-radius: 12px;
  padding: 20px 24px; font-size: .93rem;
}
.table-scroll { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; margin: 14px 0 6px; font-size: .93rem; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--stroke); vertical-align: top; }
th { color: var(--muted); font-weight: 600; white-space: nowrap; }
td:first-child { font-weight: 700; white-space: nowrap; }
.post-cta {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 16px; color: #fff; padding: 24px 26px; margin: 34px 0; text-align: center;
}
.post-cta p { color: rgba(255,255,255,.92); margin: 0 0 14px; }
.post-list .card { margin-bottom: 14px; }
.post-list .card a { text-decoration: none; }
.post-list .card p { margin-top: 6px; }
