/* approach · arcentai design language 2026-07 · shared across pages */
:root {
  --ink:       #1a1a1a;
  --ink-soft:  #444;
  --muted:     #6b6b6b;
  --faint:     #999;
  --line:      #e4e2dd;
  --line-ink:  #1a1a1a;
  --paper:     #faf9f6;
  --you:       #b45309;
  --ok:        #15803d;
  --wordmark:  #101828;
  --brand-ai:  #5B21B6;
  --radius:    2px;
  --font-serif: 'Noto Serif SC', serif;
  --font-sans:  'Noto Sans SC', -apple-system, sans-serif;
  --font-mono:  'Fragment Mono', 'Courier New', monospace;
  --font-brand: 'Figtree', 'Noto Sans SC', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: #fff; }
a { color: var(--ink); text-decoration: none; }
em { font-style: normal; box-shadow: inset 0 -14px 0 rgba(180,83,9,0.16); }

/* language switch */
html[lang="en"] .zh { display: none !important; }
html[lang="zh"] .en { display: none !important; }
.lang {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: none; padding: 5px 11px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.lang:hover { color: var(--ink); border-color: var(--line-ink); }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.wordmark { display: flex; align-items: baseline; gap: 12px; white-space: nowrap; }
.wordmark__name {
  font-family: var(--font-brand); font-weight: 780; font-size: 24px;
  letter-spacing: 0.5px; color: var(--wordmark); line-height: 1;
}
.wordmark__by {
  font-family: var(--font-brand); font-weight: 600; font-size: 12px;
  letter-spacing: -0.1px; color: #98A2B3; transition: color .15s;
}
.wordmark__by .ai { color: var(--brand-ai); }
.wordmark__by:hover { color: #667085; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__link { font-family: var(--font-mono); font-size: 13px; color: var(--muted); transition: color .15s; }
.nav__link:hover { color: var(--ink); }
.nav__link--here { color: var(--you); }
.nav__cta {
  font-family: var(--font-mono); font-size: 13px; white-space: nowrap;
  border: 1px solid var(--line-ink); padding: 7px 16px; border-radius: var(--radius);
  transition: background .18s, color .18s;
}
.nav__cta:hover { background: var(--ink); color: #fff; }

/* page hero (sub pages) */
.phero { max-width: 1200px; margin: 0 auto; padding: 84px 48px 24px; }
.phero--tight { padding-bottom: 0; }
.phero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--you); margin-bottom: 22px;
}
.phero__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(32px, 3.8vw, 46px); line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 22px; max-width: 820px;
}
.phero__lede { font-size: 16px; color: var(--ink-soft); max-width: 620px; line-height: 1.85; }

/* home hero */
.hero {
  display: grid; grid-template-columns: 46fr 54fr; gap: 56px;
  align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 88px 48px 80px;
}
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--you); margin-bottom: 28px;
}
.hero__punch {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(30px, 3.4vw, 40px); line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 24px;
}
.hero__punch em, .diff__head em { white-space: nowrap; }
.hero__desc {
  font-size: 16px; line-height: 1.85; color: var(--ink-soft);
  max-width: 470px; margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: var(--radius); cursor: pointer; border: 1px solid var(--line-ink);
  transition: background .18s, color .18s, transform .12s;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--ink); }
.btn--ghost:hover { background: var(--paper); }
.btn--disabled { border-color: var(--line); color: var(--faint); background: #fff; cursor: default; }
.btn .arr { transition: transform .18s; }
.btn--primary:hover .arr { transform: translateX(3px); }
.hero__note { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 18px; }

/* terminal */
.term {
  background: var(--paper);
  border: 1px solid var(--line-ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 14px 14px 0 -1px #fff, 16px 16px 0 -1px var(--line-ink);
}
.term__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: #fff;
}
.term__dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line-ink); }
.term__name { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-left: 10px; }
.term__body {
  font-family: var(--font-mono); font-size: 13px; line-height: 2.0;
  padding: 22px 24px; min-height: 320px;
  color: var(--ink);
}
.term__line {
  opacity: 0; transform: translateY(3px);
  transition: opacity .3s ease-out, transform .3s ease-out;
  white-space: pre-wrap; word-break: break-word;
}
.term__line.on { opacity: 1; transform: none; }
.term__prompt { color: var(--faint); }
.term__cmd { font-weight: 500; }
.term__mark { color: var(--faint); }
.term__key { color: var(--you); font-weight: 500; }
.term__done { color: var(--ok); font-weight: 500; }
.term__cursor {
  display: inline-block; width: 7px; height: 14px; background: var(--you);
  vertical-align: -2px; margin-left: 1px;
  animation: blink 1.2s steps(2, start) infinite;
}
@keyframes blink { to { visibility: hidden; } }
.term__replay {
  opacity: 0; font-family: var(--font-mono); font-size: 12px; color: var(--faint);
  background: none; border: none; cursor: pointer; padding: 10px 0 0;
  transition: opacity .3s ease-out;
}
.term__replay.on { opacity: 1; }
.term__replay:hover { color: var(--muted); }
.term__caption { font-size: 13px; color: var(--muted); margin-top: 18px; max-width: 480px; line-height: 1.7; }
.term__caption b { color: var(--ink); font-weight: 500; }

/* section shell */
.sec { border-top: 1px solid var(--line); scroll-margin-top: 76px; }
.sec--flush { border-top: none; }
.sec__inner { max-width: 1200px; margin: 0 auto; padding: 88px 48px; }
.sec__eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--you); margin-bottom: 18px;
}
.sec__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: 40px; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 20px;
}
.sec__lede { font-size: 15px; color: var(--muted); max-width: 640px; line-height: 1.85; }
.sec__more {
  display: inline-block; font-family: var(--font-mono); font-size: 13px;
  color: var(--you); margin-top: 36px; border-bottom: 1px solid rgba(180,83,9,0.4);
  padding-bottom: 2px; transition: border-color .15s;
}
.sec__more:hover { border-color: var(--you); }

/* pain */
.pain__item { display: flex; align-items: baseline; gap: 32px; padding: 30px 0; }
.pain__item + .pain__item { border-top: 1px solid var(--line); }
.pain__no { font-family: var(--font-mono); font-size: 13px; color: var(--faint); flex: 0 0 40px; }
.pain__text {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 27px; line-height: 1.5; letter-spacing: -0.005em;
}

/* scenario (home) */
.scene__story { max-width: 640px; }
.scene__story p { font-size: 16px; color: var(--ink-soft); line-height: 1.9; margin-top: 14px; }
.scene__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 48px 0 0; align-items: stretch; }
.panel {
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  overflow: hidden; display: flex; flex-direction: column;
}
.panel--read { border-color: var(--line-ink); background: var(--paper); box-shadow: 10px 10px 0 -1px #fff, 12px 12px 0 -1px var(--line-ink); }
.panel__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px; border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; color: var(--faint);
  background: #fff;
}
.panel__chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: 20px; border: 1px solid var(--line);
}
.panel__chip--stall { color: var(--you); border-color: rgba(180,83,9,0.45); }
.panel__chip--live { color: var(--ok); border-color: rgba(21,128,61,0.4); }
.panel__body { padding: 18px 20px 20px; flex: 1; }
.panel__row {
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 12.5px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.panel__row:last-child { border-bottom: none; }
.panel__k { color: var(--muted); }
.panel__v { color: var(--ink); text-align: right; }
.panel__v--warn { color: var(--you); }
.panel__verdict { font-size: 14.5px; color: var(--ink); line-height: 1.85; }
.panel__verdict b { color: var(--you); }
.panel__meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); margin-top: 14px; }
.scene__links { display: flex; gap: 44px; flex-wrap: wrap; }
.scene__punch {
  font-family: var(--font-serif); font-weight: 900; font-size: 24px;
  line-height: 1.6; margin-top: 48px; max-width: 720px;
}

/* three answers */
.answers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; }
.answer { padding: 0 32px; }
.answer:first-child { padding-left: 0; }
.answer:last-child { padding-right: 0; }
.answer + .answer { border-left: 1px solid var(--line); }
.answer__no { font-family: var(--font-mono); font-size: 12px; color: var(--you); letter-spacing: 0.1em; margin-bottom: 12px; }
.answer__title { font-family: var(--font-serif); font-weight: 600; font-size: 21px; line-height: 1.45; margin-bottom: 8px; }
.answer__body { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; }
.step { padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step + .step { border-left: 1px solid var(--line); }
.step__no { font-family: var(--font-mono); font-size: 12px; color: var(--you); letter-spacing: 0.1em; margin-bottom: 12px; }
.step__title { font-family: var(--font-serif); font-weight: 600; font-size: 20px; line-height: 1.4; margin-bottom: 8px; }
.step__body { font-size: 14px; color: var(--muted); line-height: 1.75; }
.step__detail { margin-top: 14px; }
.step__detail li {
  list-style: none; font-family: var(--font-mono); font-size: 12.5px;
  color: var(--muted); padding: 7px 0; border-top: 1px dashed var(--line);
}

/* method: engine */
.engine { max-width: 900px; }
.engine__quote {
  border: 1px solid var(--line); background: var(--paper);
  padding: 30px 34px; margin: 44px 0 0;
}
.engine__quote-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--you); margin-bottom: 12px; }
.engine__quote-text { font-family: var(--font-serif); font-weight: 600; font-size: 24px; line-height: 1.55; }
.engine__quote-sub { font-size: 14px; color: var(--muted); margin-top: 10px; }
.lens { margin-top: 56px; }
.lens__row { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 26px 0; border-top: 1px solid var(--line); }
.lens__k { font-family: var(--font-mono); font-size: 13px; color: var(--you); letter-spacing: 0.04em; padding-top: 3px; }
.lens__v { font-size: 15px; color: var(--ink-soft); line-height: 1.85; max-width: 620px; }
.method__src {
  font-family: var(--font-mono); font-size: 12px; color: var(--faint);
  margin-top: 64px; padding-top: 18px; border-top: 1px solid var(--line);
}

/* report */
.report__grid { display: grid; grid-template-columns: 54fr 46fr; gap: 56px; align-items: center; margin-top: 44px; }
.net { width: 100%; height: auto; display: block; }
.net__caption { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 14px; }
.nt-node { fill: #fff; stroke: var(--line-ink); stroke-width: 1.4; }
.net-grow { stroke: var(--faint); stroke-width: 1.2; }
.net-dash { stroke: var(--you); stroke-width: 1.3; stroke-dasharray: 5 5; }
#netSvg text { font-family: var(--font-mono); }
.nt-name { font-size: 12px; fill: var(--ink); }
.nt-name--eb { fill: var(--you); font-weight: 700; }
.nt-sub { font-size: 11px; fill: var(--muted); }
.nt-faint { font-size: 11px; fill: var(--faint); }
.nt-you { font-family: var(--font-sans); font-size: 13px; font-weight: 700; fill: var(--you); }
.nt-path { font-size: 10px; fill: var(--you); letter-spacing: 0.08em; }
.js .net-fade { opacity: 0; transition: opacity .5s ease-out var(--d, 0s); }
#netSvg.on .net-fade { opacity: 1; }
.toc__head { font-family: var(--font-serif); font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.toc__sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.toc { list-style: none; border-top: 1px solid var(--line-ink); }
.toc li {
  display: flex; gap: 18px; align-items: baseline;
  font-family: var(--font-mono); font-size: 13px;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.toc__no { color: var(--faint); font-size: 12px; flex: 0 0 24px; }
.sample {
  margin-top: 44px; padding: 20px 24px;
  background: var(--paper); border-left: 3px solid var(--you);
  border-radius: var(--radius);
}
.sample__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 10px; }
.sample__text { font-size: 14px; color: var(--ink-soft); line-height: 1.85; max-width: 760px; }
.honesty { max-width: 720px; margin-top: 56px; }
.honesty__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 10px; }
.honesty p { font-size: 15px; color: var(--ink-soft); line-height: 1.85; }

/* diff */
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 44px; }
.diff__col { padding-right: 56px; }
.diff__col + .diff__col { border-left: 1px solid var(--line); padding-left: 56px; padding-right: 0; }
.diff__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 16px; }
.diff__tag--you { color: var(--you); }
.diff__head { font-family: var(--font-serif); font-weight: 600; font-size: 24px; line-height: 1.5; margin-bottom: 16px; }
.diff__col p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-top: 8px; max-width: 420px; }
.diff__sum { font-family: var(--font-serif); font-weight: 900; font-size: 20px; line-height: 1.7; margin-top: 44px; }

/* pricing */
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.price__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 30px 28px; display: flex; flex-direction: column;
}
.card--pilot { border-color: var(--line-ink); background: var(--paper); }
.card__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 20px; }
.card--pilot .card__tag { color: var(--you); }
.card__name { font-family: var(--font-serif); font-weight: 600; font-size: 22px; line-height: 1.4; margin-bottom: 4px; }
.card__price { font-family: var(--font-mono); font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.card__price small { font-size: 13px; color: var(--muted); }
.card__usage { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--you); margin-bottom: 16px; }
.card__desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.card .btn { margin-top: auto; font-size: 14px; padding: 12px 20px; }

/* faq */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; margin-top: 44px; }
.faq__q { font-family: var(--font-serif); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.faq__a { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* closing cta */
.close { text-align: center; padding: 104px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.close__title {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(28px, 3.2vw, 38px); line-height: 1.4; margin-bottom: 28px;
}
.close__note { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 18px; }

/* footer */
footer { border-top: 1px solid var(--line); text-align: center; padding: 64px 24px 72px; }
.f__logo { font-family: var(--font-brand); font-weight: 600; font-size: 14px; color: #667085; display: inline-block; transition: color .15s; }
a.f__logo:hover { color: #101828; }
.f__logo .ai { color: var(--brand-ai); }
.f__mail { display: inline-block; font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 10px; transition: color .15s; }
.f__mail:hover { color: var(--ink); }
.f__slogan { font-family: var(--font-serif); font-weight: 600; font-size: 15px; color: var(--ink-soft); margin-top: 26px; }

/* reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(8px); transition: opacity .55s ease-out, transform .55s ease-out; }
.js .reveal.on { opacity: 1; transform: none; }

/* tablet */
@media (max-width: 880px) {
  .nav { padding: 12px 24px; }
  .wordmark__by { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px; }
  .hero__punch { font-size: 38px; }
  .term { box-shadow: 8px 8px 0 -1px #fff, 10px 10px 0 -1px var(--line-ink); }
  .term__body { min-height: 0; }
  .phero { padding: 56px 24px 12px; }
  .sec__inner { padding: 56px 24px; }
  .sec__title { font-size: 30px; }
  .pain__item { gap: 18px; padding: 24px 0; }
  .pain__text { font-size: 21px; }
  .scene__grid { grid-template-columns: 1fr; }
  .answers, .steps { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .answer, .step { padding: 0; }
  .answer + .answer, .step + .step { border-left: none; border-top: 1px solid var(--line); padding-top: 32px; }
  .lens__row { grid-template-columns: 1fr; gap: 8px; }
  .report__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 32px; }
  .diff__grid { grid-template-columns: 1fr; margin-top: 32px; }
  .diff__col { padding-right: 0; }
  .diff__col + .diff__col { border-left: none; border-top: 1px solid var(--line); padding-left: 0; margin-top: 36px; padding-top: 36px; }
  .price__grid { grid-template-columns: 1fr; margin-top: 32px; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
}
@media (max-width: 640px) {
  .nav__links-hide { display: none; }
}
/* phone */
@media (max-width: 520px) {
  .hero__punch { font-size: clamp(24px, 7.8vw, 31px); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .sec__title { font-size: 26px; }
  .pain__text { font-size: 19px; }
  .diff__head { font-size: 21px; }
  .scene__links { display: flex; gap: 44px; flex-wrap: wrap; }
.scene__punch { font-size: 20px; }
  .phero__title { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .term__line, .js .reveal, .js .net-fade, .term__replay { transition: none; }
  .term__cursor { animation: none; }
}

/* ── approach 专属：终端交互 ── */
.term__t { color: var(--faint); }
.term__tag-agent { color: var(--you); font-weight: 500; }
.term__tag-you { color: var(--ok); font-weight: 500; }
.term__ok { color: var(--ok); }
.term__target { color: var(--muted); }
.term__call {
  border: 1px solid var(--you); border-radius: 4px;
  padding: 12px 14px; margin: 10px 0 4px;
  opacity: 0; transition: opacity .3s ease-out;
}
.term__call.on { opacity: 1; }
.term__call-label { font-size: 11px; letter-spacing: 0.12em; color: var(--you); margin-bottom: 6px; }
.term__call-q { font-size: 13px; margin-bottom: 10px; }
.term__call-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.term__call-btn {
  font-family: var(--font-mono); font-size: 12px; cursor: pointer;
  border: 1px solid var(--line-ink); background: #fff; border-radius: 2px;
  padding: 6px 12px; transition: background .15s, color .15s;
}
.term__call-btn:hover { background: var(--ink); color: #fff; }

/* ── approach 专属：报告目录窗 ── */
.tocwin {
  background: var(--paper); border: 1px solid var(--line-ink); border-radius: 6px;
  overflow: hidden; box-shadow: 10px 10px 0 -1px #fff, 12px 12px 0 -1px var(--line-ink);
}
.tocwin__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: #fff;
}
.tocwin__name { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-left: 10px; }
.tocwin__body { padding: 10px 20px 18px; }
.tocwin__item {
  display: flex; gap: 16px; align-items: baseline;
  font-family: var(--font-mono); font-size: 13px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
}
.tocwin__item:last-child { border-bottom: none; }
.tocwin__no { color: var(--faint); font-size: 12px; flex: 0 0 24px; }
.tocwin__note { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 14px; }

/* ── approach 专属：报告事实清单与步骤补充 ── */
.report__desc { font-size: 15px; color: var(--ink-soft); line-height: 1.9; max-width: 520px; margin-bottom: 24px; }
.report__facts { list-style: none; max-width: 520px; }
.report__facts li {
  display: flex; gap: 12px; font-size: 14px; color: var(--ink-soft);
  line-height: 1.8; padding: 9px 0; border-top: 1px dashed var(--line);
}
.report__facts .mk { color: var(--you); flex: none; font-size: 11px; padding-top: 4px; }
.steps__more {
  margin-top: 44px; padding: 18px 22px;
  background: var(--paper); border-left: 3px solid var(--you); border-radius: 2px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; max-width: 720px;
}
.steps__more .mono { font-family: var(--font-mono); font-size: 12px; color: var(--you); margin-right: 8px; }
.price__fine { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 28px; line-height: 1.8; }
.price__fine a { color: var(--muted); border-bottom: 1px solid var(--line); }
.f__cross { font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 16px; }
.f__cross a { color: var(--muted); border-bottom: 1px solid var(--line); transition: color .15s; }
.f__cross a:hover { color: var(--ink); }
