/* ==========================================================================
   IronFlow Legal
   Monochrome system. Emphasis carried by weight and value, not hue.
   Type: Manrope (single family, 400 / 500 / 600 / 700 / 800)
   ========================================================================== */

:root {
  --paper: #ffffff;
  --bg: #f6f6f4;
  --bg-2: #eeeeeb;
  --ink: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --body: #56565a;
  --muted: #6b6b6e;
  --line: #e5e5e1;
  --line-dark: #2c2c2c;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --narrow: 780px;
  --band: 104px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --pill: 999px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 10px 28px -20px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--body);
}
h1 { font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.1vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.022em; line-height: 1.3; color: var(--ink); }
h4 { font-size: 1rem; letter-spacing: -0.015em; color: var(--ink); }

/* Where the reference uses gold for the emphasised phrase, we use pure black
   against a lighter neutral. Same emphasis pattern, no hue. */
.hl { color: var(--ink); }
.band--dark h1, .band--dark h2, .cta-band h2 { color: #86868a; }
.band--dark .hl, .cta-band .hl, .site-footer .hl { color: #fff; }

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute; left: 0; top: 0; z-index: 999; transform: translateY(-120%);
  background: var(--ink); color: #fff; padding: 12px 20px; font-size: 14px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px;
}
.band--dark a:focus-visible, .site-footer a:focus-visible,
.cta-band a:focus-visible, .topbar a:focus-visible,
.signup input:focus-visible, .signup button:focus-visible { outline-color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.band { padding: var(--band) 0; }
.band--paper { background: var(--paper); }
.band--tint { background: var(--bg-2); }
.band--dark { background: var(--dark); color: #b4b4b6; }
.band--dark h3, .band--dark h4 { color: #fff; }
.band--tight { padding: 72px 0; }

.head { max-width: var(--narrow); margin: 0 auto 56px; text-align: center; }
.head--left { margin: 0 0 44px; text-align: left; max-width: 60ch; }
.head p { color: var(--body); font-size: 1.08rem; margin: 0; }
.band--dark .head p { color: #9a9a9c; }

.eyebrow {
  display: block; margin: 0 0 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.band--dark .eyebrow, .cta-band .eyebrow { color: #7c7c7e; }
.lede { font-size: 1.12rem; color: var(--body); }
.small { font-size: .875rem; color: var(--muted); }
.note { font-size: .84rem; color: var(--muted); line-height: 1.6; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--wide { grid-template-columns: 1.05fr .95fr; }
.split--top { align-items: start; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: -0.012em;
  text-decoration: none; padding: 17px 32px; border-radius: var(--pill);
  border: 1px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { background: #2b2b2b; border-color: #2b2b2b; transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--ghost { background: transparent; color: var(--ink); border-color: #d4d4d0; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: #e8e8e4; border-color: #e8e8e4; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn-row--center { justify-content: center; }

.tlink {
  font-weight: 700; font-size: 15px; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.tlink svg { width: 15px; height: 15px; transition: transform .15s ease; }
.tlink:hover svg { transform: translateX(3px); }
.band--dark .tlink { color: #fff; }

/* ---------- top bar ---------- */
.topbar { background: var(--ink); color: #98989a; font-size: 13px; font-weight: 500; }
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  min-height: 40px; padding-top: 9px; padding-bottom: 9px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,246,244,.9);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px;
  max-width: 1300px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; line-height: 0; }
.brand .logo { display: block; height: 30px; width: auto; }
.site-footer .brand .logo { height: 34px; }
.logo { image-rendering: -webkit-optimize-contrast; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav > .btn { display: none; }
.nav a {
  font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--body);
  white-space: nowrap; letter-spacing: -0.012em;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav-toggle {
  display: none; background: none; border: 1px solid #d4d4d0; border-radius: var(--pill);
  padding: 10px 18px; cursor: pointer; font-family: var(--font);
  font-size: 14px; font-weight: 700; color: var(--ink);
}

/* ---------- hero ---------- */
.hero { padding: 96px 0 88px; text-align: center; }
.hero h1 { margin: 0 auto 26px; max-width: 16ch; }
.hero .lede { max-width: 62ch; margin: 0 auto 40px; font-size: 1.16rem; }
.hero .btn-row { justify-content: center; margin-top: 0; }

.hero--page { padding: 72px 0 60px; text-align: center; }
.hero--page h1 { max-width: 20ch; margin: 0 auto 22px; }
.hero--page .lede { max-width: 62ch; margin: 0 auto; }

/* ---------- flow chips ---------- */
.flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 54px; }
.chip {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 9px 21px 9px 10px; font-size: 14.5px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow);
}
.chip__i { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-2); display: grid; place-items: center; flex-shrink: 0; }
.chip__i svg { width: 16px; height: 16px; }
.flow__arrow { color: #c4c4c0; display: grid; place-items: center; }
.flow__arrow svg { width: 16px; height: 16px; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: 13.5px; color: var(--muted); padding: 24px 0 0; font-weight: 500; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; justify-content: center; }
.crumbs--left ol { justify-content: flex-start; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #cdcdc9; }

/* ---------- cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 9px; }
.card p { margin: 0; color: var(--body); font-size: .96rem; }
.band--dark .card { background: var(--dark-2); border-color: var(--line-dark); box-shadow: none; }
.band--dark .card p { color: #9a9a9c; }

.icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 20px;
}
.icon svg { width: 21px; height: 21px; }
.band--dark .icon { background: #242424; border-color: var(--line-dark); color: #fff; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.step__n {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: var(--pill); background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 800; margin-bottom: 20px;
}
.step h3 { margin-bottom: 9px; }
.step p { margin: 0; color: var(--body); font-size: .95rem; }
.band--dark .step { background: var(--dark-2); border-color: var(--line-dark); box-shadow: none; }
.band--dark .step__n { background: #fff; color: var(--ink); }
.band--dark .step p { color: #9a9a9c; }

/* ---------- checklist ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.checks--2 { grid-template-columns: 1fr 1fr; gap: 15px 34px; }
.checks li { position: relative; padding-left: 34px; font-size: 1rem; color: var(--body); line-height: 1.5; }
.checks .tick {
  position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: var(--pill);
  background: var(--ink); display: grid; place-items: center;
}
.checks .tick svg { width: 12px; height: 12px; color: #fff; }
.band--dark .checks li { color: #a6a6a8; }
.band--dark .checks .tick { background: #fff; }
.band--dark .checks .tick svg { color: var(--ink); }

/* ---------- tags ---------- */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; }
.tags li {
  border: 1px solid var(--line); background: var(--bg); border-radius: var(--pill);
  padding: 8px 15px; font-size: 13.5px; font-weight: 600; color: var(--body);
}
.band--dark .tags li { background: #242424; border-color: var(--line-dark); color: #a6a6a8; }

/* ---------- pipeline diagram ---------- */
.pipeline { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 26px; align-items: start; }
.pipeline .eyebrow { text-align: center; margin-bottom: 16px; }
.pipeline__stack { display: grid; gap: 11px; }
.pline {
  display: flex; align-items: center; gap: 13px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 15px 18px;
  font-size: 15px; font-weight: 700; box-shadow: var(--shadow);
}
.pline__i { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-2); display: grid; place-items: center; flex-shrink: 0; }
.pline__i svg { width: 16px; height: 16px; }
.pline .sub { display: block; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.pline--core { background: var(--ink); color: #fff; border-color: var(--ink); }
.pline--core .pline__i { background: rgba(255,255,255,.13); color: #fff; }
.pline--core .sub { color: rgba(255,255,255,.58); }
.pipeline__mid { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.pipeline__mid .pline { box-shadow: none; background: var(--bg); }
.pipeline__mid .pline--core { background: var(--ink); }

/* ---------- example record card ---------- */
.record { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow); }
.record__head {
  background: var(--ink); color: #fff; border-radius: var(--r); padding: 18px 22px;
  display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15.5px;
}
.record__head .dot { width: 30px; height: 30px; border-radius: var(--pill); background: rgba(255,255,255,.14); display: grid; place-items: center; }
.record__head .dot svg { width: 15px; height: 15px; }
.record__body { padding: 6px 10px 2px; }
.record__row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 12px; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.record__row:last-child { border-bottom: 0; }
.record__row span:first-child { color: var(--body); display: flex; align-items: center; gap: 10px; }
.record__row span:first-child svg { width: 15px; height: 15px; color: var(--muted); }
.record__row span:last-child { font-weight: 700; color: var(--ink); }
.record__foot { padding: 12px 22px 14px; }

/* ---------- integrations ---------- */
.integrations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.integ { background: var(--dark-2); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 24px 22px; }
.integ strong { display: block; color: #fff; font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.integ span { font-size: 13.5px; color: #86868a; }
.integ .icon { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px; }
.integ .icon svg { width: 17px; height: 17px; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 25px 66px 25px 28px; position: relative;
  font-size: 1.08rem; font-weight: 700; letter-spacing: -0.022em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 32px; height: 32px;
  margin-top: -16px; border-radius: var(--pill); background-color: var(--bg-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: center; transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq__a { padding: 0 28px 26px; color: var(--body); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: #fff; padding: 108px 0; text-align: center; }
.cta-band h2 { max-width: 19ch; margin: 0 auto 24px; }
.cta-band p { color: #9a9a9c; max-width: 58ch; margin: 0 auto 38px; font-size: 1.08rem; }
.cta-band .btn-row { justify-content: center; margin-top: 0; }

/* ---------- forms ---------- */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.012em; }
.field .hint { font-size: 13px; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 15.5px; color: var(--ink);
  border: 1px solid #dddcd8; border-radius: var(--r-sm); padding: 14px 15px;
  background: var(--bg); width: 100%; transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field ::placeholder { color: #a9a9a5; }
.req { color: var(--ink); }
.form__note { font-size: 13px; color: var(--muted); margin: 20px 0 0; line-height: 1.65; }

/* ---------- panels ---------- */
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.panel + .panel { margin-top: 18px; }
.panel h3 { margin-bottom: 12px; }
.panel address { font-style: normal; color: var(--body); line-height: 1.75; font-size: .97rem; }
.phone-lg { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; text-decoration: none; color: var(--ink); display: inline-block; }
.phone-lg:hover { text-decoration: underline; }

/* ---------- blog ---------- */
.featured {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 48px; box-shadow: var(--shadow); text-align: center; max-width: 880px; margin: 0 auto;
}
.featured h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem); color: var(--ink); margin-bottom: 16px; }
.featured h2 a { text-decoration: none; }
.featured p { color: var(--body); max-width: 60ch; margin: 0 auto 26px; }

.meta { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.meta span + span::before { content: "•"; margin: 0 9px; color: #cdcdc9; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; }
.filter-btn {
  font-family: var(--font); font-size: 13.5px; font-weight: 600; padding: 10px 17px;
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--pill);
  cursor: pointer; color: var(--body);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.searchbar { display: flex; gap: 10px; margin-bottom: 28px; }
.searchbar input {
  flex: 1; border: 1px solid #dddcd8; border-radius: var(--pill); padding: 14px 20px;
  font-family: var(--font); font-size: 15.5px; background: var(--paper); color: var(--ink);
}

.article-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.article-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.article-list h3 { font-size: 1.25rem; margin-bottom: 10px; }
.article-list h3 a { text-decoration: none; }
.article-list h3 a:hover { text-decoration: underline; }
.article-list p { margin: 0; color: var(--body); font-size: .96rem; }
.no-results { padding: 40px; text-align: center; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }

.sidebar > h3 { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.sidebar ul { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 2px; }
.sidebar li a { display: block; padding: 11px 16px; text-decoration: none; font-size: .95rem; font-weight: 600; border-radius: var(--r-sm); color: var(--body); }
.sidebar li a:hover { background: var(--paper); color: var(--ink); }
.signup { background: var(--ink); color: #fff; border-radius: var(--r); padding: 28px; }
.signup h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.signup p { font-size: .92rem; color: #9a9a9c; }
.signup input {
  width: 100%; border: 1px solid #333; border-radius: var(--pill); padding: 13px 18px;
  margin-bottom: 10px; font-family: var(--font); font-size: 14.5px; background: #1e1e1e; color: #fff;
}
.signup input::placeholder { color: #7c7c7e; }
.signup .btn { border-color: #fff; }

/* ---------- article ---------- */
.prose { font-size: 1.06rem; color: var(--body); }
.prose h2 { margin: 2em 0 .6em; font-size: 1.65rem; color: var(--ink); }
.prose h3 { margin: 1.7em 0 .5em; font-size: 1.2rem; }
.prose li { margin-bottom: .55em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 2em 0; padding: 26px 30px; background: var(--bg); border-radius: var(--r);
  border-left: 3px solid var(--ink); font-size: 1.1rem; font-weight: 600; color: var(--ink);
}
.article-body { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 48px; box-shadow: var(--shadow); }
.article-foot { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 30px; }
.author-box { background: var(--bg); border-radius: var(--r); padding: 26px; }
.author-box h3 { margin-bottom: 8px; }
.author-box p { margin: 0; font-size: .95rem; color: var(--body); }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: #86868a; font-size: .95rem; }
.site-footer .wrap { padding-top: 84px; padding-bottom: 40px; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.site-footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer a { color: #86868a; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand p { margin: 24px 0 0; max-width: 32ch; line-height: 1.6; }
.site-footer address { font-style: normal; line-height: 1.8; }
.footer-phone { color: #fff !important; font-weight: 700; }
.footer-rule { border: 0; border-top: 1px solid var(--line-dark); margin: 56px 0 30px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 12px 30px; list-style: none; margin: 0 0 26px; padding: 0; font-size: .88rem; }
.disclaimer { font-size: .84rem; color: #8a8a8d; max-width: 94ch; line-height: 1.7; }
.copyright { font-size: .84rem; color: #8a8a8d; margin: 20px 0 0; }

/* ---------- sticky mobile bar ---------- */
.mobile-bar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13.5px; }
}
@media (max-width: 1220px) {
  :root { --band: 72px; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 24px 24px; box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav > .btn { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav .btn { margin-top: 18px; }
  .site-header .wrap { position: relative; min-height: 66px; }
  .header-cta { display: none; }
  .split, .split--wide, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4, .steps, .integrations { grid-template-columns: 1fr 1fr; }
  .pipeline { grid-template-columns: 1fr; gap: 20px; }
  .checks--2 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero { padding: 60px 0 56px; }
  body { padding-bottom: 74px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 80; padding: 12px 14px;
    background: rgba(246,246,244,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; padding: 14px 10px;
    font-size: 14.5px; font-weight: 700; text-decoration: none; border-radius: var(--pill);
    background: var(--ink); color: #fff; border: 1px solid var(--ink);
  }
  .mobile-bar a + a { background: var(--paper); color: var(--ink); border-color: #d4d4d0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .steps, .integrations { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .searchbar { flex-direction: column; }
  .flow__arrow { display: none; }
  .cta-band { padding: 68px 0; }
  .article-body, .featured, .form { padding: 26px 22px; }
  .card, .step { padding: 26px 22px; }
  .faq summary { padding: 21px 60px 21px 22px; font-size: 1rem; }
  .faq__a { padding: 0 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
@media print { .topbar, .nav, .mobile-bar, .cta-band { display: none; } }

@media (max-width: 620px) {
  .brand .logo { height: 26px; }
  .site-footer .brand .logo { height: 30px; }
}
