/* ===========================================================================
   STOWORK — landing page styles
   Dark studio aesthetic matching the model: bg #14181d, panels #1b2027,
   warm-white text, amber #e6a15c accent. Mobile-safe, no horizontal overflow.
   =========================================================================== */

:root {
  --bg:        #14181d;
  --bg-2:      #10141a;
  --panel:     #1b2027;
  --panel-2:   #21272f;
  --line:      #2b323b;
  --line-soft: #232a32;
  --text:      #f2ede4;   /* warm white */
  --muted:     #a7b0bb;
  --muted-2:   #7b8590;
  --amber:     #e6a15c;
  --amber-hi:  #f4b97a;
  --amber-dim: rgba(230, 161, 92, 0.14);
  --screen:    #2f6d8f;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.75);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;               /* hard guard against horizontal overflow */
  -webkit-font-smoothing: antialiased;
}

img, canvas { max-width: 100%; display: block; }

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hi); }

h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  margin: 0 0 1rem;
}

.section { padding: clamp(72px, 11vw, 148px) 0; }

.section__title {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 700;
  max-width: 20ch;
  margin-bottom: 1.1rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 2.4rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------------- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(20px, 5vw, 56px);
  background: rgba(16, 20, 26, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text);
  font-size: 1.02rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 1.9rem);
}
.nav__links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  color: var(--amber) !important;
  border: 1px solid var(--line);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
}
.nav__cta:hover { border-color: var(--amber); }
@media (max-width: 620px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* --------------------------------------------------------------- HERO --- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(56px, 8vw, 110px);
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(230,161,92,0.10), transparent 60%),
    radial-gradient(900px 700px at 10% 90%, rgba(47,109,143,0.12), transparent 62%);
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__title {
  /* Sized so the single unbreakable word "STOWORK" always fits its grid column
     (hero stays two-column down to 860px). Overflow here would clip the last
     letter because -webkit-background-clip:text has no gradient past the box. */
  font-size: clamp(2.4rem, 7.6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 100%;
  background: linear-gradient(180deg, #fff 0%, #d7cbb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tagline {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 0.9rem;
  max-width: 20ch;
}
.hero__pitch {
  color: var(--muted);
  max-width: 44ch;
  font-size: 1.06rem;
  margin: 0 0 1.9rem;
}
.hero__snap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.9rem;
}
.hero__snap-label { color: var(--muted-2); font-size: 0.85rem; margin-right: 0.2rem; }

/* buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(180deg, var(--amber-hi), var(--amber));
  color: #241704;
  box-shadow: 0 12px 30px -14px rgba(230,161,92,0.7);
}
.btn--primary:hover { color: #241704; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--amber); color: var(--text); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--play { flex: 0 0 auto; }

.pill {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}
.pill:hover { color: var(--text); border-color: var(--muted-2); }
.pill.is-active {
  color: var(--amber);
  border-color: var(--amber);
  background: var(--amber-dim);
}
.pill[disabled] { opacity: 0.4; cursor: not-allowed; }

/* -------------------------------------------------- 3D VIZ + FALLBACK --- */
.viz {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, #1d232b 0%, #12161b 70%);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.viz--hero  { aspect-ratio: 4 / 3; }
.viz--deploy { aspect-ratio: 16 / 10; }
.viz--mini  { aspect-ratio: 1 / 1; }

.viz__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;            /* allow page scroll on touch over canvas */
  opacity: 0;
  transition: opacity 0.5s ease;
}
.viz.is-live .viz__canvas { opacity: 1; }

/* Fallback panel: visible by default; hidden only once a scene is live. */
.viz__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.6rem;
  color: var(--muted);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px),
    var(--panel);
}
.viz.is-live .viz__fallback { display: none; }
.viz__fallback p { margin: 0; max-width: 34ch; font-size: 0.92rem; }
.viz__fallback strong { color: var(--text); }
.viz__fallback-glyph {
  font-size: 2rem;
  color: var(--amber);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}
.viz__fallback--mini { padding: 0.8rem; }
.viz__fallback--mini p { font-size: 0.8rem; }
.viz__fallback--mini .viz__fallback-glyph { font-size: 1.4rem; margin-bottom: 0.2rem; }

/* ------------------------------------------------------------ PROBLEM --- */
.problem__grid {
  list-style: none;
  margin: 0 0 2.6rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.problem__grid li {
  background: var(--panel);
  padding: 1.5rem 1.4rem;
}
.problem__ico { font-size: 1.3rem; color: var(--amber); display: block; margin-bottom: 0.6rem; }
.problem__grid h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.problem__grid p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.problem__thesis {
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
  max-width: 54ch;
  color: var(--text);
}
.problem__thesis strong { color: var(--amber); }

/* ------------------------------------------------------------- DEPLOY --- */
.deploy { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.deploy__stage-panel {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}
.viz--deploy { margin-bottom: 1.2rem; }

.deploy__readout {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding: 0.7rem 1rem;
  background: rgba(16,20,26,0.62);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.readout__k {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  color: var(--muted-2);
  margin-bottom: 0.1rem;
}
.readout__stage-label { font-weight: 700; color: var(--amber); font-size: 1rem; }
.readout__clock-val { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 1rem; }
.readout__budget { color: var(--muted-2); font-size: 0.78rem; margin-left: 0.2rem; }
.readout__pct-val { font-weight: 700; font-variant-numeric: tabular-nums; }
.readout__clock, .readout__pct, .readout__stage { min-width: 0; }

.deploy__caption {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text);
  margin: 0.4rem 0 1.6rem;
  min-height: 2.4em;
}

/* scrubber */
.scrubber { position: relative; margin: 0 0 3.4rem; padding-top: 0.4rem; }
.scrubber__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--line) 0%);
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.scrubber__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--amber-hi), var(--amber));
  border: 3px solid var(--bg);
  box-shadow: 0 4px 14px -4px rgba(230,161,92,0.8);
  cursor: grab;
}
.scrubber__range::-webkit-slider-thumb:active { cursor: grabbing; }
.scrubber__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--bg);
  cursor: grab;
}
.scrubber__range:focus-visible { box-shadow: 0 0 0 3px var(--amber-dim); }

.scrubber__ticks {
  position: relative;
  height: 3.2rem;
  margin-top: 0.55rem;
}
.scrubber__tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.scrubber__tick-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted-2);
  margin-bottom: 0.3rem;
}
.scrubber__tick-label {
  font-size: 0.66rem;
  color: var(--muted-2);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
/* keep the first/last labels from clipping the panel edges */
.scrubber__tick:first-child { transform: translateX(-10%); align-items: flex-start; }
.scrubber__tick:last-child  { transform: translateX(-90%); align-items: flex-end; }
@media (max-width: 640px) {
  .scrubber__tick-label { display: none; }
}

.deploy__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.stage-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stage-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.stage-btn:hover { color: var(--text); border-color: var(--muted-2); }
.stage-btn.is-active { color: var(--amber); border-color: var(--amber); background: var(--amber-dim); }
.stage-btn__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em; height: 1.35em;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 0.72rem;
}

/* ------------------------------------------------------------- LAYOUT --- */
.dim-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.6rem;
}
.dim-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.dim-card__k {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.dim-card__v {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.dim-card__v em { font-style: normal; font-size: 0.5em; color: var(--muted); font-weight: 600; }
.dim-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.feature-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.6rem;
}
.frow { background: var(--panel); padding: 1.7rem 1.6rem; }
.frow h3 { font-size: 1.2rem; color: var(--amber); margin-bottom: 0.6rem; }
.frow p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.frow strong { color: var(--text); }

.sku-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.sku {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.sku h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.sku__wt {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.sku p { margin: 0; color: var(--muted); }

/* ---------------------------------------------------- COMPUTE BAY (BYO) --- */
.bay {
  margin-top: 2.6rem;
  background:
    radial-gradient(700px 380px at 82% -10%, rgba(230,161,92,0.10), transparent 62%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}
.bay__eyebrow { margin-bottom: 0.7rem; }
.bay__title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  max-width: 20ch;
}
.bay__lede {
  color: var(--muted);
  max-width: 66ch;
  font-size: 1.02rem;
  margin: 0 0 1.4rem;
}
.bay__lede strong { color: var(--text); }
.bay__pills {
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.bay-pill {
  border: 1px solid var(--line);
  background: rgba(230,161,92,0.06);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.bay__devices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.bay-dev { background: var(--panel); padding: 1.5rem 1.4rem; }
.bay-dev__k {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: var(--amber);
  margin-bottom: 0.55rem;
}
.bay-dev__v {
  display: block;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}
.bay-dev__v em { font-style: normal; font-size: 0.52em; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
.bay-dev p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.bay__foot {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 70ch;
}
.bay__foot strong { color: var(--amber); }

/* ------------------------------------------------------------ GALLERY --- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.gallery__cell { margin: 0; }
.gallery__cell figcaption {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.gallery__cell figcaption strong { font-size: 1.05rem; }
.gallery__cell figcaption span { color: var(--muted); font-size: 0.9rem; }

/* -------------------------------------------------------------- BUILD --- */
.build__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.build-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.build-card:hover { transform: translateY(-4px); border-color: var(--amber); color: var(--text); }
.build-card__tag {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 1.1rem;
}
.build-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.build-card p { color: var(--muted); font-size: 0.95rem; margin: 0 0 1.3rem; flex: 1; }
.build-card__link { color: var(--amber); font-weight: 600; font-size: 0.92rem; }

/* --------------------------------------------------------------- SPECS --- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 1.6rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 520px;
}
.spec-table caption {
  text-align: left;
  padding: 1rem 1.2rem 0.4rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.spec-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  width: 34%;
  white-space: nowrap;
}
.spec-table th, .spec-table td { padding: 0.85rem 1.2rem; vertical-align: top; }
.spec-table tbody tr { border-top: 1px solid var(--line-soft); }
.spec-table td { color: var(--muted); }
.spec-table--seq thead th {
  text-align: left;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  background: var(--panel);
}
.spec-table--seq td:first-child, .spec-table--seq th:first-child { width: 3rem; color: var(--amber); font-weight: 700; }
.spec-table--seq td:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ----------------------------------------------------------------- CTA --- */
.cta {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(230,161,92,0.12), transparent 60%),
    var(--bg-2);
  text-align: center;
}
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta__title { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; max-width: 18ch; }
.cta__sub { color: var(--muted); max-width: 48ch; margin: 0 0 0.8rem; font-size: 1.08rem; }

/* --------------------------------------------------------------- FOOT --- */
.foot { border-top: 1px solid var(--line-soft); padding: 2.2rem 0; }
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.foot__brand { font-weight: 800; letter-spacing: 0.16em; }
.foot__note { color: var(--muted-2); font-size: 0.88rem; }
.foot__hub { font-size: 0.9rem; }

/* ----------------------------------------------------- RESPONSIVE HERO --- */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__viz { order: -1; }          /* model on top on narrow screens */
  .viz--hero { aspect-ratio: 5 / 4; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .deploy__readout { padding: 0.5rem 0.7rem; gap: 0.35rem 0.9rem; top: 0.55rem; left: 0.55rem; right: 0.55rem; }
  .readout__budget { display: none; }
}
