:root {
  --bg: #05070b;
  --panel: #101620;
  --panel-2: #151d2a;
  --panel-3: #0c1119;
  --text: #f5f8ff;
  --muted: #8792a6;
  --line: rgba(255, 255, 255, 0.09);
  --green: #36ff7a;
  --blue: #22b7ff;
  --danger: #ff5a72;
  --shadow-green: rgba(54, 255, 122, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  display: grid;
  place-items: center;
  padding: 18px;
}

button {
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

button:active {
  transform: scale(0.97);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.phone {
  position: relative;
  width: min(100%, 430px);
  height: min(900px, calc(100vh - 36px));
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 8%, rgba(34, 183, 255, 0.18), transparent 32%),
    radial-gradient(circle at 8% 74%, rgba(54, 255, 122, 0.14), transparent 34%),
    linear-gradient(180deg, #0a0e15 0%, #06080d 54%, #030406 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.app-shell {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: max(20px, env(safe-area-inset-top)) 18px max(16px, env(safe-area-inset-bottom));
}

.screen {
  min-height: 0;
  display: none;
  overflow-y: auto;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.screen::-webkit-scrollbar {
  display: none;
}

.screen.active {
  display: block;
}

.stack {
  display: grid;
  gap: 18px;
}

.login-screen {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 22px;
}

.login-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.login-card {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.login-card label {
  display: grid;
  gap: 8px;
}

.login-card label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.login-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  padding: 0 12px;
  outline: 0;
}

.login-card input:focus {
  border-color: rgba(54, 255, 122, 0.48);
  box-shadow: 0 0 0 3px rgba(54, 255, 122, 0.1);
}

.form-error {
  color: #ffd5dc;
  font-size: 13px;
  font-weight: 850;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(54, 255, 122, 0.35);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(54, 255, 122, 0.96), rgba(34, 183, 255, 0.96));
  color: #04100b;
  font-size: 18px;
  font-weight: 1000;
  box-shadow: 0 0 28px rgba(54, 255, 122, 0.24);
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.title {
  font-size: clamp(29px, 9vw, 42px);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
}

.routine-title {
  font-size: clamp(22px, 7vw, 30px);
  line-height: 1.02;
  font-weight: 1000;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.section-title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 1000;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 25, 37, 0.92), rgba(12, 17, 25, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.checkin {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.day {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dot {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #cbd5e7;
  font-size: 13px;
  font-weight: 1000;
}

.day.done {
  color: var(--green);
}

.day.done .dot {
  border-color: rgba(54, 255, 122, 0.55);
  background: rgba(54, 255, 122, 0.14);
  color: var(--green);
  box-shadow: 0 0 18px rgba(54, 255, 122, 0.18);
}

.quick-start {
  width: 100%;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #36ff7a 0%, #b8ff40 100%);
  color: #031008;
  font-weight: 1000;
  box-shadow: 0 18px 42px var(--shadow-green);
}

.quick-start span {
  font-size: 14px;
  font-weight: 950;
}

.quick-start strong {
  font-size: clamp(26px, 8vw, 36px);
  line-height: 1;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-stat {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 22, 32, 0.78);
}

.mini-stat span,
.mini-stat small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.mini-stat strong {
  color: var(--text);
  font-size: 31px;
  line-height: 0.95;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
}

.activity {
  display: grid;
  gap: 14px;
  padding: 17px;
}

.activity-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.activity-main strong {
  display: block;
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 1;
  font-weight: 1000;
}

.activity-main p {
  color: #c5cfdf;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.volume {
  color: var(--blue);
  font-size: 20px;
  font-weight: 1000;
  white-space: nowrap;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 183, 255, 0.28);
  border-radius: 8px;
  background: rgba(34, 183, 255, 0.08);
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}

.icon-button.close {
  color: #dce7f7;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.routine-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.routine-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 29, 42, 0.96), rgba(10, 15, 23, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.routine-card.featured {
  border-color: rgba(54, 255, 122, 0.28);
  background: linear-gradient(135deg, rgba(54, 255, 122, 0.12), rgba(21, 29, 42, 0.96) 38%, rgba(10, 15, 23, 0.98));
}

.routine-focus {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.routine-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 1000;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d9e2f2;
  font-size: 13px;
  font-weight: 900;
  padding: 0 10px;
  white-space: nowrap;
}

.chip.green {
  border-color: rgba(54, 255, 122, 0.36);
  background: rgba(54, 255, 122, 0.1);
  color: var(--green);
}

.arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 183, 255, 0.28);
  border-radius: 8px;
  background: rgba(34, 183, 255, 0.06);
  color: var(--blue);
  font-size: 24px;
  font-weight: 1000;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 18px;
  background: rgba(1, 3, 7, 0.62);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.sheet {
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 25, 37, 0.98), rgba(8, 12, 18, 0.98));
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.48);
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.sheet h2 {
  font-size: 28px;
  line-height: 1;
  font-weight: 1000;
}

.routine-form {
  display: grid;
  gap: 14px;
}

.routine-form label,
.routine-form fieldset {
  width: 100%;
  display: grid;
  gap: 8px;
  margin: 0;
}

.routine-form span,
.routine-form legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.routine-form input,
.routine-form select,
.profile-form input,
.profile-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  padding: 0 12px;
  outline: 0;
}

.routine-form input:focus,
.routine-form select:focus,
.profile-form input:focus,
.profile-form select:focus {
  border-color: rgba(54, 255, 122, 0.48);
  box-shadow: 0 0 0 3px rgba(54, 255, 122, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10px;
}

.form-grid.compact {
  grid-template-columns: 88px 1fr;
}

.movement-fields {
  display: grid;
  gap: 10px;
  max-height: 305px;
  overflow-y: auto;
  padding-right: 2px;
}

.movement-fields fieldset {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.save-routine {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #36ff7a, #b8ff40);
  color: #031008;
  font-size: 19px;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(54, 255, 122, 0.22);
}

.text-action {
  min-height: 32px;
  border: 1px solid rgba(54, 255, 122, 0.34);
  border-radius: 8px;
  background: rgba(54, 255, 122, 0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  padding: 0 12px;
}

.text-action.compact {
  min-height: 36px;
  padding: 0 10px;
}

.stats-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  margin-top: 8px;
}

.stat {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(54, 255, 122, 0.22);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(54, 255, 122, 0.16), rgba(16, 22, 32, 0.96) 54%, rgba(10, 15, 23, 0.98));
}

.stat.secondary {
  border-color: rgba(34, 183, 255, 0.24);
  background: linear-gradient(160deg, rgba(34, 183, 255, 0.17), rgba(16, 22, 32, 0.96) 54%, rgba(10, 15, 23, 0.98));
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.stat strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(30px, 9vw, 42px);
  line-height: 0.95;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
}

.stat small {
  color: #cbd5e7;
  font-size: 13px;
  font-weight: 900;
}

.list-head {
  margin-top: 2px;
}

.history-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 6px;
}

.history-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 22, 32, 0.84);
}

.date {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.history-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 1000;
}

.history-item p {
  color: #c5cfdf;
  font-size: 13px;
  font-weight: 850;
}

.sets {
  color: var(--green);
  font-size: 16px;
  font-weight: 1000;
  white-space: nowrap;
}

.workout-layout {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 22px;
}

.end-btn {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(255, 90, 114, 0.45);
  border-radius: 8px;
  background: rgba(255, 90, 114, 0.1);
  color: #ffd5dc;
  font-size: 13px;
  font-weight: 900;
  padding: 0 12px;
}

.movement {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 31, 0.72);
}

.movement h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 12vw, 52px);
  line-height: 0.95;
  font-weight: 1000;
}

.timer-zone {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 315px;
}

.timer-wrap {
  position: relative;
  width: min(76vw, 305px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(var(--green) calc(var(--ring) * 1turn), rgba(255,255,255,0.08) 0),
    radial-gradient(circle, rgba(34, 183, 255, 0.18) 0 54%, transparent 55%);
  filter: drop-shadow(0 0 22px rgba(54, 255, 122, 0.26));
}

.ring::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, #080c13 0%, #05070b 100%);
  box-shadow: inset 0 0 28px rgba(34, 183, 255, 0.08);
}

.timer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timer-label {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.time {
  font-variant-numeric: tabular-nums;
  font-size: clamp(58px, 19vw, 86px);
  line-height: 0.95;
  font-weight: 1000;
}

.adjust {
  display: flex;
  gap: 10px;
}

.adjust button {
  width: 86px;
  height: 42px;
  border: 1px solid rgba(34, 183, 255, 0.32);
  border-radius: 8px;
  background: rgba(34, 183, 255, 0.09);
  color: #bfeeff;
  font-size: 16px;
  font-weight: 950;
}

.next {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.next span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.next strong {
  display: block;
  margin-top: 3px;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 950;
}

.next .count {
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
}

.main-btn {
  width: 100%;
  min-height: 76px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #1777ff, #19c8ff);
  color: #021018;
  font-size: clamp(23px, 7vw, 30px);
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(25, 200, 255, 0.28);
}

.main-btn.ready {
  background: linear-gradient(135deg, #36ff7a, #b8ff40);
  animation: breathe 1.28s ease-in-out infinite;
}

.profile-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(54, 255, 122, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(54, 255, 122, 0.12), rgba(16, 22, 32, 0.92));
}

.avatar.large {
  width: 72px;
  height: 72px;
  font-size: 30px;
}

.profile-subtitle {
  margin-top: 8px;
  color: #c5cfdf;
  font-size: 14px;
  font-weight: 850;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.profile-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.profile-form {
  display: grid;
  gap: 14px;
}

.profile-form label {
  display: grid;
  gap: 8px;
}

.profile-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.segmented.two {
  grid-template-columns: repeat(2, 1fr);
}

.segmented label {
  display: block;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented label span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9e2f2;
  font-size: 14px;
  font-weight: 950;
}

.segmented input:checked + span {
  border-color: rgba(54, 255, 122, 0.48);
  background: rgba(54, 255, 122, 0.14);
  color: var(--green);
  box-shadow: 0 0 18px rgba(54, 255, 122, 0.16);
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.profile-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.profile-row strong {
  font-size: 15px;
  font-weight: 1000;
}

.ai-widget {
  position: absolute;
  right: 18px;
  bottom: 92px;
  z-index: 30;
}

.ai-fab {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #031008;
  font-size: 18px;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(34, 183, 255, 0.32);
}

.ai-panel {
  width: min(354px, calc(100vw - 46px));
  max-height: min(560px, calc(100vh - 132px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(8, 12, 18, 0.98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
}

.ai-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.ai-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-head h2 {
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.ai-messages {
  min-height: 220px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 9px;
  padding-right: 2px;
}

.ai-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 800;
}

.ai-message.assistant {
  justify-self: start;
  background: rgba(255, 255, 255, 0.07);
  color: #dce7f7;
}

.ai-message.user {
  justify-self: end;
  background: rgba(54, 255, 122, 0.16);
  color: var(--green);
}

.ai-form {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 8px;
}

.ai-form input {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  padding: 0 11px;
  outline: 0;
}

.ai-form button {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #031008;
  font-size: 14px;
  font-weight: 1000;
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 13, 20, 0.92);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.22);
}

.tabbar.hidden {
  display: none;
}

.tabbar button {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.tabbar button span {
  font-size: 18px;
  line-height: 1;
}

.tabbar button.active {
  border-color: rgba(54, 255, 122, 0.32);
  background: rgba(54, 255, 122, 0.12);
  color: var(--green);
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(54, 255, 122, 0.42), 0 18px 38px rgba(54, 255, 122, 0.3);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(54, 255, 122, 0), 0 20px 54px rgba(54, 255, 122, 0.52);
  }
}

@media (max-width: 370px), (max-height: 740px) {
  body {
    padding: 0;
  }

  .phone {
    width: 100%;
    height: 100vh;
    min-height: 680px;
    border: 0;
    border-radius: 0;
  }

  .app-shell {
    padding: 16px 14px;
  }

  .stats-hero {
    grid-template-columns: 1fr;
  }

  .history-item {
    grid-template-columns: 64px 1fr;
  }

  .sets {
    grid-column: 2;
  }

  .workout-layout {
    gap: 16px;
  }

  .timer-zone {
    min-height: 270px;
  }
}
