:root {
  --bg: #080b12;
  --bg-soft: rgba(17, 23, 36, 0.78);
  --bg-card: rgba(18, 24, 37, 0.86);
  --bg-card-strong: rgba(13, 18, 29, 0.94);
  --text: #f4f7ff;
  --text-soft: #b4bfd4;
  --text-muted: #7f8da8;
  --line: rgba(126, 148, 190, 0.18);
  --blue: #4f86ff;
  --blue-strong: #74a6ff;
  --green: #4ed7a8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.17), transparent 25%),
    radial-gradient(circle at left 30%, rgba(78, 215, 168, 0.1), transparent 20%),
    linear-gradient(180deg, #070a10 0%, #0b1018 55%, #070a10 100%);
}

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

button,
input {
  font: inherit;
}

.page-shell {
  overflow: hidden;
  position: relative;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.ambient-one {
  top: 110px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(79, 134, 255, 0.18);
}

.ambient-two {
  top: 560px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(78, 215, 168, 0.11);
}

.ambient-three {
  bottom: 260px;
  right: 18%;
  width: 240px;
  height: 240px;
  background: rgba(117, 93, 255, 0.14);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.hero-section .container {
  width: min(calc(100% - 24px), 1500px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 40;
  padding-top: 18px;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 23, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 760px;
  justify-self: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-auth-link,
.header-auth-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 180ms ease;
}

.header-auth-link {
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.header-auth-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header-auth-cta {
  color: #09101a;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.14);
}

.header-auth-cta:hover {
  transform: translateY(-1px);
}

.main-nav a {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 999px;
  transition: 180ms ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active {
  color: #ffffff;
  position: relative;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.18), rgba(79, 134, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.main-nav .nav-cta {
  background: var(--blue);
  color: white;
  padding-inline: 18px;
}

.language-switcher {
  position: relative;
  z-index: 60;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.language-flag {
  font-size: 22px;
  line-height: 1;
}

.language-caret {
  color: var(--text-muted);
  font-size: 14px;
  transform: translateY(1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 180px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.language-switcher.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  color: var(--text-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-option:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-section {
  padding: 54px 0 28px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 22%, rgba(79, 134, 255, 0.2), transparent 20%),
    radial-gradient(circle at 84% 74%, rgba(244, 30, 161, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.99), rgba(5, 7, 12, 0.99));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.54);
}

.hero-landing-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
}

.hero-landing-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-landing-actions {
  display: flex;
  gap: 14px;
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(10, 14, 22, 0.98), rgba(7, 9, 15, 0.98)),
    radial-gradient(circle at left center, rgba(244, 30, 161, 0.1), transparent 20%);
}

.phone-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.phone-topline strong {
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
}

.hero-phone-primary {
  right: 176px;
  top: 82px;
}

.hero-phone-secondary {
  right: 18px;
  top: 98px;
  border-color: rgba(255, 70, 165, 0.34);
  box-shadow:
    0 38px 60px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 59, 173, 0.16),
    inset 0 0 0 2px rgba(255, 255, 255, 0.03);
}

.phone-content-detail {
  display: flex;
  flex-direction: column;
}

.detail-tabs {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-tabs span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.detail-tabs .active {
  color: #ff43a3;
}

.detail-video-card {
  position: relative;
  min-height: 188px;
  margin-top: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.12), transparent 16%),
    linear-gradient(180deg, rgba(25, 31, 45, 0.98), rgba(11, 14, 22, 0.98));
}

.detail-play {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ff43a3;
  color: white;
  font-size: 16px;
}

.detail-copy h5 {
  margin: 14px 0 0;
  font-size: 24px;
}

.detail-copy p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.detail-chart {
  position: relative;
  height: 118px;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-line-mini {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,67,163,0.3), rgba(255,67,163,1));
  transform: skewY(-10deg);
  transform-origin: left center;
}

.chart-dot-mini {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff43a3;
  box-shadow: 0 0 12px rgba(255, 67, 163, 0.54);
}

.dot-a { left: 26px; bottom: 34px; }
.dot-b { left: 72px; bottom: 46px; }
.dot-c { left: 128px; bottom: 62px; }
.dot-d { right: 24px; bottom: 82px; }

.detail-pills {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.detail-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
}

.detail-pills .active {
  background: rgba(255, 67, 163, 0.16);
  color: #ff43a3;
}

.hero-watch-live {
  position: absolute;
  right: 236px;
  bottom: 58px;
  z-index: 3;
  width: 132px;
  height: 148px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(34, 39, 52, 0.98), rgba(12, 15, 22, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.hero-watch-live::before,
.hero-watch-live::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 1), rgba(7, 9, 15, 1));
}

.hero-watch-live::before {
  top: -20px;
}

.hero-watch-live::after {
  bottom: -20px;
}

.hero-bottom-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bottom-strip article {
  padding: 24px 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bottom-strip article:last-child {
  border-right: 0;
}

.hero-bottom-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.hero-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: stretch;
  gap: 28px;
  padding: 34px;
}

.hero-live-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 10px 24px 4px;
}

.hero-live-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: clamp(62px, 6vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-live-accent {
  color: var(--blue);
}

.hero-live-text {
  max-width: 540px;
  margin: 0;
  color: rgba(235, 240, 250, 0.86);
  font-size: 24px;
  line-height: 1.5;
}

.hero-live-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.hero-live-feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-live-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--blue-strong);
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.15), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(79, 134, 255, 0.22);
}

.hero-live-feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-live-feature p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.hero-live-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.hero-live-meta span {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.hero-live-visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 22% 30%, rgba(79, 134, 255, 0.18), transparent 18%),
    radial-gradient(circle at 76% 78%, rgba(255, 54, 166, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.98), rgba(5, 7, 12, 0.98));
}

.hero-live-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 10, 0.34) 0%, rgba(4, 6, 10, 0.1) 24%, rgba(4, 6, 10, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.hero-live-image {
  width: 100%;
  height: 100%;
  min-height: 780px;
  display: block;
  object-fit: cover;
  object-position: 73% center;
}

.library-live-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  gap: 20px;
  align-items: start;
}

.library-live-browser,
.library-live-sidepanel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(9, 12, 19, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.library-live-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.library-live-topline strong {
  font-size: 28px;
  line-height: 1.1;
}

.library-live-topline span {
  color: var(--text-soft);
  font-size: 15px;
}

.library-live-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 16px;
}

.library-live-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.library-live-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.library-live-chips span.active {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.22), rgba(79, 134, 255, 0.1));
  border-color: rgba(79, 134, 255, 0.28);
}

.library-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.library-live-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 142px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.library-live-thumb {
  position: relative;
  min-height: 104px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(180deg, rgba(43, 52, 72, 0.96), rgba(18, 23, 34, 0.98));
  overflow: hidden;
}

.library-live-thumb::before,
.library-live-thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.thumb-machine::before {
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(163, 174, 197, 0.28), rgba(81, 95, 125, 0.6));
}

.thumb-machine::after {
  width: 42px;
  height: 62px;
  left: 32px;
  top: 18px;
  background: linear-gradient(180deg, rgba(255, 82, 156, 0.86), rgba(255, 82, 156, 0.24));
  box-shadow: 22px 8px 0 -6px rgba(185, 198, 220, 0.44), -20px 18px 0 -10px rgba(185, 198, 220, 0.34);
}

.thumb-bench::before {
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 12px;
  background: rgba(194, 206, 227, 0.36);
}

.thumb-bench::after {
  width: 76px;
  height: 18px;
  top: 38px;
  left: 16px;
  background: linear-gradient(90deg, rgba(255, 82, 156, 0.84), rgba(255, 82, 156, 0.28));
  box-shadow:
    8px -18px 0 -6px rgba(185, 198, 220, 0.4),
    24px -18px 0 -6px rgba(185, 198, 220, 0.4),
    50px -24px 0 -6px rgba(185, 198, 220, 0.4);
}

.thumb-pulldown::before {
  left: 22px;
  right: 22px;
  top: 16px;
  height: 10px;
  background: rgba(185, 198, 220, 0.44);
}

.thumb-pulldown::after {
  width: 58px;
  height: 70px;
  left: 26px;
  top: 28px;
  background: linear-gradient(180deg, rgba(255, 82, 156, 0.9), rgba(255, 82, 156, 0.22));
  box-shadow:
    -16px -10px 0 -12px rgba(185, 198, 220, 0.44),
    18px -10px 0 -12px rgba(185, 198, 220, 0.44);
}

.thumb-thrust::before {
  left: 14px;
  right: 14px;
  bottom: 22px;
  height: 16px;
  border-radius: 999px;
  background: rgba(185, 198, 220, 0.36);
}

.thumb-thrust::after {
  width: 78px;
  height: 24px;
  left: 16px;
  top: 38px;
  background: linear-gradient(90deg, rgba(255, 82, 156, 0.88), rgba(255, 82, 156, 0.24));
  box-shadow:
    -6px 20px 0 -10px rgba(185, 198, 220, 0.42),
    54px 6px 0 -10px rgba(185, 198, 220, 0.42);
}

.library-live-card-copy strong {
  display: block;
  font-size: 21px;
  line-height: 1.18;
}

.library-live-card-copy span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.library-live-card-copy small {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
}

.library-live-sidepanel strong {
  display: block;
  font-size: 24px;
  margin-bottom: 18px;
}

.library-live-figure-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.library-live-figure {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(17, 23, 35, 0.96), rgba(8, 11, 18, 0.98));
}

.library-live-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(185, 198, 220, 0.92), rgba(93, 108, 141, 0.98));
}

.library-live-figure::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  width: 92px;
  height: 148px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(88, 147, 255, 0.92), rgba(59, 101, 190, 0.96));
  box-shadow:
    -38px 8px 0 -18px rgba(88, 147, 255, 0.88),
    38px 8px 0 -18px rgba(88, 147, 255, 0.88),
    -16px 136px 0 -18px rgba(88, 147, 255, 0.88),
    16px 136px 0 -18px rgba(88, 147, 255, 0.88);
}

.library-live-figure.back::after {
  background: linear-gradient(180deg, rgba(88, 147, 255, 0.84), rgba(70, 120, 220, 0.9));
  box-shadow:
    -38px 8px 0 -18px rgba(88, 147, 255, 0.78),
    38px 8px 0 -18px rgba(88, 147, 255, 0.78),
    -16px 136px 0 -18px rgba(88, 147, 255, 0.78),
    16px 136px 0 -18px rgba(88, 147, 255, 0.78);
}

.library-live-sidepanel p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.hero-copy,
.hero-visual,
.feature-card,
.workflow-step,
.price-card,
.signin-card,
.signin-copy,
.testimonial-card,
.desktop-panel,
.browser-card,
.floating-note,
.proof-card,
.trust-grid article,
.platform-item,
.calendar-card,
.coach-card {
  backdrop-filter: blur(18px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 58px 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(12, 16, 24, 0.88), rgba(8, 11, 18, 0.92));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
}

.eyebrow {
  display: inline-block;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(70px, 7vw, 106px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: rgba(235, 240, 250, 0.86);
  font-size: 27px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #79a5ff 100%);
  color: white;
}

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

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 176px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.store-small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-button strong {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.05;
}

.button-full {
  width: 100%;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.proof-card {
  padding: 18px;
  min-height: 122px;
  border-radius: 22px;
  border: 1px solid rgba(130, 152, 194, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.proof-card strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 9%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(circle at 68% 52%, rgba(121, 165, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.98), rgba(9, 12, 20, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.hero-stage-image,
.hero-stage-overlay {
  position: absolute;
  inset: 0;
}

.hero-stage-image {
  background:
    linear-gradient(90deg, rgba(4, 6, 10, 0.14) 0%, rgba(4, 6, 10, 0.08) 26%, rgba(4, 6, 10, 0.02) 52%, rgba(4, 6, 10, 0.16) 100%),
    url("./assets/hero-reference.png");
  background-size: cover;
  background-position: center center;
}

.hero-stage-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.12), transparent 9%),
    radial-gradient(circle at 74% 58%, rgba(79, 134, 255, 0.1), transparent 22%);
}

.hero-stage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
}

.hero-stage-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.72) 0%, rgba(5, 7, 12, 0.4) 24%, rgba(5, 7, 12, 0.06) 54%, rgba(5, 7, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-phone {
  position: absolute;
  right: 42px;
  top: 114px;
  z-index: 3;
  width: 268px;
  height: 544px;
  padding: 18px 14px 16px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.98), rgba(8, 11, 18, 0.99));
  box-shadow:
    0 38px 60px rgba(0, 0, 0, 0.42),
    inset 0 0 0 2px rgba(255, 255, 255, 0.03);
}

.phone-notch {
  width: 112px;
  height: 22px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.92);
}

.phone-content {
  height: calc(100% - 38px);
  padding: 10px 10px 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 18, 28, 0.9), rgba(8, 11, 18, 1));
}

.phone-content small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.phone-content h4 {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-stats span {
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
}

.phone-exercise {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-exercise-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.26), transparent 20%),
    linear-gradient(180deg, rgba(68, 84, 110, 0.9), rgba(24, 30, 40, 0.96));
}

.phone-exercise strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.phone-exercise span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.35;
}

.phone-exercise em {
  color: var(--text-soft);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-nav span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.phone-nav .active {
  color: white;
}

.hero-watch {
  position: absolute;
  right: 230px;
  bottom: 78px;
  z-index: 3;
  width: 132px;
  height: 148px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(34, 39, 52, 0.98), rgba(12, 15, 22, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.hero-watch::before,
.hero-watch::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 1), rgba(7, 9, 15, 1));
}

.hero-watch::before {
  top: -20px;
}

.hero-watch::after {
  bottom: -20px;
}

.watch-screen {
  position: absolute;
  inset: 11px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(7, 9, 14, 1), rgba(15, 19, 28, 1));
}

.watch-screen img {
  width: 68px;
  height: auto;
}

.browser-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(126, 148, 190, 0.18);
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.88), rgba(14, 18, 28, 0.95));
  box-shadow: var(--shadow);
}

.app-showcase-card {
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(126, 148, 190, 0.18);
  background: linear-gradient(180deg, rgba(16, 20, 30, 0.94), rgba(8, 11, 18, 0.98));
  box-shadow: var(--shadow);
}

.showcase-top-nav {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.showcase-tab {
  padding: 12px 18px;
  border-radius: 18px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 800;
}

.showcase-tab.active {
  background: rgba(79, 134, 255, 0.18);
  color: var(--blue-strong);
}

.showcase-body {
  padding: 26px 6px 4px;
}

.showcase-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.showcase-heading h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
}

.showcase-heading p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.showcase-logo {
  width: 124px;
  height: auto;
  margin-top: 10px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.88fr;
  gap: 18px;
}

.showcase-tile,
.showcase-calendar {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.showcase-tile {
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.tile-eyebrow {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.showcase-tile strong {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.08;
}

.showcase-tile p {
  margin-top: auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.showcase-calendar {
  padding: 18px;
  min-height: 320px;
}

.showcase-calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.showcase-calendar-top strong {
  display: block;
  font-size: 22px;
}

.showcase-calendar-top span {
  color: var(--text-soft);
  font-size: 14px;
}

.calendar-arrow {
  color: var(--text-soft);
  font-size: 26px !important;
  font-weight: 800;
}

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

.showcase-calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.showcase-calendar-grid span strong {
  font-size: 20px;
  color: var(--text);
}

.showcase-calendar-grid span.active {
  border-color: rgba(116, 166, 255, 0.4);
  background: rgba(79, 134, 255, 0.14);
}

.exercise-preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.exercise-browser-card,
.exercise-list-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.1), transparent 20%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.exercise-browser-card {
  padding: 26px;
}

.exercise-browser-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.exercise-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(116, 166, 255, 0.35);
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(79, 134, 255, 0.08);
}

.exercise-badge.muted {
  border-color: var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.exercise-browser-body {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
}

.exercise-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(244, 30, 161, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(18, 23, 34, 1), rgba(9, 12, 20, 1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.exercise-figure {
  position: relative;
  width: 130px;
  height: 220px;
}

.figure-core,
.figure-arm,
.figure-leg {
  position: absolute;
  background: linear-gradient(180deg, #dce2ea, #bfc8d6);
}

.figure-core {
  top: 16px;
  left: 36px;
  width: 58px;
  height: 126px;
  border-radius: 34px 34px 26px 26px;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.16);
}

.figure-core::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 46px;
  width: 28px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 91, 91, 0.72);
}

.figure-arm {
  top: 36px;
  width: 24px;
  height: 88px;
  border-radius: 18px;
}

.arm-left { left: 14px; transform: rotate(12deg); }
.arm-right { right: 14px; transform: rotate(-12deg); }

.figure-leg {
  bottom: 10px;
  width: 26px;
  height: 92px;
  border-radius: 18px;
}

.leg-left { left: 36px; }
.leg-right { right: 36px; }

.exercise-info h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.exercise-info p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 16px;
}

.exercise-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.exercise-meta-row span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 134, 255, 0.2);
  background: rgba(10, 16, 28, 0.88);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.exercise-progress-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  align-items: end;
  height: 82px;
}

.exercise-progress-line span {
  display: block;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.38), rgba(79, 134, 255, 0.12));
}

.exercise-progress-line span:nth-child(1) { height: 30px; }
.exercise-progress-line span:nth-child(2) { height: 44px; }
.exercise-progress-line span:nth-child(3) { height: 38px; }
.exercise-progress-line span:nth-child(4) { height: 56px; }
.exercise-progress-line span:nth-child(5) { height: 68px; }

.exercise-progress-line span.active {
  background: linear-gradient(180deg, rgba(78, 215, 168, 0.7), rgba(78, 215, 168, 0.18));
}

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

.exercise-list-card {
  padding: 22px;
}

.exercise-list-card strong {
  display: block;
  font-size: 24px;
}

.exercise-list-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 15px;
}

.exercise-list-card small {
  display: block;
  margin-top: 16px;
  color: #ff4ea5;
  font-size: 13px;
  font-weight: 800;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-address {
  flex: 1;
  color: var(--text-muted);
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 520px;
}

.mock-sidebar {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.mock-brand {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mock-sidebar-links {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.mock-sidebar-links span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.mock-sidebar-links .active {
  color: var(--text);
}

.mock-main {
  display: grid;
  gap: 16px;
  padding: 20px;
}

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

.mock-overline {
  margin: 0 0 6px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mock-main-top h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(116, 166, 255, 0.4);
  background: rgba(79, 134, 255, 0.12);
}

.metric-row,
.panel-grid,
.pricing-grid,
.testimonial-grid,
.workflow-grid,
.feature-grid,
.trust-grid,
.platform-grid,
.signin-grid {
  display: grid;
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card,
.mock-chart-card,
.calendar-card,
.coach-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.metric-card {
  padding: 14px;
  min-height: 96px;
}

.metric-card strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.metric-card span,
.section-head small,
.client-row span {
  color: var(--text-muted);
}

.metric-card span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
}

.mock-chart-card,
.calendar-card,
.coach-card {
  padding: 16px;
}

.section-head span {
  font-size: 15px;
  font-weight: 800;
}

.section-head small {
  font-size: 12px;
  font-weight: 700;
}

.chart-area {
  position: relative;
  margin-top: 14px;
  height: 170px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 40px,
      rgba(255,255,255,0.06) 40px,
      rgba(255,255,255,0.06) 41px
    );
}

.chart-line {
  position: absolute;
  border-top: 3px solid var(--blue-strong);
  border-radius: 999px;
}

.chart-line-one {
  top: 82px;
  left: 24px;
  width: 220px;
  height: 86px;
  transform: rotate(-7deg);
}

.chart-line-two {
  top: 56px;
  left: 190px;
  width: 116px;
  height: 60px;
  border-top-color: var(--green);
  transform: rotate(9deg);
}

.chart-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 3px solid rgba(9, 12, 20, 1);
  background: var(--blue-strong);
}

.dot-one { top: 120px; left: 50px; }
.dot-two { top: 100px; left: 112px; }
.dot-three { top: 82px; left: 182px; }
.dot-four { top: 56px; left: 250px; background: var(--green); }

.mock-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 188px;
  gap: 12px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.calendar-days span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 800;
}

.calendar-days .active {
  color: var(--blue-strong);
  border-color: rgba(116, 166, 255, 0.45);
  background: rgba(79, 134, 255, 0.08);
}

.client-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.client-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 134, 255, 0.8), rgba(78, 215, 168, 0.8));
}

.client-row strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.client-row span {
  display: block;
  font-size: 11px;
  line-height: 1.45;
}

.floating-note {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 25, 39, 0.82), rgba(13, 18, 28, 0.86));
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(116, 166, 255, 0.35);
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.floating-note strong {
  display: block;
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.25;
}

.floating-note p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.preview-notice,
.trust-band,
.brand-row,
.feature-section,
.platform-section,
.progress-preview-section,
.exercise-preview-section,
.coach-section,
.pricing-section,
.testimonial-section,
.signin-section {
  position: relative;
  padding: 42px 0;
}

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

.trust-grid article,
.preview-notice-card,
.feature-card,
.workflow-step,
.price-card,
.testimonial-card,
.signin-card,
.signin-copy,
.desktop-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.92), rgba(9, 12, 20, 0.92)),
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.preview-notice {
  padding: 8px 0 18px;
}

.preview-notice-card {
  padding: 22px 26px;
  text-align: center;
}

.preview-notice-card strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.preview-notice-card p {
  max-width: 920px;
  margin: 10px auto 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.trust-grid article {
  padding: 28px 26px;
}

.trust-grid strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.55;
}

.brand-row-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 14, 23, 0.96), rgba(8, 11, 18, 0.96)),
    radial-gradient(circle at 12% 50%, rgba(244, 30, 161, 0.08), transparent 18%);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.brand-row-inner > span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 134, 255, 0.24);
  background: rgba(8, 15, 28, 0.78);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 24px;
}

.section-intro h2,
.platform-copy h2,
.signin-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-intro p,
.platform-copy p,
.signin-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.progress-preview-showcase {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 24px;
  align-items: start;
}

.progress-preview-visual,
.progress-preview-copy {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.94), rgba(9, 12, 20, 0.94)),
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.progress-preview-visual {
  overflow: hidden;
}

.progress-preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.progress-preview-copy {
  padding: 28px;
}

.progress-preview-copy h3 {
  margin: 14px 0 12px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.progress-preview-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.progress-preview-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.progress-preview-point {
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.progress-preview-point strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.progress-preview-point p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.section-visual-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.96), rgba(7, 9, 15, 0.96)),
    radial-gradient(circle at 15% 20%, rgba(79, 134, 255, 0.12), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(244, 30, 161, 0.12), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.section-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 134, 255, 0.24), rgba(244, 30, 161, 0.24), transparent);
}

.section-visual-copy {
  position: relative;
  z-index: 1;
}

.section-visual-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 134, 255, 0.22);
  background: rgba(79, 134, 255, 0.08);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-visual-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-visual-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.section-visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section-visual-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.section-visual-stage {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.section-visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.08), rgba(5, 8, 15, 0.34)),
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.visual-stage-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 18, 0.54);
  backdrop-filter: blur(12px);
}

.visual-stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.visual-stage-dot:nth-child(1) { background: #ff4ea5; }
.visual-stage-dot:nth-child(2) { background: #4f86ff; }
.visual-stage-dot:nth-child(3) { background: #7c8aa6; }

.visual-stage-topbar strong {
  margin-left: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-stage {
  background:
    radial-gradient(circle at 15% 30%, rgba(79, 134, 255, 0.16), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(244, 30, 161, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(9, 12, 20, 0.98), rgba(6, 8, 14, 1));
}

.visual-dashboard {
  position: absolute;
  inset: 82px 24px 24px;
  display: grid;
  gap: 16px;
}

.info-dashboard {
  grid-template-columns: 74px 1fr;
}

.visual-sidebar {
  display: grid;
  grid-auto-rows: 58px;
  gap: 10px;
}

.visual-sidebar-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.visual-sidebar-item.active {
  background:
    linear-gradient(180deg, rgba(79, 134, 255, 0.18), rgba(79, 134, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(79, 134, 255, 0.28);
}

.visual-main {
  display: grid;
  gap: 16px;
}

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

.visual-stat-card,
.visual-chart-card,
.visual-calendar-card,
.library-browser-list,
.library-browser-detail,
.coach-panel,
.pricing-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.visual-stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
}

.visual-stat-card small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-stat-card strong {
  font-size: 34px;
  line-height: 1;
}

.visual-stat-card span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

.visual-stat-card.accent-blue {
  background:
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.visual-stat-card.accent-pink {
  background:
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.visual-stat-card.accent-green {
  background:
    radial-gradient(circle at top right, rgba(78, 215, 168, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.visual-content-row {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
}

.visual-chart-card,
.visual-calendar-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 18px;
}

.visual-chart-head,
.visual-calendar-head,
.coach-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-chart-head strong,
.visual-calendar-head strong,
.coach-panel-head strong {
  font-size: 18px;
}

.visual-chart-head span,
.visual-calendar-head span,
.coach-panel-head span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.visual-chart-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 118px;
  margin-top: 26px;
  align-items: end;
}

.visual-chart-grid span {
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.34), rgba(79, 134, 255, 0.08));
}

.visual-chart-grid span:nth-child(1) { height: 56px; }
.visual-chart-grid span:nth-child(2) { height: 88px; }
.visual-chart-grid span:nth-child(3) { height: 72px; }
.visual-chart-grid span:nth-child(4) { height: 104px; }

.visual-line-chart {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-line-chart::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 30, 161, 0.32), rgba(79, 134, 255, 1));
  transform: skewY(-8deg);
}

.chart-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4f86ff;
  box-shadow: 0 0 12px rgba(79, 134, 255, 0.42);
}

.node-1 { left: 14px; top: 42px; }
.node-2 { left: 76px; top: 28px; }
.node-3 { left: 142px; top: 34px; }
.node-4 { right: 88px; top: 18px; }
.node-5 { right: 18px; top: 8px; background: #ff4ea5; box-shadow: 0 0 12px rgba(244, 30, 161, 0.48); }

.visual-calendar-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.visual-calendar-days span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
}

.visual-calendar-days span.active {
  border-color: rgba(79, 134, 255, 0.28);
  color: #ffffff;
  background: rgba(79, 134, 255, 0.14);
}

.visual-calendar-note {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.visual-calendar-note strong {
  display: block;
  font-size: 17px;
}

.visual-calendar-note small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.library-stage {
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 30, 161, 0.16), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(79, 134, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.98), rgba(6, 8, 14, 1));
}

.library-browser {
  position: absolute;
  inset: 82px 24px 24px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
}

.library-reference-panel,
.library-flow {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.workout-logging-section {
  padding: 32px 0 20px;
}

.workout-logging-showcase {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 24px;
  align-items: stretch;
}

.workout-logging-copy-card,
.workout-logging-visual,
.workout-logging-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(79, 134, 255, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.workout-logging-copy-card {
  padding: 28px;
}

.workout-logging-copy-card h3 {
  margin: 16px 0 0;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.08;
}

.workout-logging-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.workout-logging-item {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 700;
}

.workout-logging-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 30, 161, 1), rgba(79, 134, 255, 1));
  box-shadow: 0 0 16px rgba(244, 30, 161, 0.44);
}

.workout-logging-visual {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  padding: 18px;
  align-content: start;
}

.workout-screen-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.workout-screen-card-main {
  align-self: stretch;
}

.workout-screen-card-secondary {
  align-self: end;
  margin-top: 42px;
}

.workout-screen-image {
  display: block;
  width: 100%;
  height: auto;
}

.workout-logging-note {
  grid-column: 1 / -1;
  padding: 18px 22px;
  border-radius: 26px;
}

.workout-logging-note strong {
  display: block;
  font-size: 18px;
}

.workout-logging-note span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.68;
}

.library-reference-panel {
  padding: 18px;
}

.library-reference-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.library-video-showcase {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  margin-top: 22px;
}

.library-video-frame,
.library-video-copy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(79, 134, 255, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.library-video-frame {
  min-height: 440px;
}

.library-video-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  background: #05070d;
}

.library-video-copy-card {
  padding: 28px;
}

.library-video-copy-card h3 {
  margin: 16px 0 0;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.1;
}

.library-video-copy-card > p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.library-video-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.library-video-point {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.library-video-point strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}

.library-video-point p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.library-flow {
  margin-top: 22px;
  padding: 28px;
}

.library-flow-intro {
  max-width: 780px;
}

.library-flow-intro h3 {
  margin: 16px 0 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08;
}

.library-flow-intro p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

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

.library-flow-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.library-flow-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.library-flow-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.library-browser-list,
.library-browser-detail {
  padding: 18px;
  border-radius: 26px;
}

.library-browser-search {
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.library-browser-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.library-browser-filters span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.library-browser-filters span.active {
  color: #ffffff;
  background: rgba(79, 134, 255, 0.18);
}

.library-browser-items {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.library-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.library-item.active {
  border: 1px solid rgba(244, 30, 161, 0.22);
  background: rgba(244, 30, 161, 0.08);
}

.library-item-thumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.library-item-thumb::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.3), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.library-item-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 16px;
  height: 24px;
  border-radius: 8px 8px 4px 4px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.78;
}

.library-item-thumb.pink {
  background: linear-gradient(180deg, rgba(244, 30, 161, 0.7), rgba(244, 30, 161, 0.16));
}

.library-item-thumb.blue {
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.7), rgba(79, 134, 255, 0.16));
}

.library-item-thumb.green {
  background: linear-gradient(180deg, rgba(78, 215, 168, 0.7), rgba(78, 215, 168, 0.16));
}

.library-item strong {
  display: block;
  font-size: 15px;
}

.library-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
}

.library-detail-video {
  position: relative;
  min-height: 164px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(180deg, rgba(20, 24, 35, 0.98), rgba(8, 11, 18, 0.98));
}

.library-detail-video::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(3, 5, 10, 0), rgba(3, 5, 10, 0.72));
  pointer-events: none;
}

.library-detail-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.library-explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.library-explainer-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(79, 134, 255, 0.08), transparent 22%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.library-explainer-card h3 {
  margin: 16px 0 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
}

.library-explainer-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.library-selection-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.library-selection-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.library-selection-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}

.library-selection-item p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.library-add-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.08), transparent 22%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.library-add-card h3 {
  margin: 16px 0 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
}

.library-add-card > p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.library-add-visual {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
}

.library-add-step {
  min-height: 148px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.library-add-step strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.library-add-step span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.library-add-arrow {
  display: grid;
  place-items: center;
  color: var(--blue-strong);
  font-size: 24px;
  font-weight: 900;
}

.library-detail-play {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ff4ea5;
  color: white;
  font-size: 16px;
  z-index: 1;
  box-shadow: 0 12px 32px rgba(244, 30, 161, 0.36);
}

.library-detail-copy {
  margin-top: 16px;
}

.library-detail-copy strong {
  font-size: 28px;
}

.library-detail-copy p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.library-detail-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  height: 72px;
  margin-top: 16px;
  align-items: end;
}

.library-detail-progress span {
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(180deg, rgba(79, 134, 255, 0.34), rgba(79, 134, 255, 0.08));
}

.library-detail-progress span:nth-child(1) { height: 26px; }
.library-detail-progress span:nth-child(2) { height: 40px; }
.library-detail-progress span:nth-child(3) { height: 36px; }
.library-detail-progress span:nth-child(4) { height: 54px; }
.library-detail-progress span:nth-child(5) { height: 62px; }

.library-detail-progress span.active {
  background: linear-gradient(180deg, rgba(244, 30, 161, 0.68), rgba(244, 30, 161, 0.18));
}

.library-stage-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.library-stage-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-stage-focus strong {
  font-size: 28px;
  line-height: 1;
}

.library-stage-focus p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.library-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.library-stage-pills span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(79, 134, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.coach-reference-panel,
.coach-benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.coach-reference-panel {
  padding: 18px;
}

.coach-reference-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.coach-dashboard-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  margin-top: 22px;
}

.coach-dashboard-copy,
.coach-dashboard-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(9, 12, 20, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.08), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.coach-dashboard-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-dashboard-copy h3 {
  margin: 16px 0 0;
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.06;
}

.coach-dashboard-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.coach-dashboard-preview {
  padding: 18px;
}

.coach-dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.coach-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.coach-benefit-card {
  padding: 24px;
}

.coach-benefit-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.22;
}

.coach-benefit-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.coach-stage {
  background:
    radial-gradient(circle at 16% 76%, rgba(244, 30, 161, 0.16), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(79, 134, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.98), rgba(6, 8, 14, 1));
}

.coach-workspace {
  position: absolute;
  inset: 82px 24px 24px;
  display: grid;
  grid-template-columns: 0.72fr 1.08fr 0.9fr;
  gap: 16px;
}

.coach-panel {
  padding: 18px;
  border-radius: 26px;
}

.coach-client-list,
.coach-calendar-grid {
  margin-top: 16px;
}

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

.coach-client-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.coach-client-row.active {
  border: 1px solid rgba(79, 134, 255, 0.24);
  background: rgba(79, 134, 255, 0.1);
}

.coach-client-row span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4ea5, #4f86ff);
}

.coach-client-row strong {
  display: block;
  font-size: 14px;
}

.coach-client-row small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
}

.coach-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.coach-calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 16px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.coach-calendar-grid span.active {
  color: white;
  background:
    linear-gradient(180deg, rgba(244, 30, 161, 0.16), rgba(79, 134, 255, 0.16)),
    rgba(255, 255, 255, 0.04);
}

.coach-note-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.coach-note-card.accent {
  background:
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.coach-note-card strong {
  display: block;
  font-size: 16px;
}

.coach-note-card small {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.coach-flow-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 19, 30, 0.94), rgba(8, 11, 18, 0.94)),
    radial-gradient(circle at left center, rgba(244, 30, 161, 0.16), transparent 24%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.coach-flow-card strong {
  font-size: 18px;
  line-height: 1.3;
}

.pricing-stage {
  background:
    radial-gradient(circle at 16% 22%, rgba(79, 134, 255, 0.18), transparent 22%),
    radial-gradient(circle at 86% 74%, rgba(244, 30, 161, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.98), rgba(6, 8, 14, 1));
}

.pricing-showcase {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 176px;
  padding: 18px;
  border-radius: 24px;
}

.pricing-mini-card small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-mini-card strong {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1;
}

.pricing-mini-card span {
  display: block;
  margin-top: auto;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-mini-card.free {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.pricing-mini-card.premium {
  background:
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.pricing-mini-card.coach {
  background:
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.pricing-mini-card.active {
  border-color: rgba(79, 134, 255, 0.26);
  box-shadow: 0 0 0 1px rgba(79, 134, 255, 0.1), 0 16px 34px rgba(0, 0, 0, 0.18);
}

.pricing-showcase-benefits {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-showcase-benefits span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.pricing-stage-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 18, 0.62);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.feature-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 250px;
}

.feature-card-large {
  background:
    linear-gradient(180deg, rgba(23, 29, 48, 0.94), rgba(11, 15, 24, 0.96)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.14), transparent 26%);
}

.feature-card::after,
.workflow-step::after,
.price-card::after,
.testimonial-card::after,
.signin-card::after,
.desktop-panel::after,
.exercise-browser-card::after,
.exercise-list-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 134, 255, 0.22), rgba(244, 30, 161, 0.22), transparent);
  pointer-events: none;
}

.feature-index {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.workflow-step h3,
.price-card h3 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.feature-card p,
.workflow-step p,
.price-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.platform-grid,
.signin-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.platform-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.platform-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 19, 29, 0.92), rgba(10, 12, 19, 0.92)),
    radial-gradient(circle at left center, rgba(36, 121, 255, 0.08), transparent 18%);
}

.platform-item strong {
  display: block;
  font-size: 17px;
}

.platform-item span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.platform-showcase {
  position: relative;
  min-height: 560px;
}

.desktop-panel {
  padding: 24px;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(7, 9, 15, 0.98)),
    radial-gradient(circle at 80% 18%, rgba(244, 30, 161, 0.08), transparent 22%);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-top strong {
  font-size: 20px;
}

.panel-top span {
  color: var(--text-muted);
  font-size: 13px;
}

.panel-grid {
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 170px 170px 130px;
  gap: 14px;
}

.panel-block {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.16), transparent 35%),
    radial-gradient(circle at bottom left, rgba(244, 30, 161, 0.1), transparent 28%);
}

.panel-block-tall {
  grid-row: span 2;
}

.panel-block-wide {
  grid-column: span 2;
}

.phone-stack {
  position: absolute;
  right: 22px;
  bottom: -12px;
}

.phone-card {
  position: absolute;
  width: 200px;
  height: 408px;
  border-radius: 36px;
  border: 1px solid rgba(126, 148, 190, 0.18);
  background: linear-gradient(180deg, rgba(15, 20, 32, 0.94), rgba(8, 11, 18, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.phone-card-front {
  right: 0;
  bottom: 0;
  z-index: 2;
}

.phone-card-back {
  right: 120px;
  bottom: 40px;
  opacity: 0.72;
}

.coach-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 18px;
  margin-bottom: 18px;
}

.coach-main-card,
.coach-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 19, 30, 0.96), rgba(8, 11, 18, 0.96)),
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(79, 134, 255, 0.12), transparent 24%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.coach-main-card {
  padding: 34px;
}

.coach-main-label,
.coach-side-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 134, 255, 0.22);
  background: rgba(79, 134, 255, 0.08);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-main-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.coach-main-card > p {
  margin: 0;
  max-width: 740px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.coach-main-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.coach-metric {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.coach-metric strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.coach-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.coach-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.coach-side-card {
  padding: 24px;
}

.coach-side-card strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.coach-side-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow-step {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.workflow-step span {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pricing-section .container {
  width: min(calc(100% - 24px), 1600px);
}

.pricing-scroll-wrap {
  display: grid;
  gap: 16px;
}

.pricing-scroll-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 19, 29, 0.94), rgba(8, 11, 18, 0.94)),
    radial-gradient(circle at left center, rgba(79, 134, 255, 0.08), transparent 20%);
}

.pricing-scroll-note strong {
  font-size: 14px;
}

.pricing-scroll-note span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 28px) / 3));
  gap: 14px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.pricing-grid::-webkit-scrollbar {
  height: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(116, 166, 255, 0.28);
}

.price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(8, 11, 18, 0.98)),
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.1), transparent 28%);
  scroll-snap-align: start;
}

.price-card-featured {
  background:
    linear-gradient(180deg, rgba(20, 29, 54, 0.96), rgba(11, 15, 25, 0.98)),
    radial-gradient(circle at right top, rgba(244, 30, 161, 0.16), transparent 24%);
  border-color: rgba(116, 166, 255, 0.34);
}

.price-card-premium::before,
.price-card-trainer5::before,
.price-card-trainer15::before,
.price-card-trainer30::before,
.price-card-trainermax::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 134, 255, 0.95), rgba(244, 30, 161, 0.9));
}

.price-card-trainer5 {
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(7, 10, 17, 0.98)),
    radial-gradient(circle at top right, rgba(79, 134, 255, 0.15), transparent 28%);
}

.price-card-trainer15 {
  background:
    linear-gradient(180deg, rgba(18, 17, 30, 0.98), rgba(8, 10, 16, 0.98)),
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.14), transparent 28%);
}

.price-card-trainer30 {
  background:
    linear-gradient(180deg, rgba(15, 22, 33, 0.98), rgba(7, 10, 18, 0.98)),
    radial-gradient(circle at top right, rgba(56, 181, 255, 0.14), transparent 28%);
}

.price-card-trainermax {
  background:
    linear-gradient(180deg, rgba(23, 16, 30, 0.98), rgba(8, 10, 16, 0.98)),
    radial-gradient(circle at top right, rgba(255, 88, 196, 0.14), transparent 28%);
}

.price-card-free {
  background:
    linear-gradient(180deg, rgba(13, 17, 25, 0.98), rgba(7, 10, 16, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%);
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price-plan-label {
  display: inline-flex;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--blue-strong);
  font-size: 18px;
  box-shadow: inset 0 0 24px rgba(79, 134, 255, 0.08);
}

.price-card-trainer15 .price-card-icon {
  color: #ff5ab6;
  box-shadow: inset 0 0 24px rgba(244, 30, 161, 0.08);
}

.price-card-trainer30 .price-card-icon {
  color: #69cbff;
  box-shadow: inset 0 0 24px rgba(56, 181, 255, 0.08);
}

.price-card-trainermax .price-card-icon {
  color: #ff7bcb;
  box-shadow: inset 0 0 24px rgba(255, 88, 196, 0.08);
}

.price-hero {
  margin: 16px 0 16px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at top left, rgba(79, 134, 255, 0.12), transparent 26%);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(79, 134, 255, 0.14);
  border: 1px solid rgba(116, 166, 255, 0.38);
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  margin: 12px 0 8px;
  font-size: clamp(32px, 2.4vw, 42px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px rgba(79, 134, 255, 0.15);
}

.price-value span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.price-note {
  display: inline-flex;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.price-card p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.6;
}

.price-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a92ff, #f41ea1);
}

.price-card .button {
  margin-top: auto;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.testimonial-card span {
  display: inline-block;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card p {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.55;
}

.signin-copy,
.signin-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
}

.signin-card h3 {
  margin: 0;
  font-size: 34px;
}

.signin-card > p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.signin-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.signin-form label span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signin-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.signin-form input::placeholder {
  color: var(--text-muted);
}

.forgot-link {
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 700;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.signin-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 15px;
}

.signin-footer a {
  color: var(--blue-strong);
  font-weight: 800;
}

.site-footer {
  padding: 28px 0 42px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.74);
  backdrop-filter: blur(12px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(7, 9, 15, 0.98)),
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.14), transparent 24%),
    radial-gradient(circle at top left, rgba(79, 134, 255, 0.14), transparent 20%);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.55);
}

.auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.auth-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.auth-tab {
  min-width: 140px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--text-soft);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.active {
  color: white;
  background: linear-gradient(135deg, rgba(79, 134, 255, 0.9), rgba(244, 30, 161, 0.86));
}

.auth-panel {
  display: none;
  margin-top: 24px;
}

.auth-panel.active {
  display: block;
}

.auth-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.auth-form {
  margin-top: 22px;
}

.auth-switch-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 15px;
}

.auth-switch-link {
  border: 0;
  padding: 0;
  color: var(--blue-strong);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.auth-role-switch,
.app-preview-role-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}

.auth-role-chip,
.app-preview-role-chip {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-role-chip.active,
.app-preview-role-chip.active {
  color: white;
  background: linear-gradient(135deg, rgba(79, 134, 255, 0.9), rgba(244, 30, 161, 0.82));
}

.app-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: stretch;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.app-preview-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.app-preview-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: hidden;
  padding: 16px 18px 18px;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 26, 0.985), rgba(5, 7, 12, 0.99)),
    radial-gradient(circle at top right, rgba(244, 30, 161, 0.14), transparent 22%),
    radial-gradient(circle at top left, rgba(79, 134, 255, 0.14), transparent 18%);
  box-shadow: none;
}

.app-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 0 6px;
}

.app-preview-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.app-preview-logout {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.app-preview-top h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
}

.app-preview-shell {
  display: grid;
  grid-template-columns: 252px 1fr;
  flex: 1;
  min-height: 0;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 18px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.92), rgba(8, 11, 18, 0.98));
}

.app-sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 54px;
}

.app-sidebar-logo {
  width: 126px;
  height: auto;
}

.app-sidebar-nav {
  display: grid;
  gap: 8px;
}

.app-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.app-sidebar-link.active {
  color: white;
  border-color: rgba(244, 30, 161, 0.18);
  background: linear-gradient(90deg, rgba(244, 30, 161, 0.16), rgba(79, 134, 255, 0.08));
}

.app-sidebar-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.app-sidebar-link.active .app-sidebar-icon {
  color: #ff61b2;
}

.app-sidebar-footer {
  margin-top: auto;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-sidebar-footer strong {
  display: block;
  font-size: 15px;
}

.app-sidebar-footer span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.app-preview-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
}

.app-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: stretch;
}

.app-profile-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.app-avatar-ring {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 30, 161, 0.96), rgba(79, 134, 255, 0.9));
  padding: 2px;
}

.app-avatar-initials {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #090c13;
  font-size: 24px;
  font-weight: 900;
}

.app-profile-copy small {
  display: block;
  color: #ff61b2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-profile-copy strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  line-height: 1.04;
}

.app-profile-copy span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.app-preview-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.app-stat-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.app-stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.app-stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.app-preview-content {
  display: grid;
  grid-template-columns: 1.42fr 0.88fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.app-main-column,
.app-side-column {
  display: grid;
  gap: 16px;
}

.app-panel {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.app-panel h4 {
  margin: 0;
  font-size: 24px;
}

.app-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.app-panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ff7cbc;
  background: rgba(244, 30, 161, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.app-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
}

.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 14px;
}

.app-tabs .active {
  color: #ff61b2;
  font-weight: 800;
}

.app-search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.app-search-row input {
  flex: 1;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 16px;
}

.app-primary-mini {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, rgba(244, 30, 161, 0.94), rgba(79, 134, 255, 0.9));
  font-weight: 800;
}

.app-table {
  display: grid;
  gap: 10px;
}

.app-table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.app-table-head {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-client-cell strong,
.app-list-line strong {
  display: block;
  font-size: 15px;
}

.app-client-cell span,
.app-list-line span,
.app-small-note {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.app-status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.app-status-pill.good {
  color: #65d59a;
  background: rgba(54, 160, 97, 0.16);
}

.app-status-pill.warn {
  color: #ffca5a;
  background: rgba(255, 196, 73, 0.14);
}

.app-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.app-calendar-day {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
}

.app-calendar-day.active {
  color: white;
  background: linear-gradient(135deg, rgba(244, 30, 161, 0.9), rgba(122, 78, 255, 0.86));
}

.app-workout-list,
.app-feed-list,
.app-note-list,
.app-library-list {
  display: grid;
  gap: 10px;
}

.app-list-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.app-mini-chart {
  display: flex;
  gap: 10px;
  align-items: end;
  min-height: 130px;
  padding-top: 20px;
}

.app-mini-chart span {
  flex: 1;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(244, 30, 161, 0.82), rgba(79, 134, 255, 0.24));
}

.app-mini-chart span:nth-child(1) { height: 42px; }
.app-mini-chart span:nth-child(2) { height: 58px; }
.app-mini-chart span:nth-child(3) { height: 76px; }
.app-mini-chart span:nth-child(4) { height: 84px; }
.app-mini-chart span:nth-child(5) { height: 102px; }
.app-mini-chart span:nth-child(6) { height: 118px; }

.app-library-card {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.app-library-thumb {
  width: 86px;
  height: 66px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-library-add {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #78a9ff;
  background: rgba(79, 134, 255, 0.12);
  font-size: 28px;
  font-weight: 700;
}

.app-progress-meter {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.app-progress-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 30, 161, 0.96), rgba(79, 134, 255, 0.92));
}

.app-list-inline {
  display: block;
  padding: 0;
  background: transparent;
}

.app-card-column {
  align-items: flex-start;
}

.app-card-compact {
  padding: 0;
  background: transparent;
}

.app-inline-video {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #04060b;
}

.app-note-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.app-progress-hero {
  margin-top: 6px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.app-progress-image {
  display: block;
  width: 100%;
  height: auto;
}

.app-progress-bullets {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.app-progress-bullets span {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.app-chart-grid {
  padding-top: 8px;
}

.app-line-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  min-height: 180px;
}

.app-line-chart span {
  display: block;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(180deg, rgba(244, 30, 161, 0.82), rgba(79, 134, 255, 0.22));
}

.app-message-thread {
  display: grid;
  gap: 12px;
}

.app-message-bubble {
  display: grid;
  gap: 6px;
  max-width: 78%;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.app-message-bubble strong {
  font-size: 13px;
}

.app-message-bubble span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.app-message-bubble.client {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(79, 134, 255, 0.18), rgba(244, 30, 161, 0.14));
}

.app-message-bubble.coach {
  border: 1px solid rgba(244, 30, 161, 0.12);
}

.app-preview-content-single {
  display: block;
}

@media (max-width: 1180px) {
  .app-preview-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .app-sidebar-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-preview-header,
  .app-preview-content {
    grid-template-columns: 1fr;
    display: grid;
  }

  .app-preview-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .app-preview-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 16px;
    border-radius: 0;
  }

  .app-preview-top {
    flex-direction: column;
  }

  .app-preview-actions {
    width: 100%;
    align-items: stretch;
  }

  .app-sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-profile-summary {
    min-width: 0;
  }

  .app-profile-copy strong {
    font-size: 28px;
  }

  .app-preview-main,
  .app-sidebar {
    padding: 18px;
  }

  .app-table-row {
    grid-template-columns: 1fr;
  }

  .app-grid-two {
    grid-template-columns: 1fr;
  }

  .app-message-bubble {
    max-width: 100%;
  }
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-wrap p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a,
.footer-copy {
  color: var(--text-soft);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero-live-layout,
  .library-live-shell {
    grid-template-columns: 1fr;
  }

  .hero-live-visual,
  .hero-live-image {
    min-height: 620px;
  }

  .library-live-sidepanel {
    order: -1;
  }

  .library-live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid,
  .workout-logging-showcase,
  .progress-preview-showcase,
  .signin-grid,
  .library-video-showcase,
  .exercise-preview-grid,
  .coach-showcase,
  .section-visual-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .library-flow-grid,
  .library-explainer-grid,
  .coach-dashboard-block,
  .workflow-grid,
  .coach-benefits-grid,
  .coach-main-metrics,
  .coach-side-grid,
  .testimonial-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-landing-actions {
    justify-content: center;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding-inline: 10px;
  }

  .pricing-grid {
    grid-auto-columns: minmax(280px, calc((100% - 14px) / 2));
  }

  .library-add-visual {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .library-add-arrow {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-live-layout {
    gap: 22px;
    padding: 22px;
  }

  .hero-live-copy {
    padding: 6px 0 0;
  }

  .hero-live-title {
    font-size: clamp(42px, 14vw, 66px);
  }

  .hero-live-text {
    font-size: 18px;
  }

  .hero-live-feature {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .hero-live-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
  }

  .hero-live-feature strong {
    font-size: 16px;
  }

  .hero-live-feature p {
    font-size: 14px;
  }

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

  .hero-live-visual,
  .hero-live-image {
    min-height: 440px;
  }

  .hero-live-image {
    object-position: 68% center;
  }

  .library-live-browser,
  .library-live-sidepanel {
    padding: 18px;
    border-radius: 22px;
  }

  .library-live-topline {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .library-live-topline strong {
    font-size: 24px;
  }

  .library-live-grid {
    grid-template-columns: 1fr;
  }

  .library-live-card {
    grid-template-columns: 92px 1fr;
    min-height: 124px;
    padding: 14px;
  }

  .library-live-thumb {
    min-height: 92px;
  }

  .library-live-card-copy strong {
    font-size: 18px;
  }

  .library-live-figure-wrap {
    gap: 12px;
  }

  .library-live-figure {
    min-height: 210px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .visual-stage-topbar {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .visual-dashboard,
  .library-browser,
  .coach-workspace {
    inset: 76px 14px 14px;
  }

  .info-dashboard {
    grid-template-columns: 1fr;
  }

  .visual-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-auto-rows: auto;
  }

  .visual-content-row,
  .library-browser,
  .coach-workspace,
  .pricing-showcase {
    grid-template-columns: 1fr;
  }

  .visual-stat-row {
    grid-template-columns: 1fr;
  }

  .library-stage,
  .coach-stage,
  .pricing-stage {
    min-height: 620px;
  }

  .pricing-showcase {
    left: 14px;
    right: 14px;
    top: 76px;
  }

  .pricing-showcase-benefits {
    left: 14px;
    right: 14px;
    bottom: 58px;
  }

  .pricing-stage-footer {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 14, 23, 0.96);
    max-width: none;
    width: auto;
    justify-self: stretch;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .site-header {
    top: 10px;
  }

  .nav-wrap {
    display: flex;
    padding: 12px 14px;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
  }

  .header-auth-actions {
    display: none;
  }

  .brand-logo {
    width: 144px;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-shell {
    border-radius: 28px;
  }

  .signin-card,
  .signin-copy,
  .desktop-panel,
  .feature-card,
  .workflow-step,
  .price-card,
  .testimonial-card {
    padding: 24px;
  }

  .section-intro p,
  .platform-copy p,
  .signin-copy p {
    font-size: 17px;
  }

  .hero-proof-grid,
  .feature-grid,
  .library-flow-grid,
  .library-explainer-grid,
  .coach-benefits-grid,
  .pricing-grid,
  .workflow-grid,
  .coach-main-metrics,
  .coach-side-grid,
  .testimonial-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-visual-stage {
    min-height: 300px;
  }

  .library-reference-panel,
  .progress-preview-copy,
  .library-flow,
  .library-explainer-card,
  .library-video-copy-card,
  .library-add-card {
    padding: 22px;
    border-radius: 26px;
  }

  .library-flow-intro h3 {
    font-size: 28px;
  }

  .library-video-frame,
  .library-video-player {
    min-height: 300px;
  }

  .progress-preview-copy h3 {
    font-size: 28px;
  }

  .library-add-visual {
    grid-template-columns: 1fr;
  }

  .coach-reference-panel,
  .coach-dashboard-copy,
  .coach-dashboard-preview,
  .coach-benefit-card {
    padding: 22px;
    border-radius: 26px;
  }

  .coach-dashboard-copy h3 {
    font-size: 28px;
  }

  .library-stage-phone-back {
    right: 150px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-bottom-grid,
  .metric-row,
  .showcase-grid,
  .exercise-browser-body {
    grid-template-columns: 1fr;
  }

  .brand-row-inner,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }

  .brand-pills,
  .footer-links {
    justify-content: flex-start;
  }

  .pricing-scroll-note {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .button,
  .social-button {
    width: 100%;
  }

  .auth-dialog {
    padding: 24px 18px 20px;
    border-radius: 28px;
  }

  .auth-tabs {
    width: 100%;
  }

  .auth-tab {
    min-width: 0;
  }

  .auth-switch-row {
    flex-direction: column;
  }

  .hero-landing-frame {
    border-radius: 28px 28px 0 0;
  }

  .hero-landing-actions {
    flex-direction: column;
    padding: 18px;
  }

  .workout-logging-visual {
    grid-template-columns: 1fr;
  }

  .workout-screen-card-secondary {
    margin-top: 0;
  }
}
