:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f2f2f0;
  --muted: #a5a5a5;
  --line: #242424;
  --max: 860px;
}
* { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
header.shell { width: calc(100% - 40px); }
header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.05rem;
  text-decoration: none;
}
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a, footer a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a:focus-visible, footer a:hover, footer a:focus-visible { color: var(--text); }
.hero { padding: 92px 0 68px; border-bottom: 1px solid var(--line); }
.app-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 750;
}
h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .97;
  letter-spacing: -.055em;
}
.page h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
.lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: #dedede;
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 750;
  text-decoration: none;
}
.button.secondary { background: transparent; color: #fff; }
.button.big {
  width: min(100%, 520px);
  min-height: 68px;
  font-size: 1.28rem;
  letter-spacing: -.01em;
}
.button:hover, .button:focus-visible { opacity: .8; }
section.content { padding: 64px 0; border-bottom: 1px solid var(--line); }
h2 {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h3 { margin: 34px 0 10px; font-size: 1.22rem; }
p, li { color: #d0d0d0; }
ul { padding-left: 1.25rem; }
.copy { max-width: 730px; }
.copy p:first-child { margin-top: 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 30px;
}
.card { background: #000; min-height: 180px; padding: 26px; }
.card small { color: var(--muted); }
.card h3 { margin-top: 42px; }
.card p { color: var(--muted); margin-bottom: 0; }
.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 21px 0; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--muted); }
details[open] summary::after { content: "–"; }
details p { max-width: 720px; margin: -4px 0 24px; color: var(--muted); }
.notice {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  color: #d8d8d8;
}
.meta { color: var(--muted); font-size: .92rem; }
footer {
  padding: 34px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.tiktok-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tiktok-overlay-card {
  max-width: 300px;
  text-align: left;
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
}
.tiktok-overlay-dismiss { display: block; text-align: center; margin-top: 18px; }
.tiktok-overlay-alt { opacity: .6; font-size: 14px; }
.tiktok-overlay-dismiss {
  opacity: .4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
@media (max-width: 650px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  header { min-height: 64px; }
  header.shell { width: calc(100% - 28px); }
  nav { gap: 12px; font-size: .88rem; }
  .hero { padding: 68px 0 52px; }
  .button.big { min-height: 60px; font-size: 1.12rem; }
  section.content { padding: 52px 0; }
  .grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

/* ---- Lerf Tag page ---- */
.tag-hero { padding: 34px 0 46px; text-align: center; border-bottom: 1px solid var(--line); }
.tag-h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: none;
  margin: 4px 0 14px;
}
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 10px 0 4px; }
.price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; }
.price-note { color: var(--muted); font-size: .95rem; }
.buy-options { display: flex; flex-direction: column; gap: 14px; max-width: 420px; margin: 26px auto 0; }
.button.buy { width: 100%; }
.ship-note { color: var(--muted); font-size: .85rem; margin-top: 18px; }
.tag-media { display: block; width: 100%; max-width: 720px; margin: 0 auto; border: 1px solid var(--line); border-radius: 14px; }
.steps { display: grid; gap: 26px; max-width: 620px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num { font-weight: 800; color: var(--muted); min-width: 26px; }
.step p { margin: 0; }

/* ---- banner film ---- */
.banner { position: relative; width: 100%; background: #000; }
.banner video { display: block; width: 100%; height: auto; max-height: 78vh; object-fit: contain; pointer-events: none; background: #000; }
.banner-fade { position: absolute; inset: 0; box-shadow: inset 0 0 110px 80px #000; pointer-events: none; }

/* ---- results / quotes / closing ---- */
.results .card { min-height: 0; }
.results .card h3 { margin-top: 0; }
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 34px; margin-top: 6px; text-align: left; }
.quote { margin: 0; border-top: 1px solid var(--line); padding-top: 22px; }
.quote blockquote { margin: 0; }
.quote p { margin: 0; font-size: 1.06rem; line-height: 1.55; color: #e6e6e6; }
.cta-final { text-align: center; }
.cta-final .ship-note { margin-top: 20px; }
@media (max-width: 650px) {
  .quotes { grid-template-columns: 1fr; gap: 0; }
  .quote { padding: 20px 0; }
}

/* compare discovery links (homepage) */
.compare-links { padding: 4px 0 30px; }
.compare-links .compare-row { margin: 8px 0 0; display: flex; gap: 10px 12px; flex-wrap: wrap; }
.compare-links .compare-row a { color: var(--muted); font-size: .92rem; text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; }
.compare-links .compare-row a:hover { color: var(--text); border-color: #3a3a3a; }
