/* Yango Deli — Гипотезы роста
   Бренд: жёлтый #FFE033, чёрный #0B0B0B, шрифты Yango Headline / Yango Text
   Собрано по DESIGN-SPEC.md */

@font-face{
  font-family:"Yango Headline";
  src:url("assets/fonts/YangoHeadline-Black.woff2") format("woff2");
  font-weight:900; font-style:normal; font-display:swap;
  unicode-range:U+0000-04FF, U+2000-206F, U+20A0-20BF, U+2190-21FF, U+2200-22FF;
}
@font-face{
  font-family:"Yango Headline";
  src:url("assets/fonts/yango-headline-hebrew.woff2") format("woff2");
  font-weight:900; font-style:normal; font-display:swap;
  unicode-range:U+0590-05FF, U+FB1D-FB4F;
}
@font-face{ font-family:"Yango Text"; src:url("assets/fonts/YangoText_Rg.woff2") format("woff2"); font-weight:400; font-display:swap; }
@font-face{ font-family:"Yango Text"; src:url("assets/fonts/YangoText_Md.woff2") format("woff2"); font-weight:500; font-display:swap; }
@font-face{ font-family:"Yango Text"; src:url("assets/fonts/YangoText_Bd.woff2") format("woff2"); font-weight:700; font-display:swap; }

:root{
  --yellow:#FFE033;
  --yellow-14:rgba(255,224,51,.14);
  --black:#0B0B0B;
  --white:#FFFFFF;
  --ink:#141414;
  --ink-2:#3d3d3d;
  --muted:#6b6b6b;
  --line:#ececec;
  --bg:#f6f6f4;
  --green:#1e9e57;
  --amber-ink:#8a6300;
  --amber-14:rgba(201,138,0,.14);
  --red:#c0392b;
  --red-06:rgba(192,57,43,.06);

  --radius:16px;
  --radius-sm:12px;
  --radius-xs:8px;
  --sh1:0 1px 2px rgba(11,11,11,.04), 0 4px 12px rgba(11,11,11,.06);
  --sh2:0 4px 8px rgba(11,11,11,.06), 0 16px 32px rgba(11,11,11,.10);

  --wrap:1200px;
  --pad:40px;
  --t-fast:150ms;
  --t:200ms;
  --t-slow:300ms;
  --ease:cubic-bezier(.16,1,.3,1);

  --topbar-h:72px;
  --chips-h:52px;

  --font-head:"Yango Headline","Arial Black",system-ui,sans-serif;
  --font-text:"Yango Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:132px}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} }

body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--font-text); font-size:16px; line-height:1.63;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block}
button{font:inherit; color:inherit}
a{color:inherit}

.wrap{max-width:var(--wrap); margin-inline:auto; padding-inline:var(--pad)}

h1,h2,h3{font-family:var(--font-head); font-weight:900; word-spacing:.08em; margin:0}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3{letter-spacing:0; word-spacing:normal}

.skip{
  position:absolute; inset-inline-start:-9999px; top:8px; z-index:100;
  background:var(--yellow); color:var(--black); padding:10px 16px; border-radius:var(--radius-xs);
  font-weight:700; text-decoration:none;
}
.skip:focus{inset-inline-start:16px}

/* ---------- Topbar ---------- */
.topbar{position:sticky; top:0; z-index:50; background:var(--black); color:var(--white); transition:box-shadow var(--t) var(--ease)}
.topbar.is-stuck{box-shadow:0 4px 16px rgba(11,11,11,.24)}
.topbar__inner{height:var(--topbar-h); display:flex; align-items:center; justify-content:space-between; gap:16px}
.topbar__rule{height:5px; background:var(--yellow)}
.brand{display:flex; align-items:center; gap:14px; min-width:0}
.brand__logo{height:28px; width:auto; filter:invert(1)}
.brand__divider{width:1px; height:22px; background:rgba(255,255,255,.25)}
.brand__label{font-size:14px; font-weight:500; color:#d8d8d8; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.langs{position:relative; display:flex; background:rgba(255,255,255,.08); padding:4px; border-radius:999px}
.langs::before{
  content:""; position:absolute; top:4px; bottom:4px; inset-inline-start:4px; width:calc(50% - 4px);
  background:var(--yellow); border-radius:999px; transition:transform var(--t) var(--ease);
}
.langs[data-active="he"]::before{transform:translateX(100%)}
[dir="rtl"] .langs[data-active="he"]::before{transform:translateX(-100%)}
.lang{
  position:relative; z-index:1; appearance:none; border:0; background:transparent; color:rgba(255,255,255,.64);
  min-height:36px; min-width:56px; padding:6px 16px; border-radius:999px; cursor:pointer;
  font-weight:700; font-size:14px; text-align:center;
  transition:color var(--t) var(--ease);
}
.lang:hover{color:var(--white)}
.lang.is-active{color:var(--black)}
.lang:focus-visible{outline:2px solid var(--yellow); outline-offset:2px}

/* ---------- TOC chips (desktop) ---------- */
.chips{position:sticky; top:calc(var(--topbar-h) + 5px); z-index:40; background:var(--white); border-bottom:1px solid var(--line)}
.chips::before,.chips::after{content:""; position:absolute; top:0; bottom:1px; width:48px; pointer-events:none; opacity:0; transition:opacity var(--t) var(--ease)}
.chips::before{left:0; background:linear-gradient(to right, var(--white), rgba(255,255,255,0))}
.chips::after{right:0; background:linear-gradient(to left, var(--white), rgba(255,255,255,0))}
.chips.has-start::before{opacity:1}
.chips.has-end::after{opacity:1}
[dir="rtl"] .chips::before{left:auto; right:0; background:linear-gradient(to left, var(--white), rgba(255,255,255,0))}
[dir="rtl"] .chips::after{right:auto; left:0; background:linear-gradient(to right, var(--white), rgba(255,255,255,0))}
.chips__inner{height:var(--chips-h); display:flex; align-items:center; gap:8px; overflow-x:auto; scrollbar-width:none}
.chips__inner::-webkit-scrollbar{display:none}
.chip{
  flex:0 0 auto; text-decoration:none; white-space:nowrap; color:var(--muted);
  background:transparent; border:1px solid transparent; padding:8px 16px; border-radius:999px;
  font-size:14px; font-weight:500;
  transition:background var(--t) var(--ease), color var(--t) var(--ease);
}
.chip:hover{background:var(--bg); color:var(--ink)}
.chip.is-current{background:var(--black); color:var(--yellow)}
.chip:focus-visible{outline:2px solid var(--black); outline-offset:2px}

/* ---------- Sections ---------- */
section{padding-block:96px}
section + section{padding-top:0}
.sec-head{margin-bottom:32px}
.sec-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:500; letter-spacing:.10em; text-transform:uppercase;
  color:var(--muted); margin:0 0 12px;
}
.sec-kicker::before{content:""; width:48px; height:4px; background:var(--yellow); border-radius:2px}
.sec-title{font-size:clamp(28px,3.6vw,48px); line-height:1.13; letter-spacing:-.01em}

/* ---------- Hero ---------- */
.hero{background:var(--black); color:var(--white); padding-block:clamp(48px,7vw,96px)}
.hero__meta{
  display:inline-flex; align-items:center; gap:12px; margin:0 0 16px;
  font-size:14px; color:rgba(255,255,255,.62);
}
.hero__meta::before{content:""; width:48px; height:4px; background:var(--yellow); border-radius:2px}
.hero__title{font-size:clamp(40px,7vw,72px); line-height:1.06; letter-spacing:-.02em; max-width:14ch; margin:0 0 24px}
.hero__title em{font-style:normal; color:var(--yellow)}
.hero__sub{font-size:clamp(18px,1.7vw,20px); line-height:1.5; color:rgba(255,255,255,.78); max-width:56ch; margin:0}

/* ---------- Stats ---------- */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:24px}
.stat{
  background:var(--white); border-radius:var(--radius); padding:32px; box-shadow:var(--sh1);
  border-inline-start:4px solid var(--black);
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
@media (hover:hover){ .stat:hover{transform:translateY(-2px); box-shadow:var(--sh2)} }
.stat__label{
  margin:0 0 10px; font-size:13px; line-height:18px; font-weight:500;
  letter-spacing:.08em; text-transform:uppercase; color:var(--muted);
}
.stat__num{font-family:var(--font-head); word-spacing:.12em; font-size:clamp(40px,4.4vw,64px); line-height:1; font-variant-numeric:tabular-nums; margin:0 0 8px}
.stat__txt{margin:0; font-size:14px; line-height:1.43; color:var(--muted)}
.callout{
  margin-top:24px; background:var(--black); color:var(--white); border-radius:var(--radius);
  padding:32px; font-size:18px; line-height:1.56; border-inline-start:4px solid var(--yellow);
}

/* ---------- Hypothesis ---------- */
.hyp{
  background:var(--white); border-radius:var(--radius); box-shadow:var(--sh1);
  padding:32px 40px; margin-bottom:32px; scroll-margin-top:132px;
  transition:box-shadow var(--t) var(--ease);
}
@media (hover:hover){ .hyp:hover{box-shadow:var(--sh2)} }
.hyp__head{display:flex; gap:16px; align-items:center; margin-bottom:16px}
.hyp__num{
  flex:0 0 auto; width:48px; height:48px; border-radius:var(--radius-xs);
  background:var(--black); color:var(--yellow);
  font-weight:700; font-size:20px; font-variant-numeric:tabular-nums;
  display:grid; place-items:center;
}
.hyp__title{font-size:clamp(22px,2.4vw,32px); line-height:1.19; letter-spacing:-.01em}
.links{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px}
.linkbadge{
  display:inline-flex; align-items:center; gap:8px; text-decoration:none;
  background:var(--bg); border:1px solid var(--line); border-radius:999px;
  padding:7px 14px; font-size:13px; color:var(--muted);
  transition:background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.linkbadge:hover{background:var(--line); border-color:#e0e0e0; color:var(--ink)}
.linkbadge:focus-visible{outline:2px solid var(--black); outline-offset:2px}
.linkbadge svg{width:12px; height:12px; fill:currentColor; flex:0 0 auto; transition:transform var(--t-fast) var(--ease)}
.linkbadge:hover svg{transform:translateX(2px)}
[dir="rtl"] .linkbadge svg{transform:scaleX(-1)}
[dir="rtl"] .linkbadge:hover svg{transform:scaleX(-1) translateX(2px)}
.linkbadge--back svg{transform:scaleX(-1)}
.linkbadge--back:hover svg{transform:scaleX(-1) translateX(2px)}
[dir="rtl"] .linkbadge--back svg{transform:scaleX(1)}
[dir="rtl"] .linkbadge--back:hover svg{transform:scaleX(1) translateX(2px)}
.tag{
  display:inline-block; background:var(--yellow-14); border:1px solid rgba(255,224,51,.5);
  border-radius:999px; padding:7px 14px; font-size:13px; color:var(--ink);
}
.hyp__promise{
  margin:0 0 24px; background:var(--yellow); color:var(--black);
  border-radius:var(--radius-xs); padding:12px 20px; font-size:clamp(18px,1.9vw,24px);
  font-weight:500; line-height:1.33;
}
.hyp__body > p{margin:0 0 16px; color:var(--ink)}
.hyp__body > p:last-child{margin-bottom:0}
.hyp h4{
  font-size:14px; line-height:20px; font-weight:500; letter-spacing:.04em; text-transform:uppercase;
  color:var(--muted); margin:24px 0 12px; font-family:var(--font-text);
}

.list{margin:0; padding:0; list-style:none}
.list li{position:relative; padding-inline-start:20px; margin-bottom:8px; color:var(--ink)}
.list li::before{content:""; position:absolute; inset-inline-start:0; top:12px; width:8px; height:2px; background:var(--yellow); border-radius:1px}
.list li b{font-weight:700}

.stepsbox{background:var(--bg); border-radius:var(--radius-sm); padding:24px; margin-top:24px}
.stepsbox h4{margin-top:0}
.steps{margin:0; padding:0; list-style:none; counter-reset:s}
.steps li{
  counter-increment:s; position:relative; padding-inline-start:44px; padding-bottom:16px; color:var(--ink);
}
.steps li:last-child{padding-bottom:0}
.steps li::before{
  content:counter(s); position:absolute; inset-inline-start:0; top:-1px;
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--black);
  font-size:13px; font-weight:700; display:grid; place-items:center; background:var(--bg);
}
.steps li::after{
  content:""; position:absolute; inset-inline-start:13.5px; top:29px; bottom:2px;
  width:1.5px; background:var(--line);
}
.steps li:last-child::after{display:none}

.risk{
  margin-top:24px; background:var(--red-06); border-inline-start:3px solid var(--red);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:20px; color:var(--ink); font-size:16px;
}
.risk p{margin:0}
.hyp .risk__t{
  color:var(--red); text-transform:uppercase; font-size:14px; line-height:20px;
  letter-spacing:.04em; margin:0 0 8px;
}
[dir="rtl"] .risk{border-radius:var(--radius-sm) 0 0 var(--radius-sm)}
.risk b{font-weight:700}
.note{
  margin:20px 0; background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-sm);
  padding:20px; font-size:16px; color:var(--muted);
}
.note b{color:var(--ink)}

/* effect chips */
.effects{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.echip{
  background:var(--bg); border:1px solid var(--line); border-radius:999px; padding:10px 16px;
  display:inline-flex; align-items:baseline; gap:8px;
}
.echip b{color:var(--green); font-size:18px; font-weight:700; font-variant-numeric:tabular-nums}
.echip span{font-size:14px; color:var(--muted)}

/* ---------- Table ---------- */
.tablewrap{border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; margin-top:8px}
table{border-collapse:collapse; width:100%; font-size:16px; font-variant-numeric:tabular-nums}
thead th{
  background:var(--bg); color:var(--muted); font-weight:500; font-size:14px;
  padding:12px 16px; text-align:end; white-space:nowrap;
}
thead th:first-child{text-align:start}
tbody th{font-weight:500; text-align:start; padding:12px 16px; border-top:1px solid var(--line)}
tbody td{padding:12px 16px; border-top:1px solid var(--line); text-align:end; white-space:nowrap}
tbody tr.is-peak{background:var(--yellow-14)}
tbody tr.is-peak th{box-shadow:inset 3px 0 0 var(--yellow)}
[dir="rtl"] tbody tr.is-peak th{box-shadow:inset -3px 0 0 var(--yellow)}
tbody tr.is-top th, tbody tr.is-top td{font-weight:700}
@media (hover:hover){ tbody tr:hover{background:rgba(11,11,11,.03)} tbody tr.is-peak:hover{background:rgba(255,224,51,.22)} }
.tablenote{margin:12px 0 0; font-size:14px; color:var(--muted)}
.mtable{display:none}
.mrow{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-sm); padding:16px; margin-bottom:8px}
.mrow.is-peak{border-top:3px solid var(--yellow)}
.mrow.is-top .mrow__t, .mrow.is-top .mrow__l span{font-weight:700}
.mrow__t{font-weight:500; margin:0 0 8px}
.mrow__l{display:flex; justify-content:space-between; gap:16px; font-size:14px; padding:3px 0}
.mrow__l span:first-child{color:var(--muted)}
.mrow__l span:last-child{font-variant-numeric:tabular-nums}

/* ---------- Hub diagram ---------- */
.hub{margin-top:32px; display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:center}
.hubcol{display:grid; gap:24px}
.hubnode{
  position:relative;
  background:var(--white); border:1.5px solid var(--black); border-radius:var(--radius-sm);
  padding:16px 18px; min-height:88px; display:flex; flex-direction:column; justify-content:center;
}
.hubcol:first-child .hubnode::after,
.hubcol:last-child .hubnode::after{
  content:""; position:absolute; top:50%; width:24px; height:1.5px; background:var(--line);
}
.hubcol:first-child .hubnode::after{inset-inline-end:-24px}
.hubcol:last-child .hubnode::after{inset-inline-start:-24px}
.hubnode b{display:block; font-size:15px; font-weight:500}
.hubnode span{font-size:13px; color:var(--muted)}
.hubcenter{
  width:130px; height:130px; border-radius:50%; background:var(--black); color:var(--yellow);
  display:grid; place-items:center; text-align:center; font-size:15px; font-weight:500; padding:12px;
}
.hubline{display:block}

/* ---------- Queue ---------- */
.queue{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.qcard{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:20px;
  box-shadow:var(--sh1);
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
@media (hover:hover){ .qcard:hover{transform:translateY(-2px); box-shadow:var(--sh2); border-color:var(--black)} }
.qcard__n{
  width:32px; height:32px; border-radius:50%; border:1.5px solid var(--black);
  display:grid; place-items:center; font-size:13px; font-weight:700; font-variant-numeric:tabular-nums;
}
.qbadge{
  display:inline-block; margin-bottom:10px; border-radius:999px; padding:4px 10px;
  font-size:11px; letter-spacing:.04em; text-transform:uppercase; font-weight:500;
}
.qbadge.is-warn{background:var(--amber-14); color:var(--amber-ink)}
.qbadge.is-muted{background:var(--bg); color:var(--muted); border:1px solid var(--line)}
.qcard__t{font-family:var(--font-text); font-size:16px; font-weight:500; line-height:1.4; margin:12px 0 8px}
.qcard__d{margin:0; font-size:14px; line-height:1.5; color:var(--muted)}

.qlead{max-width:70ch; margin:-16px 0 24px; color:var(--muted)}

/* ---------- Panels ---------- */
.panel{background:var(--black); color:var(--white); border-radius:var(--radius); padding:40px}
.panel .sec-title{color:var(--white); font-size:clamp(26px,3vw,40px)}
.panel > p{color:rgba(255,255,255,.78); font-size:18px; line-height:1.56; margin:16px 0 0; max-width:70ch}
.needs{list-style:none; margin:24px 0 0; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
.needs li{
  display:flex; gap:14px; align-items:flex-start;
  background:rgba(255,255,255,.06); border-radius:var(--radius-sm); padding:16px 18px;
  font-size:15px; color:rgba(255,255,255,.86);
}
.needs b{
  flex:0 0 auto; width:26px; height:26px; border-radius:var(--radius-xs); background:var(--yellow);
  color:var(--black); font-size:13px; display:grid; place-items:center;
}

/* ---------- Footer ---------- */
.footer{background:var(--black); color:var(--white); border-top:5px solid var(--yellow)}
.footer__inner{padding-block:64px; display:flex; flex-direction:column; gap:16px; align-items:flex-start}
.footer__note{margin:0; font-size:16px; font-weight:500}
.footer__meta{margin:0; font-size:14px; color:rgba(255,255,255,.56)}

/* ---------- FAB + sheet (mobile TOC) ---------- */
.fab{
  display:none; position:fixed; inset-block-end:24px; inset-inline-end:16px; z-index:44;
  width:56px; height:56px; border-radius:50%; border:0; background:var(--black); color:var(--yellow);
  box-shadow:var(--sh2); cursor:pointer; place-items:center;
}
.fab svg{width:24px; height:24px; fill:currentColor}
.fab:focus-visible{outline:2px solid var(--yellow); outline-offset:3px}
.sheet{position:fixed; inset:0; z-index:60; display:none}
.sheet.is-open{display:block}
.sheet__ov{position:absolute; inset:0; background:rgba(11,11,11,.4); opacity:0; transition:opacity var(--t-fast) var(--ease)}
.sheet.is-open .sheet__ov{opacity:1}
.sheet__panel{
  position:absolute; inset-inline:0; bottom:0; background:var(--white);
  border-radius:16px 16px 0 0; padding:8px 0 max(16px, env(safe-area-inset-bottom));
  transform:translateY(100%); transition:transform 250ms var(--ease); max-height:76vh; overflow:auto;
}
.sheet.is-open .sheet__panel{transform:none}
.sheet__grab{width:40px; height:4px; border-radius:2px; background:var(--line); margin:8px auto 4px}
.sheet a{
  display:flex; align-items:center; gap:12px; padding:14px 20px; text-decoration:none;
  font-size:16px; border-bottom:1px solid var(--line); min-height:44px;
}
.sheet a:last-child{border-bottom:0}
.sheet a:hover{background:var(--bg)}
.sheet a:focus-visible{outline:2px solid var(--black); outline-offset:-2px}
.sheet a::before{content:""; width:8px; height:8px; border-radius:50%; background:transparent}
.sheet a.is-current::before{background:var(--yellow)}

/* ---------- To top ---------- */
.totop{
  position:fixed; inset-block-end:24px; inset-inline-end:24px; z-index:45;
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:var(--black); color:var(--white); display:grid; place-items:center;
  opacity:0; pointer-events:none; transition:opacity var(--t) var(--ease), background var(--t-fast) var(--ease);
}
.totop svg{width:22px; height:22px; fill:currentColor}
.totop.is-on{opacity:1; pointer-events:auto}
.totop:hover{background:var(--yellow); color:var(--black)}
.totop:focus-visible{outline:2px solid var(--yellow); outline-offset:3px}

/* ---------- Reveal ---------- */
.reveal{opacity:0; transform:translateY(16px); transition:opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease)}
.reveal.is-in{opacity:1; transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none}
  *{animation-duration:.01ms !important; transition-duration:.01ms !important}
}

/* ---------- RTL / Hebrew type ---------- */
[dir="rtl"] .hero__title{font-size:clamp(43px,7.5vw,78px); line-height:1.12}
[dir="rtl"] .sec-title{font-size:clamp(30px,3.9vw,52px); line-height:1.2}
[dir="rtl"] .hyp__title{font-size:clamp(24px,2.6vw,35px); line-height:1.26}

/* ---------- Responsive ---------- */
@media (max-width:1100px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .queue{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  :root{--pad:24px}
  .hub{grid-template-columns:1fr; justify-items:center; gap:12px}
  .hubcol{width:100%}
  .hubline{display:none}
  .hubcol .hubnode::after{display:none}
  .needs{grid-template-columns:1fr}
}
@media (max-width:767px){
  :root{--pad:16px; --topbar-h:60px}
  section{padding-block:56px}
  .sec-head{margin-bottom:20px}
  .brand__logo{height:22px}
  .brand__label,.brand__divider{display:none}
  .chips{display:none}
  .fab{display:grid}
  .totop{display:none}
  .stats{grid-template-columns:1fr; gap:16px}
  .stat{padding:20px}
  .callout{padding:20px; font-size:16px}
  .queue{grid-template-columns:1fr}
  .qcard{padding:16px}
  .hyp{padding:20px; margin-bottom:24px; scroll-margin-top:76px}
  .hyp__head{flex-direction:column; align-items:flex-start; gap:12px}
  .hyp__num{font-size:18px}
  .hyp h4{font-size:13px; line-height:18px; letter-spacing:.03em}
  .hyp__promise{padding:10px 16px}
  .stepsbox{padding:16px}
  .steps li{padding-inline-start:40px; padding-bottom:12px}
  .steps li::after{display:none}
  .panel{padding:24px}
  .footer__inner{padding-block:40px}
  .tablewrap{display:none}
  .mtable{display:block}
  html{scroll-padding-top:76px}
}

/* ---------- Print ---------- */
@media print{
  .topbar,.chips,.totop,.fab,.sheet,.skip{display:none !important}
  body{background:#fff}
  .hyp,.stat,.qcard{box-shadow:none; border:1px solid #ddd; break-inside:avoid}
  .hero,.panel,.footer,.callout{background:#fff !important; color:#000 !important; border:1px solid #ddd}
  .hero__sub,.panel > p,.footer__meta{color:#333 !important}
  .brand__logo{filter:none}
  section{padding-block:24px}
}
