/* ===== Digital Limbo — Landing pages (static, SEO) ===== */
/* Reuses tokens + nav/btn/footer/plan classes from styles.css */

body.scanlines-on::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0.16) 0, rgba(0,0,0,0.16) 1px, transparent 1px, transparent 3px);
  opacity: 0.5; mix-blend-mode: multiply;
}

/* Static nav (mirrors app nav) */
.lnav { position: sticky; top: 0; z-index: 100; background: color-mix(in oklab, var(--bg) 82%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.lnav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.lnav-logo { display: flex; align-items: center; gap: 11px; }
.lnav-tile { width: 34px; height: 34px; border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 0 var(--accent); }
.lnav-tile img { width: 26px; height: 26px; image-rendering: pixelated; }
.lnav-word { font-family: var(--pixel); font-size: 11px; color: var(--fg); }
.lnav-links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-2); }
.lnav-links a { transition: color .2s; }
.lnav-links a:hover, .lnav-links a.current { color: var(--accent); }
.lnav-cta { padding: 8px 16px; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent); font-size: 13px; transition: all .2s; }
.lnav-cta:hover { background: var(--accent); color: #0a0d14; }
@media (max-width: 820px) { .lnav-links { display: none; } }

/* Language switch */
.lang-switch { display: flex; gap: 2px; align-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; }
.lang-switch a { padding: 5px 8px; border-radius: 6px; color: var(--fg-3); letter-spacing: .04em; cursor: pointer; }
.lang-switch a:hover { color: var(--fg); }
.lang-switch a.current { color: var(--accent); background: var(--accent-soft); }

/* Breadcrumb */
.crumb { max-width: var(--maxw); margin: 0 auto; padding: 20px 32px 0; font-family: var(--mono); font-size: 12px; color: var(--fg-3); letter-spacing: .02em; }
.crumb a { color: var(--fg-2); }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--fg-3); margin: 0 8px; }

/* Page hero */
.lhero { max-width: var(--maxw); margin: 0 auto; padding: 56px 32px 64px; }
.lhero .eyebrow { margin-bottom: 22px; }
.lhero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6.5vw, 84px); line-height: 1.0; letter-spacing: -0.02em; margin: 0; max-width: 16ch; }
.lhero h1 .ital { font-style: italic; color: var(--accent); }
.lhero .lead { margin-top: 28px; font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 58ch; }
.lhero .lctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

/* Generic section wrapper */
.lsec { max-width: var(--maxw); margin: 0 auto; padding: 72px 32px; border-top: 1px solid var(--line); }
.lsec-head { display: grid; grid-template-columns: 220px 1fr; gap: 56px; margin-bottom: 44px; align-items: end; }
.lsec-head .side { font-family: var(--pixel); font-size: 10px; color: var(--fg-3); padding-bottom: 6px; }
.lsec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.04; letter-spacing: -0.02em; margin: 0; max-width: 20ch; }
.lsec-head h2 .ital { font-style: italic; color: var(--accent); }
@media (max-width: 820px) { .lsec-head { grid-template-columns: 1fr; gap: 14px; } }

/* Prose */
.prose { max-width: 68ch; }
.prose p { font-size: 16.5px; line-height: 1.65; color: var(--fg-2); margin: 0 0 18px; }
.prose p strong { color: var(--fg); font-weight: 600; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; letter-spacing: -0.01em; margin: 34px 0 12px; color: var(--fg); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* Feature list */
.lfeatures { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.lfeatures li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--fg); }
.lfeatures li::before { content: "→"; color: var(--accent); flex-shrink: 0; }
@media (max-width: 700px) { .lfeatures { grid-template-columns: 1fr; } }

/* What-is-ad-monetization page */
.wim-toc { counter-reset: wim; }
.wim-toc li { counter-increment: wim; }
.wim-toc li::before { content: counter(wim, decimal-leading-zero); font-family: var(--pixel); font-size: 11px; color: var(--accent); }
.wim-toc a { color: var(--fg); text-decoration: none; }
.wim-toc a:hover { color: var(--accent); }
.wim-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-top: 24px; }
.wim-card { background: var(--bg); padding: 28px; }
.wim-tag { font-family: var(--pixel); font-size: 9px; letter-spacing: 0.06em; color: var(--accent); }
.wim-card h4 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 12px 0 10px; letter-spacing: -0.01em; }
.wim-card p { font-size: 14.5px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.wim-card p strong { color: var(--fg); font-weight: 600; }
@media (max-width: 700px) { .wim-cards { grid-template-columns: 1fr; } }

/* Step cards */
.lsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.lstep { background: var(--bg); padding: 28px; }
.lstep .n { font-family: var(--pixel); font-size: 12px; color: var(--accent); }
.lstep h4 { font-family: var(--serif); font-weight: 400; font-size: 23px; margin: 14px 0 8px; letter-spacing: -0.01em; }
.lstep p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.55; }
@media (max-width: 820px) { .lsteps { grid-template-columns: 1fr; } }
a.lstep { text-decoration: none; color: inherit; transition: background .2s; position: relative; }
a.lstep:hover { background: var(--bg-2); }
a.lstep h4 { color: var(--fg); }
a.lstep:hover h4 { color: var(--accent); }
a.lstep .go { position: absolute; top: 24px; right: 24px; color: var(--fg-3); font-family: var(--mono); transition: transform .2s, color .2s; }
a.lstep:hover .go { color: var(--accent); transform: translateX(3px); }

/* FAQ */
.faq { max-width: 80ch; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: var(--fg); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 20px; font-family: var(--mono); font-size: 22px; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 40px 22px 0; }
.faq .ans p { margin: 0 0 12px; color: var(--fg-2); font-size: 15.5px; line-height: 1.6; }
.faq .ans a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Related pages */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.related a { background: var(--bg); padding: 26px; display: flex; flex-direction: column; gap: 10px; transition: background .2s; min-height: 150px; }
.related a:hover { background: var(--bg-2); }
.related .k { font-family: var(--pixel); font-size: 9px; color: var(--accent); }
.related .t { font-family: var(--serif); font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.related .d { font-size: 13.5px; color: var(--fg-2); margin-top: auto; }
@media (max-width: 820px) { .related { grid-template-columns: 1fr; } }

/* CTA band */
.lcta { max-width: var(--maxw); margin: 0 auto; padding: 90px 32px; border-top: 1px solid var(--line); text-align: center; }
.lcta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 76px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 20px; }
.lcta h2 .ital { font-style: italic; color: var(--accent); }
.lcta p { max-width: 52ch; margin: 0 auto 30px; color: var(--fg-2); font-size: 16px; }

/* Footer (static) */
.lfoot { border-top: 1px solid var(--line); padding: 48px 32px; max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--fg-3); }
.lfoot a { color: var(--fg-2); }
.lfoot a:hover { color: var(--accent); }
.lfoot-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Trust row */
.trust { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.trust .stat .n { font-family: var(--serif); font-size: 34px; line-height: 1; }
.trust .stat .l { font-family: var(--pixel); font-size: 8.5px; color: var(--fg-3); margin-top: 8px; letter-spacing: .02em; }

/* Proof band */
.proof { background: var(--bg-2); }
.proof-lead { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.proof-lead .side { font-family: var(--pixel); font-size: 10px; color: var(--accent); padding-top: 8px; }
.proof-lead p { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.28; letter-spacing: -0.01em; margin: 0; max-width: 24ch; color: var(--fg); }
.proof-lead p strong { color: var(--accent); font-weight: 400; font-style: italic; }
@media (max-width: 820px) { .proof-lead { grid-template-columns: 1fr; gap: 16px; } }

/* Testimonials */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.tcard { background: var(--bg); padding: 30px; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.tcard.wide { grid-column: 1 / -1; }
.tcard p { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.4; letter-spacing: -0.01em; color: var(--fg); }
.tcard p .hi { color: var(--accent); font-style: italic; }
.tcard footer { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.tcard .tname { font-weight: 600; font-size: 14px; color: var(--fg); }
.tcard .trole { font-size: 12.5px; color: var(--fg-3); }
.tcard::before { content: "\201C"; font-family: var(--serif); font-size: 52px; line-height: 0.4; color: var(--accent); height: 22px; }
@media (max-width: 820px) { .tgrid { grid-template-columns: 1fr; } .tcard.wide { grid-column: auto; } }

