:root {
  color-scheme: dark;
  --black: #090a0b;
  --ink: #111316;
  --panel: #17191d;
  --panel-2: #202329;
  --paper: #f4f5f2;
  --white: #ffffff;
  --text: #f4f5f2;
  --muted: #a7adb5;
  --line: #353941;
  --gold: #b8892f;
  --green: #4caf50;
  --red: #f44336;
  --steel: #87a8bd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--text); }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: 0; }
h1 { margin-bottom: 22px; font-size: 76px; line-height: 0.96; }
h2 { max-width: 820px; margin-bottom: 0; font-size: 48px; line-height: 1.04; }
h3 { margin-bottom: 7px; }
p { line-height: 1.58; }
small { color: var(--muted); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(22px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(9,10,11,.92);
  backdrop-filter: blur(14px);
}

.brand-mark, .site-header nav, .hero-actions, .hero-facts, .trust-links { display: flex; align-items: center; }
.brand-mark { gap: 10px; text-decoration: none; font-size: 20px; font-weight: 900; }
.brand-mark img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; }
.site-header nav { gap: 22px; font-size: 14px; font-weight: 750; }
.site-header nav a { color: #d8dce1; text-decoration: none; }
.site-header nav a:hover { color: var(--white); }
.nav-action, .primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 10px 15px;
  font-weight: 850;
  text-decoration: none;
}
.nav-action, .secondary-action { border: 1px solid var(--gold); color: var(--white); }
.primary-action { border: 1px solid var(--gold); background: var(--gold); color: #111; }

.hero {
  min-height: min(900px, 92vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 116px max(24px, calc((100vw - 1440px) / 2)) 72px;
  background: #0a0b0d;
}
.hero-shade { position: absolute; inset: 0; background: rgba(4,5,6,.28); pointer-events: none; }
.hero-copy { position: relative; z-index: 3; width: min(680px, 52%); }
.eyebrow { margin-bottom: 13px; color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.lede { max-width: 650px; color: #d0d4da; font-size: 23px; line-height: 1.38; }
.hero-actions { gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-facts { gap: 22px; flex-wrap: wrap; margin-top: 38px; color: var(--muted); font-size: 13px; }
.hero-facts span { display: grid; gap: 3px; border-left: 2px solid var(--line); padding-left: 12px; }
.hero-facts b { color: var(--white); }

.hero-workspace {
  position: absolute;
  z-index: 1;
  top: 112px;
  right: max(-70px, calc((100vw - 1540px) / 2));
  width: min(770px, 58vw);
  height: 590px;
  overflow: hidden;
  border: 1px solid #454a53;
  border-radius: 8px;
  background: #131518;
  box-shadow: 0 34px 90px rgba(0,0,0,.56);
  transform: perspective(1500px) rotateY(-6deg) rotateX(2deg);
}
.hero-appbar { height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #1b1e22; }
.hero-appbar img { width: 36px; height: 36px; border-radius: 5px; }
.hero-appbar span { font-weight: 800; }
.hero-appbar i { width: 9px; height: 9px; border-radius: 999px; background: var(--green); }
.hero-screen { height: calc(100% - 64px); display: grid; grid-template-columns: 76px 1fr; }
.hero-screen aside { display: grid; align-content: start; justify-items: center; gap: 24px; padding-top: 25px; border-right: 1px solid var(--line); background: #0e1012; }
.hero-screen aside b, .hero-screen aside span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: 11px; }
.hero-screen aside .active { border-color: var(--gold); color: var(--white); background: rgba(255,193,7,.13); }
.hero-screen-body { padding: 44px; }
.hero-screen-body > p { margin-bottom: 8px; color: var(--muted); }
.hero-screen-body > strong { display: block; margin-bottom: 22px; font-size: 54px; }
.hero-status { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-status span { border: 1px solid rgba(76,175,80,.55); border-radius: 999px; padding: 7px 10px; color: #8bd68f; font-size: 12px; }
.hero-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin: 38px 0; }
.hero-timeline i { height: 8px; border-radius: 999px; background: var(--green); }
.hero-timeline i:nth-child(3) { background: var(--gold); }
.hero-timeline i:nth-child(4) { background: #363a42; }
.hero-lines { display: grid; gap: 16px; }
.hero-lines span { height: 58px; border: 1px solid var(--line); border-radius: 6px; background: #1b1e22; }

.section-band { padding: 86px max(24px, calc((100vw - 1440px) / 2)); }
.section-heading { margin-bottom: 34px; }
.split-heading { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 50px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 17px; }

.product-tour { background: #0e1012; }
.demo-tabs { display: flex; gap: 8px; margin-bottom: 16px; overflow-x: auto; }
.demo-tabs button { min-width: 140px; border: 1px solid var(--line); border-radius: 6px; padding: 11px 15px; background: transparent; color: var(--white); font-weight: 800; }
.demo-tabs button.active { border-color: var(--gold); background: rgba(255,193,7,.12); }
.demo-panel[hidden] { display: none; }
.demo-panel.active { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 24px; align-items: stretch; }
.app-render { min-width: 0; overflow: hidden; border: 1px solid #40454d; border-radius: 8px; background: #111315; box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.render-appbar { min-height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 0 17px; border-bottom: 1px solid var(--line); background: #1b1e22; }
.render-appbar > span:nth-child(2) { font-weight: 850; }
.render-appbar > span:last-child { justify-self: end; }
.render-brand { display: flex; align-items: center; gap: 9px; }
.render-brand img { width: 32px; height: 32px; border-radius: 5px; }
.render-alert { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 999px; background: var(--red); color: white; font-size: 12px; font-weight: 900; }
.render-shell { min-height: 540px; display: grid; grid-template-columns: 130px minmax(0,1fr) 230px; }
.render-rail { display: grid; align-content: start; gap: 5px; padding: 18px 10px; border-right: 1px solid var(--line); background: #0d0f11; }
.render-rail span { border-left: 2px solid transparent; padding: 10px; color: var(--muted); font-size: 12px; }
.render-rail .active { border-color: var(--gold); color: var(--white); background: #1b1e22; }
.render-main { min-width: 0; padding: 23px; }
.render-title-row { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.render-title-row small { font-weight: 850; }
.render-title-row h3 { margin: 4px 0; font-size: 24px; }
.render-title-row p { margin: 0; color: var(--muted); }
.status { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 6px 9px; color: var(--white); font-size: 11px; font-style: normal; font-weight: 850; }
.status.positive { border-color: rgba(76,175,80,.62); color: #86d88a; }
.render-metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 24px 0; }
.render-metric-grid > div { min-height: 112px; display: grid; align-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 6px; padding: 13px; background: #191c20; }
.render-metric-grid strong { font-size: 23px; }
.render-metric-grid span { color: var(--muted); font-size: 11px; }
.timeline-panel { border-top: 1px solid var(--line); padding-top: 18px; }
.timeline-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.timeline-head h4 { margin-bottom: 0; }
.timeline-head span { color: var(--gold); font-size: 11px; }
.timeline-panel ol { margin: 15px 0 0; padding: 0; list-style: none; }
.timeline-panel li { position: relative; display: grid; gap: 2px; min-height: 54px; padding: 0 0 14px 30px; color: #7f858e; }
.timeline-panel li::before { content: ""; position: absolute; left: 5px; top: 4px; width: 11px; height: 11px; border: 2px solid #4d525c; border-radius: 999px; }
.timeline-panel li::after { content: ""; position: absolute; left: 11px; top: 17px; bottom: 0; width: 1px; background: #3a3e45; }
.timeline-panel li:last-child::after { display: none; }
.timeline-panel li.done, .timeline-panel li.current { color: var(--white); }
.timeline-panel li.done::before { border-color: var(--green); background: var(--green); }
.timeline-panel li.current::before { border-color: var(--gold); box-shadow: 0 0 12px rgba(255,193,7,.55); }
.timeline-panel li small { font-size: 11px; }
.render-inspector { padding: 22px; border-left: 1px solid var(--line); background: #15171a; }
.render-inspector > strong { display: block; margin: 8px 0 22px; font-size: 26px; }
.render-inspector p { border-bottom: 1px solid var(--line); padding-bottom: 13px; color: var(--muted); font-size: 12px; }
.render-inspector button, .bank-row + button, .growth-queue-render button { width: 100%; border: 1px solid var(--gold); border-radius: 5px; padding: 10px; background: transparent; color: var(--white); font-weight: 850; }
.demo-caption { display: flex; gap: 15px; border-left: 1px solid var(--line); padding: 24px; }
.demo-caption > span { color: var(--gold); font-size: 13px; font-weight: 900; }
.demo-caption p { margin: 0; color: var(--muted); }

.money-workspace { min-height: 540px; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); }
.money-workspace > section, .money-workspace > aside { padding: 26px; }
.money-workspace > aside { border-left: 1px solid var(--line); background: #15171a; }
.money-total { display: block; margin: 7px 0 25px; font-size: 42px; }
.invoice-row { display: grid; grid-template-columns: 1fr auto 82px; align-items: center; gap: 16px; min-height: 76px; border-top: 1px solid var(--line); }
.invoice-row span { display: grid; gap: 3px; }
.invoice-row em { justify-self: end; color: var(--white); font-size: 11px; font-style: normal; }
.invoice-row em.matched { color: #86d88a; }
.bank-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 11px; border-bottom: 1px solid var(--line); padding: 17px 0; }
.bank-row img { width: 30px; max-height: 30px; object-fit: contain; border-radius: 4px; background: white; padding: 3px; }
.bank-row span { display: grid; gap: 3px; }
.bank-row b { font-size: 13px; }
.bank-row + button { margin-top: 22px; }

.growth-workspace { min-height: 540px; display: grid; grid-template-columns: 210px 1fr; }
.provider-strip { display: grid; align-content: start; gap: 8px; padding: 20px 12px; border-right: 1px solid var(--line); background: #0d0f11; }
.provider-strip span { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 6px; padding: 10px; color: var(--muted); }
.provider-strip span.connected { border-color: rgba(76,175,80,.42); color: var(--white); }
.provider-strip img { width: 34px; height: 34px; object-fit: contain; border-radius: 5px; background: white; padding: 4px; }
.provider-strip i { font-size: 11px; font-style: normal; }
.growth-queue-render { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-content: start; padding: 27px; }
.growth-queue-render h3 { margin: 5px 0; font-size: 25px; }
.growth-queue-render p { margin-bottom: 0; color: var(--muted); }
.score-ring { width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid var(--green); border-radius: 999px; font-size: 20px; font-weight: 900; }
.preview-copy { grid-column: 1/-1; border: 1px solid var(--line); border-radius: 6px; padding: 15px; background: #191c20; }
.preview-copy p { margin: 7px 0 0; }
.queue-actions { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.growth-queue-render button.commit { background: var(--gold); color: #111; }

.workflow-band { background: var(--paper); color: var(--ink); }
.workflow-band .eyebrow { color: #6c5310; }
.workflow-line { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 42px 0 0; padding: 0; list-style: none; }
.workflow-line li { min-height: 220px; border-left: 1px solid #cfd2d3; padding: 5px 20px; }
.workflow-line li:last-child { border-right: 1px solid #cfd2d3; }
.workflow-line span { color: #44708a; font-size: 12px; font-weight: 900; }
.workflow-line h3 { margin-top: 46px; }
.workflow-line p { color: #5c6268; }

.integration-band { background: #15181c; }
.integration-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.integration-grid > div { min-height: 94px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 6px; padding: 16px; background: #1d2025; }
.integration-grid img { width: 43px; height: 43px; object-fit: contain; border-radius: 6px; background: white; padding: 5px; }
.integration-grid span { display: grid; gap: 4px; }
.integration-grid small { line-height: 1.3; }

.trust-band { background: #0d0f11; }
.trust-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.trust-grid article { border-top: 2px solid var(--steel); padding: 20px 4px 8px; }
.trust-grid p { color: var(--muted); }
.trust-links { gap: 8px; flex-wrap: wrap; margin-top: 36px; }
.trust-links a { border: 1px solid var(--line); border-radius: 5px; padding: 10px 13px; text-decoration: none; font-weight: 800; }

.organic-band { background: #f1f3f4; color: var(--ink); }
.organic-band .eyebrow { color: #735919; }
.organic-band .split-heading > p { color: #586068; }
.organic-grid, .page-grid, .resource-grid, .answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #cfd4d7;
  background: #cfd4d7;
}
.organic-grid a, .page-grid a, .resource-grid a, .answer-grid article {
  min-height: 230px;
  padding: 25px;
  background: #f8f9f9;
  color: var(--ink);
  text-decoration: none;
}
.organic-grid a:hover, .page-grid a:hover, .resource-grid a:hover { background: #ffffff; }
.organic-grid span, .page-grid span, .resource-grid span { color: #416f87; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.organic-grid h3, .page-grid h3, .resource-grid h3 { margin-top: 38px; font-size: 24px; }
.organic-grid p, .page-grid p, .resource-grid p, .answer-grid p { color: #596169; }

.page-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 64px;
  align-items: center;
  padding: 126px max(24px, calc((100vw - 1280px) / 2)) 76px;
  background: #0a0c0e;
}
.page-hero h1 { max-width: 760px; font-size: 62px; }
.page-hero .lede { max-width: 700px; }
.page-signal {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #41464e;
  border-radius: 8px;
  background: #15181c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .44);
}
.page-signal header { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.page-signal header span { color: var(--green); font-size: 12px; font-weight: 850; }
.signal-body { display: grid; align-content: center; gap: 10px; padding: 28px; }
.signal-row { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 16px; min-height: 68px; border-top: 1px solid var(--line); }
.signal-row:first-child { border-top: 0; }
.signal-row small { text-transform: uppercase; }
.signal-row strong { font-size: 17px; }
.signal-row em { color: var(--gold); font-size: 12px; font-style: normal; font-weight: 850; }

.content-band { padding: 78px max(24px, calc((100vw - 1120px) / 2)); background: #f1f3f4; color: var(--ink); }
.content-band.dark { max-width: none; background: #111417; color: var(--text); }
.content-intro { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.content-intro h2 { font-size: 43px; }
.content-copy { font-size: 17px; }
.content-copy p, .content-copy li { color: #4f5860; }
.content-band.dark .content-copy p, .content-band.dark .content-copy li { color: var(--muted); }
.content-copy ul { display: grid; gap: 10px; padding-left: 20px; }
.proof-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 48px; border: 1px solid #cdd2d5; background: #cdd2d5; }
.proof-strip div { min-height: 150px; padding: 22px; background: #fff; }
.proof-strip strong { display: block; margin-bottom: 12px; font-size: 19px; }
.proof-strip p { margin: 0; color: #596169; font-size: 14px; }

.faq-band { padding: 78px max(24px, calc((100vw - 1120px) / 2)); background: #e4e8ea; color: var(--ink); }
.faq-list { margin-top: 34px; border-top: 1px solid #b9c0c4; }
.faq-list details { border-bottom: 1px solid #b9c0c4; padding: 18px 0; }
.faq-list summary { min-height: 44px; cursor: pointer; font-size: 19px; font-weight: 850; }
.faq-list p { max-width: 850px; margin: 10px 0 0; color: #4f5860; }

.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--text); text-decoration: none; }
.resource-article { padding: 126px max(24px, calc((100vw - 900px) / 2)) 80px; background: #f5f6f6; color: var(--ink); }
.resource-article h1 { max-width: 880px; font-size: 58px; }
.resource-article .lede { color: #4d565e; }
.resource-article h2 { margin: 52px 0 18px; font-size: 34px; }
.resource-article h3 { margin-top: 32px; font-size: 23px; }
.resource-article p, .resource-article li { color: #3f484f; font-size: 17px; line-height: 1.7; }
.resource-article table { width: 100%; margin: 28px 0; border-collapse: collapse; background: white; }
.resource-article th, .resource-article td { border: 1px solid #cbd1d4; padding: 13px; text-align: left; vertical-align: top; }
.resource-article th { background: #e7eaec; }
.article-note { border-left: 3px solid var(--gold); margin: 30px 0; padding: 14px 20px; background: #fff; }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin-top: 45px; }
.related-links a { border: 1px solid #cbd1d4; border-radius: 6px; padding: 18px; background: white; color: var(--ink); text-decoration: none; font-weight: 800; }

.beta-band { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: #e8ebed; color: var(--ink); }
.beta-band .eyebrow { color: #6c5310; }
.beta-band > div:last-child { display: grid; align-content: start; justify-items: start; gap: 12px; }
.beta-band p { color: #555e66; font-size: 17px; }
footer { display: flex; justify-content: space-between; gap: 18px; padding: 24px max(24px, calc((100vw - 1440px) / 2)); border-top: 1px solid var(--line); color: var(--muted); }

/* Feature pages */
.feature-hero, .feature-detail-hero { min-height: 84vh; display: grid; grid-template-columns: minmax(0,.8fr) minmax(500px,1.2fr); gap: 60px; align-items: center; padding: 116px max(24px, calc((100vw - 1440px) / 2)) 68px; background: #0b0d0f; }
.feature-hero h1, .feature-detail-hero h1 { font-size: 58px; }
.feature-hero .app-render, .feature-detail-hero .app-render { align-self: center; }
.feature-nav-band, .feature-proof-band { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; padding: 0 max(24px, calc((100vw - 1440px) / 2)) 82px; background: var(--paper); color: var(--ink); }
.feature-nav-band a, .feature-proof-band article { min-height: 230px; border: 1px solid #d3d7d8; padding: 25px; color: inherit; text-decoration: none; }
.feature-nav-band span, .feature-proof-band span { display: block; margin-bottom: 40px; color: #3e708a; font-weight: 900; }
.feature-nav-band strong { display: block; margin-bottom: 10px; font-size: 22px; }
.feature-nav-band p, .feature-proof-band p { color: #5c6268; }
.detail-flow { background: var(--paper); color: var(--ink); }

@media (max-width: 1100px) {
  h1 { font-size: 62px; }
  .hero-copy { width: 60%; }
  .hero-workspace { right: -210px; width: 700px; opacity: .7; }
  .render-shell { grid-template-columns: 110px minmax(0,1fr); }
  .render-inspector { display: none; }
  .demo-panel.active { grid-template-columns: 1fr; }
  .demo-caption { border-left: 0; border-top: 1px solid var(--line); }
  .workflow-line { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .workflow-line li:nth-child(4) { border-top: 1px solid #cfd2d3; }
  .feature-hero, .feature-detail-hero { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; padding: 12px 16px; }
  .site-header nav { width: 100%; justify-content: space-between; gap: 8px; overflow: visible; padding: 0; font-size: 12px; }
  .site-header nav a { white-space: nowrap; }
  .site-header nav a:nth-child(2), .site-header nav a:nth-child(4) { display: none; }
  .site-header nav a[href="#product"], .site-header nav a[href="#trust"] { display: none; }
  .site-header .nav-action { min-height: 36px; padding: 7px 10px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero { min-height: 700px; align-items: flex-start; padding: 58px 18px 38px; }
  .hero-copy { width: 100%; }
  .hero .lede { font-size: 19px; }
  .hero-workspace { top: 510px; right: -145px; width: 520px; height: 230px; opacity: .68; transform: none; }
  .hero-screen-body { padding: 25px; }
  .hero-screen-body > strong { font-size: 38px; }
  .section-band { padding: 60px 18px; }
  .split-heading, .beta-band { grid-template-columns: 1fr; gap: 24px; }
  .render-appbar { grid-template-columns: 1fr auto; }
  .render-appbar > span:nth-child(2) { display: none; }
  .render-shell { min-height: 0; grid-template-columns: 1fr; }
  .render-rail { grid-template-columns: repeat(5,max-content); overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .render-metric-grid { grid-template-columns: 1fr; }
  .render-metric-grid > div { min-height: 86px; }
  .money-workspace, .growth-workspace { grid-template-columns: 1fr; }
  .money-workspace > aside, .provider-strip { border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .provider-strip { grid-template-columns: repeat(3,minmax(130px,1fr)); overflow-x: auto; }
  .workflow-line, .integration-grid, .trust-grid, .feature-nav-band, .feature-proof-band, .organic-grid, .page-grid, .resource-grid, .answer-grid, .proof-strip, .related-links { grid-template-columns: 1fr; }
  .workflow-line li, .workflow-line li:last-child { min-height: 150px; border: 0; border-top: 1px solid #cfd2d3; padding: 18px 0; }
  .workflow-line h3 { margin-top: 20px; }
  .feature-hero, .feature-detail-hero { min-height: auto; grid-template-columns: 1fr; padding: 58px 18px; }
  .feature-hero h1, .feature-detail-hero h1 { font-size: 43px; }
  .page-hero { min-height: auto; grid-template-columns: 1fr; padding: 58px 18px; }
  .page-hero h1, .resource-article h1 { font-size: 43px; }
  .page-signal { min-height: 350px; }
  .signal-row { grid-template-columns: 95px 1fr; }
  .signal-row em { grid-column: 2; }
  .content-band, .faq-band, .resource-article { padding: 56px 18px; }
  .content-intro { grid-template-columns: 1fr; gap: 24px; }
  .content-intro h2 { font-size: 34px; }
  .feature-nav-band, .feature-proof-band { padding: 0 18px 60px; }
  footer { flex-direction: column; padding: 22px 18px; }
}
