/* Связка by Galera Club — base styles extracted from artifact. */

:root {
  --bg: #FCFCFB;
  --ink: #0F0F0F;
  --yellow: #F4C430;
  --yellow-soft: #FEF9E7;
  --yellow-mid: #FEF3C7;
  --gray-card: #F5F5F4;
  --cream: #FAF8F2;
  --mute: #A8A29E;
  --mute-2: #525252;
  --border: #E7E5E4;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
a { color: inherit; }
button { font-family: inherit; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.scribble { font-family: 'Caveat', cursive; }
::selection { background: var(--yellow); color: var(--ink); }

/* hand-drawn yellow underline behind a word */
.hl { position: relative; display: inline-block; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .08em;
  height: .34em; background: var(--yellow); z-index: -1;
  border-radius: 8px 4px 12px 6px;
  transform: rotate(-.6deg);
}
.hl-thin::after { height: .18em; bottom: .04em; border-radius: 8px; }
.hl-on-dark { isolation: isolate; }

/* yellow blob behind big numbers */
.blob { position: relative; display: inline-block; }
.blob > .blob-bg {
  position: absolute; inset: auto; left: -6%; right: -6%; bottom: 6%;
  height: 34%; background: var(--yellow); z-index: -1;
  border-radius: 62% 38% 55% 45% / 55% 60% 40% 45%;
  transform: rotate(-1.2deg);
  filter: saturate(1.05);
}

/* slot-machine ticker — per-digit translateY animation */
.ticker-num {
  display: inline-flex; align-items: baseline;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.ticker-digit {
  display: inline-block; overflow: hidden;
  height: 1em; line-height: 1; vertical-align: baseline;
}
.ticker-digit > .strip {
  display: flex; flex-direction: column;
  transition: transform .9s cubic-bezier(.22, .7, .18, 1);
  will-change: transform;
}
.ticker-digit > .strip > span { display: block; height: 1em; line-height: 1; }

/* reveal animations — fade-in on scroll (matches client design).
   Visible by default — this is progressive enhancement, not a gate. Content must
   stay readable if app.js never runs (blocked, throws, JS disabled) or if an
   element is taller than the viewport and never crosses an old percentage-based
   threshold (this exact bug shipped once: long article bodies wrapped in one
   giant .reveal div stayed opacity:0 until scrolled almost to the end, because
   the IntersectionObserver threshold was a % of the WHOLE element's height, not
   of the viewport — see app.js revealOnScroll). Fixed by splitting the hidden
   pre-animation state into its own class, .reveal-armed, which only app.js adds
   (synchronously, right before it starts observing) — no JS means no armed
   class means the element just keeps this rule's default, visible state. */
.reveal { transition: opacity .55s ease, transform .55s cubic-bezier(.2,.6,.2,1); }
.reveal.reveal-armed { opacity: 0; transform: translateY(20px); }
.reveal.reveal-armed.in { opacity: 1; transform: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.4em; font-weight: 600; font-size: 16px;
  letter-spacing: -.005em; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
}
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 8px 18px -10px rgba(0,0,0,.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(0,0,0,.18), 0 14px 26px -12px rgba(0,0,0,.55);
}
.btn-yellow {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 2px 0 rgba(0,0,0,.10), 0 10px 22px -14px rgba(0,0,0,.4);
}
.btn-yellow:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: .4em; padding: .45em .9em;
  border-radius: 999px; font-size: 13px; font-weight: 500;
  background: #fff; border: 1px solid var(--border); color: #3f3f3f; cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* cards */
.card {
  background: #fff; border-radius: 20px; border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .15s ease;
}
.card-h:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -22px rgba(0,0,0,.25), 0 2px 6px -2px rgba(0,0,0,.05);
}
.card-row { display: flex; align-items: center; }

/* layout */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 760px) { .container { padding: 0 20px; } }

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* sticky header */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(252,252,251,.85);
  backdrop-filter: saturate(1.4) blur(14px);
  border-color: var(--border);
  box-shadow: 0 6px 18px -16px rgba(0,0,0,.3);
}

/* drift animation */
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-4px) rotate(var(--rot, 0deg)); }
}
.drift { animation: drift 3.4s ease-in-out infinite; }

/* logo tile rotate on card hover */
.card-h:hover .logo-tile { transform: rotate(-3deg); }
.logo-tile { transition: transform .25s cubic-bezier(.2,.7,.2,1); }

/* modal */
.mdl-back {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mdl-back.open { opacity: 1; pointer-events: auto; }
.mdl {
  background: #fff; border-radius: 24px; max-width: 560px; width: 100%;
  padding: 36px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
  transform: translateY(24px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mdl-back.open .mdl { transform: none; }

/* faq */
.faq-row { border-bottom: 1px solid var(--border); }
.faq-row[open] .faq-q { color: var(--ink); }
.faq-q {
  font-weight: 600; font-size: 19px; padding: 22px 0;
  display: flex; gap: 1em; align-items: flex-start; justify-content: space-between;
  color: #2a2a2a;
}
.faq-plus {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  transition: transform .25s ease;
}
.faq-row[open] .faq-plus { transform: rotate(45deg); background: var(--yellow); }
.faq-a {
  padding: 0 0 24px; color: #3f3f3f; font-size: 17px; line-height: 1.6; max-width: 780px;
  border-top: 1px dashed var(--yellow); margin-top: -4px; padding-top: 18px;
}

/* counter / parallax */
.num-anim { font-variant-numeric: tabular-nums; }
.parallax { will-change: transform; }

/* hand-drawn arrow positions */
.scribble-arrow { position: absolute; pointer-events: none; }

/* placeholder logo grid */
.ph-stripes {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 1px, transparent 1px 14px),
    #FAFAF9;
  border: 1px dashed var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: #777; padding: 12px; text-align: center;
}

/* staggered step reveal — for "Как это работает" 4-step grids. Same visible-by-
   default rule as .reveal above: the hidden pre-state is scoped to
   .reveal-armed, which only exists once app.js has actually run — without JS
   these steps keep their normal layout opacity (1, implicit), never opacity:0
   with nothing to ever set it back. */
.reveal-armed .how4-step { opacity: 0; transform: translateY(14px) scale(.98); }
.reveal-armed .how4-arrow { opacity: 0; transform: translate(-8px, -50%); }
.reveal-armed.in .how4-step {
  animation: how4StepIn .55s cubic-bezier(.2,.6,.2,1) both;
  animation-delay: calc(var(--i, 0) * 260ms);
}
.reveal-armed.in .how4-arrow {
  animation: how4ArrowIn .45s cubic-bezier(.2,.6,.2,1) both;
  animation-delay: calc(var(--i, 0) * 260ms + 160ms);
}
@keyframes how4StepIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes how4ArrowIn { to { opacity: 1; transform: translate(0, -50%); } }

/* scrollbars subtle */
*::-webkit-scrollbar { height: 8px; width: 8px; }
*::-webkit-scrollbar-thumb { background: #0001; border-radius: 8px; }

/* signup roadmap (partner page) — zigzag timeline with central spine */
.roadmap { position: relative; padding: 30px 0 20px; }
.roadmap-spine {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background-image: linear-gradient(to bottom, #0F0F0F 0, #0F0F0F 8px, transparent 8px, transparent 18px);
  background-size: 2px 18px; background-repeat: repeat-y;
  transform: translateX(-50%);
}
.roadmap-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 38px;
  min-height: 84px;
}
.roadmap-row:last-child { margin-bottom: 0; }
.roadmap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  position: relative;
}
.roadmap-critical .roadmap-card {
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
}
.roadmap-critical-badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--yellow); color: #0F0F0F;
  padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 14px -8px rgba(0,0,0,.3);
}
.roadmap-node {
  grid-column: 2;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  background: var(--bg);
  border-radius: 50%;
  padding: 6px;
}
.roadmap-left .roadmap-card { grid-column: 1; margin-right: 18px; }
.roadmap-left .roadmap-card::after {
  content: ''; position: absolute; right: -9px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff;
  border-right: 1px solid var(--border); border-top: 1px solid var(--border);
}
.roadmap-right .roadmap-card { grid-column: 3; margin-left: 18px; }
.roadmap-right .roadmap-card::after {
  content: ''; position: absolute; left: -9px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff;
  border-left: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.roadmap-critical.roadmap-left .roadmap-card::after {
  background: var(--yellow-soft);
  border-right: 2px solid var(--yellow); border-top: 2px solid var(--yellow);
}
.roadmap-critical.roadmap-right .roadmap-card::after {
  background: var(--yellow-soft);
  border-left: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
}
.roadmap-finish .roadmap-card {
  grid-column: 3; margin-left: 18px;
  background: var(--yellow-soft); border-color: #E8C04A;
  font-weight: 700; font-size: 17px;
}
.roadmap-finish .roadmap-card::after {
  content: ''; position: absolute; left: -9px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 14px; height: 14px; background: var(--yellow-soft);
  border-left: 1px solid #E8C04A; border-bottom: 1px solid #E8C04A;
}
.roadmap-flag { background: var(--bg); padding: 0; }
@media (max-width: 760px) {
  .roadmap-spine { display: none; }
  .roadmap-row { grid-template-columns: 60px 1fr; margin-bottom: 22px; }
  .roadmap-left .roadmap-card, .roadmap-right .roadmap-card, .roadmap-finish .roadmap-card { grid-column: 2; margin: 0; }
  .roadmap-left .roadmap-card::after, .roadmap-right .roadmap-card::after, .roadmap-finish .roadmap-card::after { display: none; }
  .roadmap-node { grid-column: 1; justify-content: flex-start; }
}

/* ── BESPOKE: trust grid (partner page extras.trust) ──────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.trust-cell {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0; border-top: 1px solid var(--border);
}
.trust-big {
  font-weight: 900; font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.02em; line-height: 1; color: #0F0F0F;
}
.trust-label {
  font-size: 14px; color: #3f3f3f; line-height: 1.5; white-space: pre-line;
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── BESPOKE: rates table (extras.rates) ──────────────────────────────── */
.rates-table {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); max-width: 880px; margin: 0 auto;
}
.rates-head, .rates-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  padding: 16px 22px; align-items: center; gap: 14px;
}
.rates-head {
  background: #fafaf9; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #777;
}
.rates-row {
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.rates-row > div:nth-child(1) { font-weight: 600; }
.rates-row > div:not(.rates-both):not(:nth-child(1)) {
  font-weight: 700; color: #0F0F0F;
}
.rates-both {
  grid-column: 2 / 4;
  color: #777; font-style: italic; font-weight: 500;
}
@media (max-width: 760px) {
  .rates-head { display: none; }
  .rates-row { grid-template-columns: 1fr; gap: 4px; }
  .rates-row > div:not(.rates-both):not(:nth-child(1))::before {
    content: 'Ставка: '; color: #777; font-weight: 500; font-size: 13px;
  }
}

/* ── BESPOKE: platforms list inline pills (extras.platforms_list) ────── */
.platforms-list-row {
  display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.platforms-list-pill {
  padding: 8px 16px; border-radius: 999px;
  background: var(--gray-card); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: #0F0F0F;
}

/* Generic visibility helper (added block 3100) */
.hidden { display: none !important; }

/* === Mobile service_card vertical layout + lifetime badge hide (block 5000.2) === */
@media(max-width:760px){
  .card-row{
    flex-wrap:wrap !important;
    align-items:flex-start !important;
    gap:14px !important;
    padding:18px !important;
  }
  .card-mid{
    flex:1 1 calc(100% - 86px) !important;
    min-width:0 !important;
  }
  /* hairline between name+category row and blurb (non-compact only) */
  .card-mid > div:nth-child(2){
    border-top:1px solid var(--border) !important;
    padding-top:12px !important;
    margin-top:12px !important;
  }
  .card-stats{
    flex:1 1 100% !important;
    min-width:0 !important;
    text-align:left !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:6px 12px !important;
    border-top:1px solid var(--border) !important;
    padding-top:14px !important;
    margin-top:0 !important;
  }
  /* rub_estimate (3rd child) — full width below */
  .card-stats > div:nth-child(3){
    grid-column:1 / -1 !important;
    border-top:1px solid var(--border) !important;
    padding-top:10px !important;
    margin-top:6px !important;
  }
  .card-arrow{display:none !important}
  .lifetime-badge{display:none !important}
}

/* === FAQ section: disable sticky on mobile (block 5000.7) === */
@media(max-width:760px){
  .faq-sticky{position:static !important; top:auto !important}
}

/* === Cases grid: stack vertically on mobile (block 123) === */
.cases-grid{display:grid; grid-template-columns:1.4fr 1fr}
@media(max-width:760px){
  .cases-grid{grid-template-columns:1fr}
}

/* === Articles section === */

.articles-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
@media(max-width:880px){ .articles-grid{grid-template-columns:1fr} }
@media(min-width:881px) and (max-width:1160px){ .articles-grid{grid-template-columns:repeat(2,1fr)} }

.article-card{display:flex; flex-direction:column; text-decoration:none; color:inherit; background:#fff; border:1px solid var(--border); overflow:hidden; padding:0}
.article-card-cover{aspect-ratio:16/9; overflow:hidden; background:var(--gray-card)}
.article-card-cover img{width:100%; height:100%; object-fit:cover; display:block}
.article-card-body{padding:22px}
.article-card-meta{display:flex; align-items:center; gap:10px; font-size:12px; color:#777; margin-bottom:10px}
.article-card-cat{font-size:11px; color:#7a6428; background:var(--yellow-soft); padding:4px 10px; border-radius:999px; text-transform:uppercase; letter-spacing:.05em; font-weight:700; text-decoration:none}
.article-card-cat:hover{background:var(--yellow)}
.article-card-title{font-size:19px; font-weight:700; line-height:1.32; margin:0 0 8px; letter-spacing:-.01em}
.article-card-dek{color:#3f3f3f; font-size:14px; line-height:1.5; margin:0; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden}
.article-card-more{margin-top:16px; font-size:13px; font-weight:600; color:var(--ink)}
.article-card-more span{transition:transform .15s ease; display:inline-block}
.article-card:hover .article-card-more span{transform:translateX(3px)}

.article-breadcrumbs{display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:13px; color:#999; margin-bottom:18px}
.article-breadcrumbs a{color:#999; text-decoration:none}
.article-breadcrumbs a:hover{color:var(--ink)}
.article-breadcrumbs span[aria-current]{color:#3f3f3f}

.article-author-row{display:flex; align-items:center; gap:12px; padding-bottom:28px; border-bottom:1px solid var(--border)}
.article-author-name{font-weight:700; font-size:15px}
.article-author-meta{font-size:13px; color:#777; margin-top:2px}

.article-tldr{background:var(--yellow-soft); border-radius:20px; padding:28px 30px; margin:0 0 32px; box-shadow:0 1px 0 rgba(0,0,0,.02), 0 14px 30px -22px rgba(0,0,0,.15); border:1px solid rgba(0,0,0,.04)}
.article-tldr-title{font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:#7a6428; margin-bottom:16px}
.article-tldr ul{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px}
.article-tldr li{font-size:16px; line-height:1.55; color:#1a1a1a; font-weight:500; display:flex; gap:10px; align-items:flex-start}
.article-tldr li::before{content:''; flex:none; width:20px; height:20px; margin-top:2px; border-radius:50%; background:var(--ink); background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13 C 7 16, 9 17, 11 17 C 13 17, 15 11, 21 5' fill='none' stroke='%23F4C430' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; background-size:12px}

.article-toc-box{background:var(--gray-card); border-radius:16px; padding:16px 20px; margin:0 0 36px}
.article-toc-box summary{cursor:pointer; font-weight:700; font-size:14px; list-style:none; display:flex; align-items:center; gap:6px}
.article-toc-box summary::-webkit-details-marker{display:none}
.article-toc-box summary::before{content:'▸'; display:inline-block; transition:transform .15s ease; color:#999}
.article-toc-box[open] summary::before{transform:rotate(90deg)}
.article-toc-time{color:#777; font-weight:500}
.article-toc-box ol{list-style:none; margin:14px 0 0; padding:0; display:flex; flex-direction:column; gap:9px}
.article-toc-box a{color:#666; text-decoration:none; font-size:13.5px; line-height:1.4}
.article-toc-box a:hover{color:var(--ink)}

.article-body{font-size:17px; line-height:1.75; color:#2a2a2a}
.article-prose h2{font-size:clamp(24px,3vw,32px); font-weight:800; letter-spacing:-.02em; margin:0 0 16px}
.article-prose h3{font-size:20px; font-weight:700; margin:28px 0 12px}
.article-prose p{margin:0 0 18px}
.article-prose ul, .article-prose ol{margin:0 0 18px; padding-left:22px}
.article-prose li{margin-bottom:8px}
.article-prose a{color:var(--ink); text-decoration-color:var(--yellow); text-decoration-thickness:2px}
.article-prose strong{font-weight:700}
.article-body > h2{font-size:clamp(24px,3vw,32px); font-weight:800; letter-spacing:-.02em; margin:44px 0 16px; scroll-margin-top:90px}
.article-body > h2:first-child{margin-top:0}

.article-block{margin:0 0 32px}
.article-block-title{font-weight:700; font-size:14px; color:#777; margin-bottom:12px}

.article-table-wrap{overflow-x:auto; border-radius:16px; border:1px solid var(--border); box-shadow:0 1px 0 rgba(0,0,0,.02), 0 14px 30px -22px rgba(0,0,0,.15)}
.article-table{width:100%; border-collapse:collapse; font-size:14.5px; min-width:460px; background:#fff}
.article-table th{text-align:left; background:var(--ink); color:#fff; font-weight:700; padding:14px 18px; white-space:nowrap}
.article-table th:first-child{border-top-left-radius:16px}
.article-table th:last-child{border-top-right-radius:16px}
.article-table td{padding:14px 18px; border-bottom:1px solid var(--border); vertical-align:top}
.article-table tr:nth-child(even) td{background:var(--gray-card)}
.article-table tr:last-child td{border-bottom:0}
.article-table tr:last-child td:first-child{border-bottom-left-radius:16px}
.article-table tr:last-child td:last-child{border-bottom-right-radius:16px}

.article-proscons{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media(max-width:640px){ .article-proscons{grid-template-columns:1fr} }
.article-proscons-col{border-radius:18px; padding:22px}
.article-proscons-left{background:#F5F5F4}
.article-proscons-right{background:var(--yellow)}
.article-proscons-label{font-size:12px; letter-spacing:.06em; text-transform:uppercase; font-weight:700; margin-bottom:14px}
.article-proscons-left .article-proscons-label{color:#777}
.article-proscons-right .article-proscons-label{color:#0F0F0F}
.article-proscons-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px}
.article-proscons-col li{display:flex; gap:9px; align-items:flex-start; font-size:14.5px; line-height:1.5}
.article-proscons-left li{color:#525252}
.article-proscons-right li{color:#0F0F0F; font-weight:600}
.article-proscons-dash{flex:none; width:14px; height:2px; background:#A8A29E; border-radius:2px; margin-top:10px}

.article-steps{display:flex; flex-direction:column; gap:12px}
.article-step{display:flex; gap:16px; align-items:flex-start; background:var(--gray-card); border-radius:16px; padding:20px 22px; border:1px solid var(--border); transition:transform .15s ease}
.article-step:hover{transform:translateX(3px)}
.article-step-num{flex:none; width:38px; height:38px; border-radius:50%; background:var(--ink); color:var(--yellow); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; box-shadow:inset 0 -2px 0 rgba(0,0,0,.15)}
.article-step-title{font-weight:700; font-size:16px; margin-bottom:4px}
.article-step-body{color:#3f3f3f; font-size:14.5px; line-height:1.55}

.article-stats{display:flex; gap:16px; flex-wrap:wrap; margin:0 0 32px}
.article-stat{background:var(--yellow-soft); border-radius:14px; padding:18px 24px; border:1px solid rgba(0,0,0,.04); box-shadow:0 1px 0 rgba(0,0,0,.02), 0 14px 30px -22px rgba(0,0,0,.15)}
.article-stat-value{font-weight:900; font-size:30px; letter-spacing:-.01em}
.article-stat-label{font-size:13px; color:#7a6428; margin-top:3px}

.article-callout{border-radius:16px; padding:22px 26px; margin:0 0 28px; font-size:15px; line-height:1.6; box-shadow:0 1px 0 rgba(0,0,0,.02), 0 14px 30px -22px rgba(0,0,0,.15)}
.article-callout-info{background:var(--yellow-soft); border-left:4px solid var(--yellow)}
.article-callout-warning, .article-callout-honest{background:#F5F5F4; border-left:4px solid #A8A29E; color:#3f3f3f}
.article-callout-title{font-weight:800; margin-bottom:8px; display:flex; align-items:center; gap:8px}
.article-callout-honest .article-callout-title::before{content:'🤔'}
.article-callout-info .article-callout-title::before{content:'💡'}

.article-pullquote{margin:32px 0; padding:6px 0 6px 24px; border-left:3px solid var(--yellow)}
.article-pullquote p{font-size:22px; line-height:1.4; font-weight:600; letter-spacing:-.01em; margin:0 0 8px; font-style:normal}
.article-pullquote cite{font-size:13px; color:#777; font-style:normal}

.article-cta-partner{display:flex; align-items:center; gap:18px; background:#fff; border:1px solid var(--border); border-radius:20px; padding:22px 24px; text-decoration:none; color:inherit; margin:8px 0 32px; box-shadow:0 1px 0 rgba(0,0,0,.02), 0 14px 30px -22px rgba(0,0,0,.15)}
.article-cta-partner-body{flex:1; min-width:0}
.article-cta-partner-kicker{font-size:12px; color:#777; text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px}
.article-cta-partner-name{font-weight:700; font-size:19px; margin-bottom:4px}
.article-cta-partner-blurb{color:#3f3f3f; font-size:14px}
.article-cta-partner-btn{flex:none; text-decoration:none !important; white-space:nowrap}
@media(max-width:560px){ .article-cta-partner{flex-direction:column; align-items:flex-start} .article-cta-partner-btn{align-self:stretch; text-align:center} }

.article-faq{margin-top:44px}
.article-faq h2{font-size:clamp(24px,3vw,32px); font-weight:800; letter-spacing:-.02em; margin:0 0 20px}
