/* ============================================================
   landing-v2.css — WO-VIS-4 landing rebuild (DRAFT, not yet live)
   Written from scratch on the VISUAL-IDENTITY-RULING §9.1 concrete-light
   tokens (css/global.css). No new colors, no new font-families — every
   value below is a var(--...) reference or an explicit px number from the
   ruling's shape law (§4: radius cap 0/4/8/12, no pills, no gradients, no
   glows). Marketing/landing is LIGHT-ALWAYS (§9.1) — this file does not
   read html.theme-light state; the page forces it in <html class>.
   Superseded by this file: css/landing.css (K6), css/landing-v2-draft.css
   (K7) — both deleted in this commit.
   ============================================================ */

.lv2-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

/* ── Masthead — hairline bar, wordmark + one quiet Sign in link. No nav. ── */
.lv2-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.lv2-wordmark {
  /* Fraunces = wordmark ONLY, hardcoded per-selector (VISUAL-IDENTITY §2's
     existing convention — not a css var; nothing else on this page uses it). */
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
}
.lv2-signin {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-subtle);
  text-decoration: none;
}
.lv2-signin:hover { color: var(--text-primary); }

/* ── Hero ── */
.lv2-hero { text-align: center; margin-bottom: 64px; }
.lv2-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.lv2-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 20px;
  text-wrap: balance;
}
.lv2-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ── The ONE lime element — flat CTA fill, no lip, no glow (K2 replacement) ── */
.lv2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: 8px;
  background: var(--accent-full);
  color: var(--accent-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lv2-cta:hover { background: var(--accent-hover); }
.lv2-cta-micro {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin-top: 12px;
}
/* Subordinate to .lv2-cta — plain link, no fill, no lime. The lime budget
   stays CTA-fill-only (hero + closing repeat); this is the real-account path
   sitting quietly under the free-read primary action. */
.lv2-cta-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 14px;
}
.lv2-cta-secondary:hover { color: var(--text-primary); }

/* ── Today's front page (the live teaser) ──────────────────────────────
   White surface + hairlines only — no color on the card itself. The
   culture tag is ink, not color (§3 "the teaser card is white surface +
   hairlines; the culture tag is ink, not color"). */
.lv2-teaser { margin-bottom: 40px; }
.lv2-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lv2-teaser-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.lv2-teaser-hook {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0;
}
.lv2-teaser-source {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
}

/* Skeleton (pre-fetch) state — reserves the card's shape, no shimmer motion
   (the kill-list bans ambient/looping motion outside the one licensed RISE
   entrance; a static neutral block is the compliant loading affordance). */
.lv2-teaser-card.is-loading .lv2-skel {
  display: block;
  border-radius: 4px;
  background: var(--surface-3);
}
.lv2-teaser-card.is-loading .lv2-skel-tag  { width: 120px; height: 12px; }
.lv2-teaser-card.is-loading .lv2-skel-hook { width: 100%; height: 20px; margin-top: 2px; }
.lv2-teaser-card.is-loading .lv2-skel-hook-2 { width: 82%; height: 20px; }
.lv2-teaser-card.is-loading .lv2-skel-src  { width: 160px; height: 12px; margin-top: 4px; }
.lv2-teaser-card:not(.is-loading) .lv2-skel { display: none; }

.lv2-trust {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  line-height: 1.5;
  margin: 16px 0 0;
}
.lv2-trust a { color: var(--text-subtle); text-decoration: underline; }
.lv2-trust a:hover { color: var(--text-primary); }
.lv2-also {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin: 10px 0 0;
}

/* ── How it adds up — three one-line beats, plain text, no feature grid ── */
.lv2-beats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.lv2-beat {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.lv2-beat strong { color: var(--text-primary); font-weight: 700; }

/* ── The belonging beat (v1's litany, kept verbatim) ── */
.lv2-belonging { margin-bottom: 56px; }
.lv2-belonging-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.lv2-litany {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── What you get — the decided two-tier copy, no table, no pricing.
   Lime-free: the ruling's lime budget is CTA fill only (hero + closing
   repeat) — tier labels stay ink, same as the retired lv2-split rows. ── */
.lv2-value {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 56px;
}
.lv2-value-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin: 0 0 8px;
}
.lv2-value-row { display: flex; flex-direction: column; gap: 4px; }
.lv2-value-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.lv2-value-line {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-muted);
}
.lv2-value-status {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin-top: 4px;
}
/* "Become a member" — quiet neutral bordered button (NOT lime; the ruling's
   lime budget is CTA fill only), clearly secondary to the hero/closing read
   CTA. Intent-capture only until checkout exists (MONETIZATION-MODEL §8). */
.lv2-member-cta {
  align-self: flex-start;
  margin-top: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lv2-member-cta:hover { background: var(--surface-3); }
.lv2-member-form { margin-top: 10px; max-width: 420px; }
.lv2-member-row { display: flex; gap: 8px; }
.lv2-member-email {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
}
.lv2-member-email:focus { outline: 2px solid var(--accent-ink); outline-offset: 1px; }
.lv2-member-submit {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lv2-member-submit:hover { background: var(--surface-3); }
.lv2-member-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.lv2-member-error {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--error);
  margin: 6px 0 0;
  min-height: 0;
}
.lv2-member-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin: 6px 0 0;
}

/* ── Email invite — post-value, skippable. The submit button is
   deliberately NOT lime: the ruling's lime budget is "CTA fill only (hero +
   closing repeat)" — a second/third lime action here would break the
   one-accent law. Neutral bordered button instead. ── */
.lv2-invite {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}
.lv2-invite-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin: 0 0 8px;
}
.lv2-invite-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin: 0 0 20px;
}
.lv2-invite-form { max-width: 420px; margin: 0 auto; }
.lv2-invite-row { display: flex; gap: 8px; }
.lv2-invite-email {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
}
.lv2-invite-email:focus { outline: 2px solid var(--accent-ink); outline-offset: 1px; }
.lv2-invite-submit {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lv2-invite-submit:hover { background: var(--surface-3); }
.lv2-invite-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.lv2-invite-error {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--error);
  margin: 8px 0 0;
  min-height: 0;
}
.lv2-invite-consent {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-subtle);
  margin: 12px 0 0;
}
.lv2-invite-consent a { color: var(--text-subtle); text-decoration: underline; }
.lv2-invite-consent a:hover { color: var(--text-primary); }

/* wl-callout — the success state js/waitlist.js swaps the form for (shared,
   unmodified JS; class names are its contract). Achromatic, matches the
   concrete-light system — the checkmark glyph is already ink-colored
   (#1f1b12) in the existing markup, no lime here either. */
.wl-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  text-align: left;
}
.wl-callout-ico { flex-shrink: 0; margin-top: 2px; }
.wl-callout-txt { display: flex; flex-direction: column; gap: 4px; }
.wl-callout-h {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
}
.wl-callout-p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .lv2-invite-row { flex-direction: column; }
}

/* ── Closing ── */
.lv2-closing { text-align: center; margin-bottom: 48px; }
.lv2-email-door {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin-top: 16px;
}

/* ── Footer — landing-specific link set (note/standards/legal/AI disclosure),
   same hairline convention as the shared .site-footer but this page's own
   masthead/footer are bespoke per the ruling (§3.1/§3.8), not the generic
   site-header/site-footer used by about.html/note.html/standards.html. ── */
.lv2-footer {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.lv2-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}
.lv2-footer-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-subtle);
  text-decoration: none;
}
.lv2-footer-links a:hover { color: var(--text-primary); }
.lv2-footer-ai {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-disabled);
  max-width: 480px;
  margin: 0;
}

/* ── Motion — the ONE licensed RISE entrance (global.css .m-rise), reduced-
   motion is handled globally in global.css's universal kill. No other
   motion on this page: no ambient/looping, no hover-glow, no parallax. ── */

/* Desktop — 900px+ was already additive-only (padding/teaser polish); the
   680px .lv2-page column itself is left untouched here on purpose. Every
   section on this page is prose-length text (.lv2-beat, .lv2-litany,
   .lv2-value-line are normal-body-size paragraphs, not display copy), so
   .lv2-page's max-width already IS this page's reading-measure cap
   (680px ≈ 80ch) — growing it toward 1120px for "desktop frame" would
   directly blow past the 60-66ch rule this task is built around, since
   there's no separate wide-chrome/narrow-prose split in this page's
   markup the way briefing.css's card-vs-page split allows elsewhere.
   Verified in-browser at 1920px: reads as a normal centered-column
   marketing page (NYT/Stripe-blog convention), not a stretched app. */
@media (min-width: 900px) {
  .lv2-page { padding-left: 32px; padding-right: 32px; }
  .lv2-teaser-card { padding: 40px; }
  .lv2-teaser-hook { font-size: var(--text-3xl); }

  /* Full-bleed breakout — matches the .site-header convention used on
     about/note/standards (logo far-left, actions far-right, edge to edge;
     verified in-browser that this reads as a normal desktop nav bar, not
     disconnected). Standard "escape a centered container" trick: the rest
     of the page (hero/beats/value/invite) stays in the 680px prose column
     below this, untouched. */
  .lv2-masthead {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding-left: 64px;
    padding-right: 64px;
    box-sizing: border-box;
  }
}
