:root{
  --ink:#111111;
  --muted:#676767;
  --line:#e7e7e7;
  --panel:#f6f6f6;
  --accent:#d82820;
  --max:720px;
  --radius:14px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.48;
}
a{color:inherit}
.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar-inner{
  max-width:var(--max);
  margin:auto;
  padding:14px 18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.sponsored{color:var(--accent)}
main{
  max-width:var(--max);
  margin:auto;
  padding:20px 18px 90px;
}
h1{
  font-size:clamp(36px,8vw,56px);
  line-height:.98;
  letter-spacing:-.045em;
  margin:8px 0 14px;
}
.dek{
  font-size:20px;
  line-height:1.3;
  color:#4c4c4c;
  margin:0 0 8px;
}
.date{
  font-size:13px;
  color:#777;
  margin-bottom:16px;
}
.hero, .media{
  width:100%;
  display:block;
  border-radius:var(--radius);
  background:#ececec;
  object-fit:cover;
}
.hero{aspect-ratio:16/9}
.caption{
  font-size:14px;
  color:#777;
  text-align:center;
  margin:7px 0 20px;
  font-style:italic;
}
p{font-size:18px;margin:0 0 16px}
h2{
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.025em;
  margin:34px 0 12px;
}
h3{
  font-size:23px;
  line-height:1.15;
  margin:24px 0 8px;
}
.callout{
  background:var(--panel);
  border-radius:var(--radius);
  padding:18px;
  margin:22px 0;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:center;
  margin:22px 0;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:18px 0;
}
.step{
  text-align:center;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  padding-bottom:12px;
}
.step img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#eee;
}
.num{
  display:inline-flex;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--accent);
  color:white;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-top:12px;
}
.step strong{
  display:block;
  margin:7px 7px 3px;
  font-size:16px;
}
.step small{
  display:block;
  color:#666;
  padding:0 7px;
  line-height:1.25;
}
.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin:18px 0 28px;
}
.feature{
  text-align:center;
  font-size:16px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.feature .icon{width:60px;height:60px;display:block;margin:0 auto 8px}
.offer{
  border:1px solid var(--line);
  background:#fafafa;
  border-radius:var(--radius);
  padding:18px;
  display:grid;
  grid-template-columns:210px 1fr;
  gap:18px;
  align-items:center;
  margin:24px 0;
}
.offer > div{min-width:0}
.offer img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  background:white;
  border-radius:10px;
}
.offer strong{font-size:19px}
.price{
  color:var(--accent);
  font-size:26px;
  font-weight:900;
  margin:3px 0 8px;
}
.checks{
  margin:0 0 14px;
  padding:0;
  list-style:none;
  font-size:16px;
}
.checks li{margin:4px 0}
.check-icon{color:#1a8a3f;font-weight:900}
.cta{
  display:block;
  text-decoration:none;
  background:var(--accent);
  color:#fff;
  text-align:center;
  border-radius:8px;
  padding:15px 18px;
  font-weight:900;
  letter-spacing:.01em;
}
.trust-row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px 10px;
  margin-top:12px;
  font-size:11px;
  color:#666;
  text-transform:uppercase;
  letter-spacing:.01em;
  min-width:0;
}
/* Only forced onto one line where there's actually room for it
   (tablet/desktop offer column). On real phone widths the text
   physically doesn't fit at a legible size, so it wraps instead. */
@media (min-width:600px){
  .trust-row{flex-wrap:nowrap;white-space:nowrap}
}
.trust-row span{
  display:inline-flex;
  align-items:center;
  gap:.3em;
}
.trust-row svg{
  width:1.2em;
  height:1.2em;
  flex-shrink:0;
}
.trust-row .sep{color:var(--line)}
.fine{
  font-size:16px;
  color:#2b2a2a;
}
footer{
  border-top:1px solid var(--line);
  padding:24px 0 0;
  text-align:center;
  font-size:12px;
  color:#666;
}
footer a{margin:0 7px}
.sticky{
  position:fixed;
  left:0;right:0;bottom:0;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.96);
  border-top:1px solid var(--line);
  z-index:20;
  backdrop-filter:blur(10px);
}
.sticky .cta{max-width:680px;margin:auto}
@media (max-width:600px){
  main{padding-left:16px;padding-right:16px}
  .dek{font-size:18px}
  p{font-size:17px}
  h2{font-size:27px}
  .split{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .step{
    display:grid;
    grid-template-columns:120px 38px 1fr;
    text-align:left;
    align-items:center;
    padding:0;
  }
  .step img{height:120px}
  .step .num{margin:0 5px}
  .step .copy{padding:10px 8px}
  .step strong,.step small{padding:0;margin:0 0 4px}
  .features{grid-template-columns:1fr 1fr}
  .offer{grid-template-columns:1fr;gap:14px;padding:14px}
  .offer img{max-width:220px;margin:0 auto}
}
