@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/JetBrainsMono-400-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/JetBrainsMono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/JetBrainsMono-700-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/JetBrainsMono-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lime:    #DFE94B;
  --violet:  #836CEC;
  --deep:    #362486;
  --green:   #00E96E;
  --leaf:    #A9DE7E;
  --forest:  #22370F;

  --ink:     #0C0A16;
  --paper:   #F5F4EE;
  --muted:   #6E6A85;
  --line:    rgba(12, 10, 22, .12);
  --surface: #FFFFFF;
  --on-bright: #0C0A16;
  --footer:  #ECEBE3;

  --r-lg: 34px;
  --r-md: 22px;

  --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell: min(1180px, 100% - 48px);
}

:root[data-theme="dark"] {
  --paper:   #0B0917;
  --ink:     #F3F1FB;
  --muted:   #9A93BC;
  --line:    rgba(243, 241, 251, .14);
  --surface: #15112B;
  --footer:  #110E22;
  --violet:  #9A87F5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.shell { width: var(--shell); margin-inline: auto; }

.section { padding: 96px 0; }

.u-pt-0    { padding-top: 0; }
.u-pb-sm   { padding-bottom: 8px; }
.u-mb-lg   { margin-bottom: 44px; }
.u-mb-md   { margin-bottom: 36px; }
.u-mt-md   { margin-top: 34px; }
.u-mt-sm   { margin-top: 22px; }
.u-accent  { color: var(--violet); }
.u-hidden-svg { position: absolute; width: 0; height: 0; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.03em; line-height: .95; }

.display {
  font-size: clamp(46px, 8vw, 96px);
  text-transform: uppercase;
}

.h2 {
  font-size: clamp(34px, 5.5vw, 64px);
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 54ch; }

.arrow-pill {
  --pill-bg: var(--leaf);
  --pill-dot: var(--forest);
  --pill-ink: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 300px;
  padding: 10px 10px 10px 32px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-ink);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), filter .25s ease;
  will-change: transform;
}
.arrow-pill:hover { transform: translateY(-3px); filter: saturate(1.1); }
.arrow-pill:active { transform: translateY(0); }

.arrow-pill__dot {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 50%;
  background: var(--pill-dot);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.arrow-pill__dot svg { width: 26px; height: 26px; transition: transform .3s cubic-bezier(.2,.8,.3,1); }
.arrow-pill:hover .arrow-pill__dot svg { transform: translateX(4px); }
.arrow-pill__dot svg { fill: none; stroke: var(--pill-bg); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.arrow-pill--violet { --pill-bg: var(--violet); --pill-dot: #FFFFFF; --pill-ink: #FFFFFF; }
.arrow-pill--violet .arrow-pill__dot svg { stroke: var(--violet); }
.arrow-pill--lime   { --pill-bg: var(--lime);   --pill-dot: var(--on-bright); --pill-ink: var(--on-bright); }
.arrow-pill--lime .arrow-pill__dot svg { stroke: var(--lime); }
.arrow-pill--sm { min-width: 0; padding: 6px 6px 6px 22px; font-size: 15px; gap: 18px; }
.arrow-pill--sm .arrow-pill__dot { width: 42px; height: 42px; }
.arrow-pill--sm .arrow-pill__dot svg { width: 20px; height: 20px; }

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.02em; }
.brand__name { white-space: nowrap; }
.brand__tld { color: var(--violet); }
.brand__mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--deep);
  display: grid; place-items: center;
  flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__mark .chev { stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.brand__mark .caret { stroke: var(--lime); stroke-width: 2.4; stroke-linecap: round; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.nav__links { display: flex; align-items: center; gap: 30px; font-size: 15px; }
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__tools { display: flex; align-items: center; gap: 10px; }

.nav__status {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
}
.nav__status i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 233, 110, .7);
  animation: pulse 1.8s ease-in-out infinite;
}

.langs { display: flex; gap: 4px; }
.lang {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: transparent;
  font-size: 15px; line-height: 1;
  cursor: pointer;
  opacity: .45;
  transition: opacity .2s, border-color .2s, transform .2s;
}
.lang:hover { opacity: .85; transform: translateY(-1px); }
.lang.is-active { opacity: 1; border-color: var(--violet); }

.tool {
  height: 34px; min-width: 34px; padding: 0 12px;
  border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink);
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .08em;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.tool:hover { background: var(--violet); border-color: var(--violet); color: #fff; }
.tool svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tool--icon { padding: 0; }
:root[data-theme="dark"] .tool--theme .i-sun  { display: none; }
:root:not([data-theme="dark"]) .tool--theme .i-moon { display: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 233, 110, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(0, 233, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 233, 110, 0); }
}

.hero { padding: 56px 0 40px; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.hero__grid > * { min-width: 0; }

.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--violet); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }

.tagline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid currentColor; margin-bottom: 26px;
}

.squiggle { position: absolute; right: -60px; bottom: -40px; width: 340px; opacity: .9; pointer-events: none; }

.cli {
  background: var(--on-bright);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: 0 30px 70px -30px rgba(54, 36, 134, .55);
}
.cli__bar { display: flex; align-items: center; gap: 8px; padding: 4px 8px 14px; }
.cli__dot { width: 11px; height: 11px; border-radius: 50%; }
.cli__dot--red   { background: #FF5F57; }
.cli__dot--lime  { background: var(--lime); }
.cli__dot--green { background: var(--green); }

.sw { font-weight: 700; }
.sw--lime   { color: #DFE94B; }
.sw--violet { color: #836CEC; }
.sw--deep   { color: #362486; }
.sw--green  { color: #00E96E; }
.sw--leaf   { color: #A9DE7E; }
.sw--forest { color: #22370F; }
.cli__title {
  margin-left: auto; font-family: var(--mono); font-size: 12px;
  color: rgba(255,255,255,.4); letter-spacing: .05em;
}
.cli__screen {
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.75;
  color: #E6E3F5;
  background: #060412;
  border-radius: var(--r-md);
  padding: 20px;
  height: 360px;
  overflow-y: auto;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}
.cli__screen::-webkit-scrollbar { width: 6px; }
.cli__screen::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 99px; }

.cli__line { white-space: pre-wrap; word-break: break-word; }
.cli__prompt { color: var(--green); }
.cli__path   { color: var(--violet); }
.cli__cmd    { color: var(--lime); }
.cli__dim    { color: rgba(230,227,245,.5); }
.cli__key    { color: var(--green); }
.cli__err    { color: #FF7A7A; }

.cli__input-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-family: var(--mono); font-size: 13.5px; }
.cli__input {
  flex: 1; background: none; border: 0; outline: none;
  color: var(--lime); font: inherit; caret-color: var(--green);
}
.cli__hint {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding: 0 6px 4px;
}
.cli__chip {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px; cursor: pointer;
  background: rgba(131, 108, 236, .18);
  color: #CFC7FF;
  border: 1px solid rgba(131, 108, 236, .35);
  transition: background .2s, color .2s;
}
.cli__chip:hover { background: var(--violet); color: #fff; }

.marquee {
  background: var(--lime);
  color: var(--on-bright);
  border-block: 2px solid var(--lime);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex; gap: 44px; width: max-content;
  animation: slide 32s linear infinite;
  font-family: var(--mono); font-weight: 700; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 44px; }
.marquee__track span::after { content: '◆'; color: var(--violet); }
@keyframes slide { to { transform: translateX(-50%); } }

.grid { display: grid; gap: 20px; }
.grid > * { min-width: 0; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  --glow: rgba(131, 108, 236, .22);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 30px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1),
              box-shadow .35s cubic-bezier(.2,.8,.3,1),
              border-color .35s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), var(--glow), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -30px rgba(12, 10, 22, .45);
  border-color: var(--violet);
}
.card:hover::after { opacity: 1; }
.card:active { transform: translateY(-2px); }

.card > * { position: relative; z-index: 1; }

.card__go {
  position: absolute;
  top: 24px; right: 24px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: translate(-8px, 8px) rotate(-25deg);
  transition: opacity .35s cubic-bezier(.2,.8,.3,1), transform .35s cubic-bezier(.2,.8,.3,1);
}
.card__go svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--surface);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.card:hover .card__go { opacity: .92; transform: none; }

.card--lime   { --glow: rgba(255, 255, 255, .55); }
.card--green  { --glow: rgba(255, 255, 255, .55); }
.card--violet { --glow: rgba(255, 255, 255, .26); }
.card--deep   { --glow: rgba(154, 135, 245, .45); }
.card--ink    { --glow: rgba(131, 108, 236, .45); }
.card--violet .card__go svg,
.card--deep .card__go svg,
.card--ink .card__go svg { stroke: var(--on-bright); }
.card h3 { font-size: 23px; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.card__num {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  color: var(--muted);
}

.card--lime   { background: var(--lime);   border-color: var(--lime);  color: var(--on-bright); }
.card--lime p, .card--lime .card__num { color: rgba(12,10,22,.66); }
.card--violet { background: var(--violet); border-color: var(--deep); color: #fff; }
.card--violet p, .card--violet .card__num { color: rgba(255,255,255,.72); }
.card--deep   { background: var(--deep);   border-color: var(--deep); color: #fff; }
.card--deep p, .card--deep .card__num { color: rgba(255,255,255,.66); }
.card--green  { background: var(--green);  border-color: var(--green); color: var(--on-bright); }
.card--green p, .card--green .card__num { color: rgba(12,10,22,.66); }
.card--ink    { background: var(--on-bright); border-color: var(--on-bright); color: #F5F4EE; }
.card--ink p, .card--ink .card__num { color: rgba(245,244,238,.6); }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 14px; }
.tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px;
  border: 1.2px solid currentColor; opacity: .72;
}

.card--flag { grid-column: 1 / -1; }
.card--flag h3 { font-size: clamp(28px, 4vw, 42px); text-transform: uppercase; letter-spacing: -.03em; }
.card--flag p { font-size: 17px; max-width: 62ch; }

.stack-row {
  display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 24px;
  padding: 24px 0; border-top: 1.5px solid var(--line);
  align-items: baseline;
}
.stack-row:last-child { border-bottom: 1.5px solid var(--line); }
.stack-row h3 { font-size: 19px; }
.stack-row__items { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: 13px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--violet); color: #fff; border-color: var(--violet); }

.contact {
  background: var(--deep); color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.contact h2 { color: var(--lime); }
.contact .eyebrow { color: rgba(255,255,255,.6); }
.contact .lead { color: rgba(255,255,255,.72); }
.contact__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.contact__blob { position: absolute; right: -90px; bottom: -110px; width: 300px; pointer-events: none; }
.contact > *:not(.contact__blob) { position: relative; z-index: 1; }

.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 30px;
  margin-bottom: 34px;
  border-radius: var(--r-md);
  background: var(--footer);
  border: 1.5px solid var(--line);
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  flex-wrap: wrap;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (min-width: 1600px) {
  :root { --shell: min(1440px, 100% - 96px); }
  body { font-size: 18px; }
  .display { font-size: clamp(96px, 6.4vw, 126px); }
  .h2 { font-size: clamp(64px, 4.2vw, 84px); }
  .section { padding: 120px 0; }
  .card { padding: 36px; }
  .cli__screen { height: 420px; font-size: 14.5px; }
}
@media (min-width: 2100px) {
  :root { --shell: min(1720px, 100% - 140px); }
  body { font-size: 19px; }
  .lead { font-size: 23px; }
  .cli__screen { height: 480px; }
}

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .squiggle { display: none; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .stack-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .section { padding: 72px 0; }
}

@media (max-width: 720px) {
  :root { --shell: min(1180px, 100% - 32px); --r-lg: 26px; --r-md: 18px; }
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 24px; }
  .card--flag h3 { font-size: 30px; }
  .contact { padding: 30px 26px; }
  .contact__blob { width: 200px; right: -70px; bottom: -80px; }
  .footer { padding: 20px 22px; margin-bottom: 26px; gap: 10px; justify-content: center; text-align: center; }
  .footer__note { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 32px 0 24px; }

  .nav__inner { height: 62px; }
  .brand { font-size: 15px; gap: 9px; }
  .brand__mark { width: 32px; height: 32px; border-radius: 10px; }
  .brand__mark svg { width: 19px; height: 19px; }
  .nav__tools { gap: 6px; }
  .langs { gap: 2px; }
  .lang { width: 27px; height: 27px; font-size: 13px; }
  .tool { height: 30px; min-width: 30px; padding: 0 9px; }
  .tool svg { width: 15px; height: 15px; }
  .nav__status { width: 28px; height: 28px; }

  .arrow-pill { width: 100%; min-width: 0; padding: 8px 8px 8px 24px; font-size: 16px; }
  .arrow-pill__dot { width: 48px; height: 48px; }
  .hero__cta { gap: 10px; }

  .cli { padding: 12px; }
  .cli__screen { height: 300px; font-size: 12.5px; padding: 16px; }
  .cli__chip { font-size: 11px; padding: 4px 10px; }
  .tags { gap: 6px; }
}

.sysbar {
  background: var(--on-bright);
  color: #F5F4EE;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.sysbar__cell { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.sysbar__log { overflow-wrap: anywhere; }
.sysbar__cell--right { text-align: right; align-items: flex-end; }
.sysbar__cell--log { align-items: center; text-align: center; }

.sysbar__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,244,238,.42);
}
.sysbar__note { font-family: var(--mono); font-size: 11.5px; color: rgba(245,244,238,.42); }

.sysbar__age {
  font-family: var(--mono);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sysbar__frac { color: var(--green); font-size: .62em; font-weight: 500; }

.sysbar__clock {
  font-family: var(--mono); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700;
  color: var(--violet); font-variant-numeric: tabular-nums; line-height: 1;
}

.sysbar__log {
  font-family: var(--mono); font-size: 12.5px; line-height: 1.7;
  color: rgba(245,244,238,.82);
  white-space: pre-wrap;
}
.sysbar__log .lvl-info  { color: var(--green); }
.sysbar__log .lvl-warn  { color: var(--lime); }
.sysbar__log .lvl-err   { color: #FF7A7A; }
.sysbar__log b { color: #fff; font-weight: 500; }

.wx-art { color: var(--lime); }

@media (max-width: 960px) {
  .sysbar { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 24px; }
  .sysbar__cell--right { text-align: left; align-items: flex-start; }
  .sysbar__cell--log { align-items: flex-start; text-align: left; }
}

@media (hover: none) {
  .card__go { opacity: .55; transform: none; }
  .card::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .card:hover { transform: none; }
  .card::after { display: none; }
}
