/* ==============================================================
   Celetu — Editorial Landing (v2)
   Design system: Stripe / Linear inspired, flat editorial
   Fonts: Instrument Serif · Figtree · JetBrains Mono
   ============================================================== */

:root {
  --bg: #ffffff;
  --ink: #0F0F0E;
  --ink-2: #1a1a18;
  --muted: #7A7872;
  --muted-2: #A5A39E;
  --accent: #E04E1B;
  --accent-dim: #C3431A;
  --rule: #E5E3DF;
  --soft: #F7F5F1;
  --soft-2: #EFEDE7;

  --font-display: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-serif: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --max: 1180px;
  --gutter-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 128px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.l2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
}

.l2 a { color: inherit; text-decoration: none; }
.l2 img { max-width: 100%; display: block; }
.l2 p { margin: 0 0 1em; }
.l2 ul, .l2 ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.l2 .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.l2 section {
  padding: var(--section-y) 0;
  border-top: 1px dashed var(--rule);
}
.l2 section:first-of-type { border-top: 0; }

.l2 .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
  margin: 0 0 28px;
  display: inline-block;
}
.l2 .eyebrow b { color: var(--accent); font-weight: 500; }

/* ---------- Typography ---------- */
.l2 h1, .l2 h2, .l2 h3 {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.l2 h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
}
.l2 h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.l2 h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.l2 .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.5;
}
.l2 .muted { color: var(--muted); }
.l2 .accent { color: var(--accent); }
.l2 .mono { font-family: var(--font-mono); }
.l2 .stat { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.l2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.l2 .btn:hover { transform: translateY(-1px); }
.l2 .btn-primary {
  background: var(--accent);
  color: #fff;
}
.l2 .btn-primary:hover { background: var(--accent-dim); }
.l2 .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.l2 .btn-ghost:hover { background: var(--ink); color: #fff; }
.l2 .btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }

/* ---------- Navbar ---------- */
.l2 .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.l2 .nav.scrolled { border-bottom-color: var(--rule); }
.l2 .nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.l2 .nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--ink);
}
.l2 .nav .brand img { height: 28px; width: auto; }
.l2 .nav .links {
  display: none;
  align-items: center;
  gap: 28px;
}
.l2 .nav .links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.l2 .nav .links a:hover { color: var(--ink); }
.l2 .nav .ctas { display: inline-flex; align-items: center; gap: 10px; }
.l2 .nav .menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.l2 .nav-drop {
  position: relative;
}
.l2 .nav-drop > button {
  background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--muted); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.l2 .nav-drop > button:hover { color: var(--ink); }
.l2 .nav-drop .panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  min-width: 200px; padding: 8px;
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.18);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.l2 .nav-drop:hover .panel,
.l2 .nav-drop:focus-within .panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.l2 .nav-drop .panel a {
  display: block; padding: 8px 12px; border-radius: 4px;
  font-size: 14px; color: var(--ink-2);
}
.l2 .nav-drop .panel a:hover { background: var(--soft); }

.l2 .nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter-x) 16px;
  border-top: 1px solid var(--rule);
  background: #fff;
}
.l2 .nav-mobile.open { display: flex; }
.l2 .nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-2);
}
.l2 .nav-mobile a:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .l2 .nav .links { display: inline-flex; }
  .l2 .nav .menu-btn { display: none; }
}

/* ---------- Footer ---------- */
.l2 footer {
  border-top: 1px dashed var(--rule);
  padding: 56px 0 80px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.l2 footer .foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
}
.l2 footer a { color: var(--ink-2); }
.l2 footer a:hover { color: var(--accent); }
.l2 footer .foot-links { display: inline-flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Section placeholder (interim phases) ---------- */
.l2 .placeholder {
  border: 1px dashed var(--rule);
  border-radius: 8px;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--soft);
}

/* ==================== Hero ==================== */
.l2 .hero { padding-top: clamp(56px, 7vw, 96px); }
.l2 .hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.l2 .hero h1 .accent { color: var(--accent); }
.l2 .hero .lede { margin-top: 26px; max-width: 48ch; }
.l2 .hero .cta-row { margin-top: 32px; display: inline-flex; flex-wrap: wrap; gap: 12px; }
.l2 .hero .micro {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0;
}
.l2 .hero .micro b { color: var(--ink); font-weight: 600; }

/* Trust row — avatars + micro copy */
.l2 .trust-row {
  margin-top: 22px;
  display: flex; align-items: center; gap: 12px;
}
.l2 .trust-avatars {
  display: inline-flex;
}
.l2 .trust-avatars .ta {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
  flex: none;
}
.l2 .trust-avatars .ta:first-child { margin-left: 0; }
.l2 .trust-row .micro { margin: 0; }

/* Hero visibility readout (replaces dashboard image) */
.l2 .hero-viz {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: #fff;
  padding: 22px 22px 18px;
  box-shadow: 0 30px 60px -40px rgba(15,15,14,.25);
  position: relative;
}
.l2 .hero-viz-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.l2 .hv-eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.l2 .hv-delta {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  font-weight: 500;
}
.l2 .hero-viz-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
}
.l2 .hero-viz .ring {
  width: 150px; height: 150px;
}
.l2 .hero-viz .ring::before { inset: 12px; }
.l2 .hero-viz .ring .num { font-size: 44px; }
.l2 .hero-viz .ring-meta { font-size: 11px; }
.l2 .hero-viz .bars { gap: 12px; }
.l2 .hero-viz .bar-row { grid-template-columns: 92px 1fr 42px; gap: 10px; }
.l2 .hero-viz .bar-name { font-size: 11.5px; }
.l2 .hero-viz .bar-val { font-size: 11.5px; }
.l2 .hero-viz-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding-top: 12px;
  border-top: 1px dashed var(--rule);
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.l2 .hero-viz-foot .dotline {
  flex: 1; height: 4px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--rule) 0 6px, transparent 6px 10px);
}
@media (max-width: 640px) {
  .l2 .hero-viz-body { grid-template-columns: 1fr; gap: 22px; }
  .l2 .hero-viz .ring { margin: 0 auto; }
}

/* ==================== // 02 DEFINITION ==================== */
.l2 .def .grid-2 { align-items: start; gap: clamp(40px, 6vw, 80px); }
.l2 .def h2 { max-width: 18ch; }
.l2 .def .body {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 8px;
}
.l2 .def-stats {
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.l2 .def-stats .cell {
  padding: 20px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.l2 .def-stats .cell:nth-child(2n) { border-right: 0; }
.l2 .def-stats .cell:nth-last-child(-n+2) { border-bottom: 0; }
.l2 .def-stats .k {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}
.l2 .def-stats .v {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.l2 .def-stats .v small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}
.l2 .def .source {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}

/* ==================== // 03 VISIBILITY DEMO ==================== */
.l2 .viz .hook {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 36ch;
  line-height: 1.3;
}
.l2 .viz-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 720px) {
  .l2 .viz-card { grid-template-columns: 220px 1fr; padding: 36px; gap: 48px; }
}

.l2 .ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.l2 .ring {
  --val: 72;
  position: relative;
  width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--val) * 1%), var(--soft-2) 0);
  display: grid; place-items: center;
}
.l2 .ring::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%; background: #fff;
}
.l2 .ring .num {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
}
.l2 .ring-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.l2 .ring-meta b { color: var(--accent); font-weight: 500; }

.l2 .bars { display: flex; flex-direction: column; gap: 16px; }
.l2 .bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 56px;
  align-items: center;
  gap: 14px;
}
.l2 .bar-name {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.l2 .bar-name .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.l2 .bar-track {
  height: 8px; background: var(--soft-2); border-radius: 4px; overflow: hidden;
}
.l2 .bar-fill {
  height: 100%; background: var(--accent); border-radius: 4px;
}
.l2 .bar-val {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  text-align: right;
}
.l2 .bar-val.muted-val { color: var(--muted); }

/* ==================== // 04 PROMPTS ==================== */
.l2 .prompts .hook {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 40ch;
  line-height: 1.3;
}
.l2 .q-table {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.l2 .q-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid var(--rule);
}
.l2 .q-row:first-child { border-top: 0; }
.l2 .q-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.l2 .q-text .lbl {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
}
.l2 .q-meter {
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: end; min-width: 100px;
}
.l2 .q-meter .track {
  width: 110px; height: 6px; background: var(--soft-2); border-radius: 3px; overflow: hidden;
}
.l2 .q-meter .fill { height: 100%; background: var(--accent); border-radius: 3px; }
.l2 .q-meter.low .fill { background: var(--muted-2); }
.l2 .q-meter .pct {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-2);
}
.l2 .q-meter.low .pct { color: var(--muted); }
@media (max-width: 640px) {
  .l2 .q-row { grid-template-columns: 1fr; gap: 8px; }
  .l2 .q-meter { justify-self: start; }
}

/* ==================== Shared section hook ==================== */
.l2 .hook {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 40ch;
  line-height: 1.3;
}

/* ==================== // 05 COMPETITOR ==================== */
.l2 .comp-list {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.l2 .comp-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 20px;
  padding: 22px 24px;
  align-items: center;
  border-top: 1px solid var(--rule);
}
.l2 .comp-row:first-child { border-top: 0; }
.l2 .comp-name {
  display: flex; flex-direction: column; gap: 6px;
}
.l2 .comp-name .n {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; font-size: 20px; color: var(--ink);
}
.l2 .comp-name .trend {
  font-family: var(--font-mono); font-size: 11.5px; display: inline-flex; align-items: center; gap: 4px;
}
.l2 .trend.up { color: var(--accent); }
.l2 .trend.down { color: var(--muted); }
.l2 .trend.flat { color: var(--muted-2); }
.l2 .comp-cite {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.l2 .comp-cite .k { color: var(--muted-2); }
.l2 .comp-cite a {
  color: var(--ink-2); border-bottom: 1px dashed var(--rule); padding-bottom: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.l2 .comp-cite a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.l2 .pill-row { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.l2 .pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11px;
  padding: 4px 8px; border-radius: 999px;
  border: 1px solid var(--rule); background: #fff; color: var(--ink-2);
}
.l2 .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.l2 .pill.off { color: var(--muted); }
.l2 .pill.off .dot { background: var(--muted-2); }
@media (max-width: 800px) {
  .l2 .comp-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ==================== // 06 GROWTH ==================== */
.l2 .growth-bullets {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.l2 .growth-bullets .b {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);
  padding: 6px 10px; border: 1px solid var(--rule); border-radius: 6px; background: #fff;
}
.l2 .draft-stack {
  display: flex; flex-direction: column; gap: 14px;
}
.l2 .draft {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.l2 .draft .meta {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.l2 .draft .meta .tag {
  padding: 2px 8px; border-radius: 999px; background: var(--soft); color: var(--ink-2);
}
.l2 .draft .body {
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.l2 .draft .body em { font-style: normal; font-weight: 600; color: var(--ink); }
.l2 .draft .actions {
  display: inline-flex; gap: 8px;
}
@media (max-width: 640px) {
  .l2 .draft { grid-template-columns: 1fr; }
  .l2 .draft .actions { justify-content: flex-start; }
}

/* ==================== // 07 LEADS ==================== */
.l2 .lead-list {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.l2 .lead-row {
  display: grid;
  grid-template-columns: 130px 1fr 90px 70px;
  gap: 22px;
  padding: 18px 22px;
  align-items: center;
  border-top: 1px solid var(--rule);
}
.l2 .lead-row:first-child { border-top: 0; }
.l2 .lead-src {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);
  min-width: 0;
}
.l2 .lead-src .src-dot {
  width: 10px; height: 10px; border-radius: 2px;
}
.l2 .lead-src .src-logo {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 5px;
  object-fit: contain;
}
.l2 .lead-src .src-logo-x {
  background: transparent;
  padding: 0;
}
.l2 .lead-src .src-sub {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.l2 .lead-text {
  font-size: 14.5px; color: var(--ink); line-height: 1.45;
}
.l2 .lead-text .where {
  display: block; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); margin-top: 4px;
}
.l2 .intent {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--rule); justify-self: center;
  text-transform: lowercase;
  min-width: 64px;
}
.l2 .intent.hot { color: var(--accent); border-color: rgba(224,78,27,0.35); background: rgba(224,78,27,0.06); }
.l2 .intent.warm { color: var(--ink-2); border-color: var(--rule); background: var(--soft); }
.l2 .lead-score {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 24px; color: var(--ink);
  justify-self: end;
}
.l2 .lead-score small { font-family: var(--font-mono); font-style: normal; font-size: 11px; color: var(--muted); }
@media (max-width: 800px) {
  .l2 .lead-row { grid-template-columns: 1fr auto; }
  .l2 .lead-src { grid-column: 1 / -1; }
  .l2 .lead-text { grid-column: 1 / -1; }
  .l2 .intent { grid-column: 1; justify-self: start; }
  .l2 .lead-score { grid-column: 2; }
}

/* ==================== // 08 COMPARISON ==================== */
.l2 .cmp-wrap {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.l2 table.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
  color: var(--ink);
}
.l2 table.cmp th,
.l2 table.cmp td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.l2 table.cmp thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  background: var(--soft);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.l2 table.cmp thead th.us {
  color: var(--accent);
}
.l2 table.cmp tbody th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  width: 36%;
  background: #fff;
  position: sticky;
  left: 0;
  z-index: 1;
}
.l2 table.cmp td.us { background: rgba(224,78,27,0.04); }
.l2 table.cmp td .yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-mono); font-size: 12px;
}
.l2 table.cmp td .no { color: var(--muted-2); font-family: var(--font-mono); }
.l2 table.cmp td .partial {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink-2); padding: 2px 8px;
  border: 1px solid var(--rule); border-radius: 999px; background: var(--soft);
}
.l2 table.cmp tr:last-child th,
.l2 table.cmp tr:last-child td { border-bottom: 0; }
.l2 .cmp-note {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
}

/* ==================== // 09 PRICING ==================== */
.l2 .price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .l2 .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.l2 .tier {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: #fff;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.l2 .tier.featured {
  border-color: var(--ink);
  box-shadow: 0 18px 40px -28px rgba(15,15,14,.5);
}
.l2 .tier .badge {
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-mono); font-size: 11px;
  background: var(--accent); color: #fff;
  padding: 4px 8px; border-radius: 4px;
}
.l2 .tier .name {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.l2 .tier .price {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; font-size: 48px;
  line-height: 1; color: var(--ink);
}
.l2 .tier .price small {
  font-family: var(--font-mono); font-style: normal; font-size: 13px; color: var(--muted);
  margin-left: 6px;
}
.l2 .tier .blurb { font-size: 14px; color: var(--ink-2); margin: 0; }
.l2 .tier ul {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px dashed var(--rule); padding-top: 18px;
}
.l2 .tier ul li {
  font-size: 14px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 10px;
}
.l2 .tier ul li::before {
  content: "+"; color: var(--accent); font-family: var(--font-mono); flex: none; line-height: 1.4;
}
.l2 .tier ul li.base::before { content: "·"; color: var(--muted); }
.l2 .tier .cta { margin-top: auto; }
.l2 .tier .cta .btn { width: 100%; }

/* LLM logo pills in pricing */
.l2 .tier ul li.li-inline {
  align-items: center; flex-wrap: nowrap;
}
.l2 .llm-pills {
  display: inline-flex; align-items: center;
  margin-left: 6px; flex-shrink: 0;
}
.l2 .llm-pill {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px;
  flex: none;
  margin-left: -6px;
}
.l2 .llm-pill:first-child { margin-left: 0; }
.l2 .llm-pill img {
  width: 100%; height: 100%; object-fit: contain;
}

/* ==================== // 10 FAQ ==================== */
.l2 .faq-list {
  border-top: 1px solid var(--rule);
}
.l2 .faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.l2 .faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--ink);
}
.l2 .faq-list summary::-webkit-details-marker { display: none; }
.l2 .faq-list summary .q-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  flex: none;
}
.l2 .faq-list summary .q-text { flex: 1; }
.l2 .faq-list summary .q-toggle {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  flex: none;
  transition: transform .15s ease;
}
.l2 .faq-list details[open] summary .q-toggle { transform: rotate(45deg); }
.l2 .faq-list details > .a {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 72ch;
  padding-left: 38px;
}
@media (max-width: 600px) {
  .l2 .faq-list details > .a { padding-left: 0; }
}

/* ---------- Utility ---------- */
.l2 .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .l2 .grid-2 { grid-template-columns: 1.05fr 1fr; }
}
.l2 .stack { display: flex; flex-direction: column; gap: 14px; }
.l2 .row-inline { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.l2 .rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.l2 .dashrule { height: 1px; border-top: 1px dashed var(--rule); margin: 0; }

/* ==================== ChatGPT chat mockup (definition) ==================== */
.l2 .chat-mock {
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -32px rgba(15,15,14,.25),
              0 2px 8px -2px rgba(15,15,14,.05);
}
.l2 .chat-mock-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--rule);
}
.l2 .chat-mock-head .cm-dots {
  display: inline-flex; gap: 6px;
}
.l2 .chat-mock-head .cm-dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #DDD9D2;
  display: block;
}
.l2 .chat-mock-head .cm-dots i:nth-child(1) { background: #FF5F57; }
.l2 .chat-mock-head .cm-dots i:nth-child(2) { background: #FEBC2E; }
.l2 .chat-mock-head .cm-dots i:nth-child(3) { background: #28C840; }
.l2 .chat-mock-head .cm-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-left: 8px;
}

.l2 .chat-mock-body {
  padding: 22px 20px 8px;
  display: flex; flex-direction: column;
  gap: 18px;
  background: #fff;
}

.l2 .cm-msg {
  display: flex; align-items: flex-start;
  gap: 10px;
}
.l2 .cm-msg-user { justify-content: flex-end; }
.l2 .cm-msg-bot { justify-content: flex-start; }

.l2 .cm-avatar {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.l2 .cm-avatar-user {
  background: var(--ink);
  color: #fff;
}
.l2 .cm-avatar-bot {
  background: #10A37F;
  padding: 6px;
  color: #fff;
}
.l2 .cm-avatar-bot img,
.l2 .cm-avatar-bot svg {
  width: 100%; height: 100%;
  object-fit: contain;
}

.l2 .cm-bubble {
  max-width: 78%;
  padding: 12px 15px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.55;
}
.l2 .cm-bubble-user {
  background: var(--soft);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}
.l2 .cm-bubble-bot {
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  border-bottom-left-radius: 4px;
}
.l2 .cm-bubble-bot p { margin: 0 0 8px; }
.l2 .cm-bubble-bot ul {
  margin: 0; padding: 0; list-style: none;
}
.l2 .cm-bubble-bot li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.l2 .cm-bubble-bot li:last-child { margin-bottom: 0; }
.l2 .cm-bubble-bot li::before {
  content: "•";
  position: absolute; left: 2px; top: 0;
  color: var(--accent); font-weight: 700;
}

.l2 .chat-mock-status {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px 16px;
  border-top: 1px dashed var(--rule);
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #058a4a;
  background: rgba(16,163,127,0.04);
}
.l2 .chat-mock-status .status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10A37F;
  animation: chat-pulse 1.8s ease-in-out infinite;
}
@keyframes chat-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ==================== Welcome to the future banner ==================== */
.l2 .welcome-future {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(90deg, #FFF7F1 0%, #FFEFE3 100%);
  border: 1px solid #F7C9B0;
  border-radius: 12px;
  padding: 18px 22px;
}
.l2 .welcome-future .wf-bolt {
  font-size: 24px; line-height: 1; color: var(--accent);
  flex: none;
}
.l2 .welcome-future p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  line-height: 1.4;
}
.l2 .welcome-future strong { font-weight: 700; color: var(--accent); }

/* ==================== Buyers section additions ==================== */
.l2 .buyers h2 { margin-bottom: 14px; max-width: 22ch; }
.l2 .industry-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 22px 0 32px;
}
.l2 .industry-chips .chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  background: var(--soft);
  border: 1px solid var(--rule);
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ==================== Featured pricing tier — warm accent ==================== */
.l2 .tier.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(180deg, #FFF7F1 0%, #ffffff 55%);
  box-shadow: 0 24px 48px -24px rgba(224,78,27,.35);
  transform: translateY(-4px);
}
.l2 .tier.featured .badge {
  background: var(--accent);
  box-shadow: 0 4px 10px -2px rgba(224,78,27,.5);
}
.l2 .tier.featured .price { color: var(--accent); }
.l2 .tier.featured ul li::before { color: var(--accent); }

/* ==================== Demo modal ==================== */
.l2 .demo-modal[hidden] { display: none; }
.l2 .demo-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.l2 .demo-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,15,14,0.55);
  backdrop-filter: blur(4px);
}
.l2 .demo-modal-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -20px rgba(15,15,14,.4);
  animation: demo-modal-in .18s ease-out;
}
@keyframes demo-modal-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.l2 .demo-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0;
  font-size: 26px; color: var(--muted);
  cursor: pointer; line-height: 1;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.l2 .demo-modal-close:hover { color: var(--ink); }
.l2 .demo-modal-card h3 {
  font-size: 22px; margin: 8px 0 8px;
  line-height: 1.2;
}
.l2 .demo-modal-sub {
  font-size: 14px; color: var(--ink-2); margin: 0 0 18px;
  line-height: 1.55;
}

/* ==================== Demo form ==================== */
.l2 .demo-form {
  display: flex; flex-direction: column; gap: 14px;
}
.l2 .demo-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.l2 .demo-form label i { font-style: normal; color: var(--muted-2); }
.l2 .demo-form input,
.l2 .demo-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 11px 13px;
  outline: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.l2 .demo-form input:focus,
.l2 .demo-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,78,27,.12);
}
.l2 .demo-form textarea { resize: vertical; min-height: 80px; }
.l2 .demo-form .btn { margin-top: 4px; }
.l2 .demo-form-foot {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  margin: 4px 0 0;
  text-align: center;
}

/* ==================== Demo confirmation banner ==================== */
.l2 .demo-confirm {
  display: inline-block;
  background: #E8F8EF;
  border: 1px solid #B6E1C6;
  color: #1A6B3E;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 24px;
}

/* ===== landing v3 additions ===== */
.l3-cta-sub { margin-top: .6rem; color: #6b5b58; }
.l3-secondary-cta { margin-top: 1rem; }
.l3-secondary-cta .link-btn {
  background: none; border: 0; padding: 0;
  color: #C04A1B; text-decoration: underline; cursor: pointer;
  font: inherit;
}
.l3-viz-caption { margin-top: 1rem; text-align: center; color: #6b5b58; }

.l3-pullquote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #C04A1B;
  background: #fff8f4;
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #2a1410;
  line-height: 1.4;
}
.l3-pullquote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-size: .9rem;
  color: #6b5b58;
  font-family: 'JetBrains Mono', monospace;
}
.cm-aside { margin-top: .5rem; font-size: .9rem; color: #a55; }

.l3-section { padding: 6rem 0; }
.l3-section .eyebrow { color: #C04A1B; font-family: 'JetBrains Mono', monospace; font-size: .85rem; letter-spacing: .08em; }
.l3-section h2 { font-size: 2.5rem; line-height: 1.1; margin: .5rem 0 1rem; max-width: 32ch; }
.l3-section .body { font-size: 1.1rem; line-height: 1.5; color: #4a3530; max-width: 60ch; }

.l3-tabs { display: flex; gap: .25rem; border-bottom: 2px solid #f0e4dc; margin: 3rem 0 1.5rem; }
.l3-tab {
  background: none; border: 0; padding: .85rem 1.5rem;
  font: 500 .95rem 'Figtree', sans-serif;
  color: #6b5b58; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.l3-tab.active { color: #2a1410; border-bottom-color: #C04A1B; }

.l3-tab-panel { display: none; }
.l3-tab-panel.active { display: block; }

.l3-vis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .l3-vis-grid { grid-template-columns: 1fr; } }

.l3-vis-card {
  background: #fff8f4; border: 1px solid #f0e4dc; border-radius: 12px;
  padding: 1.5rem;
}
.l3-card-title {
  font-family: 'JetBrains Mono', monospace; font-size: .85rem;
  color: #6b5b58; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .05em;
}
.l3-prompt-list, .l3-rank-list { list-style: none; padding: 0; margin: 0; }
.l3-prompt-list li, .l3-rank-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0; border-bottom: 1px solid #f0e4dc;
  font-size: .95rem;
}
.l3-prompt-list li:last-child, .l3-rank-list li:last-child { border-bottom: 0; }
.l3-prompt-list .ok { color: #1a8a4a; font-family: 'JetBrains Mono', monospace; }
.l3-prompt-list .bad { color: #c92e2e; }
.l3-rank-list .rank {
  display: inline-block; width: 1.5rem; font-family: 'JetBrains Mono', monospace;
  color: #6b5b58;
}
.l3-rank-list .pct { font-family: 'JetBrains Mono', monospace; color: #6b5b58; font-size: .9rem; }
.l3-rank-list .you { color: #C04A1B; font-weight: 600; }
.l3-rank-list .you .pct { color: #C04A1B; }

.l3-inline-cta { margin-top: 3rem; text-align: center; }

.l3-pipeline {
  margin: 3rem 0 0;
  border: 1px solid #f0e4dc; border-radius: 12px;
  background: #fff8f4;
  overflow: hidden;
}
.l3-lead-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0e4dc;
}
.l3-lead-row:last-child { border-bottom: 0; }
.l3-platform { width: 22px; height: 22px; }
.l3-lead-snippet {
  margin: 0; font-size: .95rem; color: #2a1410; line-height: 1.4;
}
.l3-lead-meta {
  margin: .25rem 0 0; font-size: .8rem;
  font-family: 'JetBrains Mono', monospace; color: #8a6e68;
}
.l3-intent {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  padding: .25rem .6rem; border-radius: 6px; font-size: .85rem;
}
.l3-intent-hot { background: #ffe0d3; color: #c02b00; }
.l3-intent-warm { background: #fff0d9; color: #8a5a00; }

.l3-use-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .l3-use-grid { grid-template-columns: 1fr; } }

.l3-use-row {
  padding: 1.75rem; border: 1px solid #f0e4dc; border-radius: 12px;
  background: #fff;
}
.l3-use-tag {
  font-family: 'JetBrains Mono', monospace; font-size: .85rem;
  color: #C04A1B; margin: 0 0 .75rem;
}
.l3-use-body { margin: 0 0 1rem; color: #2a1410; line-height: 1.5; font-size: .98rem; }
.l3-use-out {
  margin: 0; padding-top: 1rem; border-top: 1px solid #f0e4dc;
  font-family: 'Figtree', sans-serif; font-style: italic;
  color: #4a3530; line-height: 1.5; font-size: .95rem;
}

.l3-tier-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 1rem;
  margin-top: 3rem; align-items: stretch;
}
@media (max-width: 900px) { .l3-tier-grid { grid-template-columns: 1fr; } }

.l3-tier {
  background: #fff; border: 1px solid #f0e4dc; border-radius: 14px;
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
}
.l3-tier-pop {
  border: 2px solid #C04A1B; box-shadow: 0 12px 32px rgba(192,74,27,.12);
  position: relative;
}
.l3-tier-pop-flag {
  position: absolute; top: -.7rem; left: 1.5rem;
  background: #C04A1B; color: #fff;
  padding: .25rem .6rem; border-radius: 6px;
  font: 600 .75rem 'JetBrains Mono', monospace;
}
.l3-tier-name {
  font-family: 'JetBrains Mono', monospace; font-size: .85rem;
  color: #6b5b58; margin: 0 0 1rem; letter-spacing: .08em;
}
.l3-tier-price { margin: 0 0 .25rem; }
.l3-tier-price .amt { font-size: 3rem; font-weight: 800; color: #2a1410; }
.l3-tier-price .period { margin-left: .5rem; color: #6b5b58; font-size: 1rem; }
.l3-tier-sub { margin: 0 0 1.5rem; color: #8a6e68; font-size: .9rem; font-family: 'JetBrains Mono', monospace; }
.l3-tier-feats { list-style: none; padding: 0; margin: 1.5rem 0; flex: 1; }
.l3-tier-feats li {
  padding: .5rem 0; color: #4a3530; font-size: .95rem;
  display: flex; gap: .5rem; align-items: flex-start;
}
.l3-tier-feats li::before { content: "·"; color: #C04A1B; font-weight: 800; }

.btn-full { width: 100%; justify-content: center; }
.l3-pricing-footer {
  text-align: center; margin: 2rem 0 0;
  color: #6b5b58; font-size: .95rem;
}

.l3-faq-list { max-width: 760px; margin: 3rem auto 0; }
.l3-faq-item {
  border-bottom: 1px solid #f0e4dc; padding: 1rem 0;
}
.l3-faq-item summary {
  font-weight: 600; cursor: pointer;
  padding: .5rem 0; font-size: 1.1rem; color: #2a1410;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.l3-faq-item summary::-webkit-details-marker { display: none; }
.l3-faq-item summary::after {
  content: "+"; color: #C04A1B; font-size: 1.5rem; font-weight: 400;
}
.l3-faq-item[open] summary::after { content: "−"; }
.l3-faq-item p {
  margin: .75rem 0 .5rem; color: #4a3530; line-height: 1.6;
}
