:root {
  --bg: #0a0c0b;
  --bg-2: #121614;
  --bg-3: #1a201c;
  --line: rgba(212, 175, 106, 0.22);
  --hair: rgba(243, 239, 230, 0.09);
  --brass: #d4af6a;
  --brass-2: #edd9a3;
  --copper: #c47a4a;
  --paper: #f4f0e6;
  --muted: #a3aaa0;
  --dim: #6f776e;
  --ok: #7dbe90;
  --warn: #d9b25c;
  --font-d: "Manrope", sans-serif;
  --font-b: "Manrope", sans-serif;
  --font-m: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
  --nav-h: 68px;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(0,0,0,.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
html, body { background: var(--bg); color: var(--paper); }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
body:not(.ready) [data-i]:empty { visibility: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; touch-action: manipulation; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 80; opacity: .03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.blueprint { display: none; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 1; }

.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(10,12,11,.78);
  border-bottom: 1px solid var(--hair);
}
.nav-in { display: flex; align-items: center; gap: 22px; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 2; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .12em; font-size: 13px; }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; gap: 18px; margin-left: auto; font-size: 13px; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px;
  background: var(--brass); color: #16130c; font-weight: 800; font-size: 12.5px;
}
.lang { display: flex; gap: 3px; padding: 3px; border: 1px solid var(--hair); border-radius: 999px; background: rgba(255,255,255,.03); }
.lang button { width: 34px; height: 26px; border-radius: 999px; font-size: 11px; font-weight: 800; color: var(--muted); }
.lang button.on { background: var(--bg-3); color: var(--paper); }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--hair); border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.burger span {
  display: block; width: 16px; height: 1.5px; background: var(--paper); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-cta { display: none; }
.nav-scrim {
  display: none; position: fixed; inset: 0; z-index: 1;
  background: rgba(6,8,7,.62); backdrop-filter: blur(6px);
}

.hero { padding: 64px 0 72px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 18px;
}
.kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 5px rgba(212,175,106,.16); }
.hero h1 {
  font-weight: 800; font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.08; letter-spacing: -0.035em; max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--brass-2); }
.lede { margin-top: 20px; max-width: 58ch; color: var(--muted); font-size: 17.5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 800; font-size: 14px;
  border: 1px solid transparent;
}
.btn-primary { background: var(--paper); color: #111; }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: var(--hair); color: var(--paper); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-2); }

.ask-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ask-cell {
  padding: 20px 18px;
  border: 1px solid var(--hair);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(212,175,106,.1), rgba(212,175,106,.02));
}
.ask-cell span { display: block; font-family: var(--font-m); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.ask-cell b { font-size: 24px; font-weight: 800; letter-spacing: -.03em; display: block; line-height: 1.15; }
.ask-cell small { color: var(--muted); font-size: 12.5px; }

.hero-grid { margin-top: 22px; display: grid; grid-template-columns: 1.35fr .75fr; gap: 14px; }
.stack { display: grid; gap: 8px; }
.layer {
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 4px 10px; align-items: start;
  padding: 13px 14px; border: 1px solid var(--hair); border-radius: 14px; background: var(--bg-2);
}
.layer:hover { border-color: var(--line); }
.layer .idx, .flow .idx { font-family: var(--font-m); font-size: 11px; color: var(--brass); padding-top: 2px; }
.layer .idx { grid-row: 1 / span 2; }
.layer b { font-size: 14px; font-weight: 700; display: block; line-height: 1.35; }
.layer em { font-style: normal; color: var(--muted); font-size: 12.5px; display: block; grid-column: 2; }

section.block { padding: 80px 0; border-top: 1px solid var(--hair); }
#market, #ask, #team, #ai { background: #0e110f; }
.sec-k { font-family: var(--font-m); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 12px; }
.sec-h { font-weight: 800; font-size: clamp(26px, 3.3vw, 40px); letter-spacing: -.03em; line-height: 1.16; max-width: 20ch; }
.sec-p { margin-top: 12px; color: var(--muted); max-width: 60ch; }

.cards-4, .cards-3, .cards-2 { display: grid; gap: 12px; margin-top: 32px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-2);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 20px;
  min-height: 100%;
}
.card:hover { border-color: var(--line); }
.card h3 { font-size: 17px; margin: 10px 0 8px; letter-spacing: -.02em; line-height: 1.3; }
.card p { color: var(--muted); font-size: 14px; }
.ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(212,175,106,.12); color: var(--brass-2); font-size: 12px; font-family: var(--font-m);
}

/* TAM SAM SOM */
.market-hero {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.scope {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid var(--hair);
  background: var(--bg-2);
  overflow: hidden;
}
.scope::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.scope.tam::before { background: rgba(243,239,230,.35); }
.scope.sam::before { background: var(--brass); }
.scope.som::before { background: var(--copper); }
.scope-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.scope-top span { font-family: var(--font-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-2); font-weight: 700; }
.scope-top small { color: var(--dim); font-size: 12px; }
.scope > b { display: block; font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 14px; }
.bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.06); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 99px; background: var(--brass); }
.scope.tam .bar i { background: #efe6d2; }
.scope.sam .bar i { background: var(--brass); }
.scope.som .bar i { background: var(--copper); }
.scope p { margin-top: 12px; color: var(--muted); font-size: 13.5px; line-height: 1.45; }

.m-note { margin-top: 22px; color: var(--muted); font-size: 14.5px; }
.m-note h3 { color: var(--paper); font-size: 22px; margin-bottom: 8px; letter-spacing: -.02em; }
.m-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.m-kpis div { border: 1px solid var(--hair); border-radius: 14px; padding: 14px 16px; background: var(--bg-2); }
.m-kpis b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.m-kpis span { color: var(--dim); font-size: 12px; }

.table-wrap {
  margin-top: 24px; overflow: auto; border: 1px solid var(--hair); border-radius: 16px; background: var(--bg-2);
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; scrollbar-width: thin;
}
.matrix {
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; scrollbar-width: thin;
}
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--hair); vertical-align: top; line-height: 1.45; }
th { font-family: var(--font-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); background: #161b18; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
.fine { margin-top: 12px; color: var(--dim); font-size: 12.5px; }

.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 28px; }
.flow article {
  padding: 16px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--hair); position: relative;
}
.flow article::after {
  content: ""; position: absolute; right: -7px; top: 28px; width: 10px; height: 1px; background: var(--brass); z-index: 2;
}
.flow article:last-child::after { display: none; }
.flow h3 { font-size: 15px; margin: 8px 0 6px; }
.flow p { color: var(--muted); font-size: 13px; }

.funds { margin-top: 28px; }
.spend {
  display: flex; height: 18px; border-radius: 99px; overflow: hidden;
  border: 1px solid var(--hair); background: var(--bg-3);
}
.spend i { display: block; height: 100%; }
.s-a { background: var(--brass); }
.s-b { background: var(--copper); }
.s-c { background: #7d9a72; }
.s-d { background: #6d89a6; }
.s-e { background: #5c5750; }
.legend { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 16px; }
.legend li { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; list-style: none; font-size: 14px; }
.sw { width: 10px; height: 10px; border-radius: 3px; display: block; }
.legend b { font-variant-numeric: tabular-nums; color: var(--brass-2); font-size: 13px; }

.matrix { margin-top: 24px; overflow: auto; border-radius: 16px; border: 1px solid var(--hair); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #3d443f; }
.dot.y { background: var(--ok); box-shadow: 0 0 0 4px rgba(125,190,144,.12); }
.dot.p { background: var(--warn); }
.uz { color: var(--brass-2) !important; font-weight: 800; }

.faq { margin-top: 24px; display: grid; gap: 8px; }
details { border: 1px solid var(--hair); border-radius: 14px; background: var(--bg-2); padding: 2px 16px; }
details[open] { border-color: var(--line); }
summary { cursor: pointer; list-style: none; padding: 14px 0; font-weight: 700; font-size: 15px; line-height: 1.4; }
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); padding: 0 0 16px; font-size: 14.5px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
form { display: grid; gap: 10px; }
input, textarea, select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--hair); border-radius: 12px;
  padding: 12px 14px; color: var(--paper); outline: none;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--brass); }
.side-box { background: linear-gradient(180deg, rgba(212,175,106,.12), rgba(212,175,106,.03)); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.side-box h3 { font-size: 24px; margin-bottom: 10px; }
.side-box p { color: var(--muted); margin-bottom: 8px; }

footer { border-top: 1px solid var(--hair); padding: 28px 0 48px; color: var(--dim); font-size: 12.5px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.src { margin-top: 22px; color: var(--dim); font-size: 12px; columns: 2; gap: 24px; }
.src b { color: var(--muted); }
.tag { font-family: var(--font-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }

.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.roadmap article { padding: 18px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--hair); }
.roadmap h3 { margin: 8px 0; }
.roadmap ul { color: var(--muted); font-size: 13.5px; padding-left: 16px; display: grid; gap: 6px; }

.risk { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.risk article { padding: 16px 18px; border: 1px solid var(--hair); border-radius: 14px; background: var(--bg-2); }
.risk h3 { font-size: 15px; margin-bottom: 6px; }
.risk p { color: var(--muted); font-size: 13.5px; }

.ai-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 14px; margin-top: 28px; }
.ai-panel { background: var(--bg-2); border: 1px solid var(--hair); border-radius: 20px; padding: 18px; }
.ai-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.ai-tab { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--hair); font-size: 13px; font-weight: 700; color: var(--muted); }
.ai-tab.on { background: var(--brass); color: #16130c; border-color: transparent; }
.ai-pane.hidden { display: none; }
.ai-room {
  position: relative; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, rgba(10,12,11,.2), rgba(10,12,11,.6)),
    linear-gradient(135deg, #3a3228 0%, #6b5a48 38%, #c4b39a 39%, #d9cbb6 72%, #2a3330 73%, #1a221f 100%);
  border: 1px solid var(--hair);
}
.ai-cam, .ai-scan { position: absolute; left: 14px; right: 14px; z-index: 1; font-size: 13px; }
.ai-cam { bottom: 36px; color: var(--paper); font-weight: 700; }
.ai-scan { bottom: 14px; color: var(--brass-2); font-family: var(--font-m); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.ai-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ai-dims label { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--hair); border-radius: 12px; background: var(--bg-3); }
.ai-dims span { font-size: 11px; color: var(--dim); }
.ai-dims b { font-size: 20px; }
.ai-hint { margin-top: 12px; color: var(--muted); font-size: 13.5px; }
.ai-budget { display: flex; justify-content: space-between; align-items: center; margin: 14px 0 10px; padding: 12px 14px; border-radius: 12px; border: 1px dashed var(--line); }
.ai-budget span { color: var(--dim); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-m); }
.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ai-chips i { font-style: normal; font-size: 12px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--hair); color: var(--muted); }
.ai-chips i.on { border-color: var(--brass); color: var(--brass-2); background: rgba(212,175,106,.1); }
.ai-sub { color: var(--muted); font-size: 14px; margin: 8px 0 14px; }
.ai-products { display: grid; gap: 8px; }
.ai-sku { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--hair); border-radius: 12px; background: var(--bg-3); }
.ai-sku b { display: block; font-size: 14px; }
.ai-sku span { color: var(--muted); font-size: 12.5px; }
.ai-sku em { font-style: normal; color: var(--ok); font-size: 11px; font-weight: 700; }
.swatch { width: 48px; height: 48px; border-radius: 10px; }
.swatch.s1 { background: linear-gradient(135deg, #d8cfc4, #9a8b78); }
.swatch.s2 { background: #f2eee6; border: 1px solid var(--hair); }
.swatch.s3 { background: radial-gradient(circle at 30% 30%, #e8d08a, #8a6a32); }
.ai-cta { width: 100%; margin-top: 14px; }
.ai-panel h3 { font-size: 22px; letter-spacing: -.02em; margin-top: 8px; line-height: 1.25; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.person { background: var(--bg-2); border: 1px solid var(--hair); border-radius: 20px; padding: 24px 18px; text-align: center; }
.avatar {
  width: 128px; height: 128px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--line); background: #111;
}
.avatar img { width: 128px; height: 128px; object-fit: cover; object-position: center 18%; }
.avatar.advisor img { object-position: center 12%; }
.person .tag { display: inline-block; margin-bottom: 8px; }
.person h3 { font-size: 20px; line-height: 1.3; margin: 0 0 6px; }
.person p { color: var(--muted); font-size: 14px; }

.deck-bar {
  display: none; position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; background: rgba(16,20,18,.92); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; font-family: var(--font-m); font-size: 11px; color: var(--brass);
}
body.deck .deck-bar { display: flex; }
body.deck { overflow: hidden; }
body.deck main { height: calc(100dvh - var(--nav-h)); overflow-y: auto; scroll-snap-type: y mandatory; }
body.deck .hero, body.deck section.block { min-height: calc(100dvh - var(--nav-h)); scroll-snap-align: start; padding-top: 36px; padding-bottom: 36px; }

@media (max-width: 1100px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow article::after { display: none; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --nav-h: 58px; }
  .wrap, .nav-in { width: min(var(--max), calc(100% - 28px)); }
  .nav {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }
  .nav-in { gap: 8px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-cta {
    display: inline-flex; justify-content: center; margin-top: 8px; height: 48px; font-size: 14px;
  }
  .lang { margin-left: auto; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 8px);
    left: 14px; right: 14px;
    background: #161b18;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    z-index: 70;
    box-shadow: var(--shadow);
    max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px) - 24px);
    overflow: auto;
  }
  .nav-links.open a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 16px;
    color: var(--paper);
  }
  .nav-links.open a:active { background: var(--bg-3); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-scrim { display: block; }

  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: clamp(30px, 9.2vw, 46px); max-width: none; letter-spacing: -.04em; }
  .lede { font-size: 16px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { flex: 1 1 100%; min-height: 48px; }
  #deckToggle { display: none; }
  .ask-strip { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
  .ask-cell { padding: 14px 12px; }
  .ask-cell b { font-size: 18px; }
  .hero-grid, .cards-3, .cards-2, .market-hero, .contact, .risk, .ai-grid, .team, .legend { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .m-kpis { grid-template-columns: 1fr 1fr; }
  .src { columns: 1; }
  section.block { padding: 52px 0; }
  .sec-h { max-width: none; }
  .card { padding: 16px; }
  .table-wrap { margin-top: 20px; }
  table { min-width: 620px; font-size: 13px; }
  .matrix table { min-width: 540px; }
  th, td { padding: 11px 12px; }
  .ai-sku { grid-template-columns: 44px minmax(0, 1fr); }
  .ai-sku em { grid-column: 2; justify-self: start; }
  .ai-tabs { flex-wrap: wrap; }
  .ai-tab { min-height: 40px; }
  .ai-cta { min-height: 48px; }
  .ai-budget { flex-wrap: wrap; gap: 6px; }
  .person { padding: 20px 16px; }
  .avatar, .avatar img { width: 112px; height: 112px; }
  summary { padding: 16px 0; font-size: 15.5px; }
  details { padding: 2px 14px; }
  .btn { min-height: 46px; }
  input, textarea, select { font-size: 16px; min-height: 48px; }
  textarea { min-height: 120px; }
  .foot { flex-direction: column; gap: 10px; }
  footer { padding: 24px 0 max(36px, env(safe-area-inset-bottom, 16px)); }
  .deck-bar { display: none !important; }
  .spend { height: 14px; }
}

@media (max-width: 640px) {
  .cards-4, .cards-3, .flow, .roadmap { grid-template-columns: 1fr; }
  .m-kpis { grid-template-columns: 1fr 1fr; }
  .ai-dims { grid-template-columns: 1fr; }
  .scope > b { font-size: 32px; }
  .kicker { font-size: 10px; }
}

@media (max-width: 420px) {
  .m-kpis { grid-template-columns: 1fr; }
  .ask-cell b { font-size: 20px; }
  .lang button { width: 32px; }
}

@media print {
  .nav, .grain, .deck-bar, .hero-actions, form { display: none !important; }
  body { background: #fff; color: #111; }
}
