/* Blank Earn — Ad↔Page Match Pack lander
   Tokens: paper #f4f0e6 · ink #0b0c0f · match #b8f000 · miss #ff2d1a */

:root {
  --paper: #f4f0e6;
  --ink: #0b0c0f;
  --match: #b8f000;
  --miss: #ff2d1a;
  --rule: #0b0c0f;
  --muted: #56534a;
  --paper-2: #eae5d6;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 ui-sans-serif, -apple-system, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-synthesis-weight: none;
  padding-bottom: 84px; /* sticky CTA */
}

h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.04; font-weight: 800; }
p { margin: 0; }
b, strong { font-weight: 800; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--match);
  padding: 12px 18px; font-weight: 800; z-index: 60;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--miss); outline-offset: 3px; }

/* ---------- bar ---------- */

.bar {
  border-bottom: 3px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 40;
}
.bar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 62px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 20px; height: 20px; background: var(--match);
  border: 3px solid var(--ink); display: inline-block;
}
.brand-name { font-weight: 900; font-size: 20px; letter-spacing: -0.045em; }
.brand-thin { font-weight: 400; color: var(--muted); }

.bar-right { display: flex; align-items: center; gap: 12px; }
.bar-price {
  font-weight: 900; font-size: 17px;
  background: var(--ink); color: var(--paper);
  padding: 5px 11px;
}

.chip {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  border: 2px solid var(--ink); padding: 4px 9px;
}
.chip-quiet { background: transparent; }
@media (max-width: 620px) { .chip-quiet { display: none; } }

/* ---------- hero ---------- */

.hero { border-bottom: 3px solid var(--rule); }
.hero-in {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px;
  padding-top: 56px; padding-bottom: 60px; align-items: start;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 20px;
}
.eyebrow-invert { color: var(--paper); opacity: 0.75; }
.dot { width: 10px; height: 10px; background: var(--match); border: 2px solid var(--ink); }
.eyebrow-invert .dot { border-color: var(--match); }

h1 { font-size: clamp(38px, 6.4vw, 68px); }

.lede { font-size: clamp(19px, 2.2vw, 23px); line-height: 1.4; margin-top: 22px; font-weight: 500; }
.sub { margin-top: 16px; color: var(--muted); max-width: 56ch; }
.sub strong { color: var(--ink); }

.cta-block { margin-top: 30px; }

.btn {
  font: inherit; font-weight: 900; letter-spacing: -0.015em;
  border: 3px solid var(--ink); background: var(--paper); color: var(--ink);
  padding: 15px 26px; cursor: pointer; box-shadow: var(--shadow-sm);
}
.btn-primary { background: var(--match); }
.btn:disabled { cursor: not-allowed; }
.btn:not(:disabled):hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-big { font-size: 21px; padding: 19px 34px; box-shadow: var(--shadow); }

.note { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 46ch; }
.note-invert { color: var(--paper); opacity: 0.8; }
.note .tag { margin-right: 7px; }

.tag {
  display: inline-block; font-size: 11px; font-weight: 900;
  letter-spacing: 0.11em; text-transform: uppercase;
  padding: 3px 8px; border: 2px solid var(--ink);
}
.tag-miss { background: var(--miss); color: var(--paper); }
.tag-match { background: var(--match); color: var(--ink); }

.ticks { list-style: none; margin: 28px 0 0; padding: 0; border-top: 2px solid var(--ink); }
.ticks li {
  padding: 11px 0 11px 30px; border-bottom: 2px solid var(--ink);
  font-size: 15px; position: relative;
}
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  font-weight: 900; color: var(--ink);
  background: var(--match); border: 2px solid var(--ink);
  width: 20px; height: 20px; line-height: 17px; text-align: center; font-size: 12px;
}

/* ---------- compare ---------- */

.compare { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.compare-cap {
  grid-column: 1 / -1; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.11em; color: var(--muted);
}

.panel { border: 3px solid var(--ink); background: var(--paper-2); padding: 14px; box-shadow: var(--shadow-sm); }
.panel-miss { background: color-mix(in srgb, var(--miss) 9%, var(--paper)); }
.panel-match { background: color-mix(in srgb, var(--match) 16%, var(--paper)); }

.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.panel-x { color: var(--miss); font-size: 22px; font-weight: 900; line-height: 1; }
.panel-check { color: var(--ink); font-size: 22px; font-weight: 900; line-height: 1; }

.claim { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.claim b { color: var(--ink); }

.mock { border: 3px solid var(--ink); background: #fff; }
.mock-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 9px; border-bottom: 3px solid var(--ink); background: var(--paper-2);
}
.mock-bar i { width: 8px; height: 8px; border: 2px solid var(--ink); border-radius: 50%; }
.mock-url {
  margin-left: 7px; font-size: 10px; font-weight: 700; color: var(--muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock-body { padding: 14px; min-height: 156px; }
.mock-h1 { font-size: 17px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
.mock-h1-match { box-shadow: inset 0 -8px 0 var(--match); display: inline; }
.mock-line { height: 7px; background: #d9d5c9; margin-top: 12px; }
.mock-line.short { width: 62%; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 13px; }
.mock-grid span { height: 26px; background: #d9d5c9; }
.mock-list { list-style: none; margin: 13px 0 0; padding: 0; }
.mock-list li { height: 7px; background: #d9d5c9; margin-bottom: 7px; }
.mock-list li:nth-child(2) { width: 88%; }
.mock-list li:nth-child(3) { width: 74%; }
.mock-btn {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 900;
  background: var(--match); border: 2px solid var(--ink); padding: 5px 10px;
}

.verdict { margin-top: 12px; font-size: 12px; font-weight: 700; }
.verdict-miss { color: var(--miss); }
.verdict-miss b { color: var(--miss); letter-spacing: 0.06em; }
.verdict-match b { letter-spacing: 0.06em; box-shadow: inset 0 -7px 0 var(--match); }

/* ---------- strip ---------- */

.strip { background: var(--ink); color: var(--paper); border-bottom: 3px solid var(--rule); }
.strip-in {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding-top: 17px; padding-bottom: 17px;
  font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.11em;
}
.strip-in b { color: var(--match); }
.strip-in em {
  font-style: normal; text-transform: none; letter-spacing: 0;
  font-weight: 400; opacity: 0.65; margin-left: auto;
}

/* ---------- reasons ---------- */

.reasons { padding: 72px 0 78px; border-bottom: 3px solid var(--rule); }
.h2 { font-size: clamp(28px, 4vw, 42px); }
.h2-invert { color: var(--paper); }
.section-lede { margin-top: 14px; color: var(--muted); max-width: 62ch; }
.section-lede-invert { color: var(--paper); opacity: 0.7; }

.list { list-style: none; margin: 44px 0 0; padding: 0; border-top: 3px solid var(--ink); }
.item {
  display: grid; grid-template-columns: 96px 1fr; gap: 26px;
  padding: 28px 0; border-bottom: 3px solid var(--ink);
}
.num {
  font-size: 40px; font-weight: 900; letter-spacing: -0.05em; line-height: 1;
  color: var(--miss);
}
.item:nth-child(n+4) .num { color: var(--ink); }
.item-body h3 { font-size: clamp(21px, 2.6vw, 27px); }
.item-body p { margin-top: 12px; color: var(--muted); max-width: 68ch; }

/* ---------- pack ---------- */

.pack { background: var(--ink); color: var(--paper); padding: 76px 0 82px; border-bottom: 3px solid var(--rule); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.card {
  border: 3px solid var(--match); padding: 22px;
  background: #101216;
}
.card-n {
  display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 0.11em;
  background: var(--match); color: var(--ink); padding: 3px 8px; margin-bottom: 14px;
}
.card h3 { font-size: 20px; }
.card p { margin-top: 10px; font-size: 15px; opacity: 0.72; }

/* ---------- not ---------- */

.not { padding: 72px 0 78px; border-bottom: 3px solid var(--rule); }
.not-in { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.not-head .tag { margin-bottom: 16px; }
.not-list { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--ink); }
.not-list li {
  padding: 16px 0 16px 36px; border-bottom: 2px solid var(--ink); position: relative;
}
.not-list li::before {
  content: "✕"; position: absolute; left: 0; top: 16px;
  color: var(--paper); background: var(--miss); border: 2px solid var(--ink);
  width: 22px; height: 22px; line-height: 19px; text-align: center;
  font-size: 12px; font-weight: 900;
}

/* ---------- close ---------- */

.close { background: var(--ink); color: var(--paper); padding: 84px 0 92px; }
.close-in { max-width: 740px; }
.close-h { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.close-sub { margin-top: 18px; opacity: 0.72; max-width: 58ch; }

.price-row { display: flex; align-items: baseline; gap: 14px; margin: 30px 0 24px; flex-wrap: wrap; }
.price {
  font-size: 54px; font-weight: 900; letter-spacing: -0.05em; line-height: 1;
  color: var(--ink); background: var(--match); padding: 6px 14px;
}
.price-meta { font-size: 14px; opacity: 0.7; }

.close .btn-primary { box-shadow: 6px 6px 0 var(--match); border-color: var(--paper); }

/* ---------- foot ---------- */

.foot { background: var(--paper); border-top: 3px solid var(--rule); padding: 30px 0 38px; }
.foot-in { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.foot-brand { font-size: 17px; }
.foot p { font-size: 13px; color: var(--muted); max-width: 70ch; }

/* ---------- sticky CTA ---------- */

.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: var(--paper); border-top: 3px solid var(--ink);
}
.sticky-copy { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-price { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; }
.sticky-meta { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); }
.btn-sticky { padding: 13px 20px; box-shadow: 3px 3px 0 var(--ink); }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; padding-bottom: 48px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .not-in { grid-template-columns: 1fr; gap: 28px; }
  .strip-in em { margin-left: 0; width: 100%; }
}

@media (max-width: 720px) {
  body { padding-bottom: 92px; }
  .sticky { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .item { grid-template-columns: 1fr; gap: 10px; }
  .num { font-size: 30px; }
  .reasons, .not { padding: 52px 0 56px; }
  .pack { padding: 56px 0 60px; }
  .close { padding: 60px 0 66px; }
  .btn { width: 100%; }
  .btn-sticky { width: auto; }
}

@media (max-width: 480px) {
  .compare { grid-template-columns: 1fr; }
  .mock-body { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:not(:disabled):hover { transform: none; }
}
