:root {
  color-scheme: dark;
  --bg: #090d18;
  --bg-raised: #0e1423;
  --panel: rgba(19, 27, 45, 0.82);
  --panel-solid: #131b2d;
  --panel-soft: #182238;
  --line: rgba(151, 166, 196, 0.18);
  --line-strong: rgba(151, 166, 196, 0.32);
  --text: #f5f7fb;
  --muted: #98a7c2;
  --accent: #58e6ba;
  --accent-strong: #25cfa0;
  --accent-soft: rgba(88, 230, 186, 0.12);
  --blue: #73a9ff;
  --blue-soft: rgba(115, 169, 255, 0.12);
  --danger: #ff7485;
  --danger-soft: rgba(255, 116, 133, 0.12);
  --warning: #ffc969;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -8%, rgba(49, 105, 168, 0.28), transparent 36rem),
    radial-gradient(circle at 90% 18%, rgba(36, 190, 151, 0.14), transparent 30rem),
    linear-gradient(180deg, #0a0f1c 0%, #090d18 58%, #080b13 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  content: "";
  pointer-events: none;
}

button,
select {
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(115, 169, 255, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  color: #071510;
  background: var(--accent);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(88, 230, 186, 0.38);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(88, 230, 186, .18), rgba(115, 169, 255, .08));
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 8px 30px rgba(37, 207, 160, .12);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  width: 19px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.brand-mark::before {
  transform: translateY(-7px) skewX(-24deg);
}

.brand-mark span {
  transform: skewX(-24deg);
}

.brand-mark::after {
  transform: translateY(7px) skewX(-24deg);
}

.brand > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secure-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(11, 17, 29, .68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.secure-pill {
  padding: 8px 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(88, 230, 186, .09);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .72fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  min-height: 540px;
  padding: 68px 0 78px;
}

.eyebrow,
.step-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.065em;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--accent), #8ce6ff 75%);
  background-clip: text;
  -webkit-background-clip: text;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.hero-summary {
  max-width: 630px;
  margin-bottom: 32px;
  color: #adbad0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, opacity 140ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.button-primary {
  color: #04130f;
  background: linear-gradient(135deg, #69f1c5, #40d2aa);
  box-shadow: 0 12px 34px rgba(43, 211, 164, .18);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.045);
}

.button-quiet {
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
}

.button-quiet:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.035);
}

.button-danger {
  color: #ff9dab;
  border: 1px solid rgba(255, 116, 133, .28);
  background: var(--danger-soft);
}

.session-length {
  color: var(--muted);
  font-size: 13px;
}

.telemetry-card,
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(24, 34, 56, .84), rgba(13, 19, 33, .86));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
}

.telemetry-card {
  padding: 24px;
  border-radius: 24px;
}

.telemetry-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.readiness-track {
  height: 5px;
  margin: 16px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
}

.readiness-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-strong), #74b5ff);
  transition: width 320ms ease;
}

.readiness-track span[data-score="1"] { width: 50%; }
.readiness-track span[data-score="2"] { width: 100%; }

.readiness-list,
.session-timeline,
.native-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.readiness-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.readiness-list li > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.readiness-list li.is-complete > span {
  color: #061a14;
  border-color: transparent;
  background: var(--accent);
}

.readiness-list li div {
  display: grid;
  gap: 3px;
}

.readiness-list strong {
  font-size: 14px;
}

.readiness-list small {
  color: var(--muted);
}

.message {
  padding: 14px 17px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 201, 105, .3);
  border-radius: 14px;
  color: #ffe2aa;
  background: rgba(255, 201, 105, .09);
  line-height: 1.45;
}

.message-error {
  border-color: rgba(255, 116, 133, .28);
  color: #ffbbc5;
  background: var(--danger-soft);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr);
  gap: 20px;
  align-items: stretch;
}

.panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-lg);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.panel-intro {
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

.badge {
  padding: 7px 11px;
}

.badge-ready {
  color: var(--accent);
  border-color: rgba(88, 230, 186, .3);
  background: var(--accent-soft);
}

.badge-working {
  color: #9fc5ff;
  border-color: rgba(115, 169, 255, .28);
  background: var(--blue-soft);
}

.badge-error {
  color: #ff9fad;
  border-color: rgba(255, 116, 133, .28);
  background: var(--danger-soft);
}

.badge-preview {
  color: var(--warning);
  border-color: rgba(255, 201, 105, .28);
  background: rgba(255, 201, 105, .09);
}

.controller-stage {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(88, 230, 186, .08), transparent 50%),
    #0b111e;
}

.controller {
  width: min(500px, 88%);
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.38));
}

.shoulders {
  display: flex;
  justify-content: space-between;
  padding: 0 56px;
  transform: translateY(10px);
}

.shoulder {
  width: 92px;
  height: 34px;
  border-radius: 16px 16px 7px 7px;
}

.controller-body {
  position: relative;
  display: grid;
  min-height: 205px;
  grid-template-columns: 1fr .7fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 30px 38px 40px;
  border: 1px solid rgba(190, 203, 225, .2);
  border-radius: 56px 56px 78px 78px;
  background: linear-gradient(160deg, #303a4d, #151c2b 62%, #101622);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.1), inset 0 -8px 18px rgba(0,0,0,.2);
}

.controller-body::before,
.controller-body::after {
  position: absolute;
  bottom: -12px;
  z-index: -1;
  width: 95px;
  height: 100px;
  border-radius: 0 0 45px 45px;
  background: #111825;
  content: "";
}

.controller-body::before {
  left: 26px;
  transform: rotate(14deg);
}

.controller-body::after {
  right: 26px;
  transform: rotate(-14deg);
}

.controller-left,
.controller-center {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.controller-center {
  gap: 12px;
}

.menu-buttons {
  display: flex;
  gap: 22px;
}

.pad-button {
  display: grid;
  place-items: center;
  color: #aab5c8;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, #222c3e, #111724);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 3px 7px rgba(0,0,0,.28);
  font-size: 12px;
  font-weight: 800;
  transition: color 60ms linear, border-color 60ms linear, background 60ms linear, box-shadow 60ms linear, transform 60ms linear;
}

.pad-button.is-active {
  color: #071711;
  border-color: rgba(112, 255, 208, .9);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(88,230,186,.14), 0 0 22px rgba(88,230,186,.35);
  transform: translateY(1px) scale(.96);
}

.stick-button {
  width: 49px;
  height: 49px;
  border-radius: 50%;
}

.menu-button {
  width: 27px;
  height: 20px;
  border-radius: 9px;
  font-size: 10px;
}

.xbox-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #81ebbc;
}

.dpad {
  display: grid;
  width: 78px;
  height: 78px;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
}

.dpad .pad-button {
  border-radius: 5px;
}

.dpad-up { grid-area: 1 / 2; }
.dpad-left { grid-area: 2 / 1; }
.dpad-right { grid-area: 2 / 3; }
.dpad-down { grid-area: 3 / 2; }

.face-buttons {
  display: grid;
  width: 112px;
  height: 112px;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  place-items: center;
  justify-self: center;
}

.face {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.face-y { grid-area: 1 / 2; color: #ffd76b; }
.face-x { grid-area: 2 / 1; color: #69b5ff; }
.face-b { grid-area: 2 / 3; color: #ff7f8d; }
.face-a { grid-area: 3 / 2; color: #65ec9a; }

.controller-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.controller-details > div,
.machine-card {
  display: grid;
  gap: 6px;
}

.controller-details small {
  color: var(--muted);
}

.detail-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.input-meters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  padding: 20px 0;
}

.input-meters label {
  display: grid;
  grid-template-columns: 1fr 74px 40px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.input-meters output {
  color: #d8e0ed;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

meter,
progress {
  width: 74px;
  height: 8px;
  accent-color: var(--accent);
}

.transport-note {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(115, 169, 255, .2);
  border-radius: 14px;
  background: var(--blue-soft);
}

.transport-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(115, 169, 255, .45);
  border-radius: 50%;
  color: #a8caff;
  font: 800 12px Georgia, serif;
}

.transport-note p {
  margin: 0;
  color: #aebbd0;
  font-size: 12px;
  line-height: 1.55;
}

.region-list {
  display: grid;
  gap: 11px;
}

.region-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(5, 9, 17, .24);
}

.region-row.is-best {
  border-color: rgba(88, 230, 186, .38);
  background: var(--accent-soft);
}

.region-row strong {
  font-size: 14px;
}

.region-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.region-latency {
  color: #c7d1e2;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.region-row.is-best .region-latency {
  color: var(--accent);
  font-weight: 800;
}

.empty-state {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  text-align: center;
}

.session-panel,
.native-stream-panel {
  margin-top: 20px;
}

.host-profile {
  display: grid;
  gap: 1px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.host-profile div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(7, 11, 20, .76);
}

.host-profile dt {
  color: var(--muted);
  font-size: 12px;
}

.host-profile dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 12px;
}

.moonlight-handoff {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.client-steps {
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.transport-note-hard {
  margin-top: 20px;
  border-color: rgba(255,201,105,.26);
  background: rgba(255,201,105,.08);
}

.transport-note-hard > span {
  color: var(--warning);
  border-color: rgba(255,201,105,.4);
}

.session-grid,
.handoff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 28px 0;
}

.session-timeline {
  display: grid;
}

.session-timeline li {
  position: relative;
  display: flex;
  gap: 15px;
  min-height: 70px;
  color: #687793;
}

.session-timeline li > span {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 3px;
  border: 3px solid var(--panel-solid);
  border-radius: 50%;
  background: #4c5870;
  box-shadow: 0 0 0 1px #4c5870;
}

.session-timeline li:not(:last-child)::before {
  position: absolute;
  top: 18px;
  bottom: -1px;
  left: 7px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.session-timeline li.is-complete,
.session-timeline li.is-current {
  color: var(--text);
}

.session-timeline li.is-complete > span,
.session-timeline li.is-current > span {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 14px rgba(88,230,186,.5);
}

.session-timeline li div {
  display: grid;
  align-content: start;
  gap: 4px;
}

.session-timeline small {
  color: var(--muted);
}

.session-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
}

.session-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 15px;
  background: #101827;
}

.session-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.session-facts dd {
  margin: 0;
  overflow: hidden;
  color: #dfe6f2;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ready-banner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ready-banner p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.ready-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(88, 230, 186, .45);
  border-radius: 16px;
  color: #061711;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(88,230,186,.22);
  font-size: 22px;
  font-weight: 900;
}

.machine-card,
.command-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 11, 20, .38);
}

.machine-card strong {
  margin-bottom: 13px;
  font-size: 20px;
}

.machine-card code {
  min-height: 24px;
  margin-bottom: 13px;
  overflow-wrap: anywhere;
  color: #a9c9ff;
}

.pairing-form {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.pairing-form label {
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.pairing-controls {
  display: grid;
  grid-template-columns: minmax(110px, 160px) max-content;
  gap: 10px;
  align-items: stretch;
}

.pairing-controls input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  background: #0b1220;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .24em;
  text-align: center;
}

.pairing-controls input:focus {
  border-color: rgba(88, 230, 186, .62);
  box-shadow: 0 0 0 3px rgba(88, 230, 186, .12);
}

.pairing-form small,
.pairing-status {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pairing-status-success {
  color: var(--accent);
}

.pairing-status-error {
  color: #ff9fad;
}

.command-card {
  display: grid;
  gap: 12px;
}

.command-card label {
  color: var(--muted);
  font-size: 12px;
}

select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #111a2b;
}

pre {
  min-height: 72px;
  padding: 14px;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(115,169,255,.16);
  border-radius: 11px;
  color: #bdd5ff;
  background: #080d17;
  white-space: pre-wrap;
  word-break: break-all;
}

.native-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.native-steps li {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-top: 1px solid var(--line);
}

.native-steps span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
}

.native-steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 48px 0 36px;
  color: #66738a;
  font-size: 11px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hero,
  .workspace {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 60px 0;
  }

  .telemetry-card {
    max-width: 560px;
  }

  .region-panel {
    order: 1;
  }

  .client-panel {
    order: 2;
  }
}

@media (max-width: 650px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand small,
  .secure-pill {
    display: none;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .hero-actions,
  .panel-heading,
  .controller-details {
    align-items: stretch;
    flex-direction: column;
  }

  .controller {
    width: 128%;
    transform: scale(.75);
  }

  .controller-stage {
    min-height: 230px;
  }

  .input-meters,
  .session-grid,
  .handoff-grid,
  .native-steps {
    grid-template-columns: 1fr;
  }

  .pairing-controls {
    grid-template-columns: 1fr;
  }

  .input-meters label {
    grid-template-columns: 1fr 90px 40px;
  }

  meter,
  progress {
    width: 90px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
