/* ==========================================================================
   Vizora Global LLP — site design system
   Static, dependency-free. One stylesheet for the whole site.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Ground */
  --paper:        #ffffff;
  --bone:         #f7f6f4;
  --bone-2:       #efedea;
  --line:         #e2dfda;
  --line-strong:  #cfcac2;

  /* Ink */
  --ink:          #14161a;
  --ink-2:        #3d424b;
  --ink-3:        #6b7280;
  --ink-inv:      #f7f6f4;

  /* Night (dark sections) */
  --night:        #0c0e12;
  --night-2:      #14171d;
  --night-3:      #1d2129;
  --night-line:   #272c36;

  /* Brand — ember */
  --ember:        #e2561d;
  --ember-2:      #f97316;
  --ember-soft:   #fdece3;
  --ember-ring:   rgba(226, 86, 29, .28);

  /* Signal (status semantics, used by the monitoring diagrams) */
  --ok:           #17795e;
  --ok-soft:      #e4f3ee;
  --warn:         #a86400;
  --warn-soft:    #fdf1dc;
  --alarm:        #c0331f;
  --alarm-soft:   #fbe9e6;

  /* Type */
  --display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, monospace;

  /* Measure */
  --wrap: 1180px;
  --gut:  24px;
  --r:    14px;
  --r-sm: 9px;

  --shadow-1: 0 1px 2px rgba(12,14,18,.05), 0 1px 3px rgba(12,14,18,.06);
  --shadow-2: 0 4px 12px rgba(12,14,18,.07), 0 12px 28px rgba(12,14,18,.07);
  --shadow-3: 0 18px 50px rgba(12,14,18,.14);
}

/* ---------- 2. Reset / base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ember); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -.021em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.05rem, 1.35rem + 2.95vw, 3.6rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.55rem, 1.16rem + 1.6vw, 2.35rem); letter-spacing: -.026em; }
h3 { font-size: clamp(1.12rem, 1.0rem + .48vw, 1.32rem); }
h4 { font-size: 1.02rem; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- 3. Layout ---------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 780px; margin-inline: auto; padding-inline: var(--gut); }

section { padding-block: clamp(56px, 4vw + 36px, 104px); }
.sec-tight { padding-block: clamp(40px, 3vw + 24px, 68px); }

.night { background: var(--night); color: #b9c0cc; }
.night h1, .night h2, .night h3, .night h4 { color: #fff; }
.night a { color: #ffb387; }
.bone { background: var(--bone); }

.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* ---------- 4. Eyebrow / section head ------------------------------------ */
.eyebrow {
  font-family: var(--mono);
  font-size:0.78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--ember); flex: none;
}
.night .eyebrow { color: var(--ember-2); }
.night .eyebrow::before { background: var(--ember-2); }

.sec-head { max-width: 680px; margin-bottom: 42px; }
.sec-head p { font-size: 1.04rem; color: var(--ink-3); margin: 0; }
.night .sec-head p { color: #8e97a6; }

.lede { font-size: clamp(1.02rem, .97rem + .32vw, 1.16rem); color: var(--ink-2); }
.night .lede { color: #b9c0cc; }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 560; font-size: .95rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  text-decoration: none !important; line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 6px 18px var(--ember-ring); }
.btn-primary:hover { background: #cc4b16; box-shadow: 0 10px 26px var(--ember-ring); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bone); }
.night .btn-ghost { color: #fff; border-color: #39404d; }
.night .btn-ghost:hover { background: var(--night-3); border-color: #5a6373; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.arrow { transition: transform .16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- 6. Header / nav --------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in {
  max-width: var(--wrap); margin-inline: auto; padding: 0 var(--gut);
  height: 66px; display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand img { height: 33px; width: auto; }
.brand-txt { font-family: var(--display); font-weight: 650; color: var(--ink); font-size: 1.02rem; letter-spacing: -.02em; }
.brand-txt span { display: block; font-family: var(--mono); font-size:0.78rem; letter-spacing: .17em; color: var(--ink-3); text-transform: uppercase; font-weight: 400; margin-top: 1px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-2); font-size: .935rem; font-weight: 500;
  padding: 9px 13px; border-radius: 8px; text-decoration: none;
}
.nav a:hover { background: var(--bone-2); color: var(--ink); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--ink); background: var(--bone-2); }
.nav .btn { margin-left: 8px; padding: 10px 18px; font-size: .9rem; }

.burger {
  margin-left: auto; display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: 9px; width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center;
}
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--ink);
}
.burger span::before { top: -5.5px; } .burger span::after  { top: 5.5px; }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 66px 0 auto; background: var(--paper);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    gap: 0; padding: 10px var(--gut) 20px; box-shadow: var(--shadow-2);
  }
  .nav:not(.open) { display: none; }
  .nav a { padding: 13px 4px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 14px 0 0; justify-content: center; border-bottom: 0; }
}

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: var(--night); color: #b9c0cc;
  padding-block: clamp(64px, 5vw + 44px, 118px);
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero .lede { max-width: 56ch; font-size: clamp(1.04rem, .98rem + .38vw, 1.2rem); color: #a9b2c0; }

.hero > * { position: relative; z-index: 2; }

.hero-split{
  display:grid;
  grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr);
  gap: clamp(28px, 4vw, 64px);
  align-items:center;
}
.hero-copy h1{
  max-width:16ch;
  font-size:clamp(2.1rem, 1.2rem + 3.4vw, 3.75rem);
  letter-spacing:-.035em;
  line-height:1.06;
  text-wrap:balance;
}
.hero-copy .lede{ max-width:52ch; }

.hero-viz{ margin:0; position:relative; }
.hero-viz svg{ width:100%; height:auto; display:block; overflow:visible; }
.hero-viz figcaption{
  font-family:var(--mono); font-size:0.78rem; letter-spacing:.11em; text-transform:uppercase;
  color:#8a93a2; text-align:center; margin-top:14px;
}

@media (max-width: 980px){
  .hero-split{ grid-template-columns:1fr; gap:34px; }
  .hero-copy h1{ max-width:18ch; }
  .hero-viz{ max-width:520px; margin-inline:auto; }
}
@media (max-width: 560px){
  .hero-viz figcaption{ font-size:0.78rem; }
}

/* ---------- 8. Cards ----------------------------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card-lift:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card .num {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .12em;
  color: var(--ember); display: block; margin-bottom: 12px;
}
.night .card { background: var(--night-2); border-color: var(--night-line); }
.night .card-lift:hover { border-color: #39404d; }

.ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--ember-soft); color: var(--ember);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ico svg { width: 21px; height: 21px; }
.night .ico { background: rgba(226,86,29,.14); color: var(--ember-2); }

/* Feature card with a left rule */
.card-rule { border-left: 2px solid var(--ember); border-radius: 0 var(--r) var(--r) 0; }

/* ---------- 9. Stat strip ------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--night-line); border: 1px solid var(--night-line); border-radius: var(--r); overflow: hidden; }
.stats > div { background: var(--night-2); padding: 22px 20px; }
.stats .k { font-family: var(--display); font-size: clamp(1.4rem,1.1rem+1vw,1.95rem); color: #fff; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.stats .l { font-family: var(--mono); font-size:0.78rem; letter-spacing: .12em; text-transform: uppercase; color: #7d8695; margin-top: 7px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- 10. Tables (compliance data) -------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); }
table.data { width: 100%; border-collapse: collapse; font-size: .915rem; min-width: 620px; }
table.data caption { text-align: left; padding: 16px 18px 0; color: var(--ink-3); font-size: .86rem; }
table.data th, table.data td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th {
  background: var(--bone); font-family: var(--mono); font-weight: 500;
  font-size:0.78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  position: sticky; top: 0;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--bone); }
table.data td.n { font-family: var(--mono); color: var(--ink-3); font-size: .85rem; white-space: nowrap; }
table.data td strong { color: var(--ink); font-weight: 560; }

/* ---------- 11. Pills / badges ------------------------------------------ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.pill-ok    { background: var(--ok-soft);    color: var(--ok); }
.pill-warn  { background: var(--warn-soft);  color: var(--warn); }
.pill-alarm { background: var(--alarm-soft); color: var(--alarm); }
.pill-ember { background: var(--ember-soft); color: var(--ember); }
.pill-line  { background: transparent; color: var(--ink-3); border: 1px solid var(--line-strong); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ---------- 12. Steps ---------------------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 2px; }
.step {
  position: relative; padding: 24px 26px 24px 74px;
  background: var(--paper); border: 1px solid var(--line);
}
.step:first-child { border-radius: var(--r) var(--r) 0 0; }
.step:last-child  { border-radius: 0 0 var(--r) var(--r); }
.step + .step { border-top: 0; }
.step::before {
  counter-increment: s; content: counter(s,decimal-leading-zero);
  position: absolute; left: 26px; top: 24px;
  font-family: var(--mono); font-size: .8rem; color: var(--ember);
  border: 1px solid var(--ember-ring); border-radius: 8px;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: .3em; }
.step p { margin: 0; color: var(--ink-3); font-size: .95rem; }

/* ---------- 13. Notice / callout ---------------------------------------- */
.notice {
  border-left: 3px solid var(--ember); background: var(--ember-soft);
  padding: 18px 22px; border-radius: 0 var(--r-sm) var(--r-sm) 0; color: #7a3512;
  font-size: .945rem;
}
.notice strong { color: #5f2a0e; }
.notice-plain { border-left-color: var(--line-strong); background: var(--bone); color: var(--ink-2); }
.notice-plain strong { color: var(--ink); }
.night .notice { background: rgba(226,86,29,.1); color: #f0c3aa; }
.night .notice strong { color: #ffd9c6; }

/* ---------- 14. FAQ ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 19px 40px 19px 0; position: relative;
  font-family: var(--display); font-weight: 550; color: var(--ink); font-size: 1.02rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.15rem; color: var(--ember); font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 0 20px; color: var(--ink-3); font-size: .96rem; max-width: 72ch; }
.faq .a p:last-child { margin-bottom: 0; }

/* ---------- 15. CTA band ------------------------------------------------- */
.cta-band {
  background: var(--night); color: #b9c0cc; border-radius: var(--r);
  padding: clamp(32px, 3vw + 20px, 56px); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -10%; bottom: -60%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,86,29,.22), transparent 66%); filter: blur(22px);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { max-width: 54ch; color: #a9b2c0; }

/* ---------- 16. Footer --------------------------------------------------- */
.site-foot { background: var(--night); color: #8e97a6; padding-block: 56px 28px; font-size: .92rem; }
.site-foot :is(h2, h4) { color: #fff; font-size: .78rem; font-family: var(--mono); font-weight: 500; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 15px; }
.site-foot a { color: #b9c0cc; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 36px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.foot-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--night-line);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  font-size: .845rem; color: #6d7686;
}
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot-brand img { height: 31px; filter: brightness(0) invert(1); opacity: .93; }

/* ---------- 17. Breadcrumb ---------------------------------------------- */
.crumb { font-size: .84rem; color: var(--ink-3); padding-top: 22px; }
.crumb a { color: var(--ink-3); }
.crumb a:hover { color: var(--ember); }
.crumb span { margin: 0 7px; opacity: .5; }
.night .crumb, .night .crumb a { color: #7d8695; }

/* ---------- 18. Prose (blog / long form) -------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 2px solid var(--ember);
  color: var(--ink-2); font-style: normal;
}
.prose cite { display: block; margin-top: 8px; font-size: .86rem; color: var(--ink-3); font-style: normal; }
.prose code { font-family: var(--mono); font-size: .88em; background: var(--bone-2); padding: 2px 6px; border-radius: 5px; color: var(--ink); }

/* ---------- 19. Brand strip --------------------------------------------- */
.brands { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; }
.brands img { height: 40px; width: auto; opacity: .82; transition: opacity .18s ease; }
.brands a:hover img { opacity: 1; }

/* ---------- 20. Diagram helpers ----------------------------------------- */
.diagram { background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--r); padding: 22px; }
.diagram svg { width: 100%; height: auto; }
.diagram figcaption {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .1em; text-transform: uppercase;
  color: #7d8695; margin-top: 16px; text-align: center;
}
figure { margin: 0; }

/* ---------- 21. Dark-surface legibility --------------------------------
   On the night surfaces the light-theme greys drop to ~3.7:1, which reads as
   "invisible until you hover". Every muted tone gets re-stated here against
   the dark ground instead of inheriting the light-theme value. */
.night .muted,
.night .card p,
.night table.data td.n,
.night .pill-line,
.night .step p              { color: #9ba5b4; }
.night .card .num           { color: var(--ember-2); }
.night .pill-line           { border-color: #454d5c; }
.night .stats .l,
.night .diagram figcaption,
.diagram figcaption,
.stats .l                   { color: #949eac; }
.cta-band .muted            { color: #aab3c1; }
.foot-bottom                { color: #8a93a2; }
.site-foot p                { color: #a3acba; }

/* Utility */
.mono { font-family: var(--mono); }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }
@media (max-width: 620px) { .hide-sm { display: none !important; } }

/* ---------- 22. Product catalogue --------------------------------------
   Uniform tiles: one image ratio, one padding, one caption depth, so a row
   of products reads as one object rather than sixteen different ones. */
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 30px;
}
.cat-tab {
  font-family: var(--display); font-size: .88rem; font-weight: 500;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--line-strong);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.cat-tab:hover { border-color: var(--ink-3); background: var(--bone); }
.cat-tab[aria-selected="true"] {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.cat-tab .n {
  font-family: var(--mono); font-size: .72em; opacity: .62; margin-left: 7px;
}

.pgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1020px) { .pgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px)  { .pgrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 430px)  { .pgrid { grid-template-columns: 1fr; } }

.pcard {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pcard:hover { border-color: var(--line-strong); box-shadow: var(--shadow-2); transform: translateY(-2px); }

/* one fixed ratio for every shot — this is what makes the row line up */
.pcard .shot {
  aspect-ratio: 5 / 4; background: #fff; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  position: relative;
}
.pcard .shot img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.pcard .shot .noimg {
  width: 100%; height: 100%; border-radius: var(--r-sm);
  background:
    radial-gradient(circle at 30% 25%, rgba(226,86,29,.11), transparent 62%),
    var(--bone);
  display: flex; align-items: center; justify-content: center;
}
.pcard .shot .noimg svg { width: 42px; height: 42px; color: var(--ember); opacity: .82; }

.pcard .meta { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.pcard .code {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ember); 
}
.pcard :is(h2, h3) { font-size: .96rem; margin: 0; line-height: 1.3; }
.pcard p {
  margin: 0; font-size: .855rem; color: var(--ink-3); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard .brandtag {
  margin-top: auto; padding-top: 11px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; align-items: center; gap: 6px;
}
.pcard .brandtag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ember); flex: none;
}

/* section band inside the catalogue */
.cat-band { margin-top: 56px; }
.cat-band:first-of-type { margin-top: 0; }
.cat-band > header { margin-bottom: 22px; }
.cat-band > header h2 { margin-bottom: .25em; font-size: clamp(1.18rem,1.03rem+.62vw,1.48rem); }
.cat-band > header p { margin: 0; color: var(--ink-3); font-size: .95rem; max-width: 68ch; }

/* ---------- 23. UI mockup (illustrative product visuals) ---------------- */
.ui-shell {
  background: var(--night-2); border: 1px solid var(--night-line);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-3);
}
.ui-bar {
  display: flex; align-items: center; gap: 8px; padding: 11px 15px;
  background: var(--night-3); border-bottom: 1px solid var(--night-line);
}
.ui-bar i { width: 9px; height: 9px; border-radius: 50%; background: #39404d; display: block; }
.ui-bar .t {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .1em;
  text-transform: uppercase; color: #949eac; margin-left: 8px;
}
.ui-body { padding: 18px; display: grid; gap: 12px; }
.ui-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 620px) { .ui-tiles { grid-template-columns: repeat(2, 1fr); } }
.ui-tile { background: var(--night-3); border: 1px solid var(--night-line); border-radius: 9px; padding: 13px; }
.ui-tile .lbl {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .1em; text-transform: uppercase;
  color: #949eac; margin-bottom: 7px;
}
.ui-tile .val { font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: #fff; line-height: 1.1; }
.ui-tile .val small { font-size:0.74em; font-weight: 400; color: #949eac; margin-left: 3px; }
.ui-rows { display: flex; flex-direction: column; }
.ui-row {
  display: grid; grid-template-columns: 8px 1fr auto auto; gap: 12px; align-items: center;
  padding: 11px 4px; border-bottom: 1px solid var(--night-line); font-size: .86rem;
}
.ui-row:last-child { border-bottom: 0; }
.ui-row .dot { width: 8px; height: 8px; border-radius: 50%; }
.ui-row .nm { color: #dfe4ec; }
.ui-row .st { font-family: var(--mono); font-size:0.78rem; letter-spacing: .07em; text-transform: uppercase; }
.ui-row .tm { font-family: var(--mono); font-size:0.78rem; color: #7d8695; }
.d-ok { background: #35c08f; } .s-ok { color: #35c08f; }
.d-wn { background: #e0a33c; } .s-wn { color: #e0a33c; }
.d-al { background: #ef5f4a; } .s-al { color: #ef5f4a; }
.illus-note {
  font-family: var(--mono); font-size:0.78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); text-align: center; margin-top: 12px;
}
.night .illus-note { color: #7d8695; }

/* ---------- 24. Product illustration tiles ------------------------------
   Replaces the scraped photo set. One grid, one stroke weight, one accent
   rule — the ember marks the sensing element, never the housing. */
.pcard .shot{
  background:
    radial-gradient(120% 90% at 50% 0%, #ffffff 0%, var(--bone) 62%, var(--bone-2) 100%);
  position:relative;
}
.pcard .shot::after{                    /* hairline floor so the object sits */
  content:""; position:absolute; left:22%; right:22%; bottom:20%;
  height:1px; background:linear-gradient(90deg,transparent,var(--line-strong),transparent);
  opacity:.75;
}
.pill-svg{
  width:64%; max-width:132px; height:auto; color:var(--ink);
  position:relative; z-index:1;
  transition:transform var(--dur-2,320ms) var(--ease-out,cubic-bezier(.16,1,.3,1));
}
.pill-svg .ac{ color:var(--ember); stroke:var(--ember); }
.pcard:hover .pill-svg{ transform:translateY(-3px) scale(1.035); }
.night .pcard .shot{
  background:radial-gradient(120% 90% at 50% 0%, #1d2129 0%, #14171d 70%);
  border-bottom-color:var(--night-line);
}
.night .pill-svg{ color:#c3cad6; }
@media (prefers-reduced-motion: reduce){ .pcard:hover .pill-svg{ transform:none; } }
