/* ============================================================
   Shared chrome for the proof-section variants (July 22, 2026)

   Every variant page is the same New Limits dark-DR shell with a different
   PROOF SECTION dropped into it, so the section is the only thing that differs
   when Waheed compares them. Tokens match the live V1 page exactly.
   ============================================================ */
:root {
  --bg: #0a0a0a; --bg-2: #0d0d0d;
  --card: #141414; --card-2: #171717; --border: #2a2a2a;
  --text: #ffffff; --text-dim: #a6a6a6;
  --orange: #FF6B00; --orange-bright: #FF7A1A; --orange-deep: #FF6600;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5; -webkit-font-smoothing: antialiased;
}
.nl-display { font-family: 'Anton', 'Arial Narrow', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.5px; }
.nl-hand { font-family: 'Caveat', cursive; }
.q { color: var(--orange-deep); }
.nl-page { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- review banner: says which variant this is and what it argues ----
   Not part of the design. It exists so a reviewer never has to guess which
   mockup they are looking at. Strip it when a variant gets chosen. */
.nl-banner { background: linear-gradient(135deg, #1a1a1a, #101010);
  border-bottom: 1px solid var(--border); padding: 14px 24px; }
.nl-banner .in { max-width: 1180px; margin: 0 auto; display: flex; align-items: baseline;
  gap: 14px; flex-wrap: wrap; }
.nl-banner .tag { background: var(--orange); color: #fff; font-weight: 800; font-size: 12px;
  letter-spacing: 1px; padding: 5px 11px; border-radius: 20px; flex: none; }
.nl-banner .name { font-weight: 800; font-size: 15px; color: #fff; }
.nl-banner .idea { font-size: 13.5px; color: var(--text-dim); }
.nl-banner a { color: var(--orange-bright); font-size: 13px; margin-left: auto; text-decoration: none;
  font-weight: 700; white-space: nowrap; }
.nl-banner a:hover { text-decoration: underline; }

/* ---- section heading, identical across variants ---- */
.nl-proof-sec { padding: 62px 0 76px; position: relative; }
.nl-proof-hand { font-family: 'Caveat', cursive; font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  color: var(--orange-bright); text-align: center; transform: rotate(-2deg); margin-bottom: 2px; }
.nl-proof-sec h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 50px); text-align: center; margin: 0 0 10px; color: #fff;
  letter-spacing: 0.5px; text-shadow: 0 2px 0 #1f1f1f, 0 8px 18px rgba(0,0,0,0.6); text-wrap: balance; }
.nl-proof-kicker { text-align: center; color: var(--text-dim); font-size: 15px; margin: 0 auto 40px;
  max-width: 660px; text-wrap: balance; }

/* ---- shared CTA ---- */
.nl-cta-wrap { text-align: center; margin-top: 52px; }
.nl-cta { position: relative; display: inline-block; overflow: hidden;
  background: linear-gradient(135deg, #FF8534, #FF6B00 55%, #e55d00);
  color: #fff; text-decoration: none; border-radius: 10px;
  font: 800 16px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase; letter-spacing: 1px; padding: 15px 52px;
  box-shadow: 0 8px 26px rgba(255,107,0,0.32), 0 0 0 1px rgba(255,160,90,0.4) inset;
  transition: transform .18s ease, box-shadow .18s ease; }
.nl-cta:hover { transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,107,0,0.46), 0 0 0 1px rgba(255,180,120,0.55) inset; }

/* ---- lightbox, shared by every variant that shows a screenshot ---- */
.nl-lb { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center; padding: 32px 20px; }
.nl-lb.open { display: flex; }
/* Screenshots are the evidence, so the lightbox lets them use the space it has
   instead of centring a thumbnail on a black field. */
.nl-lb img { max-width: min(1200px, 94vw); max-height: 88vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,0.8); }
.nl-lb .cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: var(--text-dim); font-size: 13.5px; }
.nl-lb .x { position: absolute; top: 18px; right: 22px; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--border); background: rgba(20,20,20,0.9);
  color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.nl-lb .x:hover { background: #222; }

/* ---- shared stat pill used inside several variants ---- */
.nl-num { font-family: 'Anton', sans-serif; font-weight: 400; color: #fff; letter-spacing: 0.5px; }
.nl-num .arw { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700; font-size: 0.5em; color: var(--text-dim); padding: 0 4px; vertical-align: 0.18em; }

@media (max-width: 640px) {
  .nl-page { padding: 0 18px; }
  .nl-proof-sec { padding: 44px 0 56px; }
  .nl-banner .in { gap: 8px; }
  .nl-banner a { margin-left: 0; }
}
