/* ============================================================
   Mable — landing page styles
   Builds on styles.css tokens.
   ============================================================ */

html, body { background: var(--bg); }

.landing {
  max-width: 100%;
  overflow-x: hidden;
}

/* Container */
.l-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* =================== NAV =================== */
.l-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.l-nav.scrolled { border-bottom-color: var(--line); }
.l-nav .inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.l-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.l-brand .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--clay);
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12);
}
.l-brand .name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.l-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-nav nav a {
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 450;
  transition: color 0.15s;
}
.l-nav nav a:hover { color: var(--clay-deep); }
.l-nav .spacer { flex: 1; }
.l-nav .right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =================== HERO =================== */
.l-hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.l-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 380px at 8% 0%, rgba(181,72,42,0.12), transparent 60%),
    radial-gradient(800px 300px at 100% 30%, rgba(79,111,74,0.08), transparent 60%);
  pointer-events: none;
}
.l-hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 5px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.l-eyebrow .badge {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--clay);
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1;
  position: relative;
}
.l-eyebrow .badge::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  opacity: 0.25;
  animation: pulseRing 2.4s ease-out infinite;
}
.l-eyebrow b { color: var(--clay-deep); font-weight: 500; }

.l-hero h1 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.l-hero h1 .alt {
  font-style: italic;
  color: var(--clay-deep);
}
.l-hero h1 .dim {
  color: var(--ink-3);
}

/* Hero typing rotation — reserves two lines of vertical space so the
   layout below doesn't jump when text is shorter than the tallest variant,
   and disables balance to avoid mid-typing re-wraps. */
.l-hero h1.hero-typing {
  min-height: 1.96em;
  text-wrap: normal;
}
.l-hero h1.hero-typing > span {
  white-space: pre-wrap;
}
.l-hero h1.hero-typing > span.caret::after {
  content: "";
  display: inline-block;
  width: 0.05em;
  height: 0.82em;
  margin-left: 0.06em;
  vertical-align: -0.06em;
  background: currentColor;
  border-radius: 1px;
  animation: heroCaretBlink 0.9s steps(1) infinite;
}
@keyframes heroCaretBlink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .l-hero h1.hero-typing > span.caret::after { display: none; }
}
.l-hero .lede {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 520px;
  text-wrap: pretty;
}
.l-hero .ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.l-hero .ctas .btn { padding: 11px 18px; font-size: 14px; border-radius: var(--r-2); }
.l-hero .ctas .btn.primary { padding: 11px 20px; }
.l-hero .micro {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-3);
}
.l-hero .micro .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-4);
}

/* Hero preview stack (real product surfaces, cropped & stacked) */
.preview-stack {
  position: relative;
  height: 540px;
}
.preview-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.preview-card .pv-head {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.preview-card .pv-head .traffic {
  display: flex; gap: 5px;
}
.preview-card .pv-head .traffic span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
  opacity: 0.55;
}
.preview-card .pv-head .ttl {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-left: 6px;
}

/* Card 1: triage list */
.pv-triage {
  top: 0; left: 0;
  width: 100%;
  transform: rotate(-1deg);
}
.pv-triage .triage-eyebrow {
  margin: 14px 14px 10px;
}
.pv-triage h3 {
  margin: 0 14px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pv-triage .sub { margin: 0 14px 12px; font-size: 12.5px; color: var(--ink-3); }
.pv-triage .triage-row {
  padding: 10px 14px;
  grid-template-columns: 50px 1.3fr 1fr auto;
  gap: 12px;
}
.pv-triage .triage-row .urgency { padding: 4px 4px; min-width: 0; }
.pv-triage .triage-row .urgency .days { font-size: 18px; }

/* Card 2: chat bubble preview */
.pv-chat {
  bottom: 0; right: -8px;
  width: 360px;
  transform: rotate(1.5deg);
}
.pv-chat .pv-body {
  padding: 16px 14px;
  background:
    radial-gradient(400px 200px at 30% 0%, rgba(181,72,42,0.04), transparent 60%),
    var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pv-chat .bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.4;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.pv-chat .bubble.them { border-bottom-left-radius: 4px; }
.pv-chat .mable-bubble {
  align-self: flex-start;
  margin-top: 10px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
}
.pv-chat .mable-bubble::before {
  content: "Mable";
  position: absolute;
  top: -8px; left: 10px;
  background: var(--paper);
  padding: 0 6px;
  font-family: var(--font-display);
  font-size: 10.5px;
  color: var(--clay);
  border-radius: 4px;
}
.pv-chat .bubble.me {
  align-self: flex-end;
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay-deep);
  border-bottom-right-radius: 4px;
}
.pv-chat .when {
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 3px;
  display: flex; align-items: center; gap: 4px;
}
.pv-chat .bubble.me .when { color: rgba(251,247,238,0.7); justify-content: flex-end; }

/* Card 3: floating Mable status pill */
.pv-status {
  position: absolute;
  top: 220px; left: -32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-pop);
  padding: 12px 16px 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-2deg);
  z-index: 3;
}
.pv-status .ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clay);
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 22px;
  position: relative;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.pv-status .ava::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  background: var(--sage);
  border: 2px solid var(--paper-2);
  border-radius: 50%;
  right: -1px; bottom: -1px;
}
.pv-status .txt { display: flex; flex-direction: column; line-height: 1.2; }
.pv-status .txt .l1 { font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.pv-status .txt .l2 { font-size: 11px; color: var(--ink-3); margin-top: 1px; font-variant-numeric: tabular-nums; }

/* =================== SOCIAL PROOF =================== */
.l-proof {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.l-proof .inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-proof .label {
  font-size: 11.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 200px;
  line-height: 1.4;
}
.l-proof .logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}
.fake-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  white-space: nowrap;
}
.fake-logo.uppercase {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fake-logo .glyph {
  font-size: 18px;
  color: var(--ink-4);
}

/* =================== SECTION SCAFFOLD =================== */
.l-section {
  padding: 96px 0;
  position: relative;
}
.l-section.alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.l-section.dark {
  background: #1d1810;
  color: var(--bg);
}
.l-section-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.l-section-head.center {
  margin-left: auto; margin-right: auto; text-align: center;
}
.l-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--clay-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.l-kicker::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--clay);
}
.l-section-head h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.l-section.dark h2 { color: var(--bg); }
.l-section-head h2 .alt { font-style: italic; color: var(--clay-deep); }
.l-section.dark h2 .alt { color: var(--clay-soft); }
.l-section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 600px;
  text-wrap: pretty;
}
.l-section.dark .l-section-head p { color: rgba(251,247,238,0.7); }
.l-section-head.center p { margin-left: auto; margin-right: auto; }

/* =================== PILLARS (3 col) =================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.pillar .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--clay);
  letter-spacing: 0;
}
.pillar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  text-wrap: balance;
}
.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.pillar .viz {
  margin-top: 12px;
  border-radius: var(--r-2);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  padding: 12px;
}

/* =================== FEATURE ROW (split) =================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.feature-row:first-of-type { border-top: none; padding-top: 0; }
.feature-row.flip { grid-template-columns: 1.1fr 1fr; }
.feature-row.flip .feat-copy { order: 2; }
.feature-row .feat-copy h3 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.feature-row .feat-copy h3 .alt { font-style: italic; color: var(--clay-deep); }
.feature-row .feat-copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
}
.feature-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature-bullets li .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  color: var(--sage);
  display: grid; place-items: center;
  margin-top: 2px;
}
.feature-bullets li b { color: var(--ink); font-weight: 500; }

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay-deep);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.15s;
}
.feat-link:hover { gap: 10px; }

/* Mock window chrome for feature surfaces */
.feat-surface {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: relative;
}
.feat-surface .pv-head {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.feat-surface .pv-head .traffic {
  display: flex; gap: 5px;
}
.feat-surface .pv-head .traffic span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
  opacity: 0.55;
}
.feat-surface .pv-head .ttl {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-left: 6px;
}

/* =================== ROI / NUMBERS =================== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  overflow: hidden;
}
.num-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.num-cell:last-child { border-right: none; }
.num-cell .big {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--clay-deep);
}
.num-cell .big .unit {
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: 0;
}
.num-cell .label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
  margin-top: 4px;
}
.num-cell .foot {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 2px;
}

/* =================== TESTIMONIAL =================== */
.testimonial {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.4;
  color: var(--clay-soft);
  display: block;
  margin-bottom: 28px;
}
.testimonial blockquote {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.testimonial blockquote .alt { font-style: italic; color: var(--clay-deep); }
.testimonial .who {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.testimonial .who .pic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay-soft), var(--clay));
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 22px;
  display: grid; place-items: center;
}
.testimonial .who .nm {
  text-align: left;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.testimonial .who .nm span {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* =================== PRICING =================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured .price-name,
.price-card.featured .price-desc { color: rgba(251,247,238,0.78); }
.price-card.featured .price-num { color: var(--bg); }
.price-card.featured .price-num .unit { color: rgba(251,247,238,0.6); }
.price-card.featured .price-list li { color: rgba(251,247,238,0.85); }
.price-card.featured .price-list li b { color: var(--bg); }
.price-card.featured .price-list li .tick {
  background: var(--clay);
  border-color: var(--clay-deep);
  color: var(--bg);
}
.price-card .price-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.price-card .price-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
}
.price-card .price-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-card .price-num .currency {
  font-size: 22px;
  color: var(--ink-3);
}
.price-card .price-num .unit {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0;
  font-weight: 400;
}
.price-card .price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-card .price-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
  align-items: flex-start;
}
.price-card .price-list li .tick {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  color: var(--sage);
  display: grid; place-items: center;
  margin-top: 2px;
}
.price-tag {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--clay);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 500;
}

/* =================== FAQ =================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.faq-item h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* =================== CTA BANNER =================== */
.cta-banner {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-4);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 0% 100%, rgba(181,72,42,0.5), transparent 60%),
    radial-gradient(500px 240px at 100% 0%, rgba(181,72,42,0.18), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bg);
  text-wrap: balance;
}
.cta-banner h2 .alt { font-style: italic; color: var(--clay-soft); }
.cta-banner .side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-banner .side p {
  margin: 0;
  font-size: 15px;
  color: rgba(251,247,238,0.7);
  line-height: 1.5;
}
.cta-banner .side .ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-banner .btn {
  padding: 12px 20px;
  font-size: 14px;
}
.cta-banner .btn:not(.primary) {
  background: transparent;
  border-color: rgba(251,247,238,0.3);
  color: var(--bg);
}
.cta-banner .btn:not(.primary):hover {
  background: rgba(251,247,238,0.08);
  border-color: var(--bg);
  color: var(--bg);
}

/* =================== FOOTER =================== */
.l-footer {
  padding: 56px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.l-footer .row1 {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.l-footer .col-foot h5 {
  margin: 0 0 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 500;
}
.l-footer .col-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-footer .col-foot a {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
}
.l-footer .col-foot a:hover { color: var(--clay-deep); }
.l-footer .brand-blurb {
  font-size: 13px;
  color: var(--ink-3);
  margin: 14px 0 0;
  line-height: 1.5;
  max-width: 280px;
}
.l-footer .row2 {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}
.l-footer .row2 .spacer { flex: 1; }
.l-footer .row2 a { color: var(--ink-3); text-decoration: none; }
.l-footer .row2 a:hover { color: var(--ink); }

/* =================== Inline reusable bits =================== */
.dotline { display: inline-flex; align-items: center; gap: 6px; }
.dotline .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* For prose strong-tag accent inside lede */
.l-hero .lede b, .feat-copy p b { color: var(--ink); font-weight: 500; }

/* =================== AUTONOMY DIAL =================== */
.autonomy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 40px 44px 36px;
  position: relative;
  overflow: hidden;
}
.autonomy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(181,72,42,0.06), transparent 70%),
    radial-gradient(500px 220px at 100% 100%, rgba(79,111,74,0.05), transparent 70%);
  pointer-events: none;
}
.autonomy-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
  position: relative;
}
.autonomy-head h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 560px;
}
.autonomy-head h3 .alt { font-style: italic; color: var(--clay-deep); }
.autonomy-head .helper {
  font-size: 13px;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.5;
  text-wrap: pretty;
}
.autonomy-head .helper b { color: var(--ink); font-weight: 500; }

/* Dial */
.dial {
  position: relative;
  padding: 0 12px;
  margin-bottom: 32px;
}
.dial-track {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
}
.dial-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--clay-soft), var(--clay));
  border-radius: 3px;
  transition: width 0.35s cubic-bezier(.4,.0,.2,1);
}
.dial-stops {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.dial-stop {
  pointer-events: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-3);
  padding: 0;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, color 0.15s;
  position: relative;
}
.dial-stop:hover { border-color: var(--clay-soft); }
.dial-stop[data-on] {
  background: var(--clay);
  border-color: var(--clay-deep);
  color: var(--bg);
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(181,72,42,0.32);
}
.dial-stop[data-passed] {
  background: var(--clay-tint);
  border-color: var(--clay-soft);
  color: var(--clay-deep);
}
.dial-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.dial-lbl {
  width: 25%;
  text-align: center;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  cursor: pointer;
}
.dial-lbl:first-child { text-align: left; }
.dial-lbl:last-child { text-align: right; }
.dial-lbl[data-on] { color: var(--clay-deep); }

/* Detail panel */
.dial-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px 28px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-3);
}
.dial-panel .left h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dial-panel .left h4 .alt {
  font-style: italic;
  color: var(--clay-deep);
}
.dial-panel .left .who {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.dial-panel .left p {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 420px;
  text-wrap: pretty;
}

/* Workload split bar */
.split {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  max-width: 420px;
}
.split-bar {
  display: flex;
  height: 22px;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.split-bar .seg-mable {
  background: var(--clay);
  color: var(--bg);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 500;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.split-bar .seg-human {
  background: var(--bg-soft);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.split-legend {
  display: flex;
  gap: 18px;
  font-size: 11.5px;
  color: var(--ink-3);
}
.split-legend .lg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.split-legend .lg::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--clay);
}
.split-legend .lg.human::before { background: var(--bg-soft); border: 1px solid var(--line-strong); }

.dial-cost {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0 0;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
}
.dial-cost .from {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.dial-cost .val {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dial-cost .val .currency { font-size: 16px; color: var(--ink-3); }
.dial-cost .val .unit { font-size: 12px; font-family: var(--font-sans); color: var(--ink-3); letter-spacing: 0; }

/* Right: capability list */
.dial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--paper-2);
  overflow: hidden;
}
.dial-list .dl-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-2);
}
.dial-list .dl-row:first-child { border-top: none; }
.dial-list .dl-row .icn {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.dial-list .dl-row[data-by="mable"] .icn {
  background: var(--clay);
  color: var(--bg);
}
.dial-list .dl-row[data-by="human"] .icn {
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--ink-3);
}
.dial-list .dl-row[data-by="off"] {
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: var(--line-strong);
}
.dial-list .dl-row[data-by="off"] .icn {
  background: transparent;
  border: 1px dashed var(--line-strong);
  color: var(--ink-4);
}
.dial-list .dl-row .tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ink-3);
}
.dial-list .dl-row[data-by="mable"] .tag { color: var(--clay-deep); }
.dial-list .dl-row[data-by="human"] .tag { color: var(--ink-3); }

@media (max-width: 1100px) {
  .autonomy-head { grid-template-columns: 1fr; gap: 12px; }
  .autonomy-head .helper { text-align: left; }
  .autonomy-head h3 { font-size: 34px; }
  .dial-panel { grid-template-columns: 1fr; gap: 22px; }
}

/* Tweaks panel scoping (lighter background since landing is cream) */
#tweaks-root { z-index: 50; }

/* =================== Variant: hero "spotlight" =================== */
.l-hero.variant-spotlight .inner {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 36px;
}
.l-hero.variant-spotlight .l-eyebrow { margin: 0 auto 22px; }
.l-hero.variant-spotlight h1 { font-size: 96px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.l-hero.variant-spotlight .lede { margin-left: auto; margin-right: auto; font-size: 19px; max-width: 620px; }
.l-hero.variant-spotlight .ctas { justify-content: center; }
.l-hero.variant-spotlight .micro { justify-content: center; }
.l-hero.variant-spotlight .preview-stack { height: 420px; margin-top: 24px; }
.l-hero.variant-spotlight .pv-triage { width: 720px; left: 50%; transform: translateX(-50%) rotate(-1deg); top: 0; }
.l-hero.variant-spotlight .pv-chat { right: 24px; bottom: -12px; }
.l-hero.variant-spotlight .pv-status { left: 24px; top: 240px; }

/* =================== Variant: hero "ledger" =================== */
.l-hero.variant-ledger .inner {
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
.l-hero.variant-ledger .preview-stack { height: auto; }
.l-hero.variant-ledger .pv-triage,
.l-hero.variant-ledger .pv-chat,
.l-hero.variant-ledger .pv-status { position: static; transform: none; width: 100%; }
.l-hero.variant-ledger .pv-status { margin-top: 14px; }
.l-hero.variant-ledger .pv-chat { margin-top: 14px; }

/* =================== Print / smaller viewports =================== */
@media (max-width: 1100px) {
  .l-hero h1 { font-size: 64px; }
  .l-hero .inner { gap: 40px; }
  .preview-stack { height: 480px; }
  .pv-chat { width: 320px; }
  .l-section-head h2, .cta-banner h2 { font-size: 42px; }
  .feature-row .feat-copy h3 { font-size: 36px; }
  .num-cell .big { font-size: 44px; }
}
