/* Subscription Leak Finder (/leaks)
   Standalone, mobile-first stylesheet. This page deliberately does not load the
   Webflow bundle: most of its traffic arrives cold from Reddit and TikTok on a
   phone, so it ships only the brand font, one logo, and this file.
   Brand system: instagram_campaign/CONTENT_SYSTEM.md */

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/6199281eaf046ee138e150bb_SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/6199281e0b5fa910c90af817_SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/6199281ea841877b48a694b6_SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #1a1b27;
  --navy-soft: #232435;
  --navy-line: #33344a;
  --teal: #6fb7ab;
  --teal-bright: #8ad3c6;
  --white: #ffffff;
  --gray: #9a9aab;
  --green: #50be78;
  --font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--teal); }

h1, h2 { line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.01em; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 10;
  background: var(--teal);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
}

main, .site-head, .site-foot {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand img { display: block; width: 130px; height: auto; }
.head-cta {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  padding: 7px 15px;
  white-space: nowrap;
}
.head-cta:hover { border-color: var(--teal); }

/* Hero */
.hero { padding: 10px 0 26px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 { font-size: 34px; font-weight: 700; }
.lede { margin: 0; color: var(--gray); font-size: 16px; }

/* Result panel */
.result {
  background: linear-gradient(180deg, #262838 0%, #1e1f2c 100%);
  border: 1px solid var(--navy-line);
  border-radius: 20px;
  padding: 26px 22px 22px;
  text-align: center;
}
.result-label {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.result-number {
  margin: 6px 0 0;
  color: var(--teal);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.result-unit { margin: 2px 0 10px; color: var(--white); font-size: 18px; font-weight: 500; }
.result-sub { margin: 0; color: var(--gray); font-size: 15px; }
.result-sub span { color: var(--white); font-weight: 500; }

/* Charge list */
.charges { padding: 30px 0 4px; }
.charges-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.charges-head h2 { margin: 0; font-size: 18px; font-weight: 500; }
.pill {
  flex: none;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  padding: 4px 11px;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.charge-list { list-style: none; margin: 0; padding: 0; }
.charge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--navy-line);
  border-radius: 14px;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.charge:hover { background: #282a3c; }
.charge:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.charge[aria-pressed="true"] {
  border-left-color: var(--teal);
  background: #2a2f3f;
}
.charge-main { flex: 1 1 auto; min-width: 0; }
.charge-merchant { display: block; font-size: 16px; font-weight: 500; }
.charge-note { display: block; margin-top: 2px; color: var(--gray); font-size: 13px; }
.charge-side { flex: none; text-align: right; }
.charge-amount { display: block; font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.charge-cadence { display: block; color: var(--gray); font-size: 12px; }
.charge-flag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--navy-line);
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.charge[aria-pressed="true"] .charge-flag {
  border-color: var(--teal);
  background: rgba(111, 183, 171, 0.14);
  color: var(--teal-bright);
}
.charges-foot { color: var(--gray); font-size: 14px; }

/* Buttons */
.actions { padding: 18px 0 8px; text-align: center; }
.btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn + .btn { margin-top: 10px; }
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: var(--teal-bright); }
.btn-ghost { background: transparent; border-color: var(--navy-line); color: var(--white); }
.btn-ghost:hover { border-color: var(--teal); }
.btn[disabled] { opacity: 0.5; cursor: default; }
.actions-note { margin: 14px 0 0; color: var(--gray); font-size: 14px; }

/* Explainer */
.how { padding: 30px 0 10px; }
.how h2, .closer h2 { font-size: 22px; font-weight: 700; }
.how p { color: var(--gray); font-size: 16px; }
.trust {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-radius: 14px;
  color: var(--white) !important;
  font-size: 15px;
}

.closer { padding: 24px 0 40px; text-align: center; }
.closer p { color: var(--gray); font-size: 16px; }

/* Footer */
.site-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid var(--navy-line);
  font-size: 14px;
}
.site-foot a { color: var(--gray); text-decoration: none; }
.site-foot a:hover { color: var(--teal); }
.copyright { flex: 1 1 100%; margin: 4px 0 0; color: #6b6b7d; font-size: 13px; }

/* Share sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 10, 16, 0.82);
  overflow-y: auto;
}
.sheet[hidden] { display: none; }
.sheet-panel {
  width: 100%;
  max-width: 380px;
  margin: auto;
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.sheet-panel h2 { font-size: 18px; font-weight: 500; }
.card-frame {
  position: relative;
  margin: 0 auto 16px;
  max-width: 240px;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
}
.card-frame img { display: block; width: 100%; }
.card-pending {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}
.card-pending[hidden] { display: none; }
.sheet-actions .btn { font-size: 16px; }
.sheet-hint { margin: 12px 0 0; color: var(--gray); font-size: 13px; }

@media (min-width: 700px) {
  .hero { padding-top: 24px; }
  .hero h1 { font-size: 44px; }
  .result-number { font-size: 76px; }
  .btn { display: inline-block; width: auto; min-width: 280px; }
  .btn + .btn { margin-top: 10px; }
  .sheet-actions .btn { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
