/* LaraScan — premium edition.
 *
 * Four art-directed heroes died before this page: a shader, a photograph, a
 * sculpture, a world. The lesson, learnt the expensive way: premium is not a
 * spectacle, it is restraint executed perfectly. So this is the Stripe/Linear
 * school — light, immaculate type, the PRODUCT as the hero, and every pixel of
 * chrome earning its place.
 *
 * The brand survives in the accents: amber toward the probe, cyan away.
 */

:root {
    color-scheme: light;

    --bg: oklch(98.6% 0.004 85);
    --bg-soft: oklch(96.8% 0.006 85);
    --card: oklch(100% 0 0);
    --line: oklch(91% 0.006 80);
    --line-strong: oklch(85% 0.008 78);

    --ink: oklch(21% 0.012 60);
    --ink-soft: oklch(42% 0.012 60);
    --ink-faint: oklch(55% 0.010 62);

    --amber: oklch(68% 0.155 55);
    --amber-deep: oklch(55% 0.130 52);
    --amber-ghost: oklch(95% 0.030 70);
    --cyan: oklch(58% 0.100 225);
    --cyan-ghost: oklch(95% 0.022 220);

    --shadow-sm: 0 1px 2px oklch(20% 0.02 60 / 0.05), 0 2px 8px oklch(20% 0.02 60 / 0.05);
    --shadow-md: 0 2px 4px oklch(20% 0.02 60 / 0.05), 0 12px 32px -8px oklch(20% 0.02 60 / 0.12);
    --shadow-lg: 0 4px 12px oklch(20% 0.02 60 / 0.06), 0 32px 80px -16px oklch(25% 0.03 60 / 0.22);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --sans: Geist, ui-sans-serif, system-ui, -apple-system, sans-serif;
    --mono: "Geist Mono", ui-monospace, monospace;
    --track-tight: -0.022em;
    --track-wide: 0.14em;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: var(--track-tight); text-wrap: balance; font-weight: 600; }
p { margin: 0; max-width: 62ch; }
a { color: inherit; }

.shell { width: min(100% - 2.5rem, 1120px); margin-inline: auto; }

.readout { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.01em; font-variant-numeric: tabular-nums; }
.kicker {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: var(--track-wide);
    text-transform: uppercase; color: var(--amber-deep); margin: 0 0 1rem;
}

:where(a, button):focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 8px; }

/* -------------------------------------------------------------------- nav -- */

/* A slim full-width bar, invisible until the page moves: transparent over the
   hero, then frosted with a hairline the moment you scroll. Logo left, links
   dead centre, actions right. The floating pill it replaces read as a toolbar,
   not a masthead. */
.nav {
    position: fixed; inset: 0 0 auto; z-index: 50;
    transition: background-color 240ms var(--ease), box-shadow 240ms var(--ease),
                backdrop-filter 240ms var(--ease);
}
.nav.is-scrolled {
    background: color-mix(in oklch, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 -1px 0 var(--line);
}
.nav__in {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    height: 64px; gap: 1rem;
}
.nav__in > .nav__mark { grid-column: 1; }
.nav__in > .nav__links { grid-column: 2; }
.nav__in > .nav__actions { grid-column: 3; }
.nav__mark {
    justify-self: start;
    font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em;
    color: var(--ink); text-decoration: none;
}
.nav__mark .spark { color: var(--amber); }
.nav__logo { display: block; height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 0.25rem; justify-self: center; }
.nav__link {
    display: inline-flex; align-items: center; min-height: 40px; padding: 0 0.85rem;
    border-radius: 9px; text-decoration: none; font-weight: 500; font-size: 0.9rem;
    color: var(--ink-soft);
    transition: color 160ms var(--ease), background-color 160ms var(--ease);
}
.nav__link:hover { color: var(--ink); background: color-mix(in oklch, var(--ink) 6%, transparent); }
.nav__actions { display: flex; align-items: center; gap: 0.45rem; justify-self: end; }
.nav__cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    min-height: 38px; padding: 0 1.05rem; border-radius: 9px;
    background: var(--ink); color: var(--card);
    font-weight: 550; font-size: 0.9rem; text-decoration: none;
    transition: background-color 160ms var(--ease);
}
.nav__cta:hover { background: var(--amber-deep); }
.nav__cta, .nav__link { white-space: nowrap; }

@media (max-width: 760px) { .nav__links { display: none; } }

/* Small screens: logo, language, one button. "Sign in" is inside the CTA's
   destination anyway, and three labelled actions cannot share 375px in two
   scripts without wrapping into a broken masthead. */
@media (max-width: 680px) {
    .nav__in { height: 56px; }
    .nav__link--signin { display: none; }
    .nav__cta { min-height: 36px; padding: 0 0.9rem; font-size: 0.85rem; }
    .nav__logo { height: 22px; }
    .nav__actions { gap: 0.55rem; }
    .nav__actions .nav__link { min-height: 36px; padding: 0 0.55rem; }
}

/* -------------------------------------------------------------------- hero -- */

.hero { position: relative; padding: clamp(7.5rem, 14vh, 10rem) 0 clamp(3rem, 6vh, 5rem); overflow: clip; }

/* The mesh: two brand tints breathing behind everything, never shouting. */
.hero::before {
    content: ""; position: absolute; inset: -20% -10%; z-index: -1;
    background:
        radial-gradient(38% 42% at 22% 18%, color-mix(in oklch, var(--amber) 16%, transparent), transparent 70%),
        radial-gradient(34% 38% at 80% 8%, color-mix(in oklch, var(--cyan) 13%, transparent), transparent 70%),
        radial-gradient(60% 50% at 50% 110%, color-mix(in oklch, var(--amber) 7%, transparent), transparent 70%);
    filter: blur(2px);
}

.hero__head { text-align: center; display: grid; justify-items: center; }
.hero h1 { font-size: clamp(2.3rem, 1.5rem + 4vw, 4.1rem); font-weight: 650; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--amber-deep); }
.hero__sub { margin-top: 1.15rem; font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem); color: var(--ink-soft); max-width: 54ch; }

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-top: 1.7rem; }
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    min-height: 48px; padding: 0 1.35rem; border-radius: 11px;
    font: 550 0.98rem var(--sans); text-decoration: none; cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 180ms var(--ease), color 180ms var(--ease),
                border-color 180ms var(--ease), transform 180ms var(--ease);
}
.btn--primary { background: var(--ink); color: var(--card); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: var(--card); }
.btn--ghost:hover { border-color: var(--ink-faint); transform: translateY(-1px); }

/* Truthful chips, not vanity metrics. */
.hero__facts {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.6rem;
    margin-top: 1.6rem; color: var(--ink-faint);
}
.hero__facts span::before { content: "· "; color: var(--amber); }
.hero__facts span:first-child::before { content: none; }

/* ------------------------------------------------------- the product shot -- */

.shot { position: relative; margin-top: clamp(2.6rem, 6vh, 4rem); }

.window {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.window__bar {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}
.window__dots { display: flex; gap: 6px; }
.window__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.window__url {
    flex: 1; max-width: 30rem; margin-inline: auto;
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 8px; padding: 0.32rem 0.9rem;
    font-family: var(--mono); font-size: 0.74rem; color: var(--ink-faint);
    text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* The worklist, drawn by hand so it is razor-sharp at any density and carries
   no patient. This mirrors the real screen's grammar exactly. */
.app { padding: clamp(1rem, 2.5vw, 1.6rem); display: grid; gap: 1rem; }
.app__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.app__title { font-size: 1.15rem; font-weight: 650; color: var(--ink); }
.app__badge {
    font-family: var(--mono); font-size: 0.7rem;
    background: var(--amber-ghost); color: var(--amber-deep);
    border: 1px solid color-mix(in oklch, var(--amber) 30%, var(--line));
    padding: 0.28rem 0.6rem; border-radius: 999px;
}

.table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 0.88rem; }
.tr {
    display: grid; grid-template-columns: 1.5fr 0.7fr 1fr 0.9fr 1.1fr 1fr;
    gap: 0.75rem; align-items: center;
    padding: 0.72rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--card);
}
.tr:last-child { border-bottom: 0; }
.tr--head {
    background: var(--bg); color: var(--ink-faint);
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.tr--hot { background: color-mix(in oklch, var(--amber-ghost) 55%, var(--card)); }
.tr b { color: var(--ink); font-weight: 550; }
.pill {
    justify-self: start;
    font-family: var(--mono); font-size: 0.66rem;
    padding: 0.22rem 0.55rem; border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg); color: var(--ink-soft);
    white-space: nowrap;
}
.pill--ok { background: oklch(95% 0.045 150); border-color: oklch(85% 0.07 150); color: oklch(42% 0.11 150); }
.pill--amber { background: var(--amber-ghost); border-color: color-mix(in oklch, var(--amber) 35%, var(--line)); color: var(--amber-deep); }
.pill--cyan { background: var(--cyan-ghost); border-color: color-mix(in oklch, var(--cyan) 30%, var(--line)); color: var(--cyan); }
@media (max-width: 780px) {
    .tr { grid-template-columns: 1.4fr 0.9fr 1fr; }
    .tr > :nth-child(4), .tr > :nth-child(5), .tr > :nth-child(6) { display: none; }
}

/* Floating proof cards, hovering off the shot's corners. */
.float {
    position: absolute; z-index: 2;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 0.85rem 1rem;
    max-width: 17rem;
    font-size: 0.85rem;
}
.float strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 0.15rem; }
.float p { color: var(--ink-faint); font-size: 0.8rem; line-height: 1.45; }
.float--img { padding: 0.45rem; max-width: 15rem; }
.float--img img { display: block; width: 100%; height: auto; border-radius: 9px; }
.float--img figcaption { padding: 0.5rem 0.4rem 0.2rem; color: var(--ink-faint); font-size: 0.74rem; }
/* Corners chosen to overlap chrome, never data: the top-right rides the URL
   bar, the bottom-left clips only the last row's corner. */
.float--tr { top: -1.4rem; inset-inline-end: max(-1.1rem, -2.5vw); rotate: 1.4deg; }
.float--bl { bottom: -2.2rem; inset-inline-start: max(-1.3rem, -2.8vw); rotate: -1.7deg; }
@media (max-width: 900px) { .float { display: none; } }

@media (prefers-reduced-motion: no-preference) {
    .float { animation: hover-drift 7s ease-in-out infinite alternate; }
    .float--br { animation-delay: -3.5s; }
    @keyframes hover-drift { from { translate: 0 0; } to { translate: 0 -8px; } }
}

/* ---------------------------------------------------------------- sections -- */

section { padding-block: clamp(4.5rem, 10vh, 7.5rem); }
h2 { font-size: clamp(1.65rem, 1.25rem + 2vw, 2.5rem); max-width: 24ch; }
.lede { margin-top: 1rem; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.14rem); color: var(--ink-soft); }
.center { text-align: center; }
.center h2, .center .lede, .center .kicker { margin-inline: auto; }

/* ------------------------------------------------------------------ bento -- */

.bento { display: grid; gap: 1rem; margin-top: 2.6rem; grid-template-columns: repeat(6, 1fr); }
.cell {
    grid-column: span 2;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    display: grid; gap: 0.55rem; align-content: start;
    transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.cell:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cell--wide { grid-column: span 3; }
.cell--tall { grid-row: span 2; }
.cell h3 { font-size: 1.05rem; font-weight: 600; }
.cell p { font-size: 0.9rem; color: var(--ink-faint); line-height: 1.55; }
.cell svg { width: 1.9rem; height: 1.9rem; color: var(--amber-deep); margin-bottom: 0.2rem; }
.cell--cyan svg { color: var(--cyan); }
.cell__media { margin: 0.4rem -0.4rem -0.4rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.cell__media img { display: block; width: 100%; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .cell, .cell--wide { grid-column: span 2; } }

/* A quiet ledger row inside a cell — the access-log, miniature. */
.mini { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; font-size: 0.78rem; margin-top: 0.4rem; }
.mini__row { display: flex; justify-content: space-between; gap: 0.8rem; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--line); background: var(--card); }
.mini__row:last-child { border-bottom: 0; }
.mini__row b { color: var(--ink); font-weight: 550; }
.mini__row .readout { color: var(--ink-faint); }

/* ------------------------------------------------------------------ steps -- */

.steps { display: grid; gap: 1rem; margin-top: 2.6rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; padding: 1.2rem 1.2rem; padding-inline-start: 1.25rem; }
.step::before {
    counter-increment: step; content: "0" counter(step);
    font-family: var(--mono); font-size: 0.7rem; color: var(--amber-deep);
    display: block; margin-bottom: 0.6rem;
}
.step::after {
    content: ""; position: absolute; inset-inline-start: 0; top: 0.4rem; bottom: 0.4rem; width: 1px;
    background: linear-gradient(to bottom, var(--amber), var(--line) 60%, transparent);
}
.step h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; color: var(--ink-faint); }

/* --------------------------------------------------------------- the case -- */

.case-card {
    display: grid; gap: 0; margin-top: 2.6rem;
    background: var(--card); border: 1px solid var(--line); border-radius: 18px;
    overflow: hidden; box-shadow: var(--shadow-md);
}
@media (min-width: 920px) { .case-card { grid-template-columns: 1.35fr 1fr; } }
.case-card__copy { padding: clamp(1.5rem, 3vw, 2.4rem); display: grid; gap: 0.8rem; align-content: center; }
.case-card__copy h3 { font-size: 1.35rem; }
.case-card__copy p { font-size: 0.95rem; color: var(--ink-soft); }
.case-card__note { font-size: 0.82rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 0.9rem; }

.viewer { position: relative; background: oklch(13% 0.008 60); isolation: isolate; min-height: 320px; }
.viewer__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 240ms var(--ease); }
.viewer__img.is-switching { opacity: 0.4; }
.viewer__ledge {
    position: absolute; inset: auto 0 0 0; z-index: 2;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem;
    padding: 2rem 1rem 0.9rem;
    background: linear-gradient(to top, oklch(8% 0.01 60 / 0.9), transparent);
    color: oklch(90% 0.01 85);
}
.ledge__text .readout { display: block; color: oklch(65% 0.03 80); margin-bottom: 0.2rem; }
.ledge__text strong { font-weight: 600; font-size: 0.95rem; }
.film {
    display: flex; gap: 0.45rem; padding: 0.7rem; background: oklch(10% 0.008 60);
    overflow-x: auto;
}
.film__thumb {
    flex: 0 0 auto; width: 74px; aspect-ratio: 819/510;
    padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden;
    background: none; cursor: pointer; opacity: 0.55;
    transition: opacity 160ms var(--ease), border-color 160ms var(--ease);
}
.film__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.film__thumb:hover { opacity: 1; }
.film__thumb.is-active { opacity: 1; border-color: var(--amber); }

/* ------------------------------------------------------------------ trust -- */

.trust { background: var(--bg-soft); border-block: 1px solid var(--line); }
.trust__grid { display: grid; gap: 1.8rem 3rem; margin-top: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.trust__item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.3rem; }
.trust__item h3::before { content: "﹡ "; color: var(--amber); }
.trust__item p { font-size: 0.92rem; color: var(--ink-faint); }

/* -------------------------------------------------------------------- cta -- */

.cta { text-align: center; }
.cta__box {
    position: relative; overflow: clip;
    background: var(--ink);
    border-radius: 22px;
    padding: clamp(2.6rem, 6vw, 4.2rem) 1.5rem;
    color: oklch(88% 0.01 80);
}
.cta__box::before {
    content: ""; position: absolute; inset: -30%; z-index: 0;
    background:
        radial-gradient(40% 55% at 25% 20%, color-mix(in oklch, var(--amber) 30%, transparent), transparent 70%),
        radial-gradient(35% 50% at 78% 85%, color-mix(in oklch, var(--cyan) 22%, transparent), transparent 70%);
}
.cta__box > * { position: relative; z-index: 1; }
.cta h2 { color: oklch(97% 0.008 85); max-width: 20ch; margin-inline: auto; }
.cta p { margin: 0.9rem auto 0; color: oklch(75% 0.012 75); }
.cta .btn--primary { background: var(--amber); color: oklch(22% 0.05 55); }
.cta .btn--primary:hover { background: oklch(97% 0.008 85); }
.cta .btn--ghost { border-color: oklch(40% 0.015 60); color: oklch(92% 0.008 85); background: transparent; }
.cta .btn--ghost:hover { border-color: oklch(60% 0.015 65); }
.cta__doors { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-top: 1.8rem; }

footer {
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 3.2rem 0 2.2rem;
    color: var(--ink-faint); font-size: 0.9rem;
}
.foot__top { display: grid; gap: 2.4rem; }
@media (min-width: 860px) { .foot__top { grid-template-columns: 1.2fr 2fr; } }
.foot__logo { display: block; height: 30px; width: auto; margin-bottom: 0.9rem; }
.foot__brand p { max-width: 30ch; }
.foot__cols { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.foot__head { font-weight: 600; color: var(--ink); margin: 0 0 0.7rem; font-size: 0.9rem; }
.foot__cols a {
    display: block; text-decoration: none; color: var(--ink-faint);
    padding-block: 0.28rem; transition: color 150ms var(--ease);
}
.foot__cols a:hover { color: var(--ink); }

/* The stack band: real logos of what actually carries the service. Quiet,
   monochrome, and each one says what it does for you. */
.foot__stack {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 2.2rem;
    margin-top: 2.8rem; padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}
.foot__stack-label { color: var(--ink-faint); letter-spacing: 0.14em; }
.foot__brandmark {
    display: inline-flex; align-items: center; gap: 0.55rem;
    color: var(--ink-soft); font-weight: 550; font-size: 0.92rem;
    opacity: 0.85; transition: opacity 160ms var(--ease);
}
.foot__brandmark:hover { opacity: 1; }
.foot__brandmark img { display: block; width: 22px; height: 22px; }
.foot__brandmark i {
    font-style: normal; font-family: var(--mono); font-size: 0.68rem;
    color: var(--ink-faint); border-inline-start: 1px solid var(--line); padding-inline-start: 0.55rem;
}
.foot__brandmark--chip { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; }

.foot__legal {
    display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
    margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
    font-size: 0.84rem;
}

/* --------------------------------------------------------------- entrance -- */

@media (prefers-reduced-motion: no-preference) {
    .js .reveal { opacity: 0; transform: translateY(16px); }
    .js .reveal.is-in {
        opacity: 1; transform: none;
        transition: opacity 700ms var(--ease), transform 700ms var(--ease);
        transition-delay: var(--delay, 0ms);
    }
}


/* --------------------------------------------------------- Arabic edition --
 * IBM Plex Sans Arabic carries everything; IBM Plex Mono keeps the technical
 * tokens. Negative tracking mutilates connected script and letterspaced
 * uppercase means nothing in Arabic, so both collapse to zero. Latin islands
 * (codes, counts, DICOM) sit inside dir="ltr" spans in the markup, which is
 * what keeps a mixed line reading correctly in both directions. */
html[lang="ar"] {
    --sans: "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
    --track-tight: 0;
    --track-wide: 0;
}
html[lang="ar"] body { line-height: 1.85; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.35; font-weight: 700; }
html[lang="ar"] .hero h1 { max-width: 15ch; }
html[lang="ar"] .kicker, html[lang="ar"] .readout { font-family: var(--sans); font-weight: 600; font-size: 0.78rem; }
html[lang="ar"] .readout[dir="ltr"], html[lang="ar"] [dir="ltr"].readout { font-family: "IBM Plex Mono", ui-monospace, monospace; font-weight: 500; }
html[lang="ar"] .window__url, html[lang="ar"] .pill [dir="ltr"], html[lang="ar"] .app__badge { font-family: "IBM Plex Mono", ui-monospace, monospace; }
html[lang="ar"] .btn { font-weight: 600; }
html[lang="ar"] .float { font-size: 0.88rem; }
/* Table heads and badges inherited the mono's tracking; spaced-out Arabic
   letters read as broken type, not as style. */
html[lang="ar"] .tr--head { font-family: var(--sans); font-weight: 600; letter-spacing: 0; font-size: 0.74rem; }
html[lang="ar"] .app__badge { font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
html[lang="ar"] .pill { font-family: var(--sans); font-weight: 500; letter-spacing: 0; font-size: 0.72rem; }
html[lang="ar"] .pill [dir="ltr"] { font-family: "IBM Plex Mono", ui-monospace, monospace; }
