/*
 * suubbs — the buy page.
 *
 * Only what the landing stylesheet has no rule for. Everything else on this
 * page — .section, .section-head, .kicker, .lede, .feature-grid, .buy-grid,
 * .steps, .cta-band, .footer — is reused from landing.css unchanged, so a
 * change to the site's look carries here without being re-made.
 *
 * Nothing in this file overrides a landing.css rule.
 */

/* ================= the offer, above the fold ================= */

.buy-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(96px, 14vh, 150px) clamp(20px, 4vw, 48px) clamp(40px, 6vh, 72px);
}

@media (max-width: 900px) {
  .buy-hero { grid-template-columns: 1fr; }
}

.buy-hero h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  /*
   * Roomier than the home page's headline on purpose. `.cap-lime` is a
   * highlighter: it paints a padded box behind the words, and at a display size
   * that box is taller than a 1.03 line box — so on two lines the marks collide
   * with the line above. The leading has to clear the mark, not just the text:
   * the painted box measures about 1.33em here (the inline content area plus
   * the mark's own padding), so anything under that overlaps by a pixel or two.
   */
  line-height: 1.36;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* And the mark itself sits tighter here than it does in body copy. */
.buy-hero h1 .cap-lime {
  padding: 0.04em 0.24em 0.08em;
  border-radius: 0.14em;
}

.buy-hero .lede { margin-top: 18px; max-width: 46ch; }

.buy-hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.buy-hero-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* A tick drawn in ink, rather than a bullet character that shifts with the font. */
.buy-hero-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

/* ---- the box you actually buy from ---- */

.buy-box {
  position: sticky;
  top: 92px;
  padding: 26px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  background: var(--paper);
  box-shadow: var(--shadow-lift);
}

@media (max-width: 900px) {
  .buy-box { position: static; }
}

.buy-box-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.buy-box .buy-price { margin: 10px 0 2px; }
.buy-box .buy-once { margin: 0 0 20px; }
.buy-box .btn-buy { width: 100%; }

.buy-facts {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
  font-size: 13px;
}

.buy-facts > div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: baseline;
}

.buy-facts dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.buy-facts dd { margin: 0; color: var(--ink-2); line-height: 1.45; }
.buy-facts code {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--card);
  color: var(--ink);
}

/* ================= where your video goes ================= */

.local-section { background: var(--paper-2); }

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(36px, 5vh, 56px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
}

@media (max-width: 760px) {
  .local-grid { grid-template-columns: 1fr; }
}

.local-card {
  background: var(--paper);
  padding: clamp(24px, 3vw, 34px);
}

.local-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.local-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

.local-list li { position: relative; padding-left: 28px; }

/* Lime tick for what you keep: the disc is ::before, the tick ::after, so the
   tick paints on top without a negative z-index fighting the card background. */
.local-yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--pill);
  background: var(--lime);
}

.local-yes li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

/* A hollow ring for the short list of what leaves. */
.local-no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line-strong);
  border-radius: var(--pill);
}

.local-foot {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

.local-note {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--paper);
}

.local-note h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.local-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 74ch;
}

.local-proof {
  margin: 22px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 74ch;
}

.local-proof a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================= before you buy ================= */

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(36px, 5vh, 56px);
}

@media (max-width: 760px) {
  .faq { grid-template-columns: 1fr; }
}

.faq-item h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.faq-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.faq-item code {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 1px 6px;
  border-radius: 5px;
  background: var(--card);
  color: var(--ink);
}

.faq-item a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================= close ================= */

.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
