:root {
  --black: #030303;
  --black-soft: #0b0c0d;
  --panel: #101113;
  --panel-2: #161719;
  --yellow: #ffc400;
  --yellow-deep: #d99b00;
  --white: #ffffff;
  --silver: #d9d9d9;
  --silver-dark: #8c8c8c;
  --muted: #a9abb3;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.3);
  --app-scale: 0.8;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  zoom: var(--app-scale);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 196, 0, 0.13), transparent 26rem),
    radial-gradient(circle at 30% 92%, rgba(217, 217, 217, 0.1), transparent 28rem),
    var(--black);
  letter-spacing: 0;
}

@supports not (zoom: 1) {
  body {
    width: 125%;
    min-height: 125vh;
    transform: scale(var(--app-scale));
    transform-origin: top left;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.app-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 210px;
  padding: 20px 14px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #050607, #0b0d0e);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 196, 0, 0.4) transparent;
}

.app-sidebar,
.profile-main {
  transition: width 180ms ease, margin-left 180ms ease, padding 180ms ease;
}

.app-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 22px;
}

.sidebar-logo img {
  width: 150px;
}

.app-sidebar nav {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.app-menu-section {
  display: grid;
  gap: 6px;
}

.app-menu-section p {
  margin: 0;
  padding: 0 10px;
  color: rgba(217, 217, 217, 0.62);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.app-sidebar a.active,
.app-sidebar a:hover {
  border-color: rgba(255, 196, 0, 0.65);
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
}

.sidebar-subnav {
  display: grid;
  gap: 3px;
  margin: -2px 0 2px 28px;
  padding: 4px 0 4px 12px;
  border-left: 1px solid rgba(255, 196, 0, 0.52);
}

.sidebar-subnav a {
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.sidebar-subnav a.active,
.sidebar-subnav a:hover {
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.1);
}

.sidebar-collapse-button {
  appearance: none;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 196, 0, 0.52);
  border-radius: 10px;
  background: rgba(255, 196, 0, 0.08);
  cursor: pointer;
}

.sidebar-collapse-button span {
  display: block;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
}

.sidebar-collapse-button span:first-child {
  transform: rotate(42deg) translate(2px, 1px);
}

.sidebar-collapse-button span:last-child {
  transform: rotate(-42deg) translate(2px, -1px);
}

body.profile-sidebar-collapsed .app-sidebar {
  width: 76px;
  padding-inline: 10px;
}

body.profile-sidebar-collapsed .app-sidebar-top {
  justify-content: center;
}

body.profile-sidebar-collapsed .sidebar-logo,
body.profile-sidebar-collapsed .app-menu-section p,
body.profile-sidebar-collapsed .sidebar-subnav {
  display: none;
}

body.profile-sidebar-collapsed .app-sidebar a {
  justify-content: center;
  min-height: 42px;
  padding: 0;
  font-size: 0;
}

body.profile-sidebar-collapsed .app-sidebar svg {
  width: 22px;
  height: 22px;
}

body.profile-sidebar-collapsed .sidebar-collapse-button span:first-child {
  transform: rotate(-42deg) translate(-2px, 1px);
}

body.profile-sidebar-collapsed .sidebar-collapse-button span:last-child {
  transform: rotate(42deg) translate(-2px, -1px);
}

body.profile-sidebar-collapsed .profile-main {
  margin-left: 76px;
}

.app-sidebar svg,
.sidebar-toggle span {
  flex: 0 0 auto;
}

.app-sidebar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-overlay {
  display: none;
}

.profile-main {
  min-height: 100vh;
  margin-left: 210px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(18px);
}

.topbar-user {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 4px 6px 4px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--silver);
  background: transparent;
  cursor: pointer;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.topbar-user:hover,
.topbar-user-menu.open .topbar-user {
  border-color: rgba(255, 196, 0, 0.42);
  color: var(--white);
  background: rgba(255, 196, 0, 0.08);
}

.topbar-user img {
  width: 34px;
  height: 34px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
}

.topbar-user-menu {
  position: relative;
}

.topbar-chevron {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.topbar-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  width: 210px;
  padding: 8px;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), rgba(255, 255, 255, 0.04)),
    #101113;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.topbar-dropdown[hidden] {
  display: none;
}

.topbar-dropdown a,
.topbar-dropdown button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--silver);
  background: transparent;
  cursor: pointer;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 850;
  text-align: left;
}

.topbar-dropdown a:hover,
.topbar-dropdown button:hover {
  color: #080808;
  background: var(--yellow);
}

.sidebar-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.sidebar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.profile-stage {
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: start;
  padding: clamp(20px, 2.4vw, 30px);
}

.profile-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

body[data-profile-screen="8"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="10"] .profile-shell {
  width: min(560px, 100%);
}

body[data-profile-screen="11"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="12"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="13"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="14"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="15"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="17"] .profile-shell {
  width: 100%;
}

body[data-profile-screen="18"] .profile-shell,
body[data-profile-screen="19"] .profile-shell {
  width: 100%;
}

.screen {
  min-height: min(640px, calc(100vh - 118px));
  animation: rise 180ms ease;
  scroll-margin-top: 92px;
}

.screen[hidden] {
  display: none;
}

.intro-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.8fr);
  gap: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 196, 0, 0.06)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.intro-copy {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 70px);
}

.eyebrow,
.step-label {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy h1,
.done-screen h2 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.55rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.intro-copy h1 span,
.done-screen h2 span {
  display: block;
  color: var(--yellow);
}

.intro-copy > p {
  max-width: 470px;
  margin: 20px 0 24px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.65;
}

.intro-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
}

.intro-copy li {
  position: relative;
  padding-left: 30px;
}

.intro-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
}

.intro-copy li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.48rem;
  width: 8px;
  height: 5px;
  border-left: 2px solid #070707;
  border-bottom: 2px solid #070707;
  transform: rotate(-45deg);
}

.intro-media {
  position: relative;
  min-height: 100%;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--panel), transparent 36%, #101113 100%);
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.intro-note,
.soft-note {
  display: block;
  margin: 0;
  color: #111;
  background: linear-gradient(180deg, #f3f3f3, var(--silver));
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.intro-note {
  position: absolute;
  left: clamp(34px, 5vw, 70px);
  right: clamp(34px, 5vw, 70px);
  bottom: 32px;
  z-index: 2;
  padding: 18px 22px;
  border-radius: 6px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.primary-action,
.dashboard-action,
.secondary-action {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.primary-action,
.dashboard-action {
  border: 0;
  color: #080808;
  background: linear-gradient(180deg, #ffe36d 0%, var(--yellow) 45%, var(--yellow-deep) 100%);
  box-shadow: 0 16px 32px rgba(255, 196, 0, 0.18);
}

.secondary-action {
  border: 1px solid rgba(217, 217, 217, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.secondary-action.compact {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.76rem;
}

.primary-action {
  width: min(300px, 100%);
}

.form-screen {
  display: grid;
  align-content: start;
}

.screen-header {
  width: min(780px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto 14px;
}

.back-action {
  min-height: 42px;
  border: 0;
  color: var(--silver);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.back-action::before {
  content: "<";
  margin-right: 8px;
  color: var(--yellow);
}

.progress-dots {
  display: flex;
  gap: 10px;
}

.progress-dots span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #505157;
}

.progress-dots span.done,
.progress-dots span.active {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.profile-card {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.card-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.heading-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--yellow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.heading-icon svg,
.complete-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-card h2,
.next-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.62rem, 2.55vw, 2.22rem);
  line-height: 1;
  text-transform: uppercase;
}

.profile-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.avatar-editor {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin: -4px 0 24px;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line);
}

.avatar-frame {
  width: 96px;
  height: 96px;
  padding: 4px;
  border: 1px solid rgba(255, 196, 0, 0.76);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)),
    var(--panel-2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.avatar-copy {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.avatar-copy strong {
  color: var(--white);
  font-size: 1.02rem;
}

.avatar-copy span {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.avatar-upload {
  width: max-content;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0 !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 196, 0, 0.7) !important;
  border-radius: 6px;
  color: #090909 !important;
  background: linear-gradient(180deg, #ffe36d, var(--yellow));
  cursor: pointer;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

.avatar-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.profile-card label,
.profile-card fieldset {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
  padding: 0;
  border: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.profile-card input,
.profile-card select,
.profile-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--white);
  background: #0a0b0c;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.profile-card textarea {
  min-height: 96px;
  padding: 14px 16px;
  resize: vertical;
}

.profile-card input:focus,
.profile-card select:focus,
.profile-card textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-note,
.soft-note {
  margin: 10px 0 26px;
  padding: 18px;
  border-radius: 6px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.info-note {
  border: 1px solid rgba(217, 217, 217, 0.42);
  color: var(--silver);
  background: rgba(217, 217, 217, 0.08);
}

.info-note strong,
.info-note span {
  display: block;
}

.choice-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-grid legend,
.chip-field legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--silver);
}

.choice-grid label,
.chip-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.choice-grid input,
.chip-field input {
  width: auto;
  min-height: auto;
  accent-color: var(--yellow);
}

.chip-field {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.chip-field label:has(input:checked),
.choice-grid label:has(input:checked) {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.1);
}

.done-screen {
  min-height: min(620px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(118px, 150px) minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(26px, 3.4vw, 42px);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 196, 0, 0.05)),
    var(--panel);
}

.done-screen > div:nth-child(2) {
  min-width: 0;
}

.done-screen h2 {
  max-width: 540px;
  font-size: clamp(2.75rem, 4.7vw, 4.15rem);
  line-height: 0.98;
  overflow-wrap: normal;
}

.complete-mark {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  color: #070707;
  background: linear-gradient(180deg, #ffffff, var(--silver));
  box-shadow: 0 24px 50px rgba(255, 255, 255, 0.08);
}

.complete-mark svg {
  width: 62px;
  height: 62px;
  stroke-width: 2.4;
}

.done-screen p:not(.step-label) {
  max-width: 440px;
  margin: 18px 0 28px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
}

.dashboard-action,
.secondary-action {
  width: min(260px, 100%);
}

.done-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.next-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.next-panel h3 {
  color: var(--yellow);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  margin-bottom: 20px;
}

.next-panel article {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-family: "Segoe UI", Arial, sans-serif;
}

.next-panel strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.next-panel strong,
.next-panel span {
  display: block;
}

.next-panel span {
  margin-top: 4px;
  color: var(--muted);
}

.customer-plans-screen {
  display: grid;
  gap: 24px;
}

.plans-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.plans-hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.plans-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

.customer-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.customer-plan-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 196, 0, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.customer-plan-section h3,
.customer-plan-section p {
  margin: 0;
}

.customer-plan-section h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.customer-plan-section p:not(.eyebrow) {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.customer-plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
}

.customer-plan-card.featured {
  border-color: rgba(255, 196, 0, 0.72);
}

.customer-plan-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.customer-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #070707;
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.customer-plan-body {
  padding: 20px;
}

.customer-plan-body h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.customer-plan-body p:not(.step-label) {
  margin: 10px 0 16px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.customer-plan-body strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
}

.customer-plan-body strong span {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.84rem;
}

.customer-plan-special {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 196, 0, 0.12);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.customer-plan-body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
}

.customer-plan-body li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--yellow);
  font-weight: 950;
}

.customer-plan-actions {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
  margin-top: 20px;
}

.customer-plan-actions .primary-action,
.customer-plan-actions .secondary-action {
  width: 100%;
}

.customer-plan-compare {
  display: grid;
  gap: 16px;
}

.customer-compare-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.customer-compare-heading h3 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.customer-compare-heading p:not(.eyebrow),
.customer-compare-heading span {
  margin: 10px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.customer-compare-heading > span {
  max-width: 260px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.customer-compare-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}

.customer-compare-table {
  min-width: calc(250px + (210px * var(--compare-cols)));
  display: grid;
  grid-template-columns: minmax(230px, 1.12fr) repeat(var(--compare-cols), minmax(200px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.customer-compare-cell {
  min-height: 56px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-compare-feature-title,
.customer-compare-action-label {
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 196, 0, 0.08);
}

.customer-compare-plan-head {
  gap: 6px;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.customer-compare-plan-head.featured {
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0.03));
}

.customer-compare-plan-head span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #080808;
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.customer-compare-plan-head strong {
  font-size: 1.12rem;
  text-transform: uppercase;
}

.customer-compare-plan-head small,
.customer-compare-plan-head em {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-style: normal;
  line-height: 1.35;
}

.customer-compare-plan-head b {
  color: var(--yellow);
  font-size: 1.35rem;
}

.customer-compare-feature-name {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.customer-compare-check-cell,
.customer-compare-action-cell {
  justify-items: center;
}

.customer-compare-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.customer-compare-mark.yes {
  background: var(--yellow);
}

.customer-compare-mark.yes::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #080808;
  border-bottom: 2px solid #080808;
  transform: rotate(-45deg);
}

.customer-compare-mark.no {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.customer-compare-mark.no::before,
.customer-compare-mark.no::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 9px;
  height: 2px;
  background: var(--muted);
}

.customer-compare-mark.no::before {
  transform: rotate(45deg);
}

.customer-compare-mark.no::after {
  transform: rotate(-45deg);
}

.customer-compare-action-cell .primary-action {
  width: 100%;
  min-height: 42px;
  font-size: 0.76rem;
}

.account-summary-screen {
  display: grid;
  gap: 18px;
}

.account-hero,
.account-plan-card,
.account-payments-card,
.account-services-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 196, 0, 0.05)),
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 3.2vw, 42px);
  border-color: rgba(255, 196, 0, 0.32);
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 196, 0, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(217, 217, 217, 0.08), rgba(255, 196, 0, 0.05)),
    var(--panel);
}

.account-hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.account-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 18px;
}

.account-plan-card,
.account-payments-card,
.account-services-card {
  padding: clamp(18px, 2.4vw, 26px);
}

.account-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-card-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.account-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 999px;
  color: #080808;
  background: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-pill.silver {
  color: #080808;
  background: var(--silver);
  border-color: rgba(255, 255, 255, 0.5);
}

.account-plan-card.is-active .account-pill {
  color: #041007;
  background: #17d36b;
  border-color: rgba(23, 211, 107, 0.6);
}

.account-plan-card.is-expired .account-pill,
.account-plan-card.is-rejected .account-pill {
  color: var(--white);
  background: #b62231;
  border-color: rgba(255, 82, 82, 0.54);
}

.account-plan-card.is-expiring_soon .account-pill,
.account-plan-card.is-pending .account-pill,
.account-plan-card.is-selected .account-pill {
  color: #080808;
  background: linear-gradient(180deg, #ffdf59, var(--yellow-deep));
}

.account-plan-price,
.account-total-paid {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 196, 0, 0.08);
}

.account-plan-price span,
.account-total-paid span,
.account-payment-last span,
.account-info-grid span,
.account-service-item span,
.account-service-item small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.account-plan-price strong,
.account-total-paid strong {
  color: var(--yellow);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.account-info-grid article {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
}

.account-info-grid strong {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.account-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.account-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.07);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
}

.account-payment-last {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.account-payment-last strong {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
}

.account-payment-last b {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
}

.account-payment-last small {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.account-services-card {
  display: grid;
  gap: 18px;
}

.account-services-list {
  display: grid;
  gap: 12px;
}

.account-training-program {
  display: grid;
  gap: 14px;
}

.customer-program-hero,
.customer-today-session {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.035));
}

.customer-program-hero h3,
.customer-today-session h4 {
  margin: 0;
  color: var(--white);
}

.customer-program-hero p,
.customer-today-session p {
  margin: 6px 0 0;
  color: var(--muted);
}

.customer-program-progress {
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 96px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.32);
}

.customer-program-progress strong {
  font-size: 1.6rem;
}

.customer-today-session {
  display: grid;
}

.customer-today-session span {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.customer-program-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.customer-program-calendar article {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.customer-program-calendar article.is-today {
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.1);
}

.customer-program-calendar article.is-rest {
  border-color: rgba(217, 217, 217, 0.12);
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
}

.customer-program-calendar article.is-rest strong {
  color: #121416;
  background: #8b9098;
}

.customer-program-calendar article.is-rest span,
.customer-program-calendar article.is-rest small {
  color: #c6cbd2;
}

.customer-program-calendar article.is-rest em {
  color: #d9d9d9;
  background: rgba(217, 217, 217, 0.1);
}

.customer-program-calendar strong {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #050505;
  background: var(--yellow);
}

.customer-program-calendar span,
.customer-program-calendar small {
  color: var(--white);
}

.customer-program-calendar em {
  width: fit-content;
  color: var(--yellow);
  font-style: normal;
  font-weight: 900;
}

.client-program-screen {
  display: grid;
  gap: 18px;
}

.client-program-hero,
.client-program-calendar-card,
.client-program-days-panel,
.client-program-session-card,
.client-program-side section {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(217, 217, 217, 0.045)),
    var(--panel);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.client-program-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 42px);
  border-color: rgba(255, 196, 0, 0.3);
}

.client-program-hero h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.client-program-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.55;
}

.client-program-progress-card {
  width: min(330px, 100%);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.client-program-progress-card span,
.client-program-panel-head span,
.client-program-side span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-progress-card strong {
  color: var(--yellow);
  font-size: 3rem;
  line-height: 0.95;
}

.client-program-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.client-program-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #fff3a2);
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.45);
}

.client-program-week-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.client-program-week-tabs button {
  min-width: 154px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.client-program-week-tabs button.active,
.client-program-week-tabs button:hover {
  border-color: var(--yellow);
  color: #080808;
  background: linear-gradient(180deg, #ffe36d, var(--yellow));
}

.client-program-week-tabs span {
  font-weight: 950;
  text-transform: uppercase;
}

.client-program-week-tabs small {
  color: inherit;
  opacity: 0.78;
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) minmax(260px, 330px);
  gap: 18px;
  align-items: start;
}

.client-program-days-panel,
.client-program-session-card,
.client-program-side section,
.client-program-calendar-card {
  padding: 18px;
}

.client-program-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.client-program-panel-head strong,
.client-program-side h3 {
  color: var(--white);
  text-transform: uppercase;
}

.client-program-day-list {
  display: grid;
  gap: 10px;
}

.client-program-day-card {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.client-program-day-card:hover,
.client-program-day-card.active {
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.13);
}

.client-program-day-card > span {
  grid-column: 1;
  color: var(--yellow);
  font-weight: 950;
  text-align: center;
}

.client-program-day-card > strong {
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #080808;
  background: var(--silver);
  font-size: 1.18rem;
}

.client-program-day-card div {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-width: 0;
}

.client-program-day-card b {
  display: block;
  overflow: hidden;
  color: var(--white);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-program-day-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-day-card em {
  grid-row: 1 / span 2;
  grid-column: 3;
  min-width: 88px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--yellow);
  text-align: center;
  font-style: normal;
  font-weight: 950;
  background: rgba(255, 196, 0, 0.12);
}

.client-program-day-card.is-completed em,
.client-program-session-state.is-completed {
  color: #12d86f;
  background: rgba(18, 216, 111, 0.12);
}

.client-program-day-card.is-rest em,
.client-program-session-state.is-rest {
  color: var(--silver);
  background: rgba(217, 217, 217, 0.12);
}

.client-program-day-card.is-rest {
  border-color: rgba(217, 217, 217, 0.12);
  color: #d9d9d9;
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
  cursor: default;
}

.client-program-day-card.is-rest > span {
  color: #aeb4bd;
}

.client-program-day-card.is-rest > strong {
  color: #121416;
  background: #8b9098;
}

.client-program-day-card.is-rest b {
  color: #d9d9d9;
}

.client-program-session-card {
  min-height: 520px;
}

.client-program-session-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.client-program-session-head span:first-child {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.client-program-session-head h3 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.client-program-session-head p {
  max-width: 760px;
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.client-program-session-state {
  align-self: flex-start;
  min-width: 112px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--yellow);
  text-align: center;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 196, 0, 0.12);
}

.client-program-session-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.client-program-session-metrics article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.client-program-session-metrics span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-session-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 1.7rem;
}

.client-program-start-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.4);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 196, 0, 0.16), rgba(255, 255, 255, 0.04));
}

.client-program-start-band span,
.client-program-player-head span,
.client-program-video-list-head span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-program-start-band strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.client-program-start-band p {
  margin: 5px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.client-program-video-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.client-program-video-studio.is-empty {
  display: block;
}

.client-program-player-wrap,
.client-program-video-list,
.client-program-video-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.client-program-player-wrap {
  overflow: hidden;
}

.client-program-player-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.client-program-player-head strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.client-program-player-head p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-player-tags,
.client-program-video-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.client-program-player-tags {
  justify-content: flex-start;
}

.client-program-player-tags span,
.client-program-video-mini-tags span {
  display: inline-grid;
  grid-template-columns: auto;
  gap: 2px;
  min-width: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 196, 0, 0.08)),
    rgba(8, 8, 8, 0.86);
}

.client-program-player-tags b,
.client-program-video-mini-tags b {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-program-player-tags strong,
.client-program-video-mini-tags strong {
  margin: 0;
  color: var(--yellow);
  font-size: 0.92rem;
  line-height: 1.05;
  text-transform: none;
}

.client-program-player-head em {
  flex: 0 0 auto;
  max-width: 220px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 196, 0, 0.35);
  border-radius: 999px;
  color: var(--yellow);
  font-style: normal;
  font-weight: 950;
  text-align: right;
  background: rgba(255, 196, 0, 0.08);
}

.client-program-player-frame {
  display: grid;
  min-height: 360px;
  background: #000;
}

.client-program-player-frame mux-player {
  width: 100%;
  height: 100%;
  min-height: 360px;
  --controls: block;
  --media-object-fit: contain;
}

.client-program-player-detail-strip {
  display: grid;
  gap: 10px;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.34);
}

.client-program-player-detail-strip > span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-program-timer-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 14px;
  align-items: center;
  margin: 12px 14px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.22);
}

.client-program-timer-callout span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-program-timer-callout strong {
  justify-self: end;
  color: var(--white);
  font-size: 1.35rem;
}

.client-program-timer-callout small {
  grid-column: 1 / -1;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-program-video-missing,
.client-program-video-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 26px;
  color: var(--silver);
  text-align: center;
}

.client-program-video-missing strong,
.client-program-video-empty strong {
  color: var(--white);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.client-program-video-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.client-program-video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-content: start;
  gap: 12px;
  max-height: 330px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 14px;
  scrollbar-color: rgba(255, 196, 0, 0.75) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.client-program-video-list::-webkit-scrollbar {
  width: 10px;
}

.client-program-video-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.client-program-video-list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(8, 8, 8, 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe16a, var(--yellow));
}

.client-program-video-list-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.client-program-video-list-head small,
.client-program-video-list-head > em {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
}

.client-program-video-list-head > em {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--yellow);
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.045);
}

.client-program-video-list button {
  display: grid;
  grid-template-columns: 34px 72px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 78px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), rgba(255, 196, 0, 0.035)),
    rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.client-program-video-list button.active,
.client-program-video-list button:hover {
  border-color: var(--yellow);
  box-shadow: 0 14px 30px rgba(255, 196, 0, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.17), rgba(255, 255, 255, 0.06)),
    rgba(255, 196, 0, 0.08);
}

.client-program-video-step {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  font-size: 0.86rem;
  font-weight: 950;
  background: var(--yellow);
}

.client-program-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 72px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 7px;
  background: #050505;
}

.client-program-video-thumb::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid rgba(255, 196, 0, 0.95);
  transform: translate(-38%, -50%);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.client-program-video-list img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.client-program-video-list button > div {
  min-width: 0;
}

.client-program-video-list strong,
.client-program-video-list small {
  display: block;
}

.client-program-video-list strong {
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.08;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-program-video-list small {
  margin-top: 4px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-program-video-mini-tags {
  margin-top: 7px;
}

.client-program-video-mini-tags span {
  min-width: 0;
  padding: 5px 7px;
  border-radius: 7px;
}

.client-program-video-mini-tags b {
  font-size: 0.58rem;
}

.client-program-video-mini-tags strong {
  max-width: 82px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.74rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-program-video-list button > em {
  grid-column: 2 / -1;
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  background: rgba(255, 196, 0, 0.13);
}

.client-program-rest-card,
.client-program-empty {
  display: grid;
  gap: 10px;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px dashed rgba(255, 196, 0, 0.38);
  border-radius: 8px;
  color: var(--silver);
  text-align: center;
  background: rgba(255, 196, 0, 0.055);
}

.client-program-empty h3,
.client-program-rest-card strong {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.client-program-empty span {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.client-program-exercise-list {
  display: grid;
  gap: 10px;
}

.client-program-exercise {
  display: grid;
  grid-template-columns: 38px 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.client-program-exercise > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #070707;
  background: var(--yellow);
  font-weight: 950;
}

.client-program-exercise-thumb {
  position: relative;
  overflow: hidden;
  width: 88px;
  aspect-ratio: 1.35;
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: 7px;
  background: #050505;
}

.client-program-exercise-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-program-exercise-thumb button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #060606;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.client-program-exercise-thumb button::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255, 196, 0, 0.45);
}

.client-program-exercise-thumb button::after {
  content: "";
  position: absolute;
  margin-left: 3px;
  border-left: 11px solid #050505;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.client-program-exercise strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
}

.client-program-exercise p,
.client-program-exercise small,
.client-program-side p,
.client-program-side small {
  margin: 4px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.client-program-exercise em {
  min-width: 92px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--yellow);
  text-align: center;
  font-style: normal;
  font-weight: 950;
  background: rgba(255, 196, 0, 0.1);
}

.client-program-complete {
  width: 100%;
  margin-top: 18px;
}

.client-program-complete:disabled {
  color: #071109;
  background: #18d66f;
  box-shadow: none;
  cursor: default;
}

.client-program-side {
  display: grid;
  gap: 14px;
}

.client-program-side section {
  display: grid;
  gap: 10px;
}

.client-program-side .eyebrow {
  margin: 0;
}

.client-program-side h3 {
  margin: 0;
  line-height: 1.05;
}

.client-program-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-program-side-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.client-program-side-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.client-program-muscle-section {
  overflow: hidden;
}

.client-program-muscle-diagram {
  display: grid;
  gap: 10px;
}

.training-muscle-figures {
  display: grid;
  place-items: center;
  min-height: 210px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at center, rgba(255, 196, 0, 0.12), transparent 58%),
    rgba(0, 0, 0, 0.34);
}

.training-muscle-diagram svg {
  width: min(100%, 360px);
  height: auto;
}

.body-outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.68);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.muscle-shape {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.5;
}

.muscle-shape.is-primary {
  fill: var(--yellow);
  opacity: 0.95;
  filter: drop-shadow(0 0 9px rgba(255, 196, 0, 0.42));
}

.muscle-shape.is-secondary {
  fill: var(--silver);
  opacity: 0.9;
}

.muscle-shape.is-empty {
  fill: rgba(255, 255, 255, 0.04);
  opacity: 0.34;
}

.training-muscle-legend,
.client-program-muscle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.training-muscle-legend span,
.client-program-muscle-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.training-muscle-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.training-muscle-legend i.is-primary {
  background: var(--yellow);
}

.training-muscle-legend i.is-secondary {
  background: var(--silver);
}

.client-program-muscle-tags b {
  color: var(--yellow);
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.client-program-calendar-card {
  display: grid;
  gap: 14px;
}

.client-program-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px;
}

.client-program-calendar-day {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.client-program-calendar-day:hover,
.client-program-calendar-day.active {
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.14);
}

.client-program-calendar-day span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 950;
}

.client-program-calendar-day strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
}

.client-program-calendar-day small {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.25;
}

.client-program-calendar-day.is-completed strong {
  background: #18d66f;
}

.client-program-calendar-day.is-rest strong {
  background: var(--silver);
}

.client-program-calendar-day.is-rest {
  border-color: rgba(217, 217, 217, 0.12);
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
  cursor: default;
}

.client-program-calendar-day.is-rest span,
.client-program-calendar-day.is-rest small {
  color: #aeb4bd;
}

.client-program-calendar-day.is-rest strong {
  color: #121416;
  background: #8b9098;
}

.account-service-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.2);
}

.account-service-item img {
  width: 92px;
  aspect-ratio: 1.25;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid rgba(255, 196, 0, 0.24);
}

.account-service-item h4,
.account-service-item p {
  margin: 0;
}

.account-service-item h4 {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.account-service-item p {
  margin-top: 6px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.account-service-item > div:last-child {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.account-service-item > div:last-child strong {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
}

.account-service-item small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #080808;
  background: var(--yellow);
  font-weight: 900;
}

.account-service-item.is-confirmed small {
  color: #071109;
  background: #17d36b;
}

.account-service-item.is-rejected small,
.account-service-item.is-payment_error small,
.account-service-item.is-cancelled small {
  color: var(--white);
  background: #b62231;
}

.account-empty {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px dashed rgba(255, 196, 0, 0.38);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.06);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.account-empty strong {
  color: var(--yellow);
  font-size: 1.06rem;
}

.account-empty .primary-action {
  width: fit-content;
}

.account-empty.compact {
  padding: 14px;
}

.training-library-screen {
  display: grid;
  gap: 22px;
}

.training-library-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 217, 217, 0.12), transparent 24rem),
    linear-gradient(120deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.training-library-hero h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 4.7rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.training-library-hero h2 span {
  color: var(--yellow);
}

.training-library-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 14px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.training-library-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 14px;
}

.training-live-panel {
  display: grid;
  gap: 22px;
}

.training-live-preview,
.training-live-actions,
.training-live-promise,
.training-live-rating,
.training-live-completion,
.training-live-selfie,
.training-live-routine {
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 196, 0, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.training-live-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.training-live-preview h3 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.training-live-preview p:not(.eyebrow) {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 760px;
}

.training-live-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.training-live-screen {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.82)),
    url("assets/plan-mixed.png") center/cover;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
}

.training-live-screen img {
  width: 150px;
  align-self: start;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.training-live-screen span,
.training-live-screen small {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.training-live-screen strong {
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.training-live-promise {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(190px, 0.46fr) minmax(0, 1.3fr);
  gap: 16px;
  align-items: stretch;
  padding: 20px;
}

.training-live-promise-copy,
.training-live-promise-summary,
.training-live-promise-slots,
.training-live-promise p {
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-promise-copy,
.training-live-promise-summary {
  display: grid;
  align-content: center;
  gap: 7px;
}

.training-live-promise-copy span,
.training-live-promise-summary span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-live-promise-copy strong,
.training-live-promise-summary strong {
  color: var(--white);
  font-size: 1.26rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.training-live-promise-copy small,
.training-live-promise-summary small {
  color: var(--silver);
  line-height: 1.4;
}

.training-live-promise-summary {
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.22), transparent 46%),
    rgba(0, 0, 0, 0.28);
}

.training-live-promise-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(104px, 1fr));
  gap: 10px;
}

.training-live-promise-slot {
  min-height: 102px;
  padding: 11px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.26);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.training-live-promise-slot.is-green {
  border-color: rgba(74, 222, 128, 0.38);
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.2), transparent 48%),
    linear-gradient(145deg, rgba(74, 222, 128, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
}

.training-live-promise-slot.is-yellow {
  border-color: rgba(250, 204, 21, 0.42);
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(250, 204, 21, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
}

.training-live-promise-slot.is-red {
  border-color: rgba(251, 113, 133, 0.46);
  background:
    radial-gradient(circle at top right, rgba(251, 113, 133, 0.24), transparent 48%),
    linear-gradient(145deg, rgba(251, 113, 133, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
}

.training-live-promise-slot:hover:not(:disabled),
.training-live-promise-slot:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 0, 0.7);
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.28);
}

.training-live-promise-slot.is-selected {
  border-color: var(--yellow);
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.9), rgba(245, 173, 0, 0.62));
  color: #111;
  box-shadow: 0 18px 36px rgba(255, 196, 0, 0.18);
}

.training-live-promise-slot.is-full:not(.is-selected) {
  opacity: 0.58;
  cursor: not-allowed;
}

.training-live-promise-slot span,
.training-live-promise-slot strong,
.training-live-promise-slot small,
.training-live-promise-slot b {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-promise-slot span {
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
}

.training-live-promise-slot strong {
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 950;
}

.training-live-promise-slot small {
  margin-top: 3px;
  color: inherit;
  font-size: 0.8rem;
  opacity: 0.82;
}

.training-live-promise-meter {
  height: 6px;
  margin: 9px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.training-live-promise-meter i {
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: inherit;
  background: #4ade80;
}

.training-live-promise-slot.is-yellow .training-live-promise-meter i {
  background: #facc15;
}

.training-live-promise-slot.is-red .training-live-promise-meter i {
  background: #fb7185;
}

.training-live-promise-slot.is-busy .training-live-promise-meter i {
  background: #facc15;
}

.training-live-promise-slot.is-hot .training-live-promise-meter i,
.training-live-promise-slot.is-full .training-live-promise-meter i {
  background: #fb7185;
}

.training-live-promise-slot b {
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.9;
}

.training-live-promise > p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--yellow);
  font-weight: 850;
}

.training-live-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.training-live-actions span {
  color: var(--silver);
}

.training-live-actions strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.25rem;
}

.training-live-routine {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.training-live-routine-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.training-live-routine-head span,
.training-live-routine-list h4 {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-live-routine-head strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.25rem;
}

.training-live-routine-head b {
  min-width: 112px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 196, 0, 0.36);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.24);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 950;
  text-align: center;
}

.training-live-routine-actions,
.training-live-routine-overview,
.training-live-routine-prompt,
.training-live-routine-detail-head,
.training-live-routine-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.training-live-routine-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.training-live-routine-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.training-live-routine-overview article {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(217, 217, 217, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.training-live-routine-overview span,
.training-live-routine-overview strong,
.training-live-routine-prompt span,
.training-live-routine-prompt strong,
.training-live-routine-detail-head span,
.training-live-routine-detail-head strong,
.training-live-routine-detail-head p,
.training-live-routine-series h4 span,
.training-live-routine-series h4 b,
.training-live-routine-card span,
.training-live-routine-card strong,
.training-live-routine-card p,
.training-live-routine-card-actions span,
.training-live-routine-card-actions b,
.training-live-routine-chips small {
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-routine-overview span,
.training-live-routine-prompt span,
.training-live-routine-detail-head span,
.training-live-routine-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.training-live-routine-overview strong,
.training-live-routine-prompt strong,
.training-live-routine-detail-head strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-weight: 950;
}

.training-live-routine-list {
  display: grid;
  gap: 12px;
}

.training-live-routine-list section {
  display: grid;
  gap: 10px;
}

.training-live-routine-list h4 {
  margin: 0;
}

.training-live-routine-list section > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.training-live-routine-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.training-live-routine-list article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.55);
  border-radius: 50%;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 950;
}

.training-live-routine-list article strong,
.training-live-routine-list article small,
.training-live-routine-empty {
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-routine-list article strong {
  display: block;
  color: var(--white);
  font-weight: 950;
}

.training-live-routine-list article small {
  display: block;
  margin-top: 4px;
  color: var(--silver);
  line-height: 1.35;
}

.training-live-routine-empty {
  margin: 0;
  color: var(--silver);
}

.training-live-routine-prompt {
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.24);
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.08);
}

.training-live-routine-detail {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.training-live-routine-detail-head {
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.22);
}

.training-live-routine-detail-head p {
  max-width: 520px;
  margin: 0;
  color: var(--silver);
  line-height: 1.45;
}

.training-live-routine-series {
  display: grid;
  gap: 10px;
}

.training-live-routine-series h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--yellow);
}

.training-live-routine-series h4 b {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
}

.training-live-routine-series > div {
  display: grid;
  gap: 12px;
}

.training-live-routine-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 12px;
  border: 1px solid rgba(217, 217, 217, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), transparent 50%),
    rgba(0, 0, 0, 0.28);
}

.training-live-routine-card img {
  width: 112px;
  height: 104px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 10px;
  object-fit: cover;
  background: #080808;
}

.training-live-routine-card strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.training-live-routine-card p {
  margin: 8px 0 0;
  color: var(--silver);
  line-height: 1.4;
}

.training-live-routine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.training-live-routine-chips small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 850;
}

.training-live-routine-chips b {
  color: var(--yellow);
}

.training-live-routine-card-actions {
  flex-direction: column;
  justify-content: center;
  min-width: 132px;
}

.training-live-routine-card-actions > b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.45);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 950;
}

.training-live-routine-card-actions span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.training-live-rating,
.training-live-completion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.training-live-rating span,
.training-live-rating small,
.training-live-rating p,
.training-live-completion span,
.training-live-completion small,
.training-live-completion p {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-rating strong,
.training-live-completion strong {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: 1.18rem;
}

.training-live-rating p,
.training-live-completion p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--yellow);
  font-weight: 850;
}

.training-live-completion.is-completed {
  border-color: rgba(55, 214, 122, 0.46);
  background:
    radial-gradient(circle at 86% 16%, rgba(55, 214, 122, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.training-live-completion.is-completed p {
  color: #8ff0b4;
}

.training-live-selfie {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(180px, 250px) minmax(260px, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 20px;
}

.training-live-selfie-copy,
.training-live-selfie-picker,
.training-live-selfie textarea,
.training-live-selfie-actions {
  min-height: 142px;
}

.training-live-selfie-copy {
  display: grid;
  align-content: center;
  gap: 6px;
}

.training-live-selfie-copy span,
.training-live-selfie-copy small,
.training-live-selfie-status,
.training-live-selfie p {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-live-selfie-copy span {
  color: var(--yellow);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-live-selfie-copy strong {
  color: var(--white);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.training-live-selfie-picker {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 196, 0, 0.58);
  border-radius: 12px;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.training-live-selfie-picker input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.training-live-selfie-picker span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 14px;
  text-align: center;
}

.training-live-selfie-picker b,
.training-live-selfie-picker small {
  position: relative;
  z-index: 1;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 950;
}

.training-live-selfie-picker small {
  color: var(--silver);
  font-size: 0.82rem;
}

.training-live-selfie-picker img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.training-live-selfie-picker.is-ready {
  border-style: solid;
  box-shadow: 0 18px 36px rgba(255, 196, 0, 0.16);
}

.training-live-selfie textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 12px;
  padding: 15px;
  color: var(--white);
  background: #070808;
  outline: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.training-live-selfie textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.training-live-selfie-actions {
  display: grid;
  align-content: center;
  gap: 10px;
}

.training-live-selfie > p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--yellow);
  font-weight: 850;
}

.training-live-selfie > p.error {
  color: #ff8b8b;
}

.training-star-row {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.training-star-row button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 196, 0, 0.54);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.training-star-row button:hover:not(:disabled),
.training-star-row button:focus-visible:not(:disabled),
.training-star-row button.is-selected {
  border-color: var(--yellow);
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.9), rgba(245, 173, 0, 0.72));
  color: #111;
  transform: translateY(-2px);
}

.training-star-row button.is-muted {
  opacity: 0.48;
}

.training-star-row button:disabled {
  cursor: default;
}

.training-reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.training-reaction-row button {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 196, 0, 0.36);
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0.06));
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.training-reaction-row button:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--yellow);
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.5), rgba(255, 255, 255, 0.1));
}

.training-live-status {
  min-height: 24px;
  margin: 0;
  color: var(--yellow);
  font-weight: 900;
}

.training-search {
  position: relative;
  display: grid;
  gap: 8px;
}

.training-search span {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
}

.training-search input {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  outline: none;
}

.training-search::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.training-search::before {
  content: "";
  position: absolute;
  left: 31px;
  bottom: 16px;
  width: 8px;
  height: 2px;
  background: var(--muted);
  transform: rotate(45deg);
}

.training-search input:focus {
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.08);
}

.training-filter-button {
  width: 100%;
  align-self: end;
}

.training-category-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.training-category-row button {
  min-width: 92px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--silver);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  cursor: pointer;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 850;
}

.training-category-row button.active,
.training-category-row button:hover {
  border-color: var(--yellow);
  color: #070707;
  background: linear-gradient(180deg, #ffe36d, var(--yellow));
}

.training-section {
  display: grid;
  gap: 14px;
}

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

.training-section-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.training-section-head button {
  min-height: 34px;
  border: 0;
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.training-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.training-program-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.training-program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.training-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.88)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent);
}

.training-program-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.training-program-body span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #080808;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.training-program-body h4,
.training-video-card h4 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
}

.training-program-body h4 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 0.95;
}

.training-program-body small,
.training-program-body p,
.training-video-card p {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.training-program-body small {
  color: var(--yellow);
  font-weight: 850;
}

.training-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.training-video-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.training-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 196, 0, 0.25);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.training-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.07);
}

.training-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}

.training-video-thumb span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 850;
}

.training-video-thumb button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(255, 196, 0, 0.34);
  cursor: pointer;
}

.training-video-thumb button::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 13px;
  border-left: 15px solid #060606;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.training-video-thumb button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.training-video-card h4 {
  font-size: 1.1rem;
  line-height: 1;
}

.training-player-open {
  overflow: hidden;
}

.training-player-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.training-player-modal[hidden] {
  display: none;
}

.training-player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.training-player-card {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.35);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), rgba(255, 255, 255, 0.035)),
    #101010;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.training-player-modal.is-routine .training-player-card {
  width: min(1240px, 96vw);
}

.training-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #030303;
}

.training-player-frame mux-player {
  width: 100%;
  height: 100%;
  --media-object-fit: contain;
}

.training-player-timer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: end;
  padding: 14px 16px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.24), rgba(0, 0, 0, 0.42)),
    rgba(6, 6, 6, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.training-player-timer div {
  display: grid;
  gap: 2px;
}

.training-player-timer span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-player-timer strong {
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  line-height: 1;
}

.training-player-timer small {
  justify-self: end;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  text-align: right;
}

.training-player-timer i {
  grid-column: 1 / -1;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.training-player-timer i b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #fff0a8);
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.52);
}

.training-player-info {
  padding: 18px 22px 22px;
}

.training-player-info span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.training-player-info h2 {
  margin: 8px 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.training-player-info p {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.training-player-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.74);
  font-size: 1.7rem;
  cursor: pointer;
}

.training-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.06);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-screen {
  --payment-flow-width: min(100%, 1320px);
  display: grid;
  gap: 18px;
  justify-items: center;
}

.back-link {
  width: var(--payment-flow-width);
  justify-self: center;
  border: 0;
  padding: 0;
  color: var(--silver);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
  color: var(--yellow);
}

.payment-hero {
  width: var(--payment-flow-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 18px;
  align-items: stretch;
}

.payment-hero > div,
.payment-summary-card,
.payment-panel,
.payment-actions,
.payment-trust-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.payment-hero > div {
  padding: clamp(22px, 3vw, 34px);
}

.payment-hero h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.payment-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.payment-summary-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  align-content: center;
}

.payment-summary-card h3,
.payment-confirm-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.payment-summary-line,
.payment-total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-total-line {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
}

.payment-total-line strong {
  color: var(--yellow);
  font-size: 1.35rem;
}

.payment-steps {
  width: var(--payment-flow-width);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.payment-steps button {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-steps button.done {
  border-color: rgba(255, 196, 0, 0.34);
  color: var(--white);
  background: rgba(255, 196, 0, 0.05);
}

.payment-steps button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.payment-steps span,
.payment-panel-heading > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
  font-weight: 950;
}

.payment-steps button.active {
  border-color: rgba(255, 196, 0, 0.76);
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.1);
}

.payment-panel {
  display: grid;
  gap: 16px;
  min-height: 460px;
  align-content: start;
  padding: clamp(22px, 3vw, 38px);
}

.payment-panel[hidden] {
  display: none;
}

.payment-panel.active {
  border-color: rgba(255, 196, 0, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 20px 44px rgba(255, 196, 0, 0.08);
}

.payment-panel.done {
  border-color: rgba(255, 196, 0, 0.34);
}

.payment-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: var(--payment-flow-width);
}

.payment-panel-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.payment-panel-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.payment-panel-heading p {
  margin: 8px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-method {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-method.active {
  border-color: rgba(255, 196, 0, 0.74);
  background: rgba(255, 196, 0, 0.08);
}

.payment-method input {
  accent-color: var(--yellow);
}

.payment-method strong,
.payment-method small,
.payment-method b {
  display: block;
}

.payment-method small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.payment-method b {
  color: var(--yellow);
}

.payment-method.whatsapp {
  grid-template-columns: 1fr auto;
}

.payment-secure-note,
.payment-result-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-secure-note strong {
  color: var(--yellow);
}

.payment-data-grid,
.payment-confirm-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Segoe UI", Arial, sans-serif;
}

.payment-data-grid article,
.payment-confirm-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-data-grid article:last-child,
.payment-confirm-row:last-child {
  border-bottom: 0;
}

.payment-data-grid span,
.payment-confirm-row span {
  color: var(--muted);
}

.payment-data-grid strong,
.payment-confirm-row strong {
  text-align: right;
}

.payment-accept {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.payment-accept input {
  accent-color: var(--yellow);
}

.payment-panel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}

.payment-panel-controls .primary-action,
.payment-panel-controls .secondary-action {
  min-width: 190px;
}

.payment-confirm-card .payment-total-line {
  margin-top: 4px;
}

.payment-confirm-card .payment-confirm-row {
  grid-template-columns: 1fr;
  gap: 4px;
}

.payment-confirm-card .payment-confirm-row strong {
  text-align: left;
  line-height: 1.35;
}

.payment-feature-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-feature-list li {
  position: relative;
  padding-left: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.payment-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.payment-gym-selector {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 196, 0, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(217, 217, 217, 0.04)),
    rgba(255, 255, 255, 0.035);
}

.payment-gym-selector.empty {
  border-color: rgba(255, 125, 125, 0.48);
  background: rgba(255, 125, 125, 0.08);
}

.payment-gym-selector.empty p {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.payment-date-selector {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 240px);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 196, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.14), rgba(255, 255, 255, 0.04));
}

.payment-date-selector.compact {
  grid-template-columns: 1fr;
}

.payment-date-selector strong {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
}

.payment-date-selector span {
  display: block;
  margin-top: 4px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.4;
}

.payment-date-selector input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
  color: var(--white);
  padding: 0 12px;
  font: 800 0.96rem "Segoe UI", Arial, sans-serif;
}

.payment-gym-title {
  display: grid;
  gap: 4px;
}

.payment-gym-title strong,
.payment-gym-selector.empty > strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.payment-gym-title span {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
}

.payment-gym-options {
  display: grid;
  gap: 10px;
}

.payment-gym-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.payment-gym-option.active {
  border-color: rgba(255, 196, 0, 0.78);
  background: rgba(255, 196, 0, 0.11);
}

.payment-gym-option input {
  width: auto;
  min-height: auto;
  accent-color: var(--yellow);
}

.payment-gym-option span {
  display: grid;
  gap: 3px;
}

.payment-gym-option strong {
  color: var(--white);
  text-transform: uppercase;
}

.payment-gym-option small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.35;
}

.payment-gym-option b {
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.payment-confirm-card .payment-total-line strong {
  text-align: right;
}

.payment-result-card {
  place-items: center;
  align-content: center;
  min-height: 390px;
  text-align: center;
}

.payment-result-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
  font-size: 3rem;
  font-weight: 950;
}

.payment-result-card.success .payment-result-icon::before {
  content: "";
  width: 42px;
  height: 22px;
  border-left: 7px solid #080808;
  border-bottom: 7px solid #080808;
  transform: rotate(-45deg);
}

.payment-result-card.success .payment-result-icon {
  font-size: 0;
}

.payment-result-card h3 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  text-transform: uppercase;
}

.payment-result-card p {
  max-width: 520px;
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.payment-result-note strong {
  color: var(--yellow);
}

.payment-result-card a {
  margin-top: 12px;
}

.payment-actions {
  width: var(--payment-flow-width);
  min-height: 24px;
  border: 0;
  background: transparent;
}

.payment-status {
  min-height: 22px;
  margin: 0;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.payment-trust-row {
  width: var(--payment-flow-width);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.payment-trust-row article {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.payment-trust-row article:first-child {
  border-left: 0;
}

.payment-trust-row strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.payment-trust-row span {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.service-booking-screen {
  --service-flow-width: min(100%, 1340px);
  display: grid;
  gap: 18px;
  justify-items: center;
}

.service-booking-hero {
  width: var(--service-flow-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 18px;
  align-items: stretch;
}

.service-booking-hero > div,
.service-booking-summary,
.service-booking-panel,
.service-trust-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.service-booking-hero > div {
  padding: clamp(22px, 3vw, 34px);
}

.service-booking-hero h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.service-booking-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.service-booking-summary {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 20px;
}

.service-booking-summary h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-booking-summary p {
  margin: 0;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

.service-booking-steps {
  width: var(--service-flow-width);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-booking-steps button {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.service-booking-steps button.done {
  border-color: rgba(255, 196, 0, 0.34);
  color: var(--white);
  background: rgba(255, 196, 0, 0.05);
}

.service-booking-steps button.active {
  border-color: rgba(255, 196, 0, 0.76);
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.1);
}

.service-booking-steps button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.service-booking-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
  font-weight: 950;
}

.service-booking-panels {
  width: var(--service-flow-width);
  display: grid;
}

.service-booking-panel {
  display: grid;
  gap: 18px;
  min-height: 480px;
  align-content: start;
  padding: clamp(22px, 3vw, 38px);
}

.service-booking-panel[hidden] {
  display: none;
}

.service-booking-panel.active {
  border-color: rgba(255, 196, 0, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 20px 44px rgba(255, 196, 0, 0.08);
}

.service-list-grid {
  display: grid;
  gap: 14px;
}

.service-choice-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.service-choice-card.active {
  border-color: rgba(255, 196, 0, 0.74);
  background: rgba(255, 196, 0, 0.08);
}

.service-choice-card img {
  width: 108px;
  height: 82px;
  border-radius: 6px;
  object-fit: cover;
}

.service-choice-card span,
.service-confirm-service span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #080808;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-choice-card h3,
.service-confirm-service h3 {
  margin: 7px 0 4px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.service-choice-card p,
.service-choice-card small {
  display: block;
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.4;
}

.service-choice-card small {
  color: var(--muted);
}

.service-choice-card > strong {
  color: var(--yellow);
  font-size: 1.35rem;
  white-space: nowrap;
}

.service-date-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.service-date-grid button,
.service-slot-list button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 900;
}

.service-date-grid button {
  min-height: 108px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 14px 10px;
}

.service-date-grid span,
.service-date-grid small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.service-date-grid strong {
  color: var(--white);
  font-size: 2rem;
}

.service-date-grid button.active,
.service-slot-list button.active {
  border-color: rgba(255, 196, 0, 0.74);
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.12);
}

.service-slot-list {
  display: grid;
  gap: 12px;
}

.service-slot-list button {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-align: left;
}

.service-slot-list button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.service-slot-list span {
  font-size: 1.25rem;
}

.service-slot-list small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.service-slot-list strong {
  color: var(--yellow);
}

.service-confirm-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Segoe UI", Arial, sans-serif;
}

.service-confirm-service {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-confirm-service img {
  width: 116px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.service-confirm-service p {
  margin: 0;
  color: var(--silver);
}

.service-empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed rgba(255, 196, 0, 0.4);
  border-radius: 8px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.06);
  font-family: "Segoe UI", Arial, sans-serif;
}

.service-empty strong {
  color: var(--yellow);
}

.service-trust-row {
  width: var(--service-flow-width);
}

.access-screen,
.access-history-screen {
  min-height: auto;
}

.access-mobile-shell {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(217, 217, 217, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 196, 0, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #050607;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.access-app-header,
.access-app-user,
.access-card-heading,
.membership-state,
.access-list-action,
.access-bottom-nav {
  display: flex;
  align-items: center;
}

.access-app-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.access-app-header > img {
  width: 150px;
}

.access-app-user {
  position: relative;
  gap: 12px;
}

.access-app-user img {
  width: 48px;
  height: 48px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
}

.notification-dot {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.access-greeting {
  margin-bottom: 22px;
}

.access-greeting p {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
}

.access-greeting h2 {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.access-card {
  padding: 24px;
  border: 1px solid rgba(217, 217, 217, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #111214;
}

.access-card.is-active {
  box-shadow: 0 0 42px rgba(0, 224, 105, 0.08);
}

.access-card.is-expiring_soon {
  box-shadow: 0 0 42px rgba(255, 196, 0, 0.1);
}

.access-card.is-expired {
  border-color: rgba(255, 82, 82, 0.42);
  box-shadow: 0 0 42px rgba(255, 82, 82, 0.1);
}

.access-card-heading {
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.access-mini-icon,
.log-qr-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(217, 217, 217, 0.16);
  font-size: 0.72rem;
  font-weight: 950;
}

.access-card-heading h3 {
  margin: 0;
  font-size: 1.22rem;
}

.access-card-heading p {
  margin: 4px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.qr-frame {
  width: min(340px, 100%);
  margin: 0 auto 22px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 0 34px rgba(255, 196, 0, 0.46);
}

.qr-frame img {
  width: 100%;
  border-radius: 10px;
}

.membership-state {
  justify-content: center;
  gap: 10px;
  margin: 8px 0 22px;
}

.membership-state span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #16d974;
}

.access-card.is-expiring_soon .membership-state span {
  background: var(--yellow);
}

.access-card.is-expired .membership-state span {
  background: #ff5252;
}

.membership-state strong {
  color: #16d974;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.access-card.is-expiring_soon .membership-state strong {
  color: var(--yellow);
}

.access-card.is-expired .membership-state strong {
  color: #ff7979;
}

.access-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.access-meta-grid article {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.26);
}

.access-meta-grid span,
.access-meta-grid strong,
.access-security-note,
.access-membership-message,
.access-list-action,
.access-bottom-nav,
.access-filters,
.access-log-card,
.access-stats-grid,
.access-calendar {
  font-family: "Segoe UI", Arial, sans-serif;
}

.access-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.access-meta-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.96rem;
}

.access-security-note {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 10px;
  color: var(--silver);
  background: rgba(217, 217, 217, 0.08);
}

.access-security-note strong {
  color: var(--white);
}

.access-security-note span::first-letter {
  color: var(--yellow);
}

.access-membership-message {
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 10px;
  color: #ffdf7a;
  background: rgba(255, 196, 0, 0.12);
  line-height: 1.5;
}

.access-refresh {
  width: 100%;
  margin: 18px 0 14px;
}

.access-list-action {
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  margin-top: 12px;
  padding: 0 20px;
  border: 1px solid rgba(217, 217, 217, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.access-list-action small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.access-list-action b {
  color: var(--yellow);
  font-size: 1.6rem;
}

.access-bottom-nav {
  justify-content: space-between;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.access-bottom-nav button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.access-bottom-nav button.active {
  color: var(--yellow);
}

.access-empty {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px dashed rgba(255, 196, 0, 0.38);
  border-radius: 12px;
  color: var(--silver);
  background: rgba(255, 196, 0, 0.06);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.access-empty strong {
  color: var(--yellow);
  font-size: 1.08rem;
}

.access-empty.compact {
  margin: 10px 0 18px;
}

.access-history-shell {
  display: grid;
  gap: 22px;
}

.access-history-header {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.09), transparent 48%),
    var(--panel);
}

.access-history-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.access-history-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.access-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.access-stats-grid article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 10px;
  background: var(--panel-2);
}

.access-stats-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.access-stats-grid strong {
  color: var(--white);
  font-size: 1.3rem;
}

.access-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr)) repeat(2, minmax(160px, 0.9fr)) minmax(150px, 0.72fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.075), rgba(217, 217, 217, 0.045)),
    rgba(255, 255, 255, 0.035);
}

.access-filters label {
  display: grid;
  gap: 7px;
  color: var(--silver);
  font-weight: 800;
}

.access-filters label span {
  color: var(--white);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.access-filters input,
.access-filters select {
  min-height: 46px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #08090a;
  color-scheme: dark;
}

.access-filters input:focus,
.access-filters select:focus {
  border-color: rgba(255, 196, 0, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.13);
  outline: 0;
}

.access-filters input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.9;
  filter: invert(1);
}

.access-filters .secondary-action {
  align-self: end;
  width: 100%;
  min-height: 46px;
}

.access-calendar {
  padding: 20px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 10px;
  background: var(--panel);
}

.access-calendar h3 {
  margin: 0;
  color: var(--yellow);
  text-transform: uppercase;
}

.access-calendar small {
  display: block;
  margin: 6px 0 14px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.access-calendar div {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 8px;
}

.access-calendar span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 900;
}

.access-calendar span.active {
  color: #080808;
  background: var(--yellow);
}

.access-log-list {
  display: grid;
  gap: 12px;
}

.access-log-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.access-log-card.allowed .log-qr-icon {
  color: #20e87b;
  background: rgba(32, 232, 123, 0.12);
}

.access-log-card.rejected .log-qr-icon {
  color: #ff5252;
  background: rgba(255, 82, 82, 0.12);
}

.access-log-card strong,
.access-log-card small {
  display: block;
}

.access-log-card small {
  margin-top: 3px;
  color: var(--muted);
}

.access-log-card b {
  justify-self: end;
  padding: 8px 12px;
  border-radius: 999px;
  color: #17dc75;
  background: rgba(23, 220, 117, 0.12);
}

.access-log-card.rejected b {
  color: #ff7979;
  background: rgba(255, 82, 82, 0.14);
}

.access-log-card em {
  grid-column: 2 / -1;
  color: var(--silver);
  font-style: normal;
}

.password-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.password-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.password-modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(217, 217, 217, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 196, 0, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #151618;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
}

.password-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 217, 217, 0.34);
  border-radius: 50%;
  color: var(--silver);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.password-modal-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.password-modal-copy {
  margin: 16px 0 22px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

.profile-password-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
}

.profile-password-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 72px 0 16px;
  color: var(--white);
  background: #08090a;
  outline: none;
}

.profile-password-field input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.profile-password-field button {
  position: absolute;
  right: 10px;
  bottom: 8px;
  min-height: 36px;
  border: 0;
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.password-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.password-rules span {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 6px;
  color: var(--silver);
  background: rgba(217, 217, 217, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.password-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 850;
}

.password-modal-actions {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.password-modal-actions .primary-action,
.password-modal-actions .secondary-action {
  width: 100%;
}

.profile-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  text-align: center;
}

.client-dashboard-screen {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.client-motivation-screen {
  width: min(100%, 1500px);
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

.client-motivation-hero,
.client-motivation-featured,
.client-motivation-toolbar,
.client-motivation-stats article,
.client-motivation-card,
.client-motivation-empty {
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #151617;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.client-motivation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 18px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 44px);
  border-color: rgba(255, 196, 0, 0.3);
}

.client-motivation-hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.client-motivation-hero p:not(.eyebrow),
.client-motivation-featured p,
.client-motivation-card p {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-motivation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.client-motivation-featured {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
}

.client-motivation-featured span,
.client-motivation-meta span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.client-motivation-featured strong {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.client-motivation-featured small,
.client-motivation-meta small,
.client-motivation-stats small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-motivation-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 240px) minmax(160px, 220px);
  gap: 12px;
  padding: 14px;
}

.client-motivation-toolbar label {
  display: grid;
  gap: 7px;
}

.client-motivation-toolbar span {
  color: var(--silver);
  font-weight: 900;
  text-transform: uppercase;
}

.client-motivation-toolbar input,
.client-motivation-toolbar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: #08090b;
  padding: 0 12px;
}

.client-motivation-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.client-motivation-stats article {
  display: grid;
  gap: 5px;
  min-height: 108px;
  align-content: center;
  padding: 15px;
}

.client-motivation-stats span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-motivation-stats strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.client-motivation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-motivation-card {
  display: grid;
  min-height: 330px;
  overflow: hidden;
}

.client-motivation-card.has-media {
  grid-template-rows: 190px minmax(0, 1fr);
}

.client-motivation-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-motivation-card-body {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
}

.client-motivation-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.client-motivation-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.client-motivation-card p {
  margin: 0;
}

.client-motivation-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.client-motivation-card-actions button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.client-motivation-card-actions button:hover,
.client-motivation-card-actions button:focus-visible,
.client-motivation-card-actions button.is-active {
  border-color: rgba(255, 196, 0, 0.7);
  color: #050505;
  background: linear-gradient(180deg, #ffe16a, var(--yellow));
}

.client-motivation-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 24px;
}

.client-motivation-empty strong {
  color: var(--white);
}

.client-motivation-empty span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

@media (max-width: 1180px) {
  .client-motivation-hero,
  .client-motivation-toolbar {
    grid-template-columns: 1fr;
  }

  .client-motivation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .client-motivation-stats,
  .client-motivation-grid {
    grid-template-columns: 1fr;
  }
}

.client-program-v2-screen,
.client-program-v2-detail-screen {
  color: var(--white);
}

.program-v2-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-v2-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.program-v2-brand img {
  width: 154px;
  height: auto;
}

.program-v2-menu {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.program-v2-menu span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--white);
}

.program-v2-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.program-v2-icons span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font-size: 1.2rem;
}

.program-v2-calendar-hero {
  margin-bottom: 18px;
}

.program-v2-calendar-hero h2 {
  margin: 0 0 6px;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.program-v2-calendar-hero p {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
}

.program-v2-summary,
.program-v2-calendar,
.program-v2-workout-panel,
.program-v2-video-card,
.program-v2-info-card,
.program-v2-muscles-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #121416;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.program-v2-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 22px;
  padding: 24px;
  margin-bottom: 18px;
}

.program-v2-summary article {
  min-width: 0;
}

.program-v2-summary article + article {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.program-v2-summary span,
.program-v2-panel-head span,
.program-v2-info-card span {
  display: block;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
}

.program-v2-summary strong {
  display: inline-block;
  margin: 8px 10px 8px 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.program-v2-summary mark,
.program-v2-detail-hero mark {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 196, 0, 0.55);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.program-v2-summary small {
  display: block;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.program-v2-progress {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.program-v2-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #ffdd4a);
}

.program-v2-calendar {
  overflow: hidden;
}

.program-v2-weekdays,
.program-v2-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.program-v2-weekdays {
  padding: 0 1px;
  background: rgba(255, 255, 255, 0.04);
}

.program-v2-weekdays span {
  padding: 14px 12px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.program-v2-day {
  min-height: 124px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
}

.program-v2-day:nth-child(7n) {
  border-right: 0;
}

.program-v2-day:disabled {
  cursor: default;
}

.program-v2-day:hover:not(:disabled),
.program-v2-day:focus-visible,
.program-v2-day.active {
  outline: 0;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(255, 255, 255, 0.04)),
    #151719;
}

.program-v2-day.active {
  box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.72);
}

.program-v2-day > span {
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 850;
}

.program-v2-day strong {
  max-width: 100%;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.15;
}

.program-v2-day small {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
}

.program-v2-day.is-completed small {
  color: #26d06d;
}

.program-v2-day.is-muted {
  opacity: 0.62;
}

.program-v2-day.is-rest {
  color: #c6cbd2;
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
  cursor: default;
}

.program-v2-day.is-rest > span,
.program-v2-day.is-rest small {
  color: #aeb4bd;
}

.program-v2-day.is-rest i {
  color: #121416;
  background: #8b9098;
}

.program-v2-day i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.program-v2-empty {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
}

.program-v2-empty strong {
  color: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
}

.program-v2-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border: 0;
  color: var(--yellow);
  background: transparent;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  cursor: pointer;
}

.program-v2-back::before {
  content: "<";
  font-size: 1.35rem;
}

.program-v2-detail-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.program-v2-detail-hero h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.program-v2-detail-hero p {
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
}

.program-v2-detail-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.program-v2-detail-tabs button {
  min-height: 42px;
  border: 0;
  color: var(--silver);
  background: transparent;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.program-v2-detail-tabs button.active {
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.program-v2-detail-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(560px, 1.32fr);
  gap: 18px;
  align-items: start;
}

.program-v2-workout-panel,
.program-v2-video-card,
.program-v2-info-card,
.program-v2-muscles-card {
  padding: 18px;
}

.program-v2-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.program-v2-panel-head strong,
.program-v2-panel-head small {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.program-v2-exercise-list {
  display: grid;
  gap: 10px;
}

.program-v2-exercise {
  min-height: 92px;
  display: grid;
  grid-template-columns: 92px 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  cursor: pointer;
}

.program-v2-exercise:hover,
.program-v2-exercise:focus-visible,
.program-v2-exercise.active {
  outline: 0;
  border-color: rgba(255, 196, 0, 0.5);
  background: rgba(255, 196, 0, 0.07);
}

.program-v2-exercise img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  background: #050505;
}

.program-v2-exercise > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.65);
  border-radius: 50%;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.program-v2-exercise strong,
.program-v2-exercise small {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
}

.program-v2-exercise em {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.program-v2-exercise strong {
  color: var(--white);
  font-size: 0.94rem;
}

.program-v2-exercise small {
  margin-top: 6px;
  color: var(--silver);
  line-height: 1.45;
}

.program-v2-exercise-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.program-v2-exercise-meta span {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  font-family: "Segoe UI", Arial, sans-serif;
}

.program-v2-exercise-meta b {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program-v2-exercise-meta strong {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.program-v2-complete {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  color: #080808;
  background: linear-gradient(180deg, #ffdd4a, var(--yellow));
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 950;
  cursor: pointer;
}

.program-v2-complete:disabled {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  cursor: default;
}

.program-v2-video-panel {
  display: grid;
  gap: 14px;
}

.program-v2-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #030303;
}

.program-v2-video-frame img,
.program-v2-video-frame mux-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.program-v2-video-frame button {
  position: absolute;
  inset: 0;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.72) 0 34px, transparent 35px);
  cursor: pointer;
}

.program-v2-video-frame button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--white);
}

.program-v2-video-card > strong {
  display: block;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
}

.program-v2-instruction-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(255, 255, 255, 0.035));
}

.program-v2-instruction-panel > span {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-v2-instruction-panel > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.program-v2-instruction-panel article {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.program-v2-instruction-panel small {
  overflow: hidden;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.program-v2-instruction-panel strong {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
}

.program-v2-video-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(255, 196, 0, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.22);
}

.program-v2-video-guide span {
  color: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.program-v2-video-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.program-v2-video-strip button {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}

.program-v2-video-strip button > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--yellow);
  border: 1px solid rgba(255, 196, 0, 0.46);
  font-weight: 950;
}

.program-v2-video-strip button div {
  min-width: 0;
}

.program-v2-video-strip button strong,
.program-v2-video-strip button small {
  display: block;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-v2-video-strip button strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.program-v2-video-strip button small {
  margin-top: 3px;
  color: var(--silver);
  font-size: 0.72rem;
}

.program-v2-video-strip button.active {
  border-color: var(--yellow);
  background: rgba(255, 196, 0, 0.13);
}

.program-v2-video-strip button.active > span {
  color: #080808;
  background: var(--yellow);
}

.program-v2-info-card h3,
.program-v2-muscles-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.15rem;
}

.program-v2-info-card {
  display: grid;
  gap: 16px;
}

.program-v2-notes-list,
.program-v2-history-grid {
  display: grid;
  gap: 12px;
}

.program-v2-history-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.program-v2-notes-list article,
.program-v2-history-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.program-v2-info-card article {
  display: grid;
  gap: 5px;
  padding-left: 42px;
  position: relative;
}

.program-v2-info-card article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.program-v2-info-card strong {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
}

.program-v2-notes-list span,
.program-v2-history-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
}

.program-v2-notes-list strong,
.program-v2-history-grid strong {
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.45;
}

.program-v2-muscles-card .training-muscle-diagram {
  margin: 0 auto;
}

/* Client progress dashboard */
.progress-dashboard-screen {
  color: var(--white);
}

.progress-dashboard-hero,
.progress-card,
.progress-banner-card,
.progress-metric-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    #121416;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.progress-dashboard-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 18px;
  border-color: rgba(255, 196, 0, 0.28);
}

.progress-dashboard-hero h2 {
  max-width: 900px;
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.progress-dashboard-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.55;
}

.progress-range-control {
  min-width: min(100%, 260px);
  display: grid;
  gap: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.progress-range-control span {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-range-control select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--white);
  background: #0b0c0d;
  padding: 0 14px;
  font-weight: 800;
}

.progress-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.progress-metric-card {
  min-height: 136px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.progress-metric-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(255, 196, 0, 0.18);
}

.progress-metric-card small,
.progress-metric-card em,
.progress-metric-card b,
.progress-card,
.progress-empty-state,
.progress-banner-card {
  font-family: "Segoe UI", Arial, sans-serif;
}

.progress-metric-card small,
.progress-metric-card em,
.progress-metric-card b {
  display: block;
}

.progress-metric-card small {
  color: var(--silver);
  font-size: 0.86rem;
}

.progress-metric-card strong {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.progress-metric-card em {
  color: var(--white);
  font-style: normal;
  font-weight: 850;
}

.progress-metric-card b {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 0.82rem;
}

.progress-dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.progress-main-column,
.progress-side-column {
  display: grid;
  gap: 18px;
}

.progress-panels-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.progress-card {
  min-width: 0;
  padding: 20px;
}

.progress-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.progress-card-head span {
  display: block;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-card-head h3 {
  margin: 5px 0 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.progress-card-head button {
  min-height: 34px;
  border: 1px solid rgba(255, 196, 0, 0.46);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.06);
  padding: 0 12px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.progress-next-body {
  display: grid;
  grid-template-columns: 78px minmax(180px, 0.75fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.progress-next-date {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 196, 0, 0.45);
  border-radius: 12px;
  background: rgba(255, 196, 0, 0.08);
}

.progress-next-date span,
.progress-next-date small {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.progress-next-date strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.progress-next-body img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  background: #050505;
}

.progress-next-body h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.progress-next-body p {
  margin: 0 0 14px;
  color: var(--silver);
  line-height: 1.45;
}

.progress-recovery-body {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.progress-donut {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #121416 0 55%, transparent 56%),
    conic-gradient(var(--yellow) calc(var(--value) * 1%), rgba(255, 255, 255, 0.1) 0);
}

.progress-donut strong {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.progress-donut span {
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 800;
}

.progress-recovery-list {
  display: grid;
  gap: 10px;
}

.progress-recovery-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: var(--silver);
}

.progress-recovery-list p span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.progress-recovery-list strong {
  color: var(--white);
}

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

.progress-week-day {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
}

.progress-week-day:hover,
.progress-week-day:focus-visible,
.progress-week-day.is-today {
  outline: 0;
  border-color: rgba(255, 196, 0, 0.65);
  background: rgba(255, 196, 0, 0.08);
}

.progress-week-day.is-rest {
  border-color: rgba(217, 217, 217, 0.12);
  color: #c6cbd2;
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
  cursor: default;
}

.progress-week-day.is-rest:hover,
.progress-week-day.is-rest:focus-visible {
  border-color: rgba(217, 217, 217, 0.12);
  background:
    linear-gradient(145deg, rgba(217, 217, 217, 0.1), rgba(255, 255, 255, 0.02)),
    #151719;
}

.progress-week-day.is-rest span,
.progress-week-day.is-rest em {
  color: #aeb4bd;
}

.progress-week-day.is-rest strong {
  color: #d9d9d9;
}

.progress-week-day span,
.progress-week-day em {
  color: var(--yellow);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-week-day strong {
  font-size: 1.8rem;
  line-height: 1;
}

.progress-week-day b {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.25;
}

.progress-week-day.is-completed em {
  color: #26d06d;
}

.progress-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-color: rgba(255, 196, 0, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0.035)),
    #151617;
}

.progress-banner-card span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-banner-card h3 {
  margin: 4px 0 8px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.progress-banner-card p {
  max-width: 760px;
  margin: 0;
  color: var(--silver);
  line-height: 1.55;
}

.progress-program-strip,
.progress-video-list {
  display: grid;
  gap: 10px;
}

.progress-program-mini,
.progress-video-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  cursor: pointer;
}

.progress-program-mini:hover,
.progress-video-list button:hover,
.progress-program-mini:focus-visible,
.progress-video-list button:focus-visible {
  outline: 0;
  border-color: rgba(255, 196, 0, 0.5);
  background: rgba(255, 196, 0, 0.07);
}

.progress-program-mini img,
.progress-video-list img {
  grid-row: span 3;
  width: 82px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  background: #050505;
}

.progress-program-mini span,
.progress-video-list span {
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
}

.progress-program-mini small,
.progress-video-list small {
  color: var(--silver);
  line-height: 1.35;
}

.progress-program-mini b {
  color: var(--yellow);
  font-size: 0.78rem;
}

.progress-community-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.progress-community-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.progress-community-card strong,
.progress-community-card small {
  display: block;
}

.progress-community-card strong {
  color: var(--white);
}

.progress-community-card small {
  color: var(--yellow);
  font-size: 0.78rem;
}

.progress-community-card p,
.progress-empty-state p {
  margin: 8px 0 0;
  color: var(--silver);
  line-height: 1.45;
}

.progress-empty-state {
  display: grid;
  gap: 10px;
  color: var(--silver);
}

.progress-empty-state strong {
  color: var(--white);
}

.progress-empty-state.compact {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1220px) {
  .progress-metric-grid,
  .progress-dashboard-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .progress-panels-row {
    grid-template-columns: 1fr;
  }

  .progress-side-column {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .progress-dashboard-hero,
  .progress-banner-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-metric-grid,
  .progress-dashboard-layout,
  .progress-panels-row,
  .progress-side-column,
  .progress-next-body,
  .progress-recovery-body {
    grid-template-columns: 1fr;
  }

  .progress-week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .progress-card,
  .progress-dashboard-hero,
  .progress-banner-card,
  .progress-metric-card {
    padding: 14px;
  }

  .progress-week-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .program-v2-summary,
  .program-v2-detail-layout {
    grid-template-columns: 1fr;
  }

  .program-v2-instruction-panel > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-v2-summary article + article {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 820px) {
  .program-v2-topbar,
  .program-v2-detail-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-v2-weekdays {
    display: none;
  }

  .program-v2-month-grid {
    grid-template-columns: 1fr;
  }

  .program-v2-day {
    min-height: 92px;
    border-right: 0;
  }

  .program-v2-detail-tabs {
    grid-template-columns: 1fr;
  }

  .program-v2-history-grid {
    grid-template-columns: 1fr;
  }

  .program-v2-instruction-panel > div,
  .program-v2-video-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .program-v2-brand img {
    width: 124px;
  }

  .program-v2-summary,
  .program-v2-workout-panel,
  .program-v2-video-card,
  .program-v2-info-card,
  .program-v2-muscles-card {
    padding: 14px;
  }

  .program-v2-exercise {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .program-v2-exercise img {
    width: 86px;
    height: 68px;
  }

  .program-v2-exercise > span {
    display: none;
  }

  .program-v2-instruction-panel > div,
  .program-v2-video-strip {
    grid-template-columns: 1fr;
  }

  .program-v2-exercise-meta span {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.client-dashboard-hero,
.client-dashboard-card,
.client-dashboard-metric {
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #151617;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.client-dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(255, 196, 0, 0.38);
}

.client-dashboard-hero h2 {
  max-width: 900px;
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.client-dashboard-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--silver);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.client-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: min(100%, 360px);
}

.client-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.client-dashboard-metric {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.client-dashboard-metric > span {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #090909;
  background: var(--yellow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255, 196, 0, 0.2);
}

.client-dashboard-metric small,
.client-dashboard-metric em,
.client-dashboard-metric b,
.client-dashboard-muted,
.client-dashboard-card,
.client-community-form {
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-dashboard-metric small,
.client-dashboard-metric em,
.client-dashboard-metric b {
  display: block;
}

.client-dashboard-metric small {
  color: var(--silver);
  font-size: 0.86rem;
}

.client-dashboard-metric strong {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
}

.client-dashboard-metric em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 850;
}

.client-dashboard-metric b,
.client-dashboard-muted {
  color: var(--muted);
  font-weight: 650;
}

.client-dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.75fr);
  gap: 18px;
  margin-top: 18px;
}

.client-dashboard-main,
.client-dashboard-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.client-dashboard-card {
  padding: clamp(18px, 2.5vw, 26px);
}

.client-dashboard-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.client-dashboard-card-head span {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-dashboard-card-head h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.client-dashboard-card-head button {
  min-height: 38px;
  border: 1px solid rgba(255, 196, 0, 0.58);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.client-dashboard-next {
  display: grid;
  grid-template-columns: 126px 1fr auto;
  align-items: center;
  gap: 16px;
}

.client-dashboard-next img {
  width: 126px;
  height: 96px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 10px;
  object-fit: cover;
}

.client-dashboard-next p,
.client-dashboard-next strong,
.client-dashboard-next span {
  display: block;
  margin: 0;
}

.client-dashboard-next p {
  color: var(--muted);
}

.client-dashboard-next strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 1.2rem;
}

.client-dashboard-next span {
  margin-top: 4px;
  color: var(--silver);
}

.client-dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.client-dashboard-mini-grid article,
.client-dashboard-payment > div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.26);
}

.client-dashboard-mini-grid span,
.client-dashboard-payment span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.client-dashboard-mini-grid strong,
.client-dashboard-payment strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.08rem;
}

.client-dashboard-payment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.client-dashboard-reaction-summary,
.client-dashboard-quick-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-dashboard-reaction-summary {
  margin-bottom: 16px;
}

.client-dashboard-reaction-summary span,
.client-dashboard-quick-reactions button,
.client-community-reactions button {
  min-height: 42px;
  border: 1px solid rgba(217, 217, 217, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.client-dashboard-reaction-summary b {
  color: var(--yellow);
}

.client-dashboard-quick-reactions button,
.client-community-reactions button {
  cursor: pointer;
}

.client-dashboard-quick-reactions button:hover,
.client-community-reactions button:hover {
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.client-dashboard-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-dashboard-progress div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(217, 217, 217, 0.18);
}

.client-dashboard-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #fff2a6);
}

.client-dashboard-progress strong {
  color: var(--yellow);
}

.client-dashboard-comments {
  display: grid;
  gap: 10px;
}

.client-dashboard-feed {
  display: grid;
  gap: 14px;
}

.client-dashboard-post {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 42%),
    rgba(0, 0, 0, 0.24);
}

.client-dashboard-post-top,
.client-dashboard-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-dashboard-post-top strong,
.client-dashboard-post-top small,
.client-dashboard-post p,
.client-dashboard-post-actions span,
.client-dashboard-post-actions button {
  font-family: "Segoe UI", Arial, sans-serif;
}

.client-dashboard-post-top strong {
  display: block;
  color: var(--white);
  font-weight: 950;
}

.client-dashboard-post-top small,
.client-dashboard-post-actions span {
  color: var(--muted);
}

.client-dashboard-post-top > span {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.client-dashboard-post-photo {
  width: 100%;
  max-height: 360px;
  border: 1px solid rgba(255, 196, 0, 0.24);
  border-radius: 12px;
  object-fit: cover;
  background: #050505;
}

.client-dashboard-post p {
  margin: 0;
  color: var(--silver);
  line-height: 1.5;
}

.client-dashboard-post-actions button {
  min-height: 40px;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--yellow);
  background: rgba(255, 196, 0, 0.08);
  font-weight: 950;
  cursor: pointer;
}

.client-dashboard-post-actions button b {
  color: var(--white);
}

.client-dashboard-post-actions button:hover:not(:disabled),
.client-dashboard-post-actions button.is-liked {
  color: #080808;
  background: linear-gradient(180deg, #ffe36d, var(--yellow));
}

.client-dashboard-post-actions button.is-liked b {
  color: #080808;
}

.client-dashboard-post-actions button:disabled {
  cursor: default;
}

.client-dashboard-comment {
  padding: 14px;
  border: 1px solid rgba(217, 217, 217, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
}

.client-dashboard-comment strong,
.client-dashboard-comment p,
.client-dashboard-comment small {
  display: block;
  margin: 0;
}

.client-dashboard-comment strong {
  color: var(--white);
}

.client-dashboard-comment p {
  margin-top: 6px;
  color: var(--silver);
  line-height: 1.45;
}

.client-dashboard-comment small {
  margin-top: 8px;
  color: var(--muted);
}

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

.client-community-form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid rgba(217, 217, 217, 0.18);
  border-radius: 10px;
  padding: 16px;
  color: var(--white);
  background: #070808;
  outline: 0;
}

.client-community-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
}

.client-community-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.client-community-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-status.error {
  color: #ff8b8b;
}

@media (max-width: 1100px) {
  .client-dashboard-hero,
  .client-dashboard-actions {
    align-items: stretch;
  }

  .client-dashboard-hero,
  .client-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .client-dashboard-hero {
    display: grid;
  }

  .client-dashboard-actions {
    justify-content: flex-start;
  }

  .client-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-dashboard-layout {
    display: grid;
  }
}

@media (max-width: 720px) {
  .client-dashboard-screen {
    width: 100%;
  }

  .client-dashboard-hero {
    padding: 22px;
  }

  .client-dashboard-metrics,
  .client-dashboard-layout,
  .client-dashboard-main,
  .client-dashboard-side,
  .client-dashboard-next,
  .client-dashboard-mini-grid,
  .client-dashboard-payment {
    grid-template-columns: 1fr;
  }

  .client-dashboard-metric,
  .client-dashboard-card {
    padding: 16px;
  }

  .client-dashboard-card-head,
  .client-community-actions {
    display: grid;
  }

  .client-dashboard-next img {
    width: 100%;
    height: 180px;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  body.sidebar-open {
    overflow: hidden;
  }

  body.profile-sidebar-collapsed .app-sidebar,
  .app-sidebar {
    z-index: 40;
    width: min(82vw, 280px);
    padding: 20px 14px;
    transform: translateX(calc(-100% - 18px));
    box-shadow: 24px 0 70px rgba(0, 0, 0, 0.58);
    transition: transform 220ms ease;
  }

  body.profile-sidebar-collapsed .app-sidebar-top {
    justify-content: space-between;
  }

  body.profile-sidebar-collapsed .sidebar-logo,
  body.profile-sidebar-collapsed .app-menu-section p,
  body.profile-sidebar-collapsed .sidebar-subnav {
    display: block;
  }

  body.profile-sidebar-collapsed .app-sidebar a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  body.profile-sidebar-collapsed .app-sidebar svg {
    width: 19px;
    height: 19px;
  }

  body.profile-sidebar-collapsed .sidebar-collapse-button span:first-child,
  .sidebar-collapse-button span:first-child {
    grid-area: 1 / 1;
    transform: rotate(45deg);
  }

  body.profile-sidebar-collapsed .sidebar-collapse-button span:last-child,
  .sidebar-collapse-button span:last-child {
    grid-area: 1 / 1;
    transform: rotate(-45deg);
  }

  body.sidebar-open .app-sidebar {
    transform: translateX(0) !important;
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: block;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(5px);
  }

  .sidebar-overlay[hidden] {
    display: none;
  }

  body.profile-sidebar-collapsed .profile-main,
  .profile-main {
    margin-left: 0;
  }

  .topbar {
    justify-content: space-between;
  }

  .sidebar-toggle {
    display: block;
    flex: 0 0 auto;
    border-color: rgba(255, 196, 0, 0.48);
    background: rgba(255, 196, 0, 0.08);
  }

  .sidebar-toggle:hover {
    border-color: var(--yellow);
    background: rgba(255, 196, 0, 0.16);
  }

  .intro-screen,
  .done-screen {
    grid-template-columns: 1fr;
  }

  .done-screen {
    align-items: start;
  }

  .done-screen h2 {
    max-width: 680px;
  }

  .customer-plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .customer-compare-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-compare-heading > span {
    max-width: none;
  }

  .account-summary-grid,
  .account-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .account-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-library-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-program-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-program-progress-card {
    width: 100%;
  }

  .client-program-layout {
    grid-template-columns: 1fr;
  }

  .client-program-video-studio {
    grid-template-columns: 1fr;
  }

  .client-program-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-program-grid,
  .training-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-live-preview {
    grid-template-columns: 1fr;
  }

  .training-live-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-live-routine-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-live-routine-actions,
  .training-live-routine-prompt,
  .training-live-routine-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-live-routine-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-live-routine-list section > div {
    grid-template-columns: 1fr;
  }

  .training-live-routine-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .training-live-routine-card img {
    width: 96px;
    height: 96px;
  }

  .training-live-routine-card-actions {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .training-live-rating,
  .training-live-completion,
  .training-live-promise,
  .training-live-selfie {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .training-live-promise-slots {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .training-live-selfie-picker,
  .training-live-selfie textarea,
  .training-live-selfie-actions {
    width: 100%;
    min-height: 132px;
  }

  .training-reaction-row {
    justify-content: flex-start;
  }

  .training-star-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

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

  .service-booking-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-date-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-choice-card {
    grid-template-columns: 96px minmax(0, 1fr) auto;
  }

  .service-choice-card .primary-action {
    grid-column: 2 / -1;
  }

  .payment-panels {
    grid-template-columns: 1fr;
  }

  .payment-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-trust-row article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .payment-trust-row article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .password-rules {
    grid-template-columns: 1fr;
  }

  .access-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-media {
    display: none;
  }
}

@media (max-width: 720px) {
  .profile-stage {
    padding: 18px 12px;
  }

  .topbar {
    padding: 0 14px;
  }

  .screen {
    min-height: auto;
  }

  .intro-copy,
  .done-screen,
  .profile-card {
    padding: 24px 18px;
  }

  .intro-copy h1,
  .done-screen h2 {
    font-size: 2.25rem;
  }

  .intro-note {
    position: static;
    margin: 0 18px 20px;
  }

  .screen-header,
  .card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .plans-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-summary-grid,
  .account-info-grid,
  .account-service-item {
    grid-template-columns: 1fr;
  }

  .account-card-head,
  .account-service-item > div:last-child {
    align-items: flex-start;
    justify-items: start;
    text-align: left;
  }

  .training-library-tools,
  .training-program-grid,
  .training-video-grid {
    grid-template-columns: 1fr;
  }

  .training-live-promise-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-program-hero h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .client-program-week-tabs button {
    min-width: 132px;
  }

  .client-program-side,
  .client-program-session-metrics,
  .client-program-side-grid {
    grid-template-columns: 1fr;
  }

  .client-program-session-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-program-start-band,
  .client-program-player-head {
    align-items: stretch;
    flex-direction: column;
  }

  .client-program-player-tags {
    flex-basis: auto;
    justify-content: flex-start;
  }

  .client-program-video-actions {
    grid-template-columns: 1fr;
  }

  .client-program-video-list {
    max-height: none;
  }

  .client-program-video-list button {
    grid-template-columns: 34px 68px minmax(0, 1fr);
  }

  .client-program-video-list button > em {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .client-program-day-card,
  .client-program-exercise {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .client-program-day-card > span,
  .client-program-day-card > strong,
  .client-program-day-card div,
  .client-program-day-card em {
    grid-column: auto;
    grid-row: auto;
  }

  .client-program-day-card em,
  .client-program-exercise em {
    min-width: 0;
  }

  .client-program-exercise-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .client-program-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-live-preview {
    padding: 22px 16px;
  }

  .training-live-preview h3 {
    font-size: 2.35rem;
  }

  .training-reaction-row button {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 1.65rem;
  }

  .training-star-row button {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.35rem;
  }

  .training-library-hero .secondary-action,
  .training-filter-button {
    width: 100%;
  }

  .account-service-item img {
    width: 100%;
    height: 170px;
  }

  .payment-steps,
  .payment-panels,
  .payment-trust-row,
  .service-booking-steps,
  .service-booking-panels,
  .service-date-grid {
    grid-template-columns: 1fr;
  }

  .service-choice-card,
  .service-confirm-service,
  .service-slot-list button {
    grid-template-columns: 1fr;
  }

  .service-choice-card img,
  .service-confirm-service img {
    width: 100%;
    height: 180px;
  }

  .service-choice-card .primary-action {
    grid-column: auto;
    width: 100%;
  }

  .payment-panel {
    min-height: auto;
  }

  .service-booking-panel {
    min-height: auto;
  }

  .payment-trust-row article,
  .payment-trust-row article:nth-child(3),
  .payment-trust-row article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .payment-trust-row article:first-child {
    border-top: 0;
  }

  .payment-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-actions .primary-action,
  .payment-actions .secondary-action,
  .payment-panel-controls .primary-action,
  .payment-panel-controls .secondary-action {
    width: 100%;
  }

  .payment-panel-controls {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .password-modal {
    padding: 14px;
  }

  .password-modal-actions {
    grid-template-columns: 1fr;
  }

  .access-mobile-shell {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .access-meta-grid,
  .access-stats-grid,
  .access-filters {
    grid-template-columns: 1fr;
  }

  .access-calendar div {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .access-log-card {
    grid-template-columns: 44px 1fr;
  }

  .access-log-card b {
    justify-self: start;
  }

  .avatar-editor {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .avatar-copy {
    justify-items: center;
  }

  .two-cols,
  .choice-grid,
  .chip-field,
  .customer-plans-grid,
  .customer-plan-actions {
    grid-template-columns: 1fr;
  }

  .done-screen {
    gap: 24px;
  }

  .complete-mark {
    width: 112px;
    height: 112px;
  }
}
