:root {
  --bg: #040404;
  --surface: #0f0f0f;
  --surface-soft: rgba(255, 255, 255, 0.08);
  --ink: #ffffff;
  --ink-muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.2);
  --primary: #f15922;
  --primary-strong: #f15922;
  --accent: #fea12a;
  --accent-soft: rgba(254, 161, 42, 0.16);
  --success: #11825f;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 22px 48px rgba(0, 0, 0, 0.54);
  --site-width: min(1320px, 97vw);
  --site-pad: 1.15rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: "Roboto", "Segoe UI", sans-serif;
  line-height: 1.55;
  background: transparent;
}

.cinematic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body > *:not(.cinematic-bg):not(.pt-side-cta-stack):not(.site-header):not(.floating-wa):not(.account-gateway-modal):not(.account-registration-modal) {
  position: relative;
  z-index: 1;
}

body > .pt-side-cta-stack {
  position: fixed;
  z-index: 6500;
  width: fit-content;
}

.bg-layer {
  position: absolute;
  inset: -8%;
}

.bg-layer--base {
  background-image:
    linear-gradient(110deg, rgba(5, 5, 5, 0.86) 18%, rgba(5, 5, 5, 0.44) 52%, rgba(5, 5, 5, 0.88) 88%),
    var(--account-bg-image, url("./assets/legacy-gym-bg.jpeg"));
  background-size: cover;
  background-position: center;
  filter: contrast(1.12) saturate(1.18) brightness(0.48);
  transform-origin: center;
  animation: drift-bg 28s ease-in-out infinite alternate;
}

.bg-layer--smoke {
  background:
    radial-gradient(42rem 34rem at 18% 16%, rgba(247, 96, 47, 0.21), transparent 60%),
    radial-gradient(38rem 34rem at 84% 22%, rgba(255, 183, 41, 0.2), transparent 62%),
    radial-gradient(40rem 28rem at 52% 82%, rgba(193, 66, 30, 0.22), transparent 66%);
  mix-blend-mode: screen;
  animation: drift-smoke 18s ease-in-out infinite alternate;
}

.bg-layer--embers {
  background-image:
    radial-gradient(circle at 12% 35%, rgba(255, 208, 146, 0.2) 1px, transparent 1.6px),
    radial-gradient(circle at 88% 66%, rgba(255, 129, 72, 0.16) 1px, transparent 1.6px),
    radial-gradient(circle at 50% 52%, rgba(255, 170, 92, 0.12) 1px, transparent 1.6px);
  background-size: 180px 180px, 210px 210px, 160px 160px;
  opacity: 0.5;
  animation: drift-embers 24s linear infinite;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
}

@keyframes drift-bg {
  from { transform: scale(1.04) translate3d(-1.2%, 0, 0); }
  to   { transform: scale(1.11) translate3d(1.2%, -1.5%, 0); }
}

@keyframes drift-smoke {
  from { transform: translate3d(-2%, 1.5%, 0) scale(1); opacity: 0.92; }
  to   { transform: translate3d(2%, -1.5%, 0) scale(1.05); opacity: 1; }
}

@keyframes drift-embers {
  from { transform: translateY(0); }
  to   { transform: translateY(14px); }
}

.brand {
  grid-area: brand;
  display: block;
  position: relative;
  align-self: center;
  width: 180px;
  height: 56px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

h2,
h3,
h4,
.site-nav a,
.nav-dropdown-toggle,
.btn,
.filter-btn,
.metric {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  margin: 0;
}

p,
ul,
ol {
  margin: 0;
}

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

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

main,
.site-footer {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 1000;
  width: min(1240px, 97vw);
  margin: 12px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 82% 10%, rgba(241, 89, 34, 0.26), transparent 38%),
    radial-gradient(circle at 16% -18%, rgba(254, 161, 42, 0.14), transparent 44%),
    linear-gradient(145deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.94));
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  padding: 0.5rem 0.9rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand toggle"
    "nav nav"
    "action action";
  gap: 0.35rem;
}

.brand {
  grid-area: brand;
  display: block;
  position: relative;
  width: 180px;
  height: 56px;
  align-self: center;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  background: url("./assets/Logo - Legacy (Dark BG).png") left center/contain no-repeat;
  pointer-events: none;
}


.menu-toggle {
  grid-area: toggle;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.36);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  grid-area: nav;
  display: none;
  min-width: 0;
  gap: 0.25rem;
  padding-top: 0.2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.site-header.nav-open .site-nav {
  display: flex;
  flex-wrap: wrap;
}

.site-header.nav-open .menu {
  display: flex;
  flex-wrap: wrap;
}

.container {
  width: min(1240px, 97vw);
  margin: 0 auto;
}

.nav-shell {
  padding: 0.7rem 0.9rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "brand toggle"
    "menu menu";
  align-items: center;
  gap: 0.45rem 0.7rem;
}

.nav-shell .brand {
  grid-area: brand;
  width: auto;
  height: auto;
  font-size: 1rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-shell .brand::before {
  content: none;
}

.nav-shell .menu-toggle {
  grid-area: toggle;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-shell .menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
}

.menu {
  grid-area: menu;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
}

.menu a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.42rem 0.52rem;
  border-radius: 10px;
  transition: 0.2s ease;
  white-space: nowrap;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.menu a:hover {
  background: linear-gradient(130deg, rgba(241, 89, 34, 0.42), rgba(254, 161, 42, 0.22));
  color: #ffffff;
}

.header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.58rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f3fffa;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  border: 1px solid rgba(241, 89, 34, 0.36);
  box-shadow: 0 12px 24px rgba(241, 89, 34, 0.24);
}

.mobile-only {
  display: inline-flex;
}

.desktop-only {
  display: none;
}

.site-nav a,
.nav-dropdown-toggle {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.42rem 0.52rem;
  border-radius: 10px;
  transition: 0.2s ease;
  white-space: nowrap;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.nav-submenu a {
  font-size: 0.78rem;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  background: linear-gradient(130deg, rgba(241, 89, 34, 0.42), rgba(254, 161, 42, 0.22));
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  display: block;
}

.nav-dropdown-toggle {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-caret {
  transform: rotate(225deg);
  margin-top: 2px;
}

.nav-submenu {
  display: none;
}

.nav-dropdown.open .nav-submenu {
  display: grid;
  gap: 0.2rem;
}

.nav-submenu a {
  display: block;
}

@media (max-width: 759px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-submenu {
    position: static;
    margin: 0.25rem 0 0.4rem;
    padding-left: 0.45rem;
  }
}

.header-cta-group,
.header-actions {
  grid-area: action;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.34rem;
}

.header-cta-group .btn,
.header-actions .btn {
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.72rem;
  min-width: 128px;
  white-space: nowrap;
  color: #f3fffa;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  border: 1px solid rgba(241, 89, 34, 0.36);
  box-shadow: 0 12px 24px rgba(241, 89, 34, 0.24);
}

body.account-gateway-open {
  overflow: hidden;
}

.account-gateway-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.account-gateway-modal.open {
  display: flex;
}

.account-gateway-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.account-gateway-panel {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 84% -10%, rgba(241, 89, 34, 0.28), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
}

.account-gateway-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.account-role-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.account-role-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  padding: 0.9rem;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.account-role-card:hover {
  border-color: rgba(254, 161, 42, 0.6);
  transform: translateY(-1px);
}

.account-role-card strong {
  display: block;
  color: var(--primary-strong);
}

.account-role-card p {
  margin-top: 0.42rem;
  color: var(--ink-muted);
}

.account-role-features {
  margin: 0.62rem 0 0;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.account-role-features li {
  margin-bottom: 0.34rem;
}

.account-entry-main {
  width: min(1160px, 95vw);
}

.account-entry-shell {
  padding-bottom: 1.9rem;
}

.account-entry-stage {
  width: min(920px, 100%);
  gap: 1.1rem;
}

.account-entry-note,
.account-important-note,
.account-login-panel,
.account-guide-panel,
.account-registration-panel {
  border: 1px solid rgba(255, 214, 161, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 224, 189, 0.022)),
    rgba(8, 8, 8, 0.86);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.account-entry-note,
.account-important-note {
  width: min(60rem, 100%);
  padding: 1rem 1.08rem;
  border-radius: 24px;
  text-align: left;
}

.account-entry-note strong,
.account-important-note strong {
  display: block;
  margin-bottom: 0.34rem;
  color: rgba(255, 214, 161, 0.98);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-entry-note p,
.account-important-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.account-role-selector {
  width: min(54rem, 100%);
  display: grid;
  gap: 1.15rem;
}

.account-role-choice {
  --role-accent: 255, 220, 108;
  --role-accent-alt: 214, 154, 35;
  --role-glow: 255, 248, 220;
  --role-shadow: 74, 54, 11;
  --role-surface: rgba(10, 10, 10, 0.98);
  position: relative;
  isolation: isolate;
  min-height: 214px;
  padding: 1.15rem 1.35rem;
  display: grid;
  place-items: center;
  gap: 0;
  border-radius: 32px;
  border: 1px solid rgba(var(--role-accent-alt), 0.26);
  background:
    radial-gradient(circle at 18% 22%, rgba(var(--role-glow), 0.18), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(var(--role-accent), 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(var(--role-accent), 0.08) 38%, rgba(8, 8, 8, 0.98)),
    var(--role-surface);
  box-shadow:
    0 28px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(var(--role-accent), 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  appearance: none;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.account-role-choice::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 34%, rgba(var(--role-glow), 0.26), transparent 18%),
    radial-gradient(circle at 76% 68%, rgba(var(--role-accent), 0.2), transparent 22%);
  filter: blur(22px);
  opacity: 0.9;
  animation: account-role-aura-drift 8.5s ease-in-out infinite alternate;
}

.account-role-choice::after {
  content: "";
  position: absolute;
  inset: auto -15% -38% -15%;
  z-index: 1;
  height: 72%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--role-accent-alt), 0.14), transparent 68%);
  opacity: 0.8;
  filter: blur(28px);
  animation: account-role-orbit 7.2s ease-in-out infinite alternate;
}

.account-role-choice--client {
  --role-accent: 255, 221, 109;
  --role-accent-alt: 214, 154, 35;
  --role-glow: 255, 249, 221;
  --role-shadow: 74, 54, 11;
  --role-surface: rgba(11, 10, 8, 0.97);
}

.account-role-choice--coach {
  --role-accent: 241, 89, 34;
  --role-accent-alt: 254, 176, 67;
  --role-glow: 255, 236, 214;
  --role-shadow: 100, 34, 8;
  --role-surface: rgba(18, 8, 6, 0.97);
}

.account-role-label {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.48rem;
  width: 100%;
  margin: 0;
  text-align: center;
}

.account-role-prefix,
.account-role-chip {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  display: block;
}

.account-role-prefix {
  font-size: clamp(1.02rem, 1.8vw, 1.32rem);
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.account-role-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.65rem;
  padding: 0.72rem 1.5rem 0.68rem;
  border: 1px solid rgba(var(--role-accent-alt), 0.34);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  background:
    linear-gradient(140deg, rgba(var(--role-accent), 0.92), rgba(var(--role-accent-alt), 0.92)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 30px rgba(var(--role-shadow), 0.22),
    0 0 0 1px rgba(var(--role-glow), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -6px 12px rgba(var(--role-shadow), 0.16);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.84;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fffdf7;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 24px rgba(var(--role-shadow), 0.18);
}

.account-role-choice:hover,
.account-role-choice:focus-visible,
.account-role-choice.is-active {
  transform: translateY(-6px);
  border-color: rgba(var(--role-accent), 0.44);
  box-shadow:
    0 36px 64px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(var(--role-accent-alt), 0.12),
    0 0 32px rgba(var(--role-accent), 0.12);
  outline: none;
}

.account-role-choice:hover .account-role-chip,
.account-role-choice:focus-visible .account-role-chip,
.account-role-choice.is-active .account-role-chip {
  transform: scale(1.02);
  box-shadow:
    0 22px 36px rgba(var(--role-shadow), 0.26),
    0 0 0 1px rgba(var(--role-glow), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -8px 16px rgba(var(--role-shadow), 0.2);
}

@keyframes account-role-aura-drift {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(0.98);
  }

  100% {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }
}

@keyframes account-role-orbit {
  0% {
    transform: translate3d(-4%, 0, 0) scale(0.96);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(4%, -2%, 0) scale(1.06);
    opacity: 0.8;
  }
}

.account-login-section {
  padding-top: 0;
}

.account-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.account-login-panel,
.account-guide-panel {
  border-radius: 30px;
  padding: 1.2rem;
}

.account-guide-panel h3,
.account-role-pane h2 {
  margin: 0;
}

.account-guide-panel > .kicker,
.account-role-pane > .kicker {
  display: inline-flex;
  margin-bottom: 0.38rem;
}

.account-role-pane > p,
.account-registration-copy {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.account-login-form {
  margin-top: 1rem;
}

.account-input-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-login-actions,
.account-registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.account-step-list {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
}

.account-step-list li {
  padding-left: 0.15rem;
}

.account-important-note {
  width: 100%;
  margin-top: 1rem;
}

.account-registration-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.account-registration-modal.open {
  display: flex;
}

.account-registration-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.account-registration-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  border-radius: 32px;
  padding: 1.2rem;
}

.account-registration-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.account-registration-head {
  max-width: 42rem;
  padding-right: 3rem;
}

.account-registration-form {
  margin-top: 1rem;
}

.account-activation-label {
  position: relative;
}

.account-label-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.account-help {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 161, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: help;
}

.account-help-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.7rem);
  width: min(270px, 72vw);
  padding: 0.72rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 214, 161, 0.16);
  background: rgba(8, 8, 8, 0.96);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.account-help:hover .account-help-bubble,
.account-help:focus-visible .account-help-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.account-registration-feedback {
  min-height: 1.2rem;
}

body.account-registration-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .account-access-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .account-entry-note,
  .account-important-note,
  .account-login-panel,
  .account-guide-panel,
  .account-registration-panel {
    border-radius: 24px;
    padding: 1rem;
  }

  .account-role-choice {
    min-height: 192px;
    border-radius: 28px;
    padding: 1rem;
  }

  .account-role-choice::after {
    inset: auto -14% -34% -14%;
    height: 66%;
  }

  .account-role-prefix {
    font-size: 0.92rem;
    letter-spacing: 0.26em;
  }

  .account-role-chip {
    min-height: 3.9rem;
    padding: 0.62rem 1.08rem 0.58rem;
    font-size: clamp(2.2rem, 10vw, 3.45rem);
    letter-spacing: 0.06em;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  }

  .account-input-row {
    grid-template-columns: 1fr;
  }

  .account-registration-head {
    padding-right: 2.75rem;
  }

  .account-help-bubble {
    left: auto;
    right: 0;
    transform: translateY(4px);
    width: min(240px, 72vw);
  }

  .account-help:hover .account-help-bubble,
  .account-help:focus-visible .account-help-bubble {
    transform: translateY(0);
  }
}

main {
  padding: 2.2rem 0 3.2rem;
}

.hero-video-shell {
  position: relative;
  min-height: max(33vh, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.hero-video-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 4, 4, 0.68), rgba(4, 4, 4, 0.36)),
    radial-gradient(circle at center, rgba(4, 4, 4, 0.14), rgba(4, 4, 4, 0.52));
  pointer-events: none;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.05);
}

.hero-video-track {
  position: absolute;
  inset: 0;
}

.hero-video-track .hero-video-media {
  opacity: 0;
  transform: scale(1.01);
  backface-visibility: hidden;
  will-change: opacity;
}

.hero-video-track .hero-video-a {
  animation: heroVideoSwapA 24s ease-in-out infinite;
}

.hero-video-track .hero-video-b {
  animation: heroVideoSwapB 24s ease-in-out infinite;
}

.hero-on-video {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.hero,
.page-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(241, 89, 34, 0.14)),
    var(--surface);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.kicker {
  display: inline-block;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #ffd7a5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.kicker.kicker--accent {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(254, 161, 42, 0.14);
}

body.page-amber-balance .page-hero h1 {
  color: #ffffff;
}

body.page-amber-balance .page-hero .kicker,
body.page-amber-balance .section .kicker,
body.page-amber-balance .section-subhead {
  color: var(--accent);
}

body.page-1on1-accent-reset .page-hero .kicker,
body.page-1on1-accent-reset .section .kicker,
body.page-1on1-accent-reset .section-subhead {
  color: #ffd7a5;
}

body.page-1on1-refined .page-hero--1on1 {
  display: grid;
  gap: 1rem;
  align-items: start;
  background:
    radial-gradient(32rem 22rem at 100% 0, rgba(254, 161, 42, 0.12), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(241, 89, 34, 0.14)),
    var(--surface);
}

body.page-1on1-refined .page-hero--1on1.program-hero {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.2), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.12), transparent 28%),
    linear-gradient(180deg, rgb(11, 11, 11), rgb(6, 6, 6));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.oneonone-hero-copy,
.oneonone-hero-panel,
.oneonone-fit-copy {
  min-width: 0;
}

body.page-1on1-refined .page-hero--1on1 h1 {
  max-width: 11ch;
}

.oneonone-anchor-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.oneonone-anchor-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.oneonone-anchor-row a:hover,
.oneonone-anchor-row a:focus-visible {
  border-color: rgba(255, 210, 160, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.oneonone-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1rem;
  background:
    radial-gradient(circle at 90% -10%, rgba(254, 161, 42, 0.18), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.oneonone-hero-panel-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 227, 188, 0.86);
}

.oneonone-hero-metrics {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.oneonone-hero-metrics li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.72rem 0.78rem;
  background: rgba(0, 0, 0, 0.22);
}

.oneonone-hero-metrics strong {
  display: block;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 0.9;
  color: #ffffff;
}

.oneonone-hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.oneonone-hero-chips {
  margin-top: 0.85rem;
}

.oneonone-hero-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-hero h1 {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 9vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--primary-strong);
  max-width: 12ch;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 8vw, 3.5rem);
  max-width: 16ch;
}

body.page-success-stories .page-hero h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(1.18rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-title-slider {
  max-width: 100%;
  color: #ffffff;
}

.hero h1.hero-title-slider {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  color: #ffffff;
}

.hero-slider-window {
  display: block;
  overflow: hidden;
  padding-inline: 1px;
  margin-inline: -1px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
}

.hero-slider-track {
  display: flex;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: hero-slide-left 12s ease-in-out infinite;
}

.hero-slide {
  flex: 0 0 100%;
  display: block;
}

.hero-line {
  display: block;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #f15922, #fea12a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: saturate(1.08) brightness(1.08);
}

.hero-primary-text {
  background: linear-gradient(135deg, #f15922, #fea12a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: saturate(1.08) brightness(1.08);
}

.hero-accent-text {
  background: linear-gradient(135deg, #f15922, #fea12a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: saturate(1.08) brightness(1.08);
}

@keyframes hero-slide-left {
  0%,
  22% {
    transform: translate3d(0%, 0, 0);
  }
  28%,
  47% {
    transform: translate3d(-100%, 0, 0);
  }
  53%,
  72% {
    transform: translate3d(-200%, 0, 0);
  }
  78%,
  100% {
    transform: translate3d(-300%, 0, 0);
  }
}

.hero p,
.page-hero p {
  margin-top: 0.8rem;
  color: var(--ink-muted);
  max-width: 62ch;
}

.hero-actions,
.section-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-shortcuts {
  padding-top: 0;
}

.home-shortcuts .section-actions {
  margin-top: 0;
  justify-content: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 142, 0.5);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  padding: 0.78rem 1.12rem;
  min-height: 2.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  cursor: pointer;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  color: #f8fcff;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 211, 150, 0.52),
    0 0 22px rgba(241, 89, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -5px 10px rgba(120, 38, 10, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 214, 160, 0.12), transparent 16%, transparent 84%, rgba(255, 182, 110, 0.12));
  opacity: 1;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 218, 166, 0.58);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 218, 166, 0.58),
    0 0 28px rgba(241, 89, 34, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -7px 13px rgba(120, 38, 10, 0.32);
}

.btn-primary {
  border-color: rgba(255, 208, 142, 0.5);
  color: #ffffff;
}

.btn-secondary {
  border-color: var(--line);
  color: #ffffff;
}

.btn-secondary::before {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.btn-secondary::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 16px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  border-color: rgba(255, 208, 142, 0.5);
  color: #ffffff;
}

.stats-grid,
.service-grid,
.card-grid,
.coach-profile-grid,
.gallery-grid,
.testimonial-grid,
.benefits-grid,
.pricing-grid,
.case-grid,
.blog-grid,
.contact-grid,
.blog-long-grid,
.highlights-grid,
.credentials-grid {
  display: grid;
  gap: 0.85rem;
}

.stats-grid {
  margin-top: 1.1rem;
}

.stat,
.card,
.price-card,
.quote,
.case-card,
.article-card,
.contact-card,
.info-card,
.credential,
.highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stat h3,
.card h3,
.price-card h3,
.case-card h3,
.article-card h3,
.contact-card h3,
.info-card h3,
.credential h3,
.highlight h3 {
  font-size: 1.1rem;
  color: var(--primary-strong);
}

.stat p,
.card p,
.price-card p,
.quote p,
.case-card p,
.article-card p,
.contact-card p,
.info-card p,
.credential p,
.highlight p,
.section-copy {
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.section {
  margin-top: 1.4rem;
  border-radius: var(--radius-md);
  padding: 1.1rem var(--site-pad);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section h2 {
  font-size: clamp(1.45rem, 6vw, 2.3rem);
  line-height: 1.08;
  color: #ffffff;
}

.section-head + * {
  margin-top: 0.8rem;
}

.section > h2 + * {
  margin-top: 0.75rem;
}

.section > .kicker + h2 + * {
  margin-top: 0.75rem;
}

.section p + p {
  margin-top: 0.65rem;
}

.section-subhead {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--primary-strong);
}

body.careers-page .careers-hero {
  display: grid;
  gap: 0.95rem 1rem;
  align-items: start;
  padding: 1rem clamp(1rem, 2.4vw, 1.5rem);
  background:
    radial-gradient(24rem 16rem at 100% 0%, rgba(254, 161, 42, 0.1), transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(241, 89, 34, 0.14)),
    var(--surface);
}

body.careers-page .careers-hero .careers-hero-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  width: 100%;
  max-width: none;
  gap: 0;
  min-width: 0;
  margin: 0;
  text-align: left;
}

body.careers-page .careers-hero .kicker {
  color: #ffd7a5;
}

body.careers-page .careers-hero .section-actions {
  margin-top: 0.4rem;
}

.careers-standard-card,
.careers-requirement-card,
.careers-role-card,
.careers-apply-card {
  --career-accent: #fea12a;
  --career-accent-rgb: 254, 161, 42;
}

.careers-hero-visual {
  margin: 0;
  min-width: 0;
  align-self: start;
}

.careers-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 205, 146, 0.18);
  background:
    radial-gradient(circle at 25% 25%, rgba(254, 161, 42, 0.14), transparent 52%),
    rgba(8, 8, 9, 0.88);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.careers-quote-line {
  margin-top: 0.85rem;
  max-width: 52rem;
  padding-left: 0.95rem;
  border-left: 2px solid rgba(254, 161, 42, 0.62);
  color: rgba(255, 240, 214, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.careers-standard-grid,
.careers-requirements-grid,
.careers-role-grid,
.careers-perks-grid,
.careers-apply-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.careers-standard-card,
.careers-requirement-card,
.careers-role-card,
.careers-perk-card,
.careers-apply-card {
  position: relative;
  overflow: hidden;
}

.careers-standard-card {
  border-color: rgba(var(--career-accent-rgb), 0.24);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.9);
}

.careers-standard-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(var(--career-accent-rgb), 0.18), rgba(var(--career-accent-rgb), 0.92));
}

.careers-standard-card h3 {
  color: var(--career-accent);
}

.careers-standard-card--ember {
  --career-accent: #ff8000;
  --career-accent-rgb: 255, 128, 0;
}

.careers-standard-card--sage {
  --career-accent: #06a899;
  --career-accent-rgb: 6, 168, 153;
}

.careers-standard-card--rose {
  --career-accent: #d4a64a;
  --career-accent-rgb: 212, 166, 74;
}

.careers-standard-card--indigo {
  --career-accent: #c020a0;
  --career-accent-rgb: 192, 32, 160;
}

.careers-requirement-card,
.careers-role-card,
.careers-perk-card,
.careers-apply-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.9);
}

.careers-apply-card {
  border-color: rgba(255, 191, 121, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 42%, rgba(10, 10, 10, 0.96)),
    rgba(10, 10, 10, 0.94);
}

.careers-apply-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(254, 161, 42, 0.82), rgba(241, 89, 34, 0.72), transparent 92%);
}

.careers-perk-card {
  border-color: rgba(255, 197, 132, 0.2);
}

.careers-perk-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 89, 34, 0.92), rgba(254, 161, 42, 0.92));
}

.careers-perk-card h3 {
  margin-top: 0.7rem;
  color: #fff2dc;
}

.careers-perk-card p {
  margin-top: 0.52rem;
}

.careers-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 206, 148, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 229, 194, 0.84);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.careers-requirement-card h3,
.careers-role-card h3,
.careers-apply-card h3 {
  margin-top: 0.7rem;
}

.careers-requirement-card .careers-checklist,
.careers-role-card .careers-checklist {
  margin-top: 0.85rem;
  padding-top: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-checklist {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.careers-checklist li {
  position: relative;
  padding-left: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.careers-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--career-accent);
  box-shadow: 0 0 0 4px rgba(var(--career-accent-rgb), 0.16);
}

.careers-team-section .program-coach-slider {
  margin-top: 0.95rem;
}

.careers-team-section .program-coach-card {
  width: min(30rem, calc(100vw - 5.5rem));
}

.careers-cta .section-actions {
  margin-top: 0.9rem;
}

body.page-1on1-refined .oneonone-fit-section {
  background:
    radial-gradient(28rem 18rem at 0% 0%, rgba(254, 161, 42, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.04);
}

.oneonone-fit-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.oneonone-fit-copy,
.program-focus-copy {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.oneonone-fit-chips {
  margin-top: 0.78rem;
}

.oneonone-fit-audience {
  margin-top: 0.9rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 48rem;
}

.oneonone-fit-list {
  margin-top: 0.78rem;
}

.oneonone-fit-audience .oneonone-fit-note {
  margin-top: 0.82rem;
  padding-top: 0;
  border-top: 0;
}

.oneonone-fit-card {
  border-color: rgba(255, 195, 133, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 160, 0.03)),
    rgba(10, 10, 10, 0.88);
}

.oneonone-fit-visual {
  margin: 0;
  gap: 0.8rem;
  padding: 0.84rem;
}

.oneonone-fit-visual .program-card-photo {
  aspect-ratio: 16 / 8.2;
}

.oneonone-fit-visual--image-only {
  display: block;
  align-self: end;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.program-focus-visual--image-only {
  display: flex;
  align-items: stretch;
  min-height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.oneonone-fit-visual--image-only .program-card-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  aspect-ratio: 11 / 10;
  border-radius: var(--radius-md);
  border: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.program-focus-visual--image-only .program-card-photo {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  max-height: none;
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
  border: 0;
  object-fit: cover;
  display: block;
}

.program-focus-visual--natural {
  display: block;
  align-self: end;
  min-height: 0;
}

.program-focus-visual--natural .program-card-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  aspect-ratio: 11 / 10;
  border-radius: var(--radius-md);
  border: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.oneonone-fit-visual-copy {
  display: grid;
  gap: 0.38rem;
}

.oneonone-fit-visual-copy h3,
.oneonone-fit-visual-copy p {
  margin: 0;
}

.oneonone-fit-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 227, 188, 0.82);
}

.oneonone-fit-card h3 {
  margin-top: 0.35rem;
}

.program-focus-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.program-focus-audience {
  margin-top: 0.9rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 48rem;
}

.program-focus-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 227, 188, 0.82);
}

.program-focus-list {
  margin-top: 0.78rem;
}

.program-focus-visual {
  margin: 0;
  gap: 0.8rem;
  padding: 0.84rem;
}

.program-focus-visual .program-card-photo {
  aspect-ratio: 16 / 8.2;
}

.program-focus-visual-copy {
  display: grid;
  gap: 0.38rem;
}

.program-focus-visual-copy h3,
.program-focus-visual-copy p {
  margin: 0;
}

.oneonone-fit-note {
  margin-top: auto;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.oneonone-proof-head,
.oneonone-process-head,
.oneonone-pricing-head {
  display: grid;
  gap: 0.8rem;
  align-items: end;
}

.oneonone-proof-head--simple,
.oneonone-pricing-head--simple {
  grid-template-columns: minmax(0, 1fr);
}

.oneonone-proof-intro,
.oneonone-pricing-intro {
  max-width: 46rem;
}

.oneonone-proof-note,
.oneonone-process-note,
.oneonone-pricing-note {
  max-width: 32rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 193, 132, 0.18);
  background: linear-gradient(145deg, rgba(255, 205, 148, 0.06), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.78);
}

body.page-1on1-refined .oneonone-proof-section .testimonial-grid {
  margin-top: 0.85rem;
}

.oneonone-benefits-card,
.oneonone-proof-panel,
.oneonone-testimonial-panel,
.oneonone-match-card {
  overflow: hidden;
  gap: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 160, 0.03)),
    rgba(10, 10, 10, 0.9);
}

.oneonone-benefit-item,
.oneonone-proof-item,
.oneonone-testimonial-item,
.oneonone-match-item {
  padding: 0.98rem 0;
}

.oneonone-benefit-item:first-child,
.oneonone-proof-item:first-child,
.oneonone-testimonial-item:first-child,
.oneonone-match-item:first-child {
  padding-top: 0;
}

.oneonone-benefit-item:last-child,
.oneonone-proof-item:last-child,
.oneonone-testimonial-item:last-child,
.oneonone-match-item:last-child {
  padding-bottom: 0;
}

.oneonone-benefit-item + .oneonone-benefit-item,
.oneonone-proof-item + .oneonone-proof-item,
.oneonone-testimonial-item + .oneonone-testimonial-item,
.oneonone-match-item + .oneonone-match-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.oneonone-benefit-item h3,
.oneonone-proof-item h3,
.oneonone-match-item h3 {
  margin: 0;
}

.oneonone-benefit-item p,
.oneonone-proof-item p,
.oneonone-match-item p {
  margin-top: 0.42rem;
}

.oneonone-testimonial-panel p {
  margin: 0;
}

.oneonone-testimonial-panel strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--primary-strong);
}

body.page-1on1-refined .oneonone-testimonial-panel strong {
  color: #fff;
}

.program-head--simple {
  grid-template-columns: minmax(0, 1fr);
}

.program-head-intro {
  max-width: 46rem;
}

.program-benefits-card,
.program-support-card,
.program-delivery-card {
  overflow: hidden;
  gap: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 160, 0.03)),
    rgba(10, 10, 10, 0.9);
}

.program-benefit-item,
.program-support-item,
.program-delivery-item {
  padding: 0.98rem 0;
}

.program-benefit-item:first-child,
.program-support-item:first-child,
.program-delivery-item:first-child {
  padding-top: 0;
}

.program-benefit-item:last-child,
.program-support-item:last-child,
.program-delivery-item:last-child {
  padding-bottom: 0;
}

.program-benefit-item + .program-benefit-item,
.program-support-item + .program-support-item,
.program-delivery-item + .program-delivery-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.program-benefit-item h3,
.program-support-item h3,
.program-delivery-item h3 {
  margin: 0;
}

.program-benefit-item p,
.program-support-item p,
.program-delivery-item p {
  margin-top: 0.42rem;
}

.program-benefit-with-icon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.program-benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 205, 148, 0.22);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 205, 148, 0.14), rgba(255, 205, 148, 0) 42%),
    linear-gradient(160deg, rgba(58, 33, 17, 0.98), rgba(24, 14, 10, 0.98) 68%, rgba(10, 8, 7, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 226, 0.08),
    inset 0 -8px 16px rgba(0, 0, 0, 0.34),
    0 10px 18px rgba(0, 0, 0, 0.24);
}

.program-benefit-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 13px;
  border: 1px solid rgba(255, 225, 190, 0.08);
  pointer-events: none;
}

.program-benefit-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: #fff7ec;
  filter: drop-shadow(0 2px 4px rgba(92, 34, 8, 0.24));
}

.program-benefit-icon img {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

.program-benefit-icon .program-benefit-icon-fallback {
  display: none;
}

.program-benefit-with-icon h3,
.program-benefit-with-icon p {
  margin-top: 0;
}

.program-benefit-with-icon p {
  margin-top: 0.4rem;
}

.team-match-section > h2,
.program-faq-section > h2 {
  margin-top: 0.28rem;
}

.team-match-section > h2 + .program-coach-slider,
.team-match-section > h2 + .program-coach-grid,
.program-faq-section > h2 + .faq-grid {
  margin-top: 0.9rem;
}

.program-coach-slider {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 132, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.92);
  padding: 1.05rem;
}

.program-coach-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.program-coach-grid .program-coach-card {
  width: auto;
}

.program-coach-slider::before,
.program-coach-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.75rem;
  z-index: 1;
  pointer-events: none;
}

.program-coach-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0));
}

.program-coach-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0));
}

.program-coach-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: programCoachMarquee 34s linear infinite;
}

.program-coach-slider:hover .program-coach-track,
.program-coach-slider:focus-within .program-coach-track {
  animation-play-state: paused;
}

.program-coach-card {
  --team-accent: #fea12a;
  --team-accent-rgb: 254, 161, 42;
  width: min(31rem, calc(100vw - 5.5rem));
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(var(--team-accent-rgb), 0.24);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.26);
}

.program-coach-card--red {
  --team-accent: #ff4b47;
  --team-accent-rgb: 255, 75, 71;
}

.program-coach-card--orange {
  --team-accent: #ff8000;
  --team-accent-rgb: 255, 128, 0;
}

.program-coach-card--pink {
  --team-accent: #ff73bf;
  --team-accent-rgb: 255, 115, 191;
}

.program-coach-card--teal {
  --team-accent: #06a899;
  --team-accent-rgb: 6, 168, 153;
}

.program-coach-card--green {
  --team-accent: #46d47a;
  --team-accent-rgb: 70, 212, 122;
}

.program-coach-card--gold {
  --team-accent: #d4a64a;
  --team-accent-rgb: 212, 166, 74;
}

.program-coach-card--yellow {
  --team-accent: #ffff00;
  --team-accent-rgb: 255, 255, 0;
}

.program-coach-card--indigo {
  --team-accent: #6d76ff;
  --team-accent-rgb: 109, 118, 255;
}

.program-coach-card--magenta {
  --team-accent: #c020a0;
  --team-accent-rgb: 192, 32, 160;
}

.program-coach-card-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--team-accent-rgb), 0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--team-accent-rgb), 0.24), transparent 60%),
    rgba(10, 10, 10, 0.88);
}

.program-coach-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.program-coach-card-body {
  min-width: 0;
}

.program-coach-card-body h3 {
  margin: 0;
  color: var(--team-accent);
}

.program-coach-points {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.program-coach-points li {
  position: relative;
  padding-left: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.program-coach-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--team-accent);
  box-shadow: 0 0 0 4px rgba(var(--team-accent-rgb), 0.16);
}

.program-coach-points strong {
  color: var(--team-accent);
}

.faq-more-group {
  margin-top: 0.9rem;
}

.faq-more-group > summary {
  list-style: none;
}

.faq-more-group > summary::-webkit-details-marker {
  display: none;
}

.faq-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.25rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 161, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 229, 194, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-more-group[open] .faq-more-toggle,
.faq-more-toggle:hover {
  border-color: rgba(255, 214, 161, 0.34);
  color: #fff1da;
  background: rgba(255, 255, 255, 0.08);
}

.faq-grid--more {
  margin-top: 0.9rem;
}

.program-pricing-grid .price-card {
  gap: 0;
}

.program-pricing-grid .price-card .price {
  margin-top: auto;
  padding-top: 1.05rem;
}

body.page-amber-balance .program-pricing-grid .price-card .price,
body.page-1on1-accent-reset .program-pricing-grid .price-card .price,
.program-pricing-grid .price-card .price {
  color: #ffffff;
}

.program-pricing-grid .price-card .small {
  margin-top: 0.36rem;
  min-height: calc(1.42em * 2);
}

.program-pricing-grid .price-card .btn {
  margin-top: 0.9rem;
  align-self: flex-start;
}

.oneonone-process-grid {
  margin-top: 0.95rem;
}

.oneonone-step-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 191, 121, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 40%, rgba(10, 10, 10, 0.96)),
    rgba(10, 10, 10, 0.94);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.oneonone-step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(254, 161, 42, 0.75), rgba(241, 89, 34, 0.55), transparent 90%);
}

.oneonone-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 203, 144, 0.28);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 214, 160, 0.06);
}

.oneonone-step-number {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 221, 189, 0.82);
}

body.page-1on1-refined .oneonone-step-card h3 {
  margin-top: 0.32rem;
  color: #ffffff;
}

.oneonone-step-card p {
  max-width: 24ch;
}

body.page-1on1-refined .oneonone-pricing-section .section-actions {
  margin-top: 1rem;
}

.oneonone-cta-band {
  position: relative;
  overflow: hidden;
}

.oneonone-cta-chips {
  margin-top: 0.9rem;
}

.oneonone-cta-band .chip {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff6e8;
}

body.page-amber-balance .stat h3,
body.page-amber-balance .card h3,
body.page-amber-balance .price-card h3,
body.page-amber-balance .case-card h3,
body.page-amber-balance .article-card h3,
body.page-amber-balance .contact-card h3,
body.page-amber-balance .info-card h3,
body.page-amber-balance .credential h3,
body.page-amber-balance .highlight h3,
body.page-amber-balance .coach-profile-meta h3 {
  color: var(--accent);
}

body.page-1on1-accent-reset .results-metrics .stat h3 {
  background:
    linear-gradient(150deg, rgba(241, 89, 34, 0.94), rgba(254, 161, 42, 0.9)),
    var(--primary);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price-tag {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffe2bf;
  font-size: 0.78rem;
  font-weight: 700;
}

.services-time-grid,
.services-lifestyle-grid {
  margin-top: 0.92rem;
}

.services-snapshot .section-copy {
  margin-bottom: 1rem;
}

.services-snapshot {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(34rem 24rem at 0% 0%, rgba(241, 89, 34, 0.08), transparent 60%),
    radial-gradient(30rem 22rem at 100% 100%, rgba(254, 161, 42, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.04);
}

.services-intro {
  max-width: none;
}

.services-intro .section-copy {
  max-width: none;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.72;
  color: rgba(255, 244, 232, 0.82);
}

.services-intro h2 {
  max-width: none;
  font-size: clamp(1.85rem, 3.25vw, 3.05rem);
  line-height: 0.98;
}

@media (min-width: 760px) {
  .services-intro h2,
  .services-intro .section-copy {
    white-space: nowrap;
  }
}

.process-step-kicker {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-step-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.process-step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 160, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 600;
  text-align: center;
}

.services-snapshot .service-grid {
  position: relative;
  gap: 1rem;
}

.services-snapshot .section-actions {
  margin-top: 1.15rem;
}

.client-stories-strip {
  --client-stories-shell-width: min(1240px, calc(100% - 2.3rem));
  --client-stories-shell-gutter: 1.25rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-top: 1.4rem;
  padding: 1.2rem 0 1.32rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(34rem 24rem at 14% 18%, rgba(255, 188, 120, 0.09), transparent 62%),
    radial-gradient(30rem 24rem at 86% 78%, rgba(241, 89, 34, 0.07), transparent 64%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.66));
}

.client-stories-inner {
  width: 100%;
}

.client-stories-head {
  width: var(--client-stories-shell-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  box-sizing: border-box;
}

.client-stories-head > div {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 0 var(--client-stories-shell-gutter);
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  text-align: center;
}

.client-stories-strip .kicker {
  display: block;
  width: 100%;
  margin: 0 auto 0.55rem;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.client-stories-head h2 {
  margin: 0;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 3.1vw, 2.72rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.client-testimonial-slider {
  margin-top: 0.95rem;
}

.client-testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.client-testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.client-testimonial-slide {
  width: 100%;
  flex: 0 0 100%;
  display: block;
  padding: 0 1.15rem;
}

.client-testimonial-frame,
.client-testimonial-caption {
  min-width: 0;
}

.client-testimonial-frame {
  display: none;
}

.client-testimonial-frame::after {
  content: none;
}

.client-testimonial-photo {
  display: none;
}

.client-testimonial-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.56)),
    rgba(0, 0, 0, 0.52);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 201, 138, 0.04);
  min-height: 100%;
}

.client-testimonial-quote {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
  color: rgba(255, 248, 238, 0.96);
  max-width: 70rem;
}

.client-testimonial-meta {
  display: grid;
  gap: 0.28rem;
  margin-top: 1rem;
  padding-top: 0.94rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.client-testimonial-meta strong {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff6ea;
}

.client-testimonial-meta span {
  color: rgba(255, 223, 188, 0.74);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-testimonial-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.68rem;
  width: var(--client-stories-shell-width);
  margin: 0.82rem auto 0;
  padding: 0;
  box-sizing: border-box;
}

.client-testimonial-nav {
  min-height: 2.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 151, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 20, 0.92);
  color: #fff1de;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.client-testimonial-nav:hover,
.client-testimonial-nav:focus-visible {
  border-color: rgba(255, 215, 171, 0.4);
  transform: translateY(-1px);
  outline: none;
}

.client-testimonial-dots {
  display: flex;
  flex: 1 1 12rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.36rem;
}

.client-testimonial-dot {
  width: 0.54rem;
  height: 0.54rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.client-testimonial-dot.is-active {
  background: linear-gradient(135deg, #ff9c4c, #ffd18b);
  transform: scale(1.12);
}

.client-testimonial-dot:focus-visible {
  outline: 2px solid rgba(255, 213, 166, 0.5);
  outline-offset: 2px;
}

.program-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(244, 188, 108, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 214, 163, 0.06), rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.88);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 89, 34, 0.8), rgba(254, 161, 42, 0.4), transparent 88%);
  opacity: 0.95;
}

.program-card::after {
  content: "";
  position: absolute;
  right: -2.4rem;
  bottom: -2.6rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 214, 160, 0.11), transparent 68%);
  pointer-events: none;
}

.services-snapshot .program-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 214, 163, 0.07), rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.9);
}

.services-snapshot .program-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 200, 176, 0.07), rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.9);
}

.services-snapshot .program-card:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(255, 153, 120, 0.78), rgba(255, 214, 170, 0.4), transparent 88%);
}

.services-snapshot .program-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 224, 178, 0.06), rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.9);
}

.services-snapshot .program-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(255, 198, 116, 0.74), rgba(255, 232, 188, 0.38), transparent 88%);
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 188, 108, 0.34);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 201, 138, 0.08);
}

.program-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.program-card-label,
.program-card-price,
.support-tier-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.program-card-label,
.support-tier-label {
  border: 1px solid rgba(255, 191, 121, 0.24);
  background: rgba(241, 89, 34, 0.08);
  color: #ffd8b1;
}

.program-card-price {
  border: 1px solid rgba(255, 224, 188, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: #fff1da;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.program-card h3,
.compare-plan-card h3,
.decision-card h3,
.support-tier-card h3 {
  color: #ffffff;
}

.program-card h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

.program-card p {
  max-width: 32ch;
}

.program-card .chips {
  margin-top: auto;
  padding-top: 0.95rem;
}

.program-card .chip {
  border-color: rgba(255, 195, 133, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: rgba(255, 255, 255, 0.78);
}

.program-card:hover .program-card-price,
.program-card:hover .chip {
  border-color: rgba(255, 210, 160, 0.26);
}

.program-card-list,
.support-tier-list {
  margin-top: 0.88rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.program-card-list li,
.support-tier-list li {
  margin-bottom: 0.5rem;
}

.program-link {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffd6a1;
}

.comparison-hero {
  background:
    radial-gradient(44rem 30rem at 12% 8%, rgba(241, 89, 34, 0.14), transparent 60%),
    radial-gradient(30rem 24rem at 86% 12%, rgba(254, 161, 42, 0.1), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(241, 89, 34, 0.14)),
    var(--surface);
}

.comparison-anchor-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.comparison-anchor-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.comparison-anchor-row a:hover {
  border-color: rgba(255, 210, 160, 0.3);
  color: #ffffff;
}

.comparison-shell {
  overflow: hidden;
}

.comparison-shell-head {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.comparison-note {
  max-width: 28rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 193, 132, 0.18);
  background: linear-gradient(145deg, rgba(255, 205, 148, 0.06), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.78);
}

.comparison-table-wrap {
  margin-top: 1.1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.comparison-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 0.95rem;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table thead th {
  padding: 0 0 1rem;
  border-top: 0;
}

.comparison-label-cell,
.comparison-table tbody th {
  min-width: 14rem;
  text-align: left;
}

.comparison-label-cell {
  padding-right: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(8, 8, 8, 0.96);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.comparison-table td {
  min-width: 17rem;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-section-row th {
  position: static;
  left: auto;
  z-index: 1;
  padding: 1rem 0 0.62rem;
  border-top: 0;
  background: transparent;
  color: #ffd8af;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-plan-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 40%, rgba(10, 10, 10, 0.96)),
    rgba(10, 10, 10, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.compare-plan-card--strength {
  border-color: rgba(255, 187, 112, 0.32);
}

.compare-plan-card--natal {
  border-color: rgba(255, 172, 132, 0.24);
}

.compare-plan-card--longevity {
  border-color: rgba(255, 214, 156, 0.2);
}

.compare-plan-eyebrow {
  margin: 0;
  color: #ffd9af;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-plan-price {
  margin-top: 0.75rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 0.98;
  color: #ffffff;
}

.compare-plan-price span {
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}

.compare-plan-copy {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.74);
}

.compare-plan-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.58rem;
  padding-top: 0.9rem;
}

.compare-plan-actions .btn {
  width: 100%;
}

.comparison-side-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-side-note p,
.comparison-side-note a {
  color: rgba(255, 255, 255, 0.78);
}

.support-tier-card {
  position: relative;
  overflow: hidden;
}

.support-tier-card .price {
  color: #ffffff;
}

.support-tier-card--featured {
  border-color: rgba(255, 188, 110, 0.32);
  background:
    linear-gradient(180deg, rgba(241, 89, 34, 0.12), rgba(255, 255, 255, 0.03) 34%, rgba(10, 10, 10, 0.94)),
    rgba(10, 10, 10, 0.96);
}

.support-tier-card--featured::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 89, 34, 0.9), rgba(254, 161, 42, 0.75));
}

.decision-guide-grid {
  margin-top: 1rem;
}

.decision-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 212, 156, 0.03)),
    rgba(10, 10, 10, 0.92);
}

.pt-mode-main {
  width: min(1180px, 95vw);
}

.pt-mode-shell,
.pt-results-section,
.pt-levels-section {
  overflow: hidden;
}

.pt-mode-shell {
  display: grid;
  align-items: center;
  min-height: calc(100dvh - 104px);
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 6vw, 3.25rem);
}

.pt-mode-main.has-selection .pt-mode-shell {
  min-height: auto;
  padding-bottom: 1.3rem;
}

.pt-mode-stage {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.05rem, 2.4vw, 1.6rem);
  justify-items: center;
  text-align: center;
}

.pt-mode-main.has-selection .pt-mode-stage {
  gap: 0.95rem;
}

.pt-mode-title {
  margin: 0;
  max-width: 12.5ch;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(3.7rem, 7.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.pt-mode-main.has-selection .pt-mode-title {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.6vw, 3.65rem);
}

.pt-title-accent,
.pt-title-emphasis {
  display: inline-block;
}

.pt-title-accent {
  background: linear-gradient(140deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: saturate(1.08) brightness(1.05);
  text-shadow: none;
}

.pt-title-emphasis {
  background: linear-gradient(140deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: saturate(1.02) brightness(1.02);
  text-shadow: none;
}

.pt-mode-support {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.74);
}

.pt-mode-card-stack {
  width: min(60rem, 100%);
  display: grid;
  gap: 1.05rem;
}

.pt-mode-card {
  --mode-accent: 241, 89, 34;
  --mode-accent-alt: 254, 161, 42;
  --mode-ink: #fff7ea;
  --mode-border: rgba(255, 205, 148, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 332px;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.4rem 1.45rem 1.35rem;
  border: 1px solid var(--mode-border);
  border-radius: 32px;
  background:
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.08),
      rgba(var(--mode-accent-alt), 0.09) 16%,
      rgba(var(--mode-accent), 0.04) 40%,
      rgba(8, 8, 8, 0.97)
    ),
    rgba(8, 8, 8, 0.95);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.pt-mode-card--subscription {
  --mode-accent: 241, 89, 34;
  --mode-accent-alt: 254, 161, 42;
  --mode-ink: #fff4df;
  --mode-border: rgba(255, 205, 148, 0.22);
}

.pt-mode-card--extended {
  --mode-accent: 110, 168, 145;
  --mode-accent-alt: 233, 197, 108;
  --mode-ink: #f3f6ed;
  --mode-border: rgba(192, 218, 198, 0.2);
}

.pt-mode-card > * {
  position: relative;
  z-index: 1;
}

.pt-mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(var(--mode-accent), 0.26), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(var(--mode-accent-alt), 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 44%);
}

.pt-mode-card::after {
  content: attr(data-mode-code);
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  z-index: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 0.82;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.045);
  text-shadow: 0 0 22px rgba(var(--mode-accent), 0.08);
  pointer-events: none;
}

.pt-mode-card:hover,
.pt-mode-card:focus-visible {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(var(--mode-accent-alt), 0.34);
  box-shadow:
    0 38px 72px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(var(--mode-accent-alt), 0.1),
    0 0 44px rgba(var(--mode-accent), 0.1);
  outline: none;
}

.pt-mode-card.is-active {
  border-color: rgba(var(--mode-accent-alt), 0.5);
  background:
    radial-gradient(circle at 88% 12%, rgba(var(--mode-accent), 0.22), transparent 32%),
    radial-gradient(circle at 18% 100%, rgba(var(--mode-accent-alt), 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 242, 223, 0.09), rgba(var(--mode-accent-alt), 0.07) 24%, rgba(8, 8, 8, 0.98)),
    rgba(8, 8, 8, 0.98);
  box-shadow:
    0 36px 68px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(var(--mode-accent-alt), 0.14),
    0 0 34px rgba(var(--mode-accent), 0.12);
}

.pt-mode-gridline,
.pt-mode-shine {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pt-mode-gridline {
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(var(--mode-accent-alt), 0.1), transparent 18%, transparent 82%, rgba(var(--mode-accent-alt), 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
}

.pt-mode-shine {
  inset: 0 auto auto 0;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--mode-accent-alt), 0.96), rgba(var(--mode-accent), 0.34), transparent);
  box-shadow: 0 0 24px rgba(var(--mode-accent-alt), 0.22);
}

.pt-mode-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.pt-mode-card-head {
  display: grid;
  gap: 0.2rem;
}

.pt-mode-icon {
  width: 4.65rem;
  height: 4.65rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 226, 189, 0.22);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 245, 226, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(223, 154, 53, 0.95), rgba(132, 68, 16, 0.96));
  color: #fff2dc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 16px rgba(57, 24, 0, 0.34),
    0 18px 32px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 233, 198, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pt-mode-icon::before {
  content: "";
  position: absolute;
  inset: 0.34rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(53, 22, 6, 0.12), rgba(18, 9, 4, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pt-mode-icon::after {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border-radius: 26px;
  background: radial-gradient(circle, var(--mode-logo-glow, rgba(255, 172, 84, 0.26)), transparent 68%);
  opacity: 0.92;
  pointer-events: none;
}

.pt-mode-card:hover .pt-mode-icon,
.pt-mode-card:focus-visible .pt-mode-icon,
.pt-mode-card.is-active .pt-mode-icon {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(var(--mode-accent-alt), 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 16px rgba(57, 24, 0, 0.34),
    0 22px 38px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(var(--mode-accent), 0.16);
}

.pt-mode-card:hover .pt-mode-icon::after,
.pt-mode-card:focus-visible .pt-mode-icon::after,
.pt-mode-card.is-active .pt-mode-icon::after {
  opacity: 1;
}

.pt-mode-icon svg,
.pt-mode-icon .icon-shell,
.pt-mode-icon .icon-core {
  position: relative;
  z-index: 1;
}

.pt-mode-icon svg {
  width: 2.18rem;
  height: 2.18rem;
  stroke: #fff2db;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.24));
}

.pt-mode-icon .icon-shell {
  fill: rgba(67, 27, 6, 0.48);
  stroke: rgba(255, 234, 206, 0.2);
  stroke-width: 0.9;
}

.pt-mode-icon .icon-core {
  fill: rgba(255, 255, 255, 0.06);
  stroke: none;
}

.pt-mode-icon--subscription {
  --mode-logo-glow: rgba(118, 175, 255, 0.28);
}

.pt-mode-icon--subscription::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(144, 214, 255, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(24, 38, 68, 0.3), rgba(18, 9, 4, 0.42));
}

.pt-mode-icon--subscription .icon-core {
  fill: rgba(96, 169, 255, 0.16);
}

.pt-mode-icon--extended {
  --mode-logo-glow: rgba(168, 219, 188, 0.24);
}

.pt-mode-icon--extended::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(176, 224, 180, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(29, 51, 38, 0.3), rgba(18, 9, 4, 0.42));
}

.pt-mode-icon--extended .icon-core {
  fill: rgba(156, 214, 175, 0.14);
}

.pt-tier-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd6a1;
}

.pt-mode-name,
.pt-block-head h3,
.pt-tier-card h3 {
  margin: 0;
  color: #ffffff;
}

.pt-mode-name {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(2.95rem, 6vw, 5rem);
  line-height: 0.82;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 10ch;
  color: var(--mode-ink);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

[data-pt-mode-page] .pt-mode-card-top {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

[data-pt-mode-page] .pt-mode-card {
  min-height: 360px;
}

[data-pt-mode-page] .pt-mode-icon {
  display: none !important;
}

[data-pt-mode-page] .pt-mode-card::after {
  content: none;
}

[data-pt-mode-page] .pt-mode-footer {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

[data-pt-mode-page] .pt-mode-card--extended .pt-mode-name {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
}

[data-pt-mode-page] .pt-mode-focus-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

[data-pt-mode-page] .pt-mode-focus-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.42;
}

[data-pt-mode-page] .pt-mode-focus-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(var(--mode-accent-alt), 0.96);
  box-shadow: 0 0 0 4px rgba(var(--mode-accent-alt), 0.12);
}

.pt-mode-copy {
  max-width: 40rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
}

.pt-mode-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  max-width: 34rem;
}

.pt-mode-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--mode-accent-alt), 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(var(--mode-accent-alt), 0.07)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 243, 226, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-mode-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--mode-accent-alt), 0.22);
  background:
    linear-gradient(145deg, rgba(var(--mode-accent-alt), 0.12), rgba(var(--mode-accent), 0.08)),
    rgba(255, 255, 255, 0.04);
  color: rgba(255, 246, 232, 0.98);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-mode-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.pt-mode-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.pt-mode-stat {
  display: grid;
  gap: 0.22rem;
  min-height: 4rem;
  padding: 0.72rem 0.78rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(var(--mode-accent-alt), 0.05)),
    rgba(255, 255, 255, 0.03);
}

.pt-mode-stat strong {
  color: rgba(var(--mode-accent-alt), 0.98);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pt-mode-stat span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.35;
}

.pt-mode-enter {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  align-self: end;
  padding: 0.44rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--mode-accent-alt), 0.26);
  background:
    linear-gradient(145deg, rgba(var(--mode-accent-alt), 0.16), rgba(var(--mode-accent), 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 247, 236, 0.98);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.pt-mode-enter svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.2s ease;
}

.pt-mode-card:hover .pt-mode-enter svg,
.pt-mode-card:focus-visible .pt-mode-enter svg {
  transform: translateX(3px);
}

.pt-pricing-main {
  width: min(1160px, 95vw);
}

.pt-pricing-journey,
.pt-level-chooser,
.pt-level-results-section {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 224, 189, 0.025)),
    rgba(8, 8, 8, 0.84);
  backdrop-filter: blur(10px);
}

.pt-pricing-journey-head,
.pt-level-chooser-head,
.pt-level-results-head {
  display: grid;
  gap: 1rem;
}

.pt-pricing-journey-head h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.94;
}

.pt-pricing-journey-actions {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  justify-items: start;
}

.pt-journey-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 148, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 214, 161, 0.14), rgba(241, 89, 34, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #fff0d3;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-step-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.82rem;
}

.pt-step-card {
  display: grid;
  gap: 0.36rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.7);
}

.pt-step-card strong {
  font-size: 1rem;
  color: #ffffff;
}

.pt-step-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pt-step-card.is-current {
  border-color: rgba(255, 205, 148, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 214, 161, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(12, 12, 12, 0.82);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.pt-step-card.is-complete {
  border-color: rgba(170, 220, 190, 0.2);
  background:
    linear-gradient(145deg, rgba(108, 168, 145, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(12, 12, 12, 0.76);
}

.pt-step-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.26rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd8a6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pt-level-selector-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.pt-level-option {
  width: 100%;
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 224, 189, 0.02)),
    rgba(10, 10, 10, 0.82);
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pt-level-option:nth-child(1) {
  border-color: rgba(255, 206, 151, 0.16);
}

.pt-level-option:nth-child(2) {
  border-color: rgba(218, 205, 156, 0.16);
}

.pt-level-option:nth-child(3) {
  border-color: rgba(136, 184, 170, 0.18);
}

.pt-level-option:nth-child(4) {
  border-color: rgba(176, 164, 220, 0.18);
}

.pt-level-option:hover,
.pt-level-option:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 214, 161, 0.28);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 214, 161, 0.08);
  outline: none;
}

.pt-level-option.is-active {
  border-color: rgba(255, 214, 161, 0.4);
  background:
    linear-gradient(165deg, rgba(255, 214, 161, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.88);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 214, 161, 0.1);
}

.pt-level-option-head {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.pt-level-option-index,
.pt-level-option-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-level-option-index {
  color: #ffd8a6;
}

.pt-level-option-number {
  color: rgba(255, 255, 255, 0.65);
}

.pt-level-option-copywrap {
  display: grid;
  gap: 0.42rem;
}

.pt-level-option-copywrap h3 {
  margin: 0;
  font-size: 1.42rem;
  color: #ffffff;
}

.pt-level-option-strap {
  color: #ffe0b6;
  font-weight: 700;
}

.pt-level-option-copy,
.pt-level-option-fit {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.66;
}

.pt-level-option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pt-level-option-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 243, 226, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
}

.pt-level-context {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.pt-level-context-card {
  display: grid;
  gap: 0.48rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 224, 189, 0.02)),
    rgba(12, 12, 12, 0.72);
}

.pt-level-context-label {
  color: #ffd8a6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-level-context-card p {
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
}

.pt-specialist-list {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.pt-specialist-list li + li {
  margin-top: 0.32rem;
}

.pt-tier-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.pt-tier-grid--single .pt-tier-card {
  max-width: none;
}

.pt-results-head,
.pt-block-head {
  display: grid;
  gap: 0.95rem;
}

.pt-results-actions {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: start;
}

.pt-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.pt-summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 198, 135, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffe0b6;
  font-size: 0.78rem;
  font-weight: 700;
}

.pt-package-stack {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
}

.pt-training-block {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 166, 0.025)),
    rgba(8, 8, 8, 0.92);
}

.pt-block-head p {
  max-width: 46rem;
}

.pt-tier-grid,
.pt-level-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.pt-tier-card {
  padding: 1rem;
  border-color: rgba(255, 191, 121, 0.16);
  background:
    radial-gradient(circle at 86% 16%, rgba(241, 89, 34, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 10, 10, 0.96)),
    rgba(10, 10, 10, 0.96);
}

.pt-tier-top {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.pt-tier-highlight {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 206, 151, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 213, 162, 0.04));
}

.pt-tier-highlight strong {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
  color: #ffffff;
}

.pt-tier-highlight span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.pt-tier-note {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
}

.pt-package-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pt-package-tile {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(12, 12, 12, 0.94)),
    rgba(12, 12, 12, 0.94);
}

.pt-package-sessions {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 142, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd6a1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pt-package-total {
  margin-top: 0.28rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.26rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 1.18rem + 0.95vw, 1.9rem);
  line-height: 0.94;
  white-space: nowrap;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.pt-currency-prefix,
.pt-currency-amount {
  display: inline-block;
}

.pt-currency-prefix {
  font-size: 0.82em;
  letter-spacing: 0.02em;
}

.pt-currency-amount {
  white-space: nowrap;
}

.pt-package-subtotal {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pt-package-meta {
  display: grid;
  gap: 0.26rem;
  margin-top: 0.25rem;
}

.pt-package-line,
.pt-loading-copy {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.pt-package-line--installment,
.pt-compare-installment-note {
  color: #f3bd76;
  font-style: normal;
}

.pt-level-grid .card {
  min-height: 100%;
}

@media (min-width: 760px) {
  .pt-mode-card {
    min-height: 350px;
    padding: 1.55rem 1.65rem 1.45rem;
  }

  .pt-pricing-journey-head,
  .pt-level-results-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .pt-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pt-level-selector-grid,
  .pt-level-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-results-head,
  .pt-block-head,
  .pt-tier-top {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pt-results-actions {
    justify-items: end;
  }

  .pt-tier-grid,
  .pt-level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .pt-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .pt-mode-shell {
    min-height: calc(100dvh - 92px);
    padding: 0.9rem 0 1.8rem;
  }

  .pt-mode-title {
    max-width: 13ch;
  }

  .pt-mode-support {
    font-size: 0.94rem;
  }

  .pt-mode-card {
    min-height: 318px;
    padding: 1.05rem 1rem 1.1rem;
    border-radius: 24px;
  }

  .pt-mode-card-top {
    gap: 0.8rem;
  }

  .pt-mode-icon {
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 18px;
  }

  .pt-mode-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .pt-mode-card::after {
    right: 1rem;
    bottom: 1rem;
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .pt-training-block {
    padding: 0.95rem;
  }

  .pt-mode-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pt-mode-stat-strip {
    grid-template-columns: 1fr;
  }

  .pt-mode-stat {
    min-height: auto;
  }

  .pt-mode-enter {
    justify-content: center;
    width: 100%;
  }

  .pt-step-card,
  .pt-level-option,
  .pt-level-context-card {
    padding: 0.9rem;
  }

  .pt-results-actions,
  .pt-results-actions .btn {
    width: 100%;
  }

  .pt-tier-highlight strong,
  .pt-package-total {
    font-size: 1.65rem;
  }

  .pt-package-grid {
    grid-template-columns: 1fr;
  }
}

.why-legacy {
  padding: 1.15rem var(--site-pad);
}

.why-legacy-split {
  gap: 1.15rem;
  align-items: stretch;
}

.why-legacy-copy {
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.why-legacy h2 + p {
  margin-top: 0.9rem;
}

.why-legacy h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.98;
  max-width: 16ch;
}

.why-legacy .section-copy {
  max-width: 50rem;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.72;
  color: rgba(255, 244, 232, 0.82);
}

.why-legacy-copy p:not(.section-copy) {
  max-width: 38rem;
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.why-legacy-proofband {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  gap: 0;
  border: 1px solid rgba(244, 188, 108, 0.16);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 220, 186, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.why-legacy-proof {
  flex: 1 1 20%;
  min-width: 0;
  height: 100%;
  padding: 1.05rem 0.95rem 1.1rem;
  border-left: 1px solid rgba(244, 188, 108, 0.1);
  background: transparent;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.42rem;
  text-align: center;
}

.why-legacy-proof:first-child {
  border-left: 0;
}

.why-legacy-proof-head {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
}

.why-legacy-proof-icon {
  width: 4.9rem;
  height: 4.9rem;
  flex: 0 0 4.9rem;
  position: relative;
  display: block;
  transform: translateZ(0);
}

.why-legacy-proof-icon::before {
  content: none;
}

.why-legacy-proof-icon::after {
  content: none;
}

.why-legacy-proof-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  image-rendering: auto;
  transform: scale(1.12);
  transform-origin: center;
}

.why-legacy-proof-value {
  display: block;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 2.7rem);
  line-height: 0.94;
  background: linear-gradient(135deg, #f15922, #fea12a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 0;
  text-align: center;
}

.why-legacy-proof p {
  margin: 0;
  width: 100%;
  max-width: 18ch;
  font-size: 0.82rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  text-wrap: balance;
}

.why-legacy-media {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-legacy-carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 420px;
  max-height: 620px;
  border-radius: 26px;
  border: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  background: #090705;
}

.why-legacy-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(8, 5, 2, 0.06), rgba(8, 5, 2, 0.4)),
    linear-gradient(90deg, rgba(255, 204, 128, 0.08) 0, transparent 8%, transparent 92%, rgba(255, 168, 105, 0.08) 100%);
  pointer-events: none;
}

.why-legacy-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    repeating-linear-gradient(180deg, rgba(255, 213, 156, 0.04) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, transparent 0 12%, rgba(255, 201, 122, 0.08) 18%, transparent 24% 76%, rgba(255, 163, 89, 0.08) 82%, transparent 88% 100%);
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}

.why-legacy-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transform: translate3d(2.5%, 0, 0) scale(1.08);
  filter: saturate(1.06) contrast(1.04);
  animation: whyLegacySlideLoop 35s linear infinite;
}

.why-legacy-slide::before {
  content: "";
  position: absolute;
  inset: -8% -20%;
  z-index: 2;
  background:
    linear-gradient(
      110deg,
      transparent 0 34%,
      rgba(255, 218, 158, 0.16) 43%,
      rgba(255, 218, 158, 0.04) 48%,
      transparent 56%
    );
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-18%);
  animation: whyLegacySweep 35s linear infinite;
}

.why-legacy-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 209, 146, 0.14), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(255, 151, 87, 0.12), transparent 24%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: whyLegacyGlow 35s linear infinite;
}

.why-legacy-slide:nth-child(2) {
  animation-delay: 7s;
}

.why-legacy-slide:nth-child(2)::before,
.why-legacy-slide:nth-child(2)::after {
  animation-delay: 7s;
}

.why-legacy-slide:nth-child(3) {
  animation-delay: 14s;
}

.why-legacy-slide:nth-child(3)::before,
.why-legacy-slide:nth-child(3)::after {
  animation-delay: 14s;
}

.why-legacy-slide:nth-child(4) {
  animation-delay: 21s;
}

.why-legacy-slide:nth-child(4)::before,
.why-legacy-slide:nth-child(4)::after {
  animation-delay: 21s;
}

.why-legacy-slide:nth-child(5) {
  animation-delay: 28s;
}

.why-legacy-slide:nth-child(5)::before,
.why-legacy-slide:nth-child(5)::after {
  animation-delay: 28s;
}

.why-legacy-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04) brightness(0.96);
}

.why-legacy-slide-caption {
  display: none;
}

.why-legacy-slide-tag {
  display: none;
}

.why-legacy-slide-caption strong {
  display: none;
}

.why-legacy-slide-meta {
  display: none;
}

@keyframes whyLegacySlideLoop {
  0% {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: translate3d(2.5%, 0, 0) scale(1.08);
  }
  3% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  }
  6% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  18% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  20% {
    opacity: 0;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    transform: translate3d(-2%, 0, 0) scale(1.01);
  }
  100% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transform: translate3d(-2%, 0, 0) scale(1.01);
  }
}

@keyframes whyLegacySweep {
  0%,
  2% {
    opacity: 0;
    transform: translateX(-28%);
  }
  7% {
    opacity: 0.9;
    transform: translateX(0);
  }
  14% {
    opacity: 0.22;
    transform: translateX(18%);
  }
  20%,
  100% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes whyLegacyGlow {
  0%,
  3% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  16% {
    opacity: 0.55;
  }
  20%,
  100% {
    opacity: 0;
  }
}

.earn-rank-showcase {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

@font-face {
  font-family: "Reaver";
  src:
    url("./assets/fonts/Reaver-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Radiance";
  src:
    url("./assets/fonts/radiance.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.earn-rank-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin-bottom: 0;
  padding: clamp(56px, 6vw, 92px) 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 40;
  background-image: url("./assets/earn-rank-heavens-generated.png");
  background-position: center top;
  background-size: 112% auto;
  background-repeat: no-repeat;
}

.earn-rank-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.18) 28%,
    rgba(0, 0, 0, 0.16) 62%,
    rgba(0, 0, 0, 0.06) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.earn-rank-banner::after {
  content: none;
}

.earn-rank-copy {
  position: relative;
  z-index: 40;
  width: 80%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 0;
}

.earn-rank-banner .earn-rank-copy > .earn-rank-title,
.earn-rank-banner .earn-rank-copy > .earn-rank-title * {
  margin: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
}

.earn-rank-banner .earn-rank-copy > .earn-rank-title .Minor {
  display: inline;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 70px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
}

.legacy-entry-band .legacy-entry-title {
  margin: 0 0 20px;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  text-align: left;
}

.earn-rank-banner .earn-rank-copy > .earn-rank-title .title-highlight,
.legacy-entry-band .legacy-entry-title .title-highlight {
  display: inline-block;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: saturate(1.08) brightness(1.05);
  text-shadow: none;
}

.earn-rank-caption {
  width: 100%;
  max-width: 720px;
  margin: 28px 0 0;
  padding-bottom: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: #e2dace;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.earn-rank-actions {
  margin-top: 28px;
  align-self: flex-start;
}

.earn-rank-actions .btn {
  min-width: 280px;
  min-height: 56px;
}

.earn-rank-rows {
  width: 80%;
  z-index: 3;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: clamp(300px, 28vw, 460px);
  background: transparent;
}

.earn-rank-row-viewport {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  border-top: 0;
}

.earn-rank-row-viewport:first-child {
  border-top: 0;
}

.earn-rank-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 138px;
  width: max-content;
  animation: earnRankMarquee var(--row-duration, 10s) linear infinite;
}

.earn-rank-row-viewport:hover .earn-rank-row {
  animation-play-state: paused;
}

.earn-rank-row.is-reversed {
  animation-name: earnRankMarqueeReverse;
}

.earn-rank-card {
  --card-width: 196px;
  --card-height: 127px;
  --card-image-fit: cover;
  --card-image-position: center center;
  --card-image-padding: 0;
  --card-image-transform: scale(1);
  --card-image-hover-transform: scale(1.03);
  --card-bg-opacity: 0.54;
  --card-stage-glow:
    radial-gradient(circle at 50% 44%, rgba(255, 191, 128, 0.16), rgba(56, 30, 18, 0.08) 56%, rgba(0, 0, 0, 0) 84%),
    linear-gradient(180deg, rgba(255, 167, 86, 0.06), rgba(0, 0, 0, 0) 72%);
  flex: 0 0 var(--card-width);
  min-width: var(--card-width);
  width: var(--card-width);
  height: var(--card-height);
  margin-right: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
  border-radius: 18px;
  border: 1px solid rgba(250, 221, 183, 0.12);
  background: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition-property: transform, box-shadow, filter, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  transform-origin: center;
  isolation: isolate;
}

.earn-rank-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: var(--card-stage-glow);
}

.earn-rank-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(140% 118% at 50% 46%, rgba(255, 255, 255, 0) 56%, rgba(8, 6, 4, 0.1) 78%, rgba(8, 6, 4, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.04), rgba(8, 6, 4, 0) 38%, rgba(8, 6, 4, 0.16) 100%);
  pointer-events: none;
}

.earn-rank-card-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: var(--card-image-position);
  filter: blur(18px) saturate(1.04) brightness(0.64);
  opacity: var(--card-bg-opacity);
  transform: scale(1.1);
}

.earn-rank-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  border: 1px solid rgba(255, 236, 210, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.earn-rank-card:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(255, 226, 186, 0.22);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26);
  z-index: 10;
}

.earn-rank-card:hover .earn-rank-card-image {
  transform: var(--card-image-hover-transform, scale(1.02));
}

.earn-rank-card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  max-width: 100%;
  object-fit: var(--card-image-fit);
  object-position: var(--card-image-position);
  padding: var(--card-image-padding);
  transform: var(--card-image-transform);
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22))
    saturate(1.03)
    contrast(1.02);
  -webkit-mask-image: radial-gradient(140% 118% at 50% 46%, black 64%, rgba(0, 0, 0, 0.94) 80%, transparent 100%);
  mask-image: radial-gradient(140% 118% at 50% 46%, black 64%, rgba(0, 0, 0, 0.94) 80%, transparent 100%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.earn-rank-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 12px 12px 10px;
  background:
    linear-gradient(180deg, rgba(8, 6, 4, 0) 0%, rgba(8, 6, 4, 0.34) 44%, rgba(8, 6, 4, 0.72) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.earn-rank-card:hover .earn-rank-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.earn-rank-card-title {
  display: block;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 222, 188, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.earn-rank-card-meta {
  display: block;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.12;
  min-height: 2.24em;
  color: #f6eee2;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.earn-rank-row-viewport[data-row-group="coach-level-f"] .earn-rank-card.is-ribbon-cropped,
.earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card.is-ribbon-cropped {
  overflow: hidden;
}

.earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card {
  --card-bg-opacity: 0.24;
  --card-stage-glow:
    radial-gradient(circle at 50% 44%, rgba(255, 183, 92, 0.24), rgba(98, 48, 18, 0.12) 54%, rgba(0, 0, 0, 0) 84%),
    linear-gradient(180deg, rgba(255, 154, 68, 0.08), rgba(0, 0, 0, 0) 72%);
  --card-width: 196px;
  overflow: hidden;
}

.earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card {
  --card-image-fit: cover;
  --card-image-position: center center;
  --card-image-padding: 0;
}

.earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card-image {
  --card-image-transform: scale(1);
  --card-image-hover-transform: scale(1.03);
}

.earn-rank-row-viewport[data-row-group="client-ranks"] .earn-rank-card {
  --card-bg-opacity: 0.52;
  --card-stage-glow:
    radial-gradient(circle at 50% 44%, rgba(122, 110, 255, 0.18), rgba(39, 28, 88, 0.1) 52%, rgba(0, 0, 0, 0) 84%),
    linear-gradient(180deg, rgba(114, 98, 255, 0.06), rgba(0, 0, 0, 0) 72%);
  --card-width: 196px;
  --card-image-fit: contain;
  --card-image-position: center 47%;
  --card-image-padding: 1px 5px 7px;
}

.earn-rank-row-viewport[data-row-group="client-ranks"] .earn-rank-card-image {
  --card-image-transform: scale(1.03);
  --card-image-hover-transform: scale(1.06);
}

.earn-rank-row-viewport[data-row-group="coach-level-f"] .earn-rank-card {
  --card-bg-opacity: 0.5;
  --card-stage-glow:
    radial-gradient(circle at 50% 44%, rgba(94, 224, 233, 0.14), rgba(17, 65, 73, 0.08) 52%, rgba(0, 0, 0, 0) 84%),
    linear-gradient(180deg, rgba(255, 190, 106, 0.05), rgba(0, 0, 0, 0) 72%);
  --card-width: 196px;
  --card-image-fit: contain;
  --card-image-position: center 47%;
  --card-image-padding: 1px 5px 7px;
}

.earn-rank-row-viewport[data-row-group="coach-level-f"] .earn-rank-card-image {
  --card-image-transform: scale(1.03);
  --card-image-hover-transform: scale(1.06);
}

.earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card {
  --card-bg-opacity: 0.66;
  --card-stage-glow:
    radial-gradient(circle at 50% 44%, rgba(112, 255, 154, 0.14), rgba(23, 58, 31, 0.1) 52%, rgba(0, 0, 0, 0) 84%),
    linear-gradient(180deg, rgba(175, 255, 126, 0.05), rgba(0, 0, 0, 0) 72%);
  --card-width: 196px;
  --card-image-fit: cover;
  --card-image-position: center center;
  --card-image-padding: 0;
}

.earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card-image {
  --card-image-transform: scale(1);
  --card-image-hover-transform: scale(1.03);
}

.legacy-entry-band {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.84) 0%, rgba(4, 6, 8, 0.72) 34%, rgba(7, 9, 13, 0.28) 68%, rgba(6, 6, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74)),
    url("./assets/legacy-entry-ascend-generated.png");
  background-size: 112% auto;
  background-position: 78% center;
  background-repeat: no-repeat;
}

.legacy-entry-inner {
  width: 100%;
  margin: 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 50px 150px;
}

.legacy-entry-band .legacy-entry-title {
  text-align: left;
  margin-bottom: 20px;
}

.legacy-entry-rule {
  width: min(100%, 640px);
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 218, 206, 0.78), rgba(226, 218, 206, 0.14));
  margin: 12px 0 24px;
}

.legacy-entry-band .legacy-entry-copy {
  max-width: 760px;
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: #e2dace;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 100;
}

.legacy-entry-actions {
  margin-top: 30px;
}

.legacy-entry-actions .btn {
  min-width: 300px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .earn-rank-banner .earn-rank-copy > .earn-rank-title .Minor {
    font-size: 50px;
  }
}

@keyframes earnRankMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes earnRankMarqueeReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.process-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(34rem 22rem at 100% 0%, rgba(241, 89, 34, 0.07), transparent 58%),
    radial-gradient(28rem 20rem at 0% 100%, rgba(254, 161, 42, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

.process-head {
  display: grid;
  gap: 0.58rem;
  max-width: none;
}

.process-journey-grid {
  position: relative;
  margin-top: 1.05rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.process-step-card {
  position: relative;
  overflow: hidden;
  gap: 0.72rem;
  padding-top: 1.02rem;
  border-color: rgba(255, 192, 129, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 215, 165, 0.05), rgba(255, 255, 255, 0.02) 38%, rgba(10, 10, 10, 0.94)),
    rgba(10, 10, 10, 0.92);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(241, 89, 34, 0.88), rgba(254, 161, 42, 0.56), transparent 92%);
}

.process-step-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 214, 160, 0.1), transparent 70%);
  pointer-events: none;
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 160, 0.28);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 201, 138, 0.08);
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  min-height: 3.1rem;
  padding: 0.25rem 0.9rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 191, 121, 0.24);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 250, 242, 0.24), rgba(255, 250, 242, 0) 36%),
    linear-gradient(160deg, rgba(255, 202, 141, 0.2), rgba(241, 89, 34, 0.16) 62%, rgba(115, 47, 14, 0.24));
  color: #ffd8b1;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(241, 89, 34, 0.12);
}

.process-step-kicker {
  margin: 0;
  white-space: nowrap;
}

.process-step-card h3 {
  margin-top: 0.16rem;
  color: #ffffff;
  font-size: 1.05rem;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.process-step-copy {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.process-step-tag {
  margin-top: 0.5rem;
  align-self: flex-start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.results-metrics {
  margin-top: 0.9rem;
}

.results-metrics .stat {
  justify-content: center;
  text-align: center;
}

.results-metrics .stat h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(150deg, rgba(241, 89, 34, 0.94), rgba(254, 161, 42, 0.9)),
    var(--primary);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.92;
}

.results-metrics .stat p {
  max-width: 22ch;
  min-height: calc(1.42em * 2);
  margin: 0.42rem auto 0;
  line-height: 1.42;
}

.results-metrics .stat:nth-child(4) h3 {
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
}

.program-proof-section .results-metrics .stat h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.program-proof-section .results-metrics .stat:nth-child(4) h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.program-proof-section .results-metrics .stat p {
  max-width: 22ch;
  min-height: calc(1.34em * 3);
  font-size: 0.88rem;
  line-height: 1.34;
}

.oneonone-proof-section .section-subhead + .oneonone-proof-panel,
.oneonone-proof-section .section-subhead + .oneonone-testimonial-panel {
  margin-top: 0.9rem;
}

.program-proof-actions {
  margin-top: 0.9rem;
}

body.page-amber-balance.page-1on1-accent-reset .program-proof-section .oneonone-testimonial-panel strong {
  color: #fff;
}

.wins-feed {
  margin-top: 0.75rem;
}

.coaches-credibility .chips {
  margin-top: 0.5rem;
}

.coaches-credibility .coach-profile-meta p:last-child {
  margin-top: 0.55rem;
}

.popular-plan {
  border-color: rgba(254, 161, 42, 0.52);
  box-shadow: 0 16px 30px rgba(241, 89, 34, 0.18);
}

.pricing-compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0.45rem;
}

.pricing-compare th,
.pricing-compare td {
  padding: 0.72rem 0.76rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-compare th {
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.premium-gallery-strip {
  margin-top: 0.88rem;
}

.zones-grid {
  margin-top: 0.9rem;
}

.facility-hotspot-card {
  margin-top: 0.92rem;
}

.facility-hotspot-wrap {
  margin-top: 0.7rem;
  position: relative;
}

.facility-hotspot-wrap .gallery-photo {
  width: 100%;
}

.facility-hotspot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.72);
  color: #ffe2bf;
  border: 1px solid rgba(254, 161, 42, 0.54);
}

.hs-strength {
  left: 8%;
  top: 24%;
}

.hs-mobility {
  left: 44%;
  top: 60%;
}

.hs-private {
  right: 8%;
  top: 30%;
}

.facility-checklist {
  margin-top: 0.95rem;
}

.mini-tour-grid {
  margin-top: 0.72rem;
}

.location-cards {
  margin-top: 0.92rem;
}

.faq-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.44);
  padding: 0.72rem 0.86rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.55rem;
  color: var(--ink-muted);
}

.quick-answer-grid,
.myth-grid {
  margin-top: 0.92rem;
}

.conversion-paths {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.42rem;
}

.conversion-paths a {
  display: inline-flex;
  padding: 0.44rem 0.62rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f9f8;
  font-size: 0.82rem;
  font-weight: 600;
}

.conversion-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  color: #ffd4a0;
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.text-link::after {
  content: "->";
  font-size: 0.82em;
  opacity: 0.82;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.text-link:hover {
  color: #ffffff;
}

.text-link:hover::after {
  opacity: 1;
  transform: translateX(2px);
}

.coach-profile-card,
.gallery-card {
  overflow: hidden;
}

.coach-profile-photo,
.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

body.page-facilities .page-hero--1on1.program-hero {
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.24), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.16), transparent 28%),
    linear-gradient(180deg, rgb(11, 11, 11), rgb(5, 5, 5));
}

body.page-facilities .page-hero--1on1.program-hero h1 {
  max-width: 14ch;
}

.facilities-gallery-section {
  background:
    radial-gradient(28rem 18rem at 0% 0%, rgba(254, 161, 42, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.04);
}

.facilities-gallery-head {
  display: grid;
  gap: 0.9rem;
}

.facilities-gallery-shell {
  display: grid;
  gap: 0.9rem;
}

.facilities-gallery-feature {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 16% 0, rgba(241, 89, 34, 0.2), transparent 42%),
    rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 195, 133, 0.18);
}

.facilities-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  border: 1px solid rgba(255, 210, 164, 0.16);
  background: #050505;
}

.facilities-gallery-stage-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  border: 0;
}

.facilities-gallery-feature-copy {
  display: grid;
  gap: 0.34rem;
}

.facilities-gallery-feature-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 227, 188, 0.82);
}

.facilities-gallery-feature-copy h3 {
  margin: 0;
  color: #ffffff;
}

.facilities-gallery-feature-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.facilities-gallery-rail,
.facilities-gallery-row {
  display: grid;
  gap: 0.85rem;
}

.facilities-gallery-thumb {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 9.8rem;
  padding: 0;
  border: 1px solid rgba(255, 210, 164, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.96);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.facilities-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.08), rgba(4, 4, 4, 0.74)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 54%);
  pointer-events: none;
}

.facilities-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  transform: scale(1.001);
  transition: transform 220ms ease, filter 220ms ease;
}

.facilities-gallery-thumb span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0.9rem 1rem 0.95rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  font-weight: 700;
  line-height: 0.96;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.72);
}

.facilities-gallery-thumb:hover,
.facilities-gallery-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(254, 161, 42, 0.54);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(254, 161, 42, 0.2);
}

.facilities-gallery-thumb:hover img,
.facilities-gallery-thumb:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.facilities-gallery-thumb.is-active {
  border-color: rgba(254, 161, 42, 0.78);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(254, 161, 42, 0.3);
}

.facilities-gallery-thumb.is-active::after {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.08), rgba(4, 4, 4, 0.6)),
    linear-gradient(0deg, rgba(241, 89, 34, 0.18), transparent 60%);
}

.facilities-gallery-thumb--rail {
  min-height: 12.2rem;
}

.facilities-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.facilities-gallery-grid .gallery-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
}

.facilities-gallery-grid .gallery-card h3,
.facilities-gallery-grid .gallery-card p {
  margin: 0;
}

.coach-profile-meta {
  margin-top: 0.7rem;
}

.coach-profile-meta h3 {
  color: var(--primary-strong);
}

.coach-profile-meta p {
  margin-top: 0.28rem;
}

body.page-amber-balance .coach-profile-meta p:first-of-type {
  color: rgba(255, 227, 188, 0.9);
}

.team-page-hero {
  display: grid;
  gap: 1rem;
}

.team-page-hero--centered {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(15.5rem, 28vw, 19.5rem);
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.74rem;
  padding: clamp(1.35rem, 3.6vw, 2.1rem);
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.5), rgba(4, 4, 4, 0.72)),
    radial-gradient(circle at 50% 16%, rgba(254, 161, 42, 0.18), transparent 44%),
    url("./assets/legacy-gym-bg.jpeg") center 46% / cover no-repeat,
    var(--surface);
}

.team-page-hero--centered::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.88) 0%, rgba(7, 7, 8, 0.56) 38%, rgba(7, 7, 8, 0.3) 100%),
    radial-gradient(circle at 50% 12%, rgba(255, 196, 134, 0.12), transparent 38%);
  pointer-events: none;
}

.team-page-hero--centered > * {
  position: relative;
  z-index: 1;
}

.team-page-hero--centered .kicker {
  margin-bottom: 0;
  color: rgba(255, 215, 165, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.team-page-hero--centered h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 4.25rem);
  line-height: 0.92;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
}

.team-page-hero--centered p {
  max-width: 50ch;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.42);
}

.team-page-hero--centered .section-actions,
.team-page-hero--centered .chips {
  justify-content: center;
}

.team-page-hero--centered .section-actions {
  margin-top: 0.18rem;
}

.team-hero-chips {
  margin-top: 0.2rem;
}

.team-hero-avatar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.18rem;
}

.team-hero-avatar {
  width: 3.35rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-hero-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-hero-avatar--luke {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 75, 71, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-hero-avatar--ariff {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(70, 212, 122, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-hero-avatar--kylie {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 115, 191, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-hero-avatar--jenita {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(246, 203, 72, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-hero-avatar--shobana {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(109, 118, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-page .team-page-hero {
  gap: 0.85rem;
}

.team-hero-copy,
.team-hero-panel {
  min-width: 0;
}

.team-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1rem;
  background:
    radial-gradient(circle at 90% -10%, rgba(254, 161, 42, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-hero.program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem 1.4rem;
  align-items: center;
  min-height: 0;
  padding: 1rem clamp(1rem, 2.4vw, 1.5rem);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.2), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.12), transparent 28%),
    linear-gradient(180deg, rgb(11, 11, 11), rgb(6, 6, 6));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.program-hero-copy {
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: start;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  text-align: left;
}

.page-hero.program-hero .kicker {
  display: inline-flex;
  width: auto;
  margin-bottom: 0.22rem;
  font-size: 1.35rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.page-hero.program-hero h1 {
  width: auto;
  max-width: 18.5ch;
  margin: 0.08rem 0 0.42rem;
  font-size: clamp(2.05rem, 7vw, 4.25rem);
  line-height: 0.94;
  color: #ffffff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}

body.page-1on1-refined .page-hero--1on1.program-hero h1 {
  max-width: 21.5ch;
}

.page-hero.program-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.program-hero--copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.program-hero-media {
  min-width: 0;
}

.program-hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.program-hero-cta .btn {
  min-width: clamp(13.25rem, 18vw, 16rem);
}

.program-visual-card {
  gap: 0.82rem;
  padding: 0.92rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 0, rgba(241, 89, 34, 0.2), transparent 44%),
    rgba(10, 10, 10, 0.92);
}

.program-card-photo {
  width: calc(100% + 1.84rem);
  margin: -0.92rem -0.92rem 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
  border-radius: calc(var(--radius-md) - 6px) calc(var(--radius-md) - 6px) 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-visual-card .program-card-label {
  align-self: flex-start;
  margin-top: 0.02rem;
  border-color: rgba(255, 210, 164, 0.22);
  background: rgba(241, 89, 34, 0.14);
  color: #ffe0bb;
}

.program-visual-card h3 {
  margin-top: 0;
}

.program-visual-card .check-list {
  margin-top: 0.12rem;
}

.program-visual-card .check-list li:last-child {
  margin-bottom: 0;
}

.program-visual-card .oneonone-fit-note {
  margin-top: 0.18rem;
}

.oneonone-hero-gallery,
.program-hero-gallery {
  position: relative;
  width: min(100%, 23rem);
  aspect-ratio: 16 / 10.5;
  min-height: 13.8rem;
  justify-self: end;
  border: 1px solid rgba(255, 196, 134, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: #050505;
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.oneonone-hero-gallery-track,
.program-hero-gallery-track {
  position: absolute;
  inset: 0;
}

.oneonone-hero-gallery-image,
.program-hero-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  filter: saturate(1.04) contrast(1.04);
  animation: oneononeHeroSwap 25s ease-in-out infinite;
}

.oneonone-hero-gallery-image:nth-child(1),
.program-hero-gallery-image:nth-child(1) {
  opacity: 0.9;
}

.oneonone-hero-gallery-image:nth-child(2),
.program-hero-gallery-image:nth-child(2) {
  animation-delay: 5s;
}

.oneonone-hero-gallery-image:nth-child(3),
.program-hero-gallery-image:nth-child(3) {
  animation-delay: 10s;
}

.oneonone-hero-gallery-image:nth-child(4),
.program-hero-gallery-image:nth-child(4) {
  animation-delay: 15s;
}

.oneonone-hero-gallery-image:nth-child(5),
.program-hero-gallery-image:nth-child(5) {
  animation-delay: 20s;
}

}

.team-hero-panel-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 227, 188, 0.86);
}

.team-hero-metrics {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.team-hero-metrics li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.72rem 0.78rem;
  background: rgba(0, 0, 0, 0.22);
}

.team-hero-metrics strong {
  display: block;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 0.9;
  color: #ffffff;
}

.team-hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.team-hero-note {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.team-directory-head {
  display: grid;
  gap: 0.8rem;
  align-items: end;
  justify-items: center;
  text-align: center;
}

.team-directory .section-copy {
  max-width: 60ch;
  margin: 0;
}

.team-page-intro {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(0.9rem, 2vw, 1.35rem);
  padding-bottom: 0;
}

.team-page-support {
  max-width: 44rem;
}

.team-directory {
  padding-top: clamp(0.35rem, 1vw, 0.7rem);
}

.section.team-directory {
  border: 0;
  background: transparent;
  padding-inline: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  justify-content: center;
  max-width: 18.5rem;
  margin: 0 auto;
}

.team-card {
  --team-card-height: 22.9rem;
  --team-frame-gap: 8px;
  --team-card-radius: 16px;
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: var(--team-card-radius);
  padding: var(--team-frame-gap);
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: var(--team-card-height);
}

.team-card--signal {
  --team-accent: #fea12a;
  --team-accent-rgb: 254, 161, 42;
  --team-copy-accent: #ffffff;
  --team-copy-accent-rgb: 255, 255, 255;
  --team-line-soft: rgba(254, 161, 42, 0.44);
  --team-glow: rgba(254, 161, 42, 0.2);
  border-color: transparent;
}

.team-card--signal::after {
  content: "";
  position: absolute;
  inset: auto -14% -22% auto;
  width: 66%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--team-accent-rgb), 0.22), transparent 68%);
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
}

.team-card-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: calc(var(--team-card-height) - (var(--team-frame-gap) * 2));
  border-radius: calc(var(--team-card-radius) - 2px);
  overflow: visible;
  background:
    radial-gradient(circle at 88% 0, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(8, 8, 8, 0.98));
  box-shadow: var(--shadow-sm);
}

.team-card:not(.team-card--locked) .team-card-shell {
  background: transparent;
  box-shadow: none;
}

.team-card-laser-frame {
  position: absolute;
  inset: calc(var(--team-frame-gap) * -3.6);
  z-index: 3;
  pointer-events: none;
  border-radius: calc(var(--team-card-radius) + 24px);
  overflow: hidden;
}

.team-card-laser-frame svg {
  display: block;
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 6px var(--team-accent))
    drop-shadow(0 0 14px var(--team-glow));
}

.team-card-laser-frame::before,
.team-card-laser-frame::after {
  content: none;
}

.team-card-laser-track,
.team-card-laser-beam {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.team-card-laser-track {
  stroke: var(--team-line-soft);
  stroke-width: 1.15;
  opacity: 0.78;
}

.team-card-laser-beam {
  stroke: var(--team-accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 16 84;
  animation: store-frame-trace 1.8s linear infinite;
}

.team-card--red {
  --team-accent: #ff0000;
  --team-accent-rgb: 255, 0, 0;
  --team-copy-accent: #ff0000;
  --team-copy-accent-rgb: 255, 0, 0;
  --team-line-soft: rgba(255, 0, 0, 0.52);
  --team-glow: rgba(255, 0, 0, 0.24);
}

.team-card--pink {
  --team-accent: #ee82ee;
  --team-accent-rgb: 238, 130, 238;
  --team-copy-accent: #ee82ee;
  --team-copy-accent-rgb: 238, 130, 238;
  --team-line-soft: rgba(238, 130, 238, 0.48);
  --team-glow: rgba(238, 130, 238, 0.24);
}

.team-card--green {
  --team-accent: #00ff00;
  --team-accent-rgb: 0, 255, 0;
  --team-copy-accent: #00ff00;
  --team-copy-accent-rgb: 0, 255, 0;
  --team-line-soft: rgba(0, 255, 0, 0.48);
  --team-glow: rgba(0, 255, 0, 0.24);
}

.team-card--yellow {
  --team-accent: #ffff00;
  --team-accent-rgb: 255, 255, 0;
  --team-copy-accent: #ffff00;
  --team-copy-accent-rgb: 255, 255, 0;
  --team-line-soft: rgba(255, 255, 0, 0.48);
  --team-glow: rgba(255, 255, 0, 0.24);
}

.team-card--indigo {
  --team-accent: #4b0082;
  --team-accent-rgb: 75, 0, 130;
  --team-copy-accent: #4b0082;
  --team-copy-accent-rgb: 75, 0, 130;
  --team-line-soft: rgba(75, 0, 130, 0.52);
  --team-glow: rgba(75, 0, 130, 0.26);
}

.team-card--blue {
  --team-accent: #0000ff;
  --team-accent-rgb: 0, 0, 255;
  --team-copy-accent: #0000ff;
  --team-copy-accent-rgb: 0, 0, 255;
  --team-line-soft: rgba(0, 0, 255, 0.5);
  --team-glow: rgba(0, 0, 255, 0.26);
}

.team-card--orange {
  --team-accent: #ff8000;
  --team-accent-rgb: 255, 128, 0;
  --team-copy-accent: #ff8000;
  --team-copy-accent-rgb: 255, 128, 0;
  --team-line-soft: rgba(255, 128, 0, 0.5);
  --team-glow: rgba(255, 128, 0, 0.24);
}

.team-card--grey,
.team-card--mono {
  --team-accent: #ffffff;
  --team-accent-rgb: 255, 255, 255;
  --team-copy-accent: #ffffff;
  --team-copy-accent-rgb: 255, 255, 255;
  --team-line-soft: rgba(255, 255, 255, 0.42);
  --team-glow: rgba(255, 255, 255, 0.18);
}

.team-card-media-link {
  display: block;
  color: inherit;
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px) 0 0;
  overflow: hidden;
  height: 17.6rem;
  flex-shrink: 0;
}

.team-card-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  border-radius: calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.team-card-tier-badge {
  --tier-rgb: var(--team-accent-rgb);
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tier-rgb), 0.46);
  background:
    linear-gradient(180deg, rgba(var(--tier-rgb), 0.26), rgba(0, 0, 0, 0.24)),
    rgba(10, 10, 10, 0.84);
  color: var(--team-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 14px rgba(var(--tier-rgb), 0.18);
  backdrop-filter: blur(6px);
}

.team-card-tier-badge--red {
  --tier-rgb: 255, 0, 0;
}

.team-card-tier-badge--orange {
  --tier-rgb: 255, 128, 0;
}

.team-card-tier-badge--green {
  --tier-rgb: 0, 255, 0;
}

.team-card-tier-badge--pink {
  --tier-rgb: 238, 130, 238;
}

.team-card-tier-badge--yellow {
  --tier-rgb: 255, 255, 0;
}

.team-card-tier-badge--indigo {
  --tier-rgb: 75, 0, 130;
}

.team-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1);
  transition: transform 0.28s ease;
}

.team-card-media-link:hover .team-card-photo,
.team-card-media-link:focus-visible .team-card-photo {
  transform: scale(1.03);
}

.team-card--luke .team-card-photo,
.team-hero-avatar--luke img,
.team-legacy-tile--luke img {
  object-position: center 9%;
}

.team-card--ariff .team-card-photo,
.team-hero-avatar--ariff img,
.team-legacy-tile--ariff img {
  object-position: center 8%;
}

.team-card--kylie .team-card-photo,
.team-hero-avatar--kylie img,
.team-legacy-tile--kylie img {
  object-position: center 10%;
}

.team-card--jenita .team-card-photo,
.team-hero-avatar--jenita img,
.team-legacy-tile--jenita img {
  object-position: center 9%;
}

.team-card--shobana .team-card-photo,
.team-hero-avatar--shobana img,
.team-legacy-tile--shobana img {
  object-position: center 9%;
}

.team-card-media--locked {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(11, 11, 14, 0.98), rgba(2, 2, 4, 1));
}

.team-card--blue .team-card-media--locked {
  background:
    radial-gradient(circle at 50% 12%, rgba(64, 148, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(5, 12, 28, 0.98), rgba(1, 3, 8, 1));
}

.team-card--red .team-card-media--locked {
  background:
    radial-gradient(circle at 50% 12%, rgba(230, 57, 70, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(24, 5, 7, 0.98), rgba(7, 1, 2, 1));
}

.team-card--pink .team-card-media--locked {
  background:
    radial-gradient(circle at 50% 12%, rgba(238, 130, 238, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(22, 8, 24, 0.98), rgba(8, 2, 10, 1));
}

.team-card--mono .team-card-media--locked {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(4, 4, 4, 1), rgba(0, 0, 0, 1));
}

.team-card-media--locked::before,
.team-card-media--locked::after {
  content: none;
}

.team-card-photo--locked {
  position: relative;
  z-index: 3;
  transform: none;
  filter: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 50% 108%, rgba(255, 255, 255, 0.05), transparent 38%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.98), rgba(1, 1, 2, 1));
}

.team-card--blue .team-card-photo--locked {
  background:
    radial-gradient(circle at 50% 16%, rgba(64, 148, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 108%, rgba(24, 84, 170, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.96), rgba(0, 2, 6, 1));
}

.team-card--red .team-card-photo--locked {
  background:
    radial-gradient(circle at 50% 16%, rgba(230, 57, 70, 0.18), transparent 24%),
    radial-gradient(circle at 50% 108%, rgba(126, 18, 31, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(20, 4, 6, 0.96), rgba(5, 1, 2, 1));
}

.team-card--pink .team-card-photo--locked {
  background:
    radial-gradient(circle at 50% 16%, rgba(238, 130, 238, 0.18), transparent 24%),
    radial-gradient(circle at 50% 108%, rgba(135, 52, 135, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(18, 6, 20, 0.96), rgba(5, 1, 6, 1));
}

.team-card--mono .team-card-photo--locked {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(3, 3, 3, 1), rgba(0, 0, 0, 1));
}

.team-card-photo-lockup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: none;
  filter: saturate(1.12) contrast(1.12) brightness(1.04);
}

.team-card-media-link:hover .team-card-photo--locked,
.team-card-media-link:focus-visible .team-card-photo--locked {
  transform: none;
}

.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  flex: 1;
  min-height: 0;
  padding: 0;
  background: none;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 0;
}

.team-card--locked .team-card-body {
  padding: 0;
  background: none;
}

.team-card--locked .team-card-media-link {
  margin: 0;
  height: 17.6rem;
  border-radius: calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px) 0 0;
}

.team-card--locked .team-card-media,
.team-card--locked .team-card-photo--locked {
  border-radius: calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px) 0 0;
}

.team-card--locked .team-card-body {
  margin: 0;
}

.team-card--locked .team-card-meta-box {
  border-radius: 0 0 calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px);
  padding: 0.88rem 0.88rem 0.76rem;
}

.team-card h3 {
  width: 100%;
  margin: 0;
  font-size: 1.12rem;
  line-height: 0.98;
  text-shadow: none;
}

.team-card-title-link {
  color: inherit;
}

.team-card-meta-box {
  width: 100%;
  margin-top: 0;
  padding: 0.88rem 0.88rem 0.76rem;
  border-radius: 0 0 calc(var(--team-card-radius) - 2px) calc(var(--team-card-radius) - 2px);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(0, 0, 0, 0.94)),
    rgba(0, 0, 0, 0.92);
  box-shadow:
    inset 0 12px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
}

.team-card-meta-box h3 {
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--team-copy-accent);
}

.team-card-role {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--team-accent);
}

.team-card-lock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  margin-top: 0.1rem;
  padding: 0.48rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 164, 178, 0.22);
  background: rgba(158, 164, 178, 0.08);
  color: #dbe0ea;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card-lock-pill::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dbe0ea' d='M17 9h-1V7a4 4 0 1 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-6 0V7a2 2 0 1 1 4 0v2h-4Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.team-card-fact {
  margin-top: 0.36rem;
  padding-top: 0.36rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.46;
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-card-fact strong {
  color: var(--team-copy-accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card--locked .team-card-fact {
  color: var(--team-copy-accent);
  border-top-color: rgba(var(--team-accent-rgb), 0.22);
}

.team-card--locked .team-card-fact strong {
  color: var(--team-copy-accent);
}

.team-card--ariff {
  --team-copy-accent: #d4a64a;
  --team-copy-accent-rgb: 212, 166, 74;
  --team-accent: #d4a64a;
  --team-accent-rgb: 212, 166, 74;
  --team-line-soft: rgba(212, 166, 74, 0.5);
  --team-glow: rgba(212, 166, 74, 0.22);
}

.team-card--luke {
  --team-copy-accent: #ff8000;
  --team-copy-accent-rgb: 255, 128, 0;
  --team-accent: #ff8000;
  --team-accent-rgb: 255, 128, 0;
  --team-line-soft: rgba(255, 128, 0, 0.5);
  --team-glow: rgba(255, 128, 0, 0.24);
}

.team-card--kylie {
  --team-copy-accent: #06a899;
  --team-copy-accent-rgb: 6, 168, 153;
  --team-accent: #06a899;
  --team-accent-rgb: 6, 168, 153;
  --team-line-soft: rgba(6, 168, 153, 0.48);
  --team-glow: rgba(6, 168, 153, 0.22);
}

.team-card--jenita {
  --team-copy-accent: #c020a0;
  --team-copy-accent-rgb: 192, 32, 160;
  --team-accent: #c020a0;
  --team-accent-rgb: 192, 32, 160;
  --team-line-soft: rgba(192, 32, 160, 0.52);
  --team-glow: rgba(192, 32, 160, 0.26);
}

.team-card--shobana {
  --team-copy-accent: #ffff00;
  --team-copy-accent-rgb: 255, 255, 0;
  --team-accent: #ffff00;
  --team-accent-rgb: 255, 255, 0;
  --team-line-soft: rgba(255, 255, 0, 0.5);
  --team-glow: rgba(255, 255, 0, 0.24);
}

.team-card--ariff .team-card-meta-box h3,
.team-card--ariff .team-card-fact strong {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
}

.team-card--luke .team-card-tier-badge,
.team-card--kylie .team-card-tier-badge,
.team-card--jenita .team-card-tier-badge,
.team-card--shobana .team-card-tier-badge,
.team-card--ariff .team-card-tier-badge {
  --tier-rgb: var(--team-accent-rgb);
  color: var(--team-accent);
}

.team-card--ariff .team-card-title-link {
  color: var(--team-copy-accent);
  -webkit-text-stroke: 0;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.6),
    0 1px 6px rgba(255, 255, 255, 0.12);
}


.team-card-actions {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.3rem;
  width: 100%;
}

.team-card-schedule-link {
  width: 100%;
  justify-content: center;
  border-color: rgba(var(--team-accent-rgb), 0.28);
}

.team-card .btn {
  min-height: 2.3rem;
  padding: 0.58rem 0.7rem;
  font-size: 0.62rem;
}

.team-card-link {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

.coach-schedule-modal {
  --coach-schedule-accent: #fea12a;
  --coach-schedule-accent-rgb: 254, 161, 42;
  --coach-schedule-accent-ink: #120800;
  position: fixed;
  inset: 0;
  z-index: 15000;
  display: none;
  place-items: center;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  overflow: auto;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.coach-schedule-modal.open {
  display: grid !important;
}

body.coach-schedule-open {
  overflow: hidden;
}

html.coach-schedule-open {
  overflow: hidden;
}

.coach-schedule-backdrop {
  position: fixed;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.28);
}

.coach-schedule-panel {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 1.6rem));
  margin: 0;
  max-height: min(88vh, 980px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% -12%, rgba(var(--coach-schedule-accent-rgb), 0.16), transparent 30%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(6, 6, 6, 0.995));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 1.15rem;
  place-self: center;
}

.coach-schedule-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.coach-schedule-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coach-schedule-accent);
}

.coach-schedule-copy {
  margin-top: 0.55rem;
  max-width: 62ch;
  color: rgba(255, 247, 235, 0.82);
}

.coach-schedule-grid,
.coach-schedule-week {
  margin-top: 1rem;
  min-height: 0;
}

.coach-schedule-calendar-scroll {
  overflow: auto;
  min-height: 0;
  max-height: min(60vh, 940px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(8, 8, 8, 0.96)),
    rgba(6, 6, 6, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.coach-schedule-calendar {
  display: grid;
  grid-template-columns: 86px minmax(840px, 1fr);
  grid-template-rows: 72px auto;
  min-width: max-content;
}

.coach-schedule-corner {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.95rem 0.55rem 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(12, 12, 12, 0.98)),
    rgba(10, 10, 10, 0.98);
  color: rgba(255, 232, 205, 0.86);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-schedule-header-row {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
}

.coach-schedule-header-cell {
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: center;
  min-height: 72px;
  padding: 0.95rem 0.4rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(12, 12, 12, 0.98)),
    rgba(10, 10, 10, 0.98);
}

.coach-schedule-header-cell + .coach-schedule-header-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-schedule-header-day {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 228, 195, 0.84);
}

.coach-schedule-time-rail {
  position: relative;
  min-height: calc(var(--coach-schedule-hours) * var(--coach-schedule-hour-size));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent var(--coach-schedule-hour-size)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(9, 9, 9, 0.96));
}

.coach-schedule-time-label {
  position: absolute;
  left: 0.7rem;
  width: calc(100% - 1rem);
  transform: translateY(-50%);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 239, 220, 0.58);
}

.coach-schedule-time-label.is-terminal {
  transform: translateY(-100%);
}

.coach-schedule-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  min-height: calc(var(--coach-schedule-hours) * var(--coach-schedule-hour-size));
}

.coach-schedule-board-day {
  position: relative;
  min-height: calc(var(--coach-schedule-hours) * var(--coach-schedule-hour-size));
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent var(--coach-schedule-hour-size)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 5, 5, 0.1));
}

.coach-schedule-board-day + .coach-schedule-board-day {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-schedule-day-state {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-schedule-slot {
  position: absolute;
  left: 0.42rem;
  right: 0.42rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0;
  padding: 0.58rem 0.62rem;
  border-radius: 14px;
  border: 1px solid rgba(var(--coach-schedule-accent-rgb), 0.34);
  background:
    linear-gradient(180deg, rgba(var(--coach-schedule-accent-rgb), 0.28), rgba(var(--coach-schedule-accent-rgb), 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(24, 24, 24, 0.2));
  color: var(--coach-schedule-accent);
  text-align: center;
  cursor: pointer;
  box-shadow:
    0 16px 26px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.coach-schedule-slot:hover,
.coach-schedule-slot:focus-visible {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.16);
  border-color: rgba(var(--coach-schedule-accent-rgb), 0.6);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--coach-schedule-accent-rgb), 0.18),
    0 0 18px rgba(var(--coach-schedule-accent-rgb), 0.16);
  outline: none;
}

.coach-schedule-slot-status {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 242, 226, 0.76);
}

.coach-schedule-note {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.coach-schedule-panel .section-actions {
  margin-top: 1rem;
}

.coach-schedule-panel .btn-primary {
  border-color: rgba(var(--coach-schedule-accent-rgb), 0.66);
  background: linear-gradient(140deg, var(--coach-schedule-accent), rgba(var(--coach-schedule-accent-rgb), 0.72));
  color: var(--coach-schedule-accent-ink);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(var(--coach-schedule-accent-rgb), 0.42),
    0 0 22px rgba(var(--coach-schedule-accent-rgb), 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -5px 10px rgba(0, 0, 0, 0.12);
}

.coach-schedule-panel .btn-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%);
}

.coach-schedule-panel .btn-primary::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.14));
}

.coach-schedule-panel .btn-primary:hover {
  border-color: rgba(var(--coach-schedule-accent-rgb), 0.78);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(var(--coach-schedule-accent-rgb), 0.5),
    0 0 28px rgba(var(--coach-schedule-accent-rgb), 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -7px 13px rgba(0, 0, 0, 0.14);
}

.coach-schedule-panel .btn-ghost {
  border-color: rgba(var(--coach-schedule-accent-rgb), 0.4);
  color: var(--coach-schedule-accent);
  background:
    linear-gradient(180deg, rgba(var(--coach-schedule-accent-rgb), 0.16), rgba(var(--coach-schedule-accent-rgb), 0.08)),
    linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(6, 6, 6, 0.96));
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--coach-schedule-accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.coach-schedule-panel .btn-ghost::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%);
}

.coach-schedule-panel .btn-ghost::after {
  background:
    linear-gradient(90deg, rgba(var(--coach-schedule-accent-rgb), 0.12), transparent 16%, transparent 84%, rgba(var(--coach-schedule-accent-rgb), 0.12));
}

.coach-schedule-panel .btn-ghost:hover {
  border-color: rgba(var(--coach-schedule-accent-rgb), 0.56);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(var(--coach-schedule-accent-rgb), 0.14),
    0 0 20px rgba(var(--coach-schedule-accent-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.team-selection-banner {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: clamp(1.4rem, 4vw, 2.4rem) calc(50% - 50vw) 0;
  min-height: clamp(30rem, 56vw, 46rem);
  display: grid;
  place-items: start center;
  padding: clamp(3.2rem, 7vw, 5.2rem) var(--site-pad) clamp(8rem, 18vw, 12rem);
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.04), rgba(4, 4, 4, 0.16)),
    var(--surface);
}

.team-selection-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.team-selection-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transform: none;
  display: block;
}

.team-selection-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.34) 0%,
      rgba(4, 4, 4, 0.18) 26%,
      rgba(5, 5, 5, 0.22) 58%,
      rgba(8, 8, 8, 0.52) 100%
    ),
    linear-gradient(
      90deg,
      rgba(4, 4, 4, 0.42) 0%,
      rgba(4, 4, 4, 0.1) 24%,
      rgba(4, 4, 4, 0.08) 76%,
      rgba(4, 4, 4, 0.36) 100%
    );
  z-index: 0;
  pointer-events: none;
}

.team-selection-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46rem 18rem at 50% 82%, rgba(255, 255, 255, 0.06), transparent 72%),
    radial-gradient(36rem 16rem at 16% 18%, rgba(255, 255, 255, 0.03), transparent 72%),
    radial-gradient(36rem 16rem at 84% 18%, rgba(255, 255, 255, 0.03), transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.team-selection-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  width: min(82rem, 100%);
  align-content: start;
  padding-top: clamp(0.4rem, 2vw, 1.2rem);
}

.team-selection-banner h2 {
  width: auto;
  max-width: none;
  margin: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6.4vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.7);
}

.team-selection-banner h2 .title-highlight {
  display: inline-block;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  filter: saturate(1.12) brightness(1.12);
  text-shadow: none;
}

.team-selection-legacy {
  margin: 0.95rem 0 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.44);
}

.team-selection-banner .section-actions {
  margin-top: 1.3rem;
  justify-content: center;
}

.coach-detail-hero {
  display: grid;
  gap: 0.72rem;
}

.coach-detail-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.7rem, 11vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-top: 0.16rem;
}

.coach-detail-hero .kicker {
  margin: 0;
  line-height: 1;
}

.coach-detail-hero p {
  max-width: 60ch;
  margin: 0;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.coach-gallery-section {
  gap: 0.7rem;
}

.coach-gallery-section > h2 {
  display: none;
}

.coach-detail-grid {
  display: grid;
  gap: 0.85rem;
}

.coach-detail-card {
  min-width: 0;
}

.coach-detail-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.coach-detail-card p {
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.coach-persona-section {
  gap: 0.95rem;
}

.coach-persona-grid {
  display: grid;
  gap: 0.85rem;
}

.coach-persona-card {
  min-width: 0;
}

.coach-persona-card h3 {
  margin: 0;
}

.coach-persona-card p {
  margin-top: 0.42rem;
  color: var(--ink-muted);
}

.coach-style-section {
  display: block;
}

.coach-style-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.coach-emblem-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.8rem;
  background:
    radial-gradient(circle at center, rgba(var(--coach-personal-accent-rgb), 0.16), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 78%);
}

.coach-emblem-art {
  display: block;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(var(--coach-personal-accent-rgb), 0.2))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
}

.coach-detail-quote {
  margin: 0.4rem 0 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  line-height: 0.96;
  color: #fff5e6;
}

.coach-detail-quote-mark {
  color: var(--accent);
}

.coach-gallery-slider {
  --coach-gallery-feature-width: 100%;
  --coach-gallery-feature-height: min(58vh, 33rem);
  --coach-gallery-dot-gap: 0.64rem;
  --coach-gallery-dot-visible: 5;
  --coach-gallery-deck-height: 5.2rem;
  --coach-gallery-featured-gap: 0.85rem;
  --coach-gallery-featured-image-height: 12.1rem;
  margin-top: 0.35rem;
  display: grid;
  justify-items: stretch;
  gap: 0.85rem;
  width: 100%;
}

.coach-gallery-slider.is-portrait {
  --coach-gallery-feature-width: min(100%, 37rem);
  --coach-gallery-feature-height: min(78vh, 50rem);
}

.coach-gallery-slider.is-landscape {
  --coach-gallery-feature-width: 100%;
  --coach-gallery-feature-height: min(56vh, 31rem);
}

.coach-gallery-slider.is-square {
  --coach-gallery-feature-width: min(100%, 44rem);
  --coach-gallery-feature-height: min(62vh, 38rem);
}

.coach-gallery-viewport {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  margin: 0 auto;
}

.coach-gallery-track {
  display: block;
  width: min(100%, var(--coach-gallery-feature-width));
  max-width: 100%;
  justify-self: start;
}

.coach-gallery-slide {
  margin: 0;
  width: 100%;
  display: none;
  gap: 0.72rem;
  justify-items: start;
}

.coach-gallery-slide.is-active {
  display: grid;
}

.coach-gallery-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 88% 0, rgba(254, 161, 42, 0.12), transparent 36%),
    rgba(10, 10, 10, 0.92);
  box-shadow: var(--shadow-sm);
  width: min(100%, var(--coach-gallery-feature-width));
  height: var(--coach-gallery-feature-height);
  max-width: 100%;
}

.coach-gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.coach-gallery-caption {
  width: min(100%, var(--coach-gallery-feature-width));
  color: var(--ink-muted);
  text-align: left;
  font-size: 0.82rem;
  display: none;
}

.coach-gallery-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem;
  width: min(100%, var(--coach-gallery-feature-width));
  justify-self: start;
  min-height: var(--coach-gallery-deck-height);
}

.coach-gallery-nav {
  display: none;
}

.coach-gallery-featured {
  display: grid;
  gap: var(--coach-gallery-featured-gap);
  align-content: start;
}

.coach-gallery-featured-item {
  display: block;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0, rgba(254, 161, 42, 0.08), transparent 34%),
    rgba(10, 10, 10, 0.82);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.coach-gallery-featured-item:hover,
.coach-gallery-featured-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 171, 0.32);
  outline: none;
}

.coach-gallery-featured-item.is-active {
  border-color: rgba(255, 201, 138, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 201, 138, 0.18),
    0 0 20px rgba(241, 89, 34, 0.14);
}

.coach-gallery-featured-item img {
  display: block;
  width: 100%;
  height: var(--coach-gallery-featured-image-height);
  object-fit: cover;
  object-position: center 20%;
}

.coach-gallery-featured-item span {
  display: none;
}

@media (min-width: 980px) {
  .coach-persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coach-style-grid {
    grid-template-columns: minmax(0, 1fr) 18rem;
    align-items: center;
  }

  .coach-gallery-slider.is-portrait,
  .coach-gallery-slider.is-landscape,
  .coach-gallery-slider.is-square {
    --coach-gallery-feature-width: 100%;
  }

  .coach-gallery-slider {
    --coach-gallery-dot-visible: 6;
    --coach-gallery-deck-height: 5.35rem;
    --coach-gallery-featured-image-height: 10.2rem;
    grid-template-columns: minmax(0, 1fr) 248px;
    grid-template-areas:
      "viewport featured"
      "controls featured";
    align-items: start;
    column-gap: 0.95rem;
  }

  .coach-gallery-viewport {
    grid-area: viewport;
    width: 100%;
  }

  .coach-gallery-controls {
    grid-area: controls;
    width: 100%;
  }

  .coach-gallery-featured {
    grid-area: featured;
    position: static;
    width: 248px;
  }

  .coach-gallery-track,
  .coach-gallery-frame,
  .coach-gallery-controls {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 979px) {
  .coach-persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coach-gallery-slider {
    --coach-gallery-dot-visible: 4;
    --coach-gallery-deck-height: 5rem;
    --coach-gallery-featured-image-height: 7.8rem;
  }

  .coach-gallery-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coach-gallery-featured-item img {
    height: var(--coach-gallery-featured-image-height);
  }
}

@media (max-width: 639px) {
  .coach-persona-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .coach-style-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .coach-emblem-art {
    width: min(100%, 12rem);
  }
}

.coach-gallery-dots {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - ((var(--coach-gallery-dot-visible) - 1) * var(--coach-gallery-dot-gap))) /
      var(--coach-gallery-dot-visible)
  );
  grid-auto-rows: var(--coach-gallery-deck-height);
  gap: var(--coach-gallery-dot-gap);
  overflow-x: auto;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 0.05rem 0 0.1rem;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.coach-gallery-dot {
  position: relative;
  width: 100%;
  height: var(--coach-gallery-deck-height);
  padding: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0, rgba(254, 161, 42, 0.1), transparent 34%),
    rgba(12, 12, 12, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  scroll-snap-align: start;
}

.coach-gallery-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.coach-gallery-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.coach-gallery-dot.is-active {
  border-color: rgba(255, 201, 138, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 201, 138, 0.18),
    0 0 20px rgba(241, 89, 34, 0.16);
  transform: translateY(-2px);
}

.coach-gallery-dot:focus-visible {
  outline: 2px solid rgba(255, 213, 166, 0.5);
  outline-offset: 2px;
}

.coach-mastery-lead {
  max-width: 58ch;
}

.coach-mastery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.2rem, 1fr));
  gap: 0.9rem;
}

.coach-mastery-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.56);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  min-height: 100%;
}

.coach-mastery-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 3.5rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--coach-personal-accent-rgb), 0.22);
  background:
    linear-gradient(180deg, rgba(var(--coach-personal-accent-rgb), 0.16), rgba(0, 0, 0, 0.28)),
    rgba(10, 10, 10, 0.82);
  color: var(--coach-personal-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-mastery-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.02;
}

.coach-mastery-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.coach-mastery-card.is-earned {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--coach-personal-accent-rgb), 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.58);
}

.coach-mastery-card.is-current {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.42);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(var(--coach-personal-accent-rgb), 0.16),
    0 0 26px rgba(var(--coach-personal-accent-rgb), 0.12);
}

.coach-mastery-card.is-next {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--coach-personal-accent-rgb), 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.56);
}

.coach-mastery-card.is-upcoming {
  opacity: 0.72;
}

.coach-mastery-level {
  color: var(--coach-personal-ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-mastery-state {
  color: var(--coach-personal-copy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.coach-detail-page--luke {
  --coach-personal-accent: #ff8000;
  --coach-personal-accent-rgb: 255, 128, 0;
  --coach-personal-ink: #fff3e5;
  --coach-personal-ink-soft: #ffd1a0;
  --coach-personal-copy: rgba(255, 243, 229, 0.76);
}

body.coach-detail-page--shobana {
  --coach-personal-accent: #f2e85a;
  --coach-personal-accent-rgb: 242, 232, 90;
  --coach-personal-ink: #fffde4;
  --coach-personal-ink-soft: #fff1a6;
  --coach-personal-copy: rgba(255, 253, 228, 0.76);
}

body.coach-detail-page--jenita {
  --coach-personal-accent: #c020a0;
  --coach-personal-accent-rgb: 192, 32, 160;
  --coach-personal-ink: #fff0fb;
  --coach-personal-ink-soft: #f0a9de;
  --coach-personal-copy: rgba(255, 240, 251, 0.76);
}

body.coach-detail-page--amree {
  --coach-personal-accent: #d4a64a;
  --coach-personal-accent-rgb: 212, 166, 74;
  --coach-personal-ink: #fff7ea;
  --coach-personal-ink-soft: #e8ca86;
  --coach-personal-copy: rgba(255, 247, 234, 0.76);
}

body.coach-detail-page--kylie {
  --coach-personal-accent: #06a899;
  --coach-personal-accent-rgb: 6, 168, 153;
  --coach-personal-ink: #e6fffb;
  --coach-personal-ink-soft: #9ee9df;
  --coach-personal-copy: rgba(230, 255, 251, 0.76);
}

body.coach-detail-page--personalized .coach-detail-hero {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.22);
  background:
    radial-gradient(circle at 88% 0, rgba(var(--coach-personal-accent-rgb), 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(var(--coach-personal-accent-rgb), 0.08)),
    rgba(6, 6, 6, 0.88);
}

body.coach-detail-page .coach-gallery-controls,
body.coach-detail-page .coach-gallery-track,
body.coach-detail-page .coach-gallery-frame {
  justify-self: start;
}

body.coach-detail-page--personalized .coach-detail-hero {
  gap: 0.82rem;
}

body.coach-detail-page--personalized .coach-detail-hero .kicker {
  margin: 0;
}

body.coach-detail-page--personalized .coach-detail-hero h1 {
  margin: 0.22rem 0 0;
  line-height: 0.88;
}

body.coach-detail-page--personalized .coach-detail-hero p {
  margin: 0.34rem 0 0;
}

.coach-fit-signature {
  display: grid;
  gap: 0.85rem;
}

.coach-fit-signature h2 {
  margin: 0;
}

.coach-fit-signature-list {
  display: grid;
  gap: 0;
}

.coach-fit-signature-list > div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(var(--coach-personal-accent-rgb), 0.18);
}

.coach-fit-signature-list > div:last-child {
  border-bottom: 1px solid rgba(var(--coach-personal-accent-rgb), 0.18);
}

.coach-fit-signature-list p {
  margin: 0;
  color: var(--coach-personal-ink);
  max-width: 44rem;
}

.coach-fit-sigil {
  position: relative;
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.3rem;
  border-radius: 0.18rem;
  transform: rotate(45deg);
  background: linear-gradient(145deg, var(--coach-personal-accent), var(--coach-personal-ink-soft));
  box-shadow:
    0 0 0 6px rgba(var(--coach-personal-accent-rgb), 0.11),
    0 0 18px rgba(var(--coach-personal-accent-rgb), 0.18);
}

.coach-fit-sigil::after {
  content: "";
  position: absolute;
  inset: 0.21rem;
  border-radius: 0.1rem;
  background: rgba(10, 10, 10, 0.82);
}

.coach-signature-quote-section {
  text-align: center;
}

.coach-signature-quote {
  max-width: 14ch;
  margin: 0 auto;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff5e6;
  text-wrap: balance;
}

body.coach-detail-page .reveal {
  opacity: 1;
  transform: none;
}

body.coach-detail-page--personalized .kicker {
  color: var(--coach-personal-accent);
  text-shadow: 0 0 14px rgba(var(--coach-personal-accent-rgb), 0.16);
}

body.coach-detail-page--personalized .coach-accent-word {
  color: var(--coach-personal-ink-soft);
}

body.coach-detail-page--personalized .coach-detail-hero h1 {
  color: var(--coach-personal-ink);
}

body.coach-detail-page--personalized .coach-detail-hero p,
body.coach-detail-page--personalized .coach-gallery-caption {
  color: var(--coach-personal-copy);
}

body.coach-detail-page--personalized .card h3,
body.coach-detail-page--personalized .coach-detail-card h2 {
  color: var(--coach-personal-ink-soft);
}

body.coach-detail-page--personalized .coach-persona-card p {
  color: var(--coach-personal-copy);
}

body.coach-detail-page--personalized .chip {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.24);
  color: var(--coach-personal-ink);
  background:
    linear-gradient(180deg, rgba(var(--coach-personal-accent-rgb), 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

body.coach-detail-page--personalized .chip.chip--accent {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.34);
  color: var(--coach-personal-accent);
  background:
    linear-gradient(180deg, rgba(var(--coach-personal-accent-rgb), 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

body.coach-detail-page--personalized .coach-detail-quote-mark {
  color: var(--coach-personal-accent);
}

body.coach-detail-page--personalized .coach-gallery-frame {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.18);
  background:
    radial-gradient(circle at 88% 0, rgba(var(--coach-personal-accent-rgb), 0.16), transparent 36%),
    rgba(10, 10, 10, 0.92);
}

body.coach-detail-page--personalized .coach-gallery-nav {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.28);
}

body.coach-detail-page--personalized .coach-gallery-nav:hover,
body.coach-detail-page--personalized .coach-gallery-nav:focus-visible {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.46);
  background:
    linear-gradient(180deg, rgba(var(--coach-personal-accent-rgb), 0.14), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 20, 0.92);
}

body.coach-detail-page--personalized .coach-gallery-dot.is-active {
  background: linear-gradient(135deg, var(--coach-personal-accent), var(--coach-personal-ink-soft));
}

body.coach-detail-page--personalized .coach-gallery-dot:focus-visible {
  outline-color: rgba(var(--coach-personal-accent-rgb), 0.42);
}

body.coach-detail-page--personalized .coach-gallery-dot.is-active {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.56);
  box-shadow:
    0 0 0 1px rgba(var(--coach-personal-accent-rgb), 0.18),
    0 0 22px rgba(var(--coach-personal-accent-rgb), 0.18);
}

body.coach-detail-page--personalized .btn-primary,
body.coach-detail-page--personalized .btn-ghost {
  color: var(--coach-personal-ink);
  border-color: rgba(var(--coach-personal-accent-rgb), 0.5);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(var(--coach-personal-accent-rgb), 0.2),
    0 0 24px rgba(var(--coach-personal-accent-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -8px 16px rgba(0, 0, 0, 0.38);
}

body.coach-detail-page--personalized .btn-primary {
  background:
    linear-gradient(145deg, rgba(var(--coach-personal-accent-rgb), 0.72), rgba(0, 0, 0, 0.84) 62%, rgba(0, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

body.coach-detail-page--personalized .btn-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(var(--coach-personal-accent-rgb), 0.18), rgba(0, 0, 0, 0.9) 72%);
}

body.coach-detail-page--personalized .btn-primary::after {
  background:
    linear-gradient(90deg, rgba(var(--coach-personal-accent-rgb), 0.18), transparent 18%, transparent 82%, rgba(var(--coach-personal-accent-rgb), 0.14)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.26));
}

body.coach-detail-page--personalized .btn-primary:hover,
body.coach-detail-page--personalized .btn-primary:focus-visible {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.72);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(var(--coach-personal-accent-rgb), 0.28),
    0 0 30px rgba(var(--coach-personal-accent-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -10px 18px rgba(0, 0, 0, 0.46);
}

body.coach-detail-page--personalized .btn-ghost {
  background:
    linear-gradient(145deg, rgba(var(--coach-personal-accent-rgb), 0.24), rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 54%);
}

body.coach-detail-page--personalized .btn-ghost::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(145deg, rgba(var(--coach-personal-accent-rgb), 0.08), rgba(0, 0, 0, 0.92) 76%);
}

body.coach-detail-page--personalized .btn-ghost::after {
  background:
    linear-gradient(90deg, rgba(var(--coach-personal-accent-rgb), 0.12), transparent 18%, transparent 82%, rgba(var(--coach-personal-accent-rgb), 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.16));
}

body.coach-detail-page--personalized .btn-ghost:hover,
body.coach-detail-page--personalized .btn-ghost:focus-visible {
  border-color: rgba(var(--coach-personal-accent-rgb), 0.64);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(var(--coach-personal-accent-rgb), 0.22),
    0 0 26px rgba(var(--coach-personal-accent-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -9px 16px rgba(0, 0, 0, 0.34);
}

@media (min-width: 760px) {
  .coach-mastery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .page-hero.program-hero.program-hero--copy-only,
  .team-page-hero.program-hero.program-hero--copy-only,
  body.page-1on1-refined .page-hero--1on1.program-hero.program-hero--copy-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-page-hero.program-hero,
  body.page-1on1-refined .page-hero--1on1.program-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .team-page-hero.program-hero {
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 22.25rem);
    align-items: stretch;
  }

  body.page-1on1-refined .page-hero--1on1.program-hero {
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 22.25rem);
    align-items: stretch;
  }

  .program-hero-cta {
    justify-content: flex-end;
  }

  body.page-1on1-refined .page-hero--1on1.program-hero .program-hero-copy {
    align-self: center;
  }

  .team-page-hero.program-hero .program-hero-copy {
    align-self: center;
  }

  body.page-1on1-refined .page-hero--1on1.program-hero .oneonone-hero-gallery {
    width: 100%;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .team-page-hero.program-hero .program-hero-gallery {
    width: 100%;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }

  .oneonone-fit-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.78fr);
  }

  .oneonone-fit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem 1.35rem;
    padding-left: 1rem;
  }

  .oneonone-fit-list li {
    margin-bottom: 0;
  }

  .program-focus-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.78fr);
  }

  .oneonone-fit-visual--image-only .program-card-photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 11 / 10;
  }

  .program-focus-visual--image-only .program-card-photo {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .program-focus-visual--natural .program-card-photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 11 / 10;
  }

  .program-focus-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem 1.35rem;
    padding-left: 1rem;
  }

  .program-focus-list li {
    margin-bottom: 0;
  }

  .facilities-gallery-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .facilities-gallery-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    grid-template-areas:
      "feature rail"
      "feature rail"
      "row row";
    align-items: stretch;
  }

  .facilities-gallery-feature {
    grid-area: feature;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .facilities-gallery-stage {
    min-height: 0;
  }

  .facilities-gallery-stage-image {
    height: 100%;
    min-height: 27rem;
    aspect-ratio: auto;
  }

  .facilities-gallery-rail {
    grid-area: rail;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .facilities-gallery-row {
    grid-area: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .oneonone-benefits-card,
  .oneonone-proof-panel,
  .oneonone-testimonial-panel,
  .oneonone-match-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oneonone-benefit-item:first-child,
  .oneonone-proof-item:first-child,
  .oneonone-testimonial-item:first-child,
  .oneonone-match-item:first-child,
  .oneonone-benefit-item:last-child,
  .oneonone-proof-item:last-child,
  .oneonone-testimonial-item:last-child,
  .oneonone-match-item:last-child,
  .oneonone-benefit-item,
  .oneonone-proof-item,
  .oneonone-testimonial-item,
  .oneonone-match-item {
    padding: 0 1rem;
  }

  .oneonone-benefit-item:first-child,
  .oneonone-proof-item:first-child,
  .oneonone-testimonial-item:first-child,
  .oneonone-match-item:first-child {
    padding-left: 0;
  }

  .oneonone-benefit-item:last-child,
  .oneonone-proof-item:last-child,
  .oneonone-testimonial-item:last-child,
  .oneonone-match-item:last-child {
    padding-right: 0;
  }

  .oneonone-benefit-item + .oneonone-benefit-item,
  .oneonone-proof-item + .oneonone-proof-item,
  .oneonone-testimonial-item + .oneonone-testimonial-item,
  .oneonone-match-item + .oneonone-match-item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .program-benefits-card,
  .program-support-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-delivery-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .program-benefit-item:first-child,
  .program-support-item:first-child,
  .program-delivery-item:first-child,
  .program-benefit-item:last-child,
  .program-support-item:last-child,
  .program-delivery-item:last-child,
  .program-benefit-item,
  .program-support-item,
  .program-delivery-item {
    padding: 0 1rem;
  }

  .program-benefit-item:first-child,
  .program-support-item:first-child,
  .program-delivery-item:first-child {
    padding-left: 0;
  }

  .program-benefit-item:last-child,
  .program-support-item:last-child,
  .program-delivery-item:last-child {
    padding-right: 0;
  }

  .program-coach-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-benefit-item + .program-benefit-item,
  .program-support-item + .program-support-item,
  .program-delivery-item + .program-delivery-item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .program-coach-card {
    width: 29rem;
  }

  .team-page-hero:not(.team-page-hero--centered):not(.program-hero--copy-only) {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.78fr);
    align-items: stretch;
  }

  .legal-page .team-page-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-directory-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .coach-detail-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

@media (min-width: 720px) {
  .team-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 280px));
  }

  .coach-booking-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 280px));
  }
}

@media (min-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 280px));
  }
}

@media (max-width: 759px) {
  .team-card {
    --team-card-height: 20.8rem;
    padding: 0.34rem;
  }

  .coach-schedule-modal {
    padding: 0.5rem;
  }

  .coach-schedule-panel {
    width: min(100%, calc(100vw - 1rem));
    max-height: min(92vh, 980px);
    padding: 0.92rem;
  }

  .coach-schedule-calendar-scroll {
    max-height: 58vh;
    border-radius: 18px;
  }

  .coach-schedule-calendar {
    grid-template-columns: 72px minmax(770px, 1fr);
    grid-template-rows: 64px auto;
  }

  .coach-schedule-corner,
  .coach-schedule-header-cell {
    min-height: 64px;
    padding-top: 0.82rem;
    padding-bottom: 0.72rem;
  }

  .coach-schedule-header-label {
    font-size: 0.74rem;
  }

  .coach-schedule-time-label {
    left: 0.45rem;
    width: calc(100% - 0.7rem);
    font-size: 0.62rem;
  }

  .coach-schedule-slot {
    left: 0.3rem;
    right: 0.3rem;
    padding: 0.5rem 0.52rem;
  }

  .coach-schedule-slot-time {
    font-size: 0.68rem;
  }

  .team-page-hero--centered h1 {
    max-width: 11ch;
  }

  .team-card-body {
    min-height: 0;
    padding: 0;
  }

  .team-card-media-link {
    height: 16.2rem;
  }

  .team-page-hero--centered {
    justify-items: center;
    padding: 1.15rem 1rem 1.35rem;
  }

  .team-selection-banner {
    gap: 0.9rem;
  }

  .team-selection-banner {
    min-height: 17rem;
    padding-block: 2.8rem;
  }

  .team-selection-banner h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
    letter-spacing: 0.05em;
    white-space: normal;
  }

  .team-hero-metrics li {
    padding: 0.62rem 0.5rem;
  }

  .team-hero-metrics strong {
    font-size: 1.35rem;
  }

  .team-hero-metrics span {
    font-size: 0.72rem;
  }

  body.page-success-stories .filter-btn--all {
    margin-left: 0;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.75rem;
}

.chip {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.chip.chip--accent {
  border-color: rgba(254, 161, 42, 0.34);
  color: var(--accent);
  background:
    linear-gradient(180deg, rgba(254, 161, 42, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.chip.chip--accent strong {
  color: inherit;
}

.check-list,
.step-list,
.ticks {
  margin-top: 0.75rem;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.check-list li,
.step-list li,
.ticks li {
  margin-bottom: 0.42rem;
}

.step-list li::marker {
  color: var(--accent);
  font-weight: 700;
}

body.page-amber-balance .step-list li::marker {
  color: #ffd7a5;
}

.price-card .price {
  margin-top: 0.55rem;
  font-size: 1.25rem;
  color: var(--primary-strong);
}

body.page-amber-balance .price-card .price,
body.page-amber-balance .quote strong {
  color: #ffd7a5;
}

body.page-amber-balance.page-1on1-refined .oneonone-testimonial-panel strong {
  color: #fff;
}

.price-card .small {
  margin-top: 0.4rem;
  font-size: 0.88rem;
}

.quote {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(254, 161, 42, 0.12));
}

.quote strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--primary-strong);
}

.cta-band {
  margin-top: 1.4rem;
  padding: 1.1rem var(--site-pad);
  border-radius: var(--radius-md);
  border: 1px solid rgba(241, 89, 34, 0.45);
  background:
    linear-gradient(150deg, rgba(241, 89, 34, 0.94), rgba(254, 161, 42, 0.9)),
    var(--primary);
  color: #f7f9f8;
}

.cta-band h2,
.cta-band p {
  color: inherit;
}

.cta-band h2 + p {
  margin-top: 0.65rem;
}

.cta-band .btn-secondary,
.cta-band .btn-ghost {
  color: #f7f9f8;
}

.cta-band .btn-secondary {
  border-color: var(--line);
}

.cta-band .btn-secondary::before {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.cta-band .btn-secondary::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.cta-band .btn-ghost {
  border-color: rgba(255, 191, 127, 0.34);
}

.cta-band .btn-ghost::before {
  background:
    linear-gradient(160deg, rgba(255, 191, 127, 0.28), rgba(241, 89, 34, 0.92) 58%, rgba(110, 31, 0, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.program-next-step {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.2), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.12), transparent 28%),
    linear-gradient(180deg, rgb(11, 11, 11), rgb(6, 6, 6));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.program-next-step .kicker {
  color: var(--accent);
}

.split {
  display: grid;
  gap: 0.9rem;
}

.filter-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body.page-success-stories .case-grid {
  margin-top: 1rem;
}

body.page-success-stories .case-card h3 {
  color: var(--accent);
}

body.page-success-stories .filter-row {
  align-items: center;
}

body.page-success-stories .filter-btn--all {
  margin-left: auto;
}

.case-card-name,
.case-card-role {
  display: block;
}

.case-card-role {
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.story-grid-actions {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--surface);
  color: #ffffff;
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
}

.metric {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd9b8;
  font-weight: 700;
  font-size: 0.82rem;
}

.article-meta {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.blog-long-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.blog-long-grid h3 {
  font-size: 1.4rem;
  color: var(--primary-strong);
}

body.page-contact .page-hero--1on1.program-hero {
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.24), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.16), transparent 28%),
    linear-gradient(180deg, rgb(11, 11, 11), rgb(5, 5, 5));
}

body.page-contact .page-hero--1on1.program-hero h1 {
  max-width: 15ch;
}

body.page-contact .section.contact-grid--plain {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  gap: 1rem;
  align-items: stretch;
}

body.page-contact .contact-grid.contact-grid--plain {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

body.page-store-bulk .contact-grid.contact-grid--plain.bulk-order-grid {
  grid-template-columns: minmax(0, 1fr);
}

body.page-store-bulk .section.contact-grid--plain.bulk-order-grid {
  padding: 0;
}

body.page-contact .contact-grid.contact-grid--plain .contact-card {
  padding: 1.08rem 1.05rem;
}

.contact-card address {
  margin-top: 0.65rem;
  font-style: normal;
  color: var(--ink-muted);
}

.contact-card--details,
.contact-cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 16% 0, rgba(241, 89, 34, 0.2), transparent 42%),
    rgba(10, 10, 10, 0.92);
  border-color: rgba(255, 195, 133, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.contact-card--details address {
  color: rgba(255, 255, 255, 0.82);
}

.contact-address-highlight {
  display: block;
  margin-top: 0.72rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff2dc;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.contact-hours-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.contact-meta-kicker {
  display: inline-block;
  margin-top: 0;
}

.contact-hours-copy {
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(255, 235, 208, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phone-highlight {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 235, 208, 0.92);
}

.contact-phone-highlight a {
  color: #ffffff;
  text-decoration: none;
}

.contact-phone-highlight a:hover,
.contact-phone-highlight a:focus-visible {
  color: #ffe2b9;
}

.contact-cta-card h2,
.contact-cta-card p {
  color: inherit;
}

.contact-cta-card p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-cta-card .btn-secondary,
.contact-cta-card .btn-ghost {
  color: #f7f9f8;
}

.contact-cta-card .btn-secondary {
  border-color: var(--line);
}

.contact-cta-card .btn-secondary::before {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.contact-cta-card .btn-secondary::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.contact-cta-card .btn-ghost {
  border-color: rgba(255, 191, 127, 0.34);
}

.contact-cta-card .btn-ghost::before {
  background:
    linear-gradient(160deg, rgba(255, 191, 127, 0.28), rgba(241, 89, 34, 0.92) 58%, rgba(110, 31, 0, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.map-embed {
  margin-top: 0.75rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

.contact-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.95rem;
}

.input-row {
  display: grid;
  gap: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.38);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}

.coach-booking-chips {
  margin-top: 1rem;
}

.coach-booking-section {
  overflow: hidden;
}

.coach-booking-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.coach-booking-summary-card,
.coach-booking-form-card,
.coach-booking-thankyou {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 224, 189, 0.03)),
    rgba(10, 10, 10, 0.9);
}

.coach-booking-summary-list {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.coach-booking-summary-list div {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.coach-booking-summary-list dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 224, 190, 0.8);
}

.coach-booking-summary-list dd {
  margin: 0.28rem 0 0;
  color: #ffffff;
  font-size: 1rem;
}

.coach-booking-thankyou {
  text-align: center;
}

.coach-booking-thankyou p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.coach-booking-thankyou .section-actions {
  justify-content: center;
}

.contact-form input:disabled,
.contact-form select:disabled,
.contact-form textarea:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.3rem;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.7rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.site-footer-copy {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: auto;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255, 235, 211, 0.82);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.legal-doc {
  display: grid;
  gap: 1.15rem;
}

.legal-doc h2 + p,
.legal-doc h3 + p,
.legal-doc p + p {
  margin-top: 0.7rem;
}

.legal-doc h3 {
  margin-top: 0.15rem;
  font-size: 1.08rem;
  color: #fff6ea;
}

.legal-doc p,
.legal-doc li {
  color: rgba(255, 244, 232, 0.8);
  line-height: 1.72;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0.72rem 0 0;
  padding-left: 1.2rem;
}

.legal-doc li + li {
  margin-top: 0.52rem;
}

.legal-page .page-hero h1 {
  width: 100%;
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  text-align: center;
}

.legal-page .page-hero {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: 1rem 1.05rem 1.12rem;
}

.legal-page .team-hero-copy {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
}

.legal-page .team-hero-copy p {
  max-width: 58ch;
  margin-inline: auto;
}

.legal-page .reveal {
  opacity: 1;
  transform: none;
}

.legal-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.legal-meta span,
.legal-contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 160, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 241, 226, 0.82);
  font-size: 0.78rem;
}

.legal-summary {
  display: grid;
  gap: 1rem;
}

.legal-summary-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 160, 0.03)),
    rgba(10, 10, 10, 0.88);
}

.legal-card h2,
.legal-card h3 {
  margin-top: 0;
}

.legal-card h2 {
  margin-bottom: 0.95rem;
}

.legal-card ul,
.legal-card p {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 244, 232, 0.78);
}

.legal-card ul,
.legal-doc ul {
  list-style: none;
  padding-left: 0;
}

.legal-card li,
.legal-doc ul li {
  position: relative;
  padding-left: 1.08rem;
}

.legal-card li::before,
.legal-doc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f15922, #fea12a);
  box-shadow: 0 0 0 0.2rem rgba(241, 89, 34, 0.14);
}

.legal-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.legal-note {
  border-left: 3px solid rgba(254, 161, 42, 0.6);
  padding-left: 0.9rem;
  color: rgba(255, 244, 232, 0.82);
}

.legal-anchor-list {
  display: grid;
  gap: 0.55rem;
}

.legal-anchor-list a {
  color: #ffe0b6;
  font-weight: 600;
}

.legal-anchor-list a:hover,
.legal-anchor-list a:focus-visible {
  color: #ffffff;
  outline: none;
}

.floating-wa {
  position: fixed;
  left: auto;
  right: 1.1rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 6500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 12px;
  clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  padding: 0;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  color: #f3fffa;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 211, 150, 0.52),
    0 0 22px rgba(241, 89, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -5px 10px rgba(120, 38, 10, 0.28);
  border: 1px solid rgba(255, 208, 142, 0.5);
  font-weight: 700;
  letter-spacing: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-dota .floating-wa {
  position: fixed !important;
  left: auto !important;
  right: 1.1rem !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

.floating-wa::before {
  content: "";
  width: 30px;
  height: 30px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16.02 3.2c-7 0-12.68 5.68-12.68 12.69 0 2.24.59 4.43 1.71 6.35L3.2 28.8l6.74-1.77a12.68 12.68 0 0 0 6.08 1.55h.01c7 0 12.68-5.68 12.68-12.69A12.68 12.68 0 0 0 16.02 3.2Zm0 23.15h-.01a10.48 10.48 0 0 1-5.34-1.46l-.38-.22-4 1.05 1.07-3.9-.24-.4a10.45 10.45 0 1 1 9.9 4.93Zm5.73-7.83c-.31-.16-1.83-.9-2.11-1-.28-.1-.49-.16-.69.16-.2.31-.8 1-.98 1.21-.18.2-.36.23-.67.08-.31-.16-1.31-.48-2.5-1.52-.92-.82-1.55-1.82-1.73-2.13-.18-.31-.02-.48.13-.64.14-.14.31-.36.47-.54.15-.18.2-.31.31-.51.1-.2.05-.39-.03-.54-.08-.16-.69-1.67-.95-2.29-.25-.6-.5-.52-.69-.52h-.59c-.2 0-.51.08-.77.39-.26.31-1 1-.99 2.44 0 1.44 1.04 2.82 1.19 3.01.15.2 2.04 3.11 4.95 4.36.69.3 1.22.48 1.64.61.69.22 1.31.19 1.8.12.55-.08 1.83-.75 2.09-1.47.26-.72.26-1.33.18-1.46-.08-.13-.28-.2-.59-.36Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  flex: 0 0 auto;
}

.floating-wa:hover {
  transform: translateY(-50%) translateZ(0) scale(1.04);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 218, 166, 0.58),
    0 0 28px rgba(241, 89, 34, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -7px 13px rgba(120, 38, 10, 0.32);
}

.floating-wa:active {
  transform: translateY(-50%) scale(0.98);
}

.floating-wa--home {
  --floating-wa-open-width: 188px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s ease,
    gap 0.22s ease,
    box-shadow 0.22s ease;
}

.floating-wa--home::before {
  content: none;
}

.floating-wa-label {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fffdf8;
  text-shadow:
    0 1px 0 rgba(110, 44, 11, 0.54),
    0 3px 10px rgba(66, 20, 4, 0.32);
  transform: translateX(12px);
  transition:
    opacity 0.18s ease,
    transform 0.24s ease,
    padding 0.24s ease;
}

.floating-wa-icon {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff8f0;
  transition: transform 0.22s ease;
}

.floating-wa-icon::before {
  content: "";
  width: 30px;
  height: 30px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16.02 3.2c-7 0-12.68 5.68-12.68 12.69 0 2.24.59 4.43 1.71 6.35L3.2 28.8l6.74-1.77a12.68 12.68 0 0 0 6.08 1.55h.01c7 0 12.68-5.68 12.68-12.69A12.68 12.68 0 0 0 16.02 3.2Zm0 23.15h-.01a10.48 10.48 0 0 1-5.34-1.46l-.38-.22-4 1.05 1.07-3.9-.24-.4a10.45 10.45 0 1 1 9.9 4.93Zm5.73-7.83c-.31-.16-1.83-.9-2.11-1-.28-.1-.49-.16-.69.16-.2.31-.8 1-.98 1.21-.18.2-.36.23-.67.08-.31-.16-1.31-.48-2.5-1.52-.92-.82-1.55-1.82-1.73-2.13-.18-.31-.02-.48.13-.64.14-.14.31-.36.47-.54.15-.18.2-.31.31-.51.1-.2.05-.39-.03-.54-.08-.16-.69-1.67-.95-2.29-.25-.6-.5-.52-.69-.52h-.59c-.2 0-.51.08-.77.39-.26.31-1 1-.99 2.44 0 1.44 1.04 2.82 1.19 3.01.15.2 2.04 3.11 4.95 4.36.69.3 1.22.48 1.64.61.69.22 1.31.19 1.8.12.55-.08 1.83-.75 2.09-1.47.26-.72.26-1.33.18-1.46-.08-.13-.28-.2-.59-.36Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.floating-wa--home:hover,
.floating-wa--home:focus-visible {
  width: var(--floating-wa-open-width);
  gap: 8px;
  transform: translateY(-50%) translateX(-6px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 218, 166, 0.58),
    0 0 28px rgba(241, 89, 34, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -7px 13px rgba(120, 38, 10, 0.32);
  outline: none;
}

.floating-wa--home:hover .floating-wa-label,
.floating-wa--home:focus-visible .floating-wa-label {
  opacity: 1;
  transform: translateX(0);
  padding-left: 12px;
  padding-right: 8px;
}

.floating-wa--home:hover .floating-wa-icon,
.floating-wa--home:focus-visible .floating-wa-icon {
  transform: translateY(-1px);
}

.floating-wa--home:active {
  transform: translateY(-50%) translateX(-2px) scale(0.985);
}

.home-dota .floating-wa--home {
  right: 1.1rem !important;
  top: calc(50% + 178px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.is-hidden-by-filter,
.is-hidden-by-limit {
  display: none !important;
}

.dashboard-shell {
  width: var(--site-width);
  margin: 0 auto;
  padding: 1.6rem 0 2.2rem;
}

.dashboard-topbar {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.86);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.dashboard-brand {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--ink);
}

.dashboard-brand span {
  color: var(--accent);
}

.dashboard-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dashboard-main {
  margin-top: 1rem;
}

.dashboard-section {
  margin-top: 1rem;
}

.crm-shell {
  width: var(--site-width);
  margin: 0 auto;
  padding: 1.6rem 0 2.2rem;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 1rem;
}

.crm-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.1rem;
  background: rgba(0, 0, 0, 0.88);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.crm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--ink);
}

.crm-brand span {
  color: var(--accent);
}

.crm-sidebar-copy {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.crm-nav {
  display: grid;
  gap: 0.35rem;
}

.crm-nav a {
  display: block;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.crm-nav a:hover,
.crm-nav a:focus-visible {
  transform: translateX(3px);
  border-color: rgba(241, 89, 34, 0.35);
  background: rgba(241, 89, 34, 0.12);
  color: #fff;
}

.crm-nav a.is-current {
  border-color: rgba(241, 89, 34, 0.55);
  background: linear-gradient(135deg, rgba(241, 89, 34, 0.22), rgba(255, 255, 255, 0.08));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.crm-sidebar-footer {
  display: grid;
  gap: 0.55rem;
}

.crm-sidebar--client,
.crm-sidebar--coach {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.82)),
    rgba(0, 0, 0, 0.88);
}

.crm-content {
  min-width: 0;
}

.crm-page-head {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem;
  background: rgba(0, 0, 0, 0.84);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.crm-page-head p {
  color: var(--ink-muted);
}

.crm-page-meta {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
  text-align: right;
}

.crm-page-meta strong {
  color: var(--ink);
}

.crm-section-grid {
  display: grid;
  gap: 1rem;
}

.crm-callout {
  border: 1px solid rgba(241, 89, 34, 0.28);
  border-radius: 16px;
  padding: 0.95rem;
  background: rgba(241, 89, 34, 0.08);
}

.crm-callout p {
  color: var(--ink-muted);
}

.dashboard-table-wrap {
  margin-top: 0.75rem;
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.72rem 0.76rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.dashboard-table th {
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--accent);
}

.dashboard-list {
  margin-top: 0.7rem;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.dashboard-list li {
  margin-bottom: 0.38rem;
}

.dashboard-note-log {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.52rem;
}

.dashboard-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-note p {
  color: var(--ink);
}

.dashboard-note small {
  color: var(--ink-muted);
}

.dashboard-avatar-card {
  display: grid;
  gap: 0.7rem;
}

.dashboard-avatar {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 22px rgba(241, 89, 34, 0.26);
}

.dashboard-badge-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.65rem;
}

.dashboard-badge {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-badge strong {
  color: var(--accent);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.76rem;
}

.dashboard-badge p {
  margin-top: 0.28rem;
  color: var(--ink);
}

.dashboard-card-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}

.dashboard-card-grid--packages {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.52);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.8rem;
}

.package-card--owned {
  background:
    linear-gradient(180deg, rgba(241, 89, 34, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.56);
}

.package-card--selected {
  border-color: rgba(241, 89, 34, 0.5);
  box-shadow:
    0 16px 32px rgba(241, 89, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.package-card__title {
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.package-card__price {
  white-space: nowrap;
  color: var(--accent);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
}

.package-card__copy {
  color: var(--ink-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.package-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.package-card__stats div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
}

.package-card__stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.package-card__stats dd {
  margin-top: 0.35rem;
  color: var(--ink);
  font-weight: 700;
}

.dashboard-feedback {
  margin-top: 0.62rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.dashboard-feedback.error {
  color: #ffb8a0;
}

.dashboard-feedback.success {
  color: #b3f5d8;
}

.admin-lock {
  margin-top: 1rem;
  border: 1px solid rgba(241, 89, 34, 0.48);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(241, 89, 34, 0.08);
}

.funnel-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.7rem;
}

.funnel-column {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.funnel-column h3 {
  font-size: 1rem;
}

.account-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.account-quick-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(241, 89, 34, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.52);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.55rem;
}

.account-quick-card h3 {
  font-size: 1rem;
}

.account-quick-card p {
  color: var(--ink-muted);
  margin: 0;
}

.account-settings-grid {
  display: grid;
  gap: 1rem;
}

.account-meta-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.account-meta-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
}

.account-meta-item strong {
  display: block;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.account-meta-item span {
  display: block;
  margin-top: 0.26rem;
  color: var(--ink);
}

.section-actions--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.section-actions--compact .btn {
  min-width: 0;
  padding: 0.58rem 0.78rem;
}

.appearance-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.appearance-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.appearance-card:hover,
.appearance-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 89, 34, 0.42);
  box-shadow: 0 14px 28px rgba(241, 89, 34, 0.12);
}

.appearance-card.is-active {
  border-color: rgba(241, 89, 34, 0.72);
  background:
    linear-gradient(180deg, rgba(241, 89, 34, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 34px rgba(241, 89, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.appearance-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.appearance-card__body {
  display: grid;
  gap: 0.26rem;
  padding: 0.9rem 0.95rem 1rem;
}

.appearance-card__body strong {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.appearance-card__body span {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.lead-filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.lead-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.lead-board__column {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.46);
  display: grid;
  gap: 0.75rem;
}

.lead-board__head {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: baseline;
}

.lead-board__head h3 {
  font-size: 0.95rem;
}

.lead-board__count {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--accent);
  font-size: 0.84rem;
}

.lead-board__stack {
  display: grid;
  gap: 0.65rem;
}

.lead-board__empty {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.lead-chip-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.82rem;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.4rem;
}

.lead-chip-card strong {
  font-size: 0.95rem;
}

.lead-chip-card p,
.lead-chip-card small {
  margin: 0;
  color: var(--ink-muted);
}

.lead-chip-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

body[data-live-dashboard] {
  overflow-x: hidden;
  --crm-shell-bg: #1a120e;
  --crm-shell-bg-soft: #241913;
  --crm-shell-bg-contrast: #2d2017;
  --crm-shell-line: rgba(255, 188, 112, 0.16);
  --crm-shell-line-strong: rgba(255, 188, 112, 0.32);
  --crm-shell-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

body[data-live-dashboard] .crm-shell {
  width: min(100% - 1.5rem, 1460px);
  grid-template-columns: minmax(188px, 232px) minmax(0, 1fr);
  gap: 1.15rem;
}

body[data-live-dashboard] .crm-sidebar {
  top: 0.9rem;
  padding: 0.95rem 0.9rem;
  gap: 0.85rem;
  background: linear-gradient(180deg, #17100c, #100b08);
  border-color: var(--crm-shell-line);
  box-shadow: var(--crm-shell-shadow);
}

body[data-live-dashboard] .crm-content {
  min-width: 0;
  overflow-x: clip;
}

body[data-live-dashboard] .crm-profile-panel {
  display: grid;
  gap: 0.72rem;
  padding: 0.88rem;
  border-radius: 18px;
  border: 1px solid var(--crm-shell-line);
  background: linear-gradient(180deg, #241711, #1b120d);
}

body[data-live-dashboard] .crm-profile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f15922, #fea12a);
  color: #fff;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 2rem;
  box-shadow: 0 16px 28px rgba(241, 89, 34, 0.24);
}

body[data-live-dashboard] .crm-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-live-dashboard] .crm-profile-copy {
  display: grid;
  gap: 0.18rem;
}

body[data-live-dashboard] .crm-profile-copy strong {
  font-size: 1.08rem;
  color: #fff7ed;
}

body[data-live-dashboard] .crm-profile-copy span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

body[data-live-dashboard] .crm-profile-copy small {
  color: rgba(255, 247, 237, 0.74);
  overflow-wrap: anywhere;
}

body[data-live-dashboard] .crm-xp-panel {
  display: grid;
  gap: 0.42rem;
}

body[data-live-dashboard] .crm-xp-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
}

body[data-live-dashboard] .crm-xp-panel__head span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.68);
}

body[data-live-dashboard] .crm-xp-panel__head strong {
  font-size: 0.88rem;
  color: #fff4e7;
}

body[data-live-dashboard] .crm-xp-bar {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

body[data-live-dashboard] .crm-xp-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f15922, #fea12a);
}

body[data-live-dashboard] .crm-xp-panel p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 247, 237, 0.68);
}

body[data-live-dashboard] .crm-brand {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

body[data-live-dashboard] .crm-sidebar-copy {
  font-size: 0.82rem;
  line-height: 1.5;
}

body[data-live-dashboard] .crm-nav a {
  padding: 0.72rem 0.78rem;
  background: #241711;
  border-color: transparent;
}

body[data-live-dashboard] .crm-nav a:hover,
body[data-live-dashboard] .crm-nav a:focus-visible {
  transform: none;
  border-color: var(--crm-shell-line-strong);
  background: #2d2017;
}

body[data-live-dashboard] .crm-nav a.is-current {
  border-color: rgba(254, 161, 42, 0.42);
  background: linear-gradient(180deg, #382419, #2b1b13);
}

body[data-live-dashboard] .crm-sidebar-footer {
  gap: 0.5rem;
}

body[data-live-dashboard] .crm-sidebar-footer .btn {
  width: 100%;
  justify-content: center;
}

body[data-live-dashboard] .crm-page-head {
  padding: 0.9rem 1rem;
  gap: 0.75rem;
  align-items: center;
  background: linear-gradient(180deg, #19110d, #110b08);
  border-color: var(--crm-shell-line);
  box-shadow: var(--crm-shell-shadow);
}

body[data-live-dashboard] .crm-page-head h1 {
  margin: 0.15rem 0 0;
  max-width: none;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  color: #fff6eb;
}

body[data-live-dashboard] .crm-page-head .kicker {
  display: inline-block;
  margin-bottom: 0.05rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

body[data-live-dashboard] .crm-page-head .dashboard-feedback {
  margin-top: 0.38rem;
  font-size: 0.88rem;
}

body[data-live-dashboard] .crm-page-meta--suppressed,
body[data-live-dashboard] .crm-page-meta {
  display: none;
}

body[data-live-dashboard] .crm-header-tools {
  display: flex;
  gap: 0.55rem;
  margin-left: auto;
  align-items: center;
}

body[data-live-dashboard] .crm-icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--crm-shell-line);
  background: #2a1c14;
  color: #fff5ea;
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body[data-live-dashboard] .crm-icon-button:hover,
body[data-live-dashboard] .crm-icon-button:focus-visible {
  border-color: rgba(254, 161, 42, 0.38);
  background: #332117;
  transform: translateY(-1px);
  outline: none;
}

body[data-live-dashboard] .crm-icon-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

body[data-live-dashboard] .crm-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f15922, #fea12a);
  color: #120b08;
  box-shadow: 0 10px 20px rgba(241, 89, 34, 0.2);
}

body[data-live-dashboard] .crm-count-badge--secondary {
  background: linear-gradient(135deg, #ffd7a5, #fea12a);
}

body[data-live-dashboard] .dashboard-main {
  margin-top: 0.85rem;
}

body[data-live-dashboard] .section.dashboard-section {
  margin-top: 0.85rem;
  border-radius: 22px;
  border: 1px solid var(--crm-shell-line);
  background: linear-gradient(180deg, var(--crm-shell-bg), #130d0a);
  box-shadow: var(--crm-shell-shadow);
}

body[data-live-dashboard] .stat,
body[data-live-dashboard] .card,
body[data-live-dashboard] .account-quick-card,
body[data-live-dashboard] .dashboard-badge,
body[data-live-dashboard] .package-card,
body[data-live-dashboard] .dashboard-note,
body[data-live-dashboard] .lead-board__column,
body[data-live-dashboard] .lead-chip-card,
body[data-live-dashboard] .funnel-column,
body[data-live-dashboard] .account-meta-item,
body[data-live-dashboard] .appearance-card,
body[data-live-dashboard] .crm-callout,
body[data-live-dashboard] .admin-lock {
  background: var(--crm-shell-bg-soft);
  border-color: var(--crm-shell-line);
  box-shadow: none;
}

body[data-live-dashboard] .package-card--owned,
body[data-live-dashboard] .account-quick-card,
body[data-live-dashboard] .crm-callout {
  background: linear-gradient(180deg, #2a1b13, #21150f);
}

body[data-live-dashboard] .package-card__stats div,
body[data-live-dashboard] .dashboard-badge,
body[data-live-dashboard] .lead-chip-card,
body[data-live-dashboard] .account-meta-item {
  background: var(--crm-shell-bg-contrast);
}

body[data-live-dashboard] .dashboard-table-wrap {
  overflow-x: clip;
  max-width: 100%;
}

body[data-live-dashboard] .dashboard-table {
  table-layout: fixed;
  background: var(--crm-shell-bg-soft);
  border-color: var(--crm-shell-line);
}

body[data-live-dashboard] .dashboard-table th,
body[data-live-dashboard] .dashboard-table td {
  overflow-wrap: anywhere;
  vertical-align: top;
}

body[data-live-dashboard] .dashboard-table th {
  background: #2d1f16;
}

body[data-live-dashboard] .dashboard-table td {
  background: transparent;
}

body[data-live-dashboard] .crm-overlay[hidden] {
  display: none;
}

body[data-live-dashboard] .crm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
}

body[data-live-dashboard] .crm-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.68);
}

body[data-live-dashboard] .crm-drawer,
body[data-live-dashboard] .crm-tutorial {
  position: relative;
  margin-left: auto;
  width: min(100%, 520px);
  height: 100%;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background: linear-gradient(180deg, #18100c, #100a07);
  border-left: 1px solid var(--crm-shell-line);
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.28);
}

body[data-live-dashboard] .crm-drawer__head,
body[data-live-dashboard] .crm-tutorial__head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
}

body[data-live-dashboard] .crm-drawer__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

body[data-live-dashboard] .crm-drawer__head h2,
body[data-live-dashboard] .crm-tutorial__head h2 {
  margin-top: 0.18rem;
  font-size: 1.4rem;
  color: #fff6eb;
}

body[data-live-dashboard] .crm-icon-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--crm-shell-line);
  background: #271a13;
  color: #fff4e7;
  font-size: 1.3rem;
}

body[data-live-dashboard] .crm-drawer__body {
  display: grid;
  gap: 0.75rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

body[data-live-dashboard] .crm-feed-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.92rem;
  border-radius: 16px;
  border: 1px solid var(--crm-shell-line);
  background: #231710;
}

body[data-live-dashboard] .crm-feed-item h3 {
  margin: 0;
  font-size: 1rem;
}

body[data-live-dashboard] .crm-feed-item p {
  margin: 0;
  color: rgba(255, 247, 237, 0.78);
}

body[data-live-dashboard] .crm-feed-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 247, 237, 0.58);
  font-size: 0.78rem;
}

body[data-live-dashboard] .crm-feed-item__state {
  color: rgba(255, 247, 237, 0.62);
  font-size: 0.82rem;
}

body[data-live-dashboard] .crm-overlay--tutorial {
  display: grid;
  place-items: center;
}

body[data-live-dashboard] .crm-tutorial {
  margin: 0;
  width: min(100% - 1.5rem, 760px);
  height: auto;
  max-height: calc(100vh - 2rem);
  border: 1px solid var(--crm-shell-line);
  border-radius: 28px;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.38);
}

body[data-live-dashboard] .crm-tutorial__progress {
  display: grid;
  gap: 0.45rem;
}

body[data-live-dashboard] .crm-tutorial__progress span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 247, 237, 0.68);
}

body[data-live-dashboard] .crm-tutorial__bar {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

body[data-live-dashboard] .crm-tutorial__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f15922, #fea12a);
}

body[data-live-dashboard] .crm-tutorial__body {
  display: grid;
  gap: 0.75rem;
}

body[data-live-dashboard] .crm-tutorial__body h3 {
  margin: 0;
  font-size: 1.2rem;
}

body[data-live-dashboard] .crm-tutorial__body p {
  margin: 0;
  color: rgba(255, 247, 237, 0.8);
  line-height: 1.7;
}

body[data-live-dashboard] .crm-tutorial__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
}

body[data-live-dashboard] .crm-tutorial__nav li {
  padding: 0.68rem 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--crm-shell-line);
  background: #22160f;
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.82rem;
}

body[data-live-dashboard] .crm-tutorial__nav li.is-current {
  border-color: rgba(254, 161, 42, 0.36);
  background: linear-gradient(180deg, #332117, #291b13);
  color: #fff4e7;
}

body[data-live-dashboard] .crm-tutorial__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 960px) {
  .crm-shell {
    grid-template-columns: 1fr;
  }

  .crm-sidebar {
    position: static;
  }

  .crm-page-head {
    flex-direction: column;
  }

  .crm-page-meta {
    justify-items: start;
    text-align: left;
  }

  .package-card__stats {
    grid-template-columns: 1fr;
  }

  .appearance-grid,
  .lead-board {
    grid-template-columns: 1fr;
  }

  body[data-live-dashboard] .crm-shell {
    width: min(100% - 1rem, 100%);
    grid-template-columns: 1fr;
  }

  body[data-live-dashboard] .crm-sidebar {
    position: static;
  }

  body[data-live-dashboard] .crm-page-head {
    align-items: start;
  }

  body[data-live-dashboard] .crm-header-tools {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  body[data-live-dashboard] .crm-drawer {
    width: min(100%, 100%);
  }

  body[data-live-dashboard] .crm-tutorial {
    width: min(100% - 1rem, 100%);
    max-height: calc(100vh - 1rem);
  }
}

.funnel-column ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: var(--ink-muted);
}

.funnel-column li {
  margin-bottom: 0.4rem;
}

@media (min-width: 760px) {
  .legal-summary-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: start;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand menu cta";
  }

  .nav-shell .menu-toggle {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.12rem;
  }

  .desktop-only {
    grid-area: cta;
    display: inline-flex;
    justify-self: end;
  }

  .mobile-only {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav action";
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    overflow: visible;
    gap: 0.12rem;
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 6px;
  }

  .nav-submenu {
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 0;
    min-width: 210px;
    max-height: min(60vh, 320px);
    overflow-y: auto;
    padding: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: var(--shadow-sm);
    z-index: 1300;
  }

  .nav-submenu a {
    padding: 0.45rem 0.58rem;
    border-radius: 8px;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: grid;
  }

.header-cta-group,
.header-actions {
  justify-self: end;
  justify-content: flex-start;
  align-items: stretch;
}

  .account-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .page-hero,
  .section,
  .cta-band {
    padding: 1.6rem;
  }

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

  .service-grid,
  .card-grid,
  .coach-profile-grid,
  .gallery-grid,
  .testimonial-grid,
  .benefits-grid,
  .pricing-grid,
  .case-grid,
  .blog-grid,
  .blog-long-grid,
  .highlights-grid,
  .credentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.careers-page .careers-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr) !important;
    gap: 0.95rem 1rem;
    align-items: stretch !important;
    padding: 1rem 1.12rem;
  }

  body.careers-page .careers-hero .careers-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  body.careers-page .careers-hero .careers-hero-visual {
    grid-column: 2;
    grid-row: 1;
    display: block;
    align-self: stretch;
    min-height: 100%;
  }

  body.careers-page .careers-hero .careers-hero-visual img {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .careers-standard-grid,
  .careers-requirements-grid,
  .careers-role-grid,
  .careers-perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-apply-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  body.page-1on1-refined .page-hero--1on1 {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  }

  body.page-1on1-refined .page-hero--1on1.program-hero--copy-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .oneonone-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oneonone-proof-head,
  .oneonone-process-head,
  .oneonone-pricing-head {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  }

  .oneonone-proof-head--simple,
  .oneonone-pricing-head--simple {
    grid-template-columns: minmax(0, 1fr);
  }

  .oneonone-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-legacy-signal-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-shell-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }

  .process-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-testimonial-slide {
    padding: 0 1.15rem;
  }

  .client-testimonial-caption {
    padding: 1.08rem 1.16rem;
  }

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

  .site-footer {
    margin-bottom: 1.8rem;
  }

  .floating-wa {
    right: 1.1rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    min-width: 58px;
  }

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

  body.page-success-stories .page-hero h1 {
    font-size: clamp(0.68rem, 2.4vw, 0.9rem);
    line-height: 1;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 1024px) {
  main {
    padding-top: 2.8rem;
  }

  .hero,
  .page-hero {
    padding: 2rem;
  }

  .page-hero.program-hero {
    padding: 1.08rem 1.7rem;
  }

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

  .service-grid,
  .card-grid,
  .coach-profile-grid,
  .gallery-grid,
  .benefits-grid,
  .case-grid,
  .blog-grid,
  .highlights-grid,
  .credentials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .facilities-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .careers-standard-grid,
  .careers-requirements-grid,
  .careers-role-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.careers-page .careers-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr) !important;
    gap: 1rem 1.15rem;
    padding: 1rem 1.2rem;
  }

  .careers-perks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .careers-apply-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .oneonone-process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-journey-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.08rem;
    right: -0.86rem;
    width: 0.92rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 199, 144, 0.6), rgba(255, 199, 144, 0));
    pointer-events: none;
  }

  .process-head h2,
  .process-head .section-copy {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .client-testimonial-slide {
    padding: 0 1.15rem;
  }

  .client-testimonial-caption {
    min-height: 100%;
    padding: 1.18rem 1.34rem;
  }

  .comparison-table thead th {
    position: sticky;
    top: 96px;
    z-index: 3;
    background: rgba(6, 6, 6, 0.96);
    backdrop-filter: blur(10px);
  }

  .comparison-table .comparison-label-cell {
    position: sticky;
    left: 0;
    z-index: 4;
    background: rgba(6, 6, 6, 0.98);
  }

  .blog-long-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .why-legacy-slide {
    clip-path: none;
    transform: none;
  }

  .why-legacy-slide:first-child {
    opacity: 1;
  }

  .why-legacy-slide::before,
  .why-legacy-slide::after {
    opacity: 0;
  }
}

/* Homepage Dota-style hero */
.site-header {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  z-index: 5000;
  isolation: isolate;
  overflow: visible;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}

.site-header::after {
  content: none;
}

.header-inner {
  width: min(1240px, 97vw);
  margin: 0 auto;
  overflow: visible;
  position: relative;
  z-index: 5001;
}

.site-header + main,
.site-header + .dashboard-shell,
.site-header + .portal-wrap {
  margin-top: 0;
}

.home-dota main {
  width: 100%;
  padding: 0 0 3.2rem;
  position: relative;
  z-index: 0;
}

.home-dota main > .section,
.home-dota main > .cta-band {
  width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
}

.home-dota main > .earn-rank-showcase {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: 0;
}

.home-dota main > .legacy-entry-band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.partners-strip {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-top: 0;
  padding: 1.15rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.66));
}

.partners-inner {
  width: var(--site-width);
  margin: 0 auto;
  padding: 0 1.15rem;
  text-align: left;
}

.partners-strip .kicker {
  margin-bottom: 0.58rem;
}

.partners-note {
  margin: 0 0 0.95rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 1) 7%,
    rgba(0, 0, 0, 1) 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0, 0, 0, 1) 7%,
    rgba(0, 0, 0, 1) 93%,
    transparent 100%
  );
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-marquee 22s linear infinite;
  --partners-loop-distance: 50%;
  will-change: transform;
}

#team-credentials .partners-track {
  animation-duration: 34s;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  flex: 0 0 auto;
}

.partner-logo-card {
  flex: 0 0 auto;
  min-width: 260px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.2rem 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
}

.partner-logo-card a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.partner-logo-card img {
  width: 100%;
  max-height: 168px;
  object-fit: contain;
  display: block;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--partners-loop-distance)));
  }
}

.site-nav a,
.nav-dropdown-toggle,
.nav-submenu a {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav {
  position: relative;
  z-index: 5002;
  overflow: visible;
}

.nav-dropdown {
  position: relative;
  z-index: 5003;
}

.nav-submenu {
  position: absolute;
  z-index: 2147483647;
}

.home-dota .hero-video-shell {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-top: 0;
  height: 100dvh;
  min-height: 100dvh;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.home-dota .hero-video-shell.reveal {
  opacity: 1;
  transform: none;
}

.home-dota main > .hero-video-shell:first-child {
  margin-top: 0;
  height: 100dvh;
  min-height: 100dvh;
}

.home-dota .hero-video-media {
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.04) brightness(0.72);
  z-index: 0;
}

.home-dota .hero-video-fade {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.55) 0%, rgba(4, 4, 4, 0.72) 70%, rgba(4, 4, 4, 0.84) 100%),
    radial-gradient(circle at 20% 22%, rgba(247, 96, 47, 0.12), transparent 55%),
    radial-gradient(circle at 80% 28%, rgba(255, 183, 41, 0.12), transparent 58%);
  z-index: 0;
}

.home-dota .hero-video-fade::before,
.home-dota .hero-video-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-dota .hero-video-fade::before {
  background:
    radial-gradient(44rem 34rem at 18% 16%, rgba(247, 96, 47, 0.18), transparent 62%),
    radial-gradient(40rem 32rem at 84% 18%, rgba(255, 183, 41, 0.16), transparent 64%),
    radial-gradient(38rem 28rem at 50% 86%, rgba(193, 66, 30, 0.17), transparent 66%);
  mix-blend-mode: screen;
  animation: heroSmokeDrift 16s ease-in-out infinite alternate;
}

.home-dota .hero-video-fade::after {
  inset: -10%;
  background-image:
    radial-gradient(circle at 12% 35%, rgba(255, 208, 146, 0.22) 1px, transparent 1.6px),
    radial-gradient(circle at 88% 66%, rgba(255, 129, 72, 0.18) 1px, transparent 1.6px),
    radial-gradient(circle at 50% 52%, rgba(255, 170, 92, 0.14) 1px, transparent 1.6px);
  background-size: 180px 180px, 210px 210px, 160px 160px;
  opacity: 0.36;
  mix-blend-mode: screen;
  animation: heroEmberDrift 20s linear infinite;
}

.home-dota .hero-on-video {
  margin: 0 auto 0;
  width: var(--site-width);
  padding: clamp(1rem, 2.8vw, 2rem) 1.15rem;
  text-align: left;
}

.home-dota .hero-on-video h1,
.home-dota .hero-title-slider {
  font-size: clamp(2.7rem, 8.8vw, 5.4rem);
  line-height: 0.94;
  margin: 0.12rem 0 0.46rem;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.7);
}

.home-dota .hero-on-video p {
  margin-top: 0;
  font-size: 1.05rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.home-dota .hero-on-video .kicker {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.home-dota .hero-on-video .hero-support {
  margin-top: 0.82rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
}

.home-dota .hero-on-video .hero-proof {
  margin-top: 0.46rem;
  display: grid;
  gap: 0.34rem;
  font-size: 0.83rem;
  color: #ffd7a5;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
}

.home-dota .hero-on-video .hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.home-dota .hero-on-video .hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f15922, #fea12a);
  box-shadow: 0 0 0 3px rgba(241, 89, 34, 0.18);
  flex: 0 0 auto;
}

.home-dota .hero-on-video .hero-friction {
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-dota .hero-actions {
  justify-content: flex-start;
}

.home-dota .hero-on-video .btn-primary {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 210, 0.16),
    inset 0 -10px 18px rgba(99, 28, 0, 0.22),
    0 14px 30px rgba(241, 89, 34, 0.28),
    0 0 22px rgba(241, 89, 34, 0.16);
  min-width: 24ch;
  text-align: center;
}

@keyframes heroSmokeDrift {
  from {
    transform: translate3d(-2%, 1.5%, 0) scale(1);
    opacity: 0.9;
  }
  to {
    transform: translate3d(2%, -1.5%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes heroEmberDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(14px);
  }
}

@keyframes oneononeHeroSwap {
  0%,
  16% {
    opacity: 0.92;
    transform: scale(1.01);
  }
  20%,
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@keyframes programCoachMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes heroVideoSwapA {
  0%,
  47% {
    opacity: 0.72;
  }
  53%,
  97% {
    opacity: 0;
  }
  100% {
    opacity: 0.72;
  }
}

@keyframes heroVideoSwapB {
  0%,
  47% {
    opacity: 0;
  }
  53%,
  97% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 759px) {
  .site-header {
    border-bottom: 0;
  }

  .nav-submenu {
    position: static;
    z-index: auto;
  }

  .home-dota .hero-video-shell {
    height: 100dvh;
    min-height: 100dvh;
    padding: 0.85rem;
  }

  .home-dota main > .hero-video-shell:first-child {
    margin-top: -74px;
    height: calc(100dvh + 74px);
    min-height: calc(100dvh + 74px);
  }

  .home-dota .hero-on-video {
    margin-top: 74px;
  }

  .home-dota .hero-on-video h1,
  .home-dota .hero-title-slider {
    font-size: clamp(2.35rem, 12.6vw, 3.95rem);
  }

  .partners-strip {
    padding: 0.92rem 0 1rem;
  }

  .partners-inner {
    padding: 0 1rem;
  }

  .partners-marquee {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
  }

  .partners-logos {
    gap: 0.7rem;
  }

  .partners-track {
    animation-duration: 18s;
  }

  .why-legacy-carousel {
    min-height: 360px;
  }

  .partner-logo-card {
    min-width: 170px;
    padding: 0.28rem 0.3rem;
  }

  .partner-logo-card img {
    max-height: 112px;
  }
}

@media (max-width: 900px) {
  .earn-rank-banner {
    background-image: url("./assets/earn-rank-heavens-mobile-generated.png");
    background-position: center -72px;
    background-size: 100% auto;
    min-height: 0;
    padding: 48px 0 24px;
  }

  .legacy-entry-band {
    background-size: cover;
    background-position: 74% center;
  }

  .earn-rank-copy {
    width: 84%;
    margin-top: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title,
  .earn-rank-banner .earn-rank-copy > .earn-rank-title * {
    font-size: 70px;
    line-height: 1;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title .Minor {
    font-size: 48px;
    line-height: 1;
  }

  .earn-rank-caption {
    font-size: 22px;
    line-height: 1.15;
    margin: 22px 0 0;
    max-width: 34rem;
  }

  .earn-rank-actions {
    margin-top: 24px;
  }

  .earn-rank-actions .btn {
    min-width: 0;
  }

  .legacy-entry-band .legacy-entry-title {
    font-size: 70px;
    line-height: 1;
  }

  .legacy-entry-band .legacy-entry-copy {
    font-size: 22px;
    line-height: 1.15;
  }
}

@media (max-width: 759px) {
  .home-dota main > .section,
  .home-dota main > .cta-band {
    width: min(94vw, 680px);
  }

  .home-dota main > .earn-rank-showcase {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: 0;
  }

  .home-dota main > .legacy-entry-band {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: 0;
  }

  .legacy-entry-band {
    background-position: 76% center;
  }

  .earn-rank-banner {
    min-height: 0;
    background-image: url("./assets/earn-rank-heavens-mobile-generated.png");
    background-position: center -72px;
    background-size: 100% auto;
    padding: 44px 0 24px;
  }

  .earn-rank-banner::after {
    content: none;
  }

  .earn-rank-copy {
    width: 84%;
    margin-top: 0;
    padding: 0;
  }

  .earn-rank-rows {
    width: 90%;
    margin-top: clamp(220px, 36vw, 320px);
  }

  .earn-rank-actions {
    margin-top: 22px;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title,
  .earn-rank-banner .earn-rank-copy > .earn-rank-title * {
    font-size: 60px;
    line-height: 1.05;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title .Minor {
    font-size: 40px;
    line-height: 1.05;
  }

  .earn-rank-caption {
    margin: 20px 0 0;
    font-size: 22px;
    line-height: 1.15;
  }

  .legacy-entry-band .legacy-entry-title {
    font-size: 60px;
    line-height: 1.05;
  }

  .earn-rank-row {
    height: 114px;
  }

  .earn-rank-card {
    --card-width: 162px;
    --card-height: 104px;
    flex-basis: var(--card-width);
    min-width: var(--card-width);
    width: var(--card-width);
    height: var(--card-height);
    margin-right: 8px;
  }

  .earn-rank-card-image {
    width: 100%;
    height: 100%;
  }

  .earn-rank-card-overlay {
    padding: 10px 10px 8px;
  }

  .earn-rank-card-title {
    font-size: 10px;
  }

  .earn-rank-card-meta {
    font-size: 13px;
    min-height: 2.16em;
  }

  .earn-rank-row-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
  }

  .legacy-entry-inner {
    padding: 30px 50px;
  }

  .legacy-entry-band .legacy-entry-copy {
    font-size: 22px;
    line-height: 1.15;
  }

  .legacy-entry-actions .btn {
    min-width: 260px;
    min-height: 56px;
    font-size: 18px;
  }

  .earn-rank-row-viewport[data-row-group="client-ranks"] .earn-rank-card {
    --card-width: 162px;
    --card-image-padding: 1px 4px 6px;
  }

  .earn-rank-row-viewport[data-row-group="coach-level-f"] .earn-rank-card-image {
    --card-image-transform: scale(1.02);
    --card-image-hover-transform: scale(1.05);
  }

  .earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card {
    --card-width: 162px;
    --card-image-padding: 1px 5px 8px;
  }

  .earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card-image {
    --card-image-transform: scale(1.03);
    --card-image-hover-transform: scale(1.05);
  }

  .earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card {
    --card-width: 162px;
    --card-image-padding: 0;
  }

  .earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card-image {
    --card-image-transform: scale(1);
    --card-image-hover-transform: scale(1.03);
  }

  .why-legacy {
    padding: 1rem;
  }

  .why-legacy-split {
    gap: 0.9rem;
  }

  .why-legacy-carousel {
    min-height: 260px;
    max-height: 380px;
  }

  .why-legacy-slide-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: 15.75rem;
    padding: 0.64rem 0.72rem 0.74rem;
  }

  .why-legacy-slide-caption strong {
    font-size: 0.84rem;
  }

  .why-legacy-slide-meta {
    font-size: 0.64rem;
  }

  .why-legacy-signal {
    padding: 0.75rem 0.8rem;
  }

  .why-legacy-signal-row {
    margin-top: 0.9rem;
    align-content: start;
  }

  .why-legacy-proofband {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-legacy-proof {
    padding: 0.95rem 0.9rem;
    border-left: 0;
    border-top: 1px solid rgba(244, 188, 108, 0.1);
    gap: 0.38rem;
  }

  .why-legacy-proof:first-child {
    border-top: 0;
  }

  .why-legacy-proof p {
    max-width: 24ch;
  }

  .section,
  .cta-band {
    margin-top: 1.1rem;
    padding: 1rem;
  }

  .section h2,
  .cta-band h2 {
    font-size: clamp(1.35rem, 7.1vw, 1.85rem);
  }

  .home-dota .hero-on-video {
    padding: 0.8rem 0.55rem 0.95rem;
  }

  .home-dota .hero-on-video::before {
    left: -0.35rem;
    right: -0.35rem;
    width: auto;
    top: -0.5rem;
    bottom: -0.5rem;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.66), rgba(4, 4, 4, 0.28));
  }

  .home-dota .hero-on-video .kicker {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
  }

  .page-hero.program-hero {
    gap: 0.82rem;
    padding: 0.9rem 0.8rem 1rem;
  }

  .page-hero.program-hero .kicker {
    margin-bottom: 0.22rem;
    font-size: 1.12rem;
  }

  .page-hero.program-hero h1 {
    font-size: clamp(2.1rem, 9.4vw, 3.45rem);
    max-width: 14.5ch;
  }

  .page-hero.program-hero p {
    max-width: 36ch;
    font-size: 0.88rem;
  }

  .oneonone-hero-gallery {
    width: 100%;
    min-height: 13.6rem;
  }

  .program-hero-gallery {
    width: 100%;
    min-height: 13.6rem;
  }

  .program-hero-copy {
    justify-items: start;
  }

  .program-hero-cta {
    width: 100%;
  }

  .program-hero-cta .btn {
    width: 100%;
  }

  .home-dota .hero-on-video p {
    font-size: 0.88rem;
    max-width: 36ch;
  }

  .home-dota .hero-on-video .hero-support {
    margin-top: 0.72rem;
    font-size: 0.78rem;
  }

  .home-dota .hero-on-video .hero-proof {
    margin-top: 0.44rem;
    font-size: 0.72rem;
    gap: 0.3rem;
  }

  .home-dota .hero-on-video .hero-proof span:nth-child(2) {
    display: none;
  }

  .home-dota .hero-on-video .hero-friction {
    margin-top: 0.52rem;
    font-size: 0.72rem;
  }

  .hero-actions,
  .section-actions {
    margin-top: 0.82rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .card-grid,
  .coach-profile-grid,
  .gallery-grid,
  .testimonial-grid,
  .pricing-grid,
  .case-grid,
  .contact-grid,
  .quick-answer-grid,
  .myth-grid,
  .process-track-grid,
  .results-metrics,
  .wins-feed,
  .zones-grid,
  .location-cards {
    grid-template-columns: 1fr;
  }

  .services-time-grid,
  .services-lifestyle-grid {
    margin-top: 0.68rem;
  }

  .program-card-top {
    align-items: flex-start;
  }

  .client-testimonial-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .client-testimonial-nav {
    width: 100%;
  }

  .client-testimonial-dots {
    order: -1;
  }

  .comparison-anchor-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.18rem;
  }

  .comparison-anchor-row a {
    white-space: nowrap;
  }

  .comparison-shell-head {
    gap: 0.8rem;
  }

  .comparison-note {
    max-width: none;
  }

  .comparison-label-cell,
  .comparison-table tbody th {
    min-width: 10.5rem;
  }

  .comparison-table td {
    min-width: 15.5rem;
  }

  .services-time-grid .card,
  .services-lifestyle-grid .card {
    padding: 0.72rem;
  }

  .pricing-compare th,
  .pricing-compare td {
    padding: 0.58rem 0.56rem;
    font-size: 0.74rem;
  }

  .facility-hotspot {
    display: none;
  }

  .faq-grid {
    margin-top: 0.66rem;
    gap: 0.56rem;
  }

  .faq-item {
    padding: 0.62rem 0.7rem;
  }

  .faq-item summary {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .conversion-paths {
    margin-top: 0.66rem;
    gap: 0.35rem;
  }

  .conversion-paths a {
    font-size: 0.76rem;
    padding: 0.4rem 0.5rem;
  }

  .floating-wa,
  .home-dota .floating-wa {
    right: 0.78rem !important;
    top: auto !important;
    bottom: 0.92rem !important;
    transform: none !important;
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .floating-wa::before {
    width: 26px;
    height: 26px;
  }

  .home-dota .floating-wa--home {
    right: 0.78rem !important;
    top: auto !important;
    bottom: 0.92rem !important;
    transform: none !important;
  }

  .floating-wa--home {
    --floating-wa-open-width: 170px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .floating-wa-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .floating-wa-icon::before {
    width: 24px;
    height: 24px;
  }

  .floating-wa-label {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-wa--home,
  .floating-wa-label,
  .floating-wa-icon {
    transition: none;
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .earn-rank-banner {
    min-height: 0;
    background-position: center -72px;
    background-size: 100% auto;
    padding: 36px 0 20px;
  }

  .legacy-entry-band {
    background-position: 78% center;
  }

  .earn-rank-copy {
    width: 86%;
    padding: 0;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title,
  .earn-rank-banner .earn-rank-copy > .earn-rank-title * {
    font-size: 50px;
    line-height: 1.05;
  }

  .earn-rank-banner .earn-rank-copy > .earn-rank-title .Minor {
    font-size: 40px;
    line-height: 1.05;
  }

  .earn-rank-caption {
    font-size: 22px;
    line-height: 1.15;
  }

  .earn-rank-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .legacy-entry-band .legacy-entry-title {
    font-size: 50px;
    line-height: 1.05;
  }

  .earn-rank-row {
    height: 96px;
  }

  .earn-rank-card {
    --card-width: 136px;
    --card-height: 88px;
    flex-basis: var(--card-width);
    min-width: var(--card-width);
    width: var(--card-width);
    height: var(--card-height);
    margin-right: 8px;
  }

  .earn-rank-card-image {
    width: 100%;
    height: 100%;
  }

  .earn-rank-card-overlay {
    padding: 8px 8px 7px;
  }

  .earn-rank-card-title {
    font-size: 9px;
  }

  .earn-rank-card-meta {
    font-size: 12px;
    min-height: 2.14em;
  }

  .earn-rank-row-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  .legacy-entry-inner {
    padding: 26px 24px;
  }

  .legacy-entry-band .legacy-entry-copy {
    font-size: 22px;
    line-height: 1.15;
  }

  .legacy-entry-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .earn-rank-row-viewport[data-row-group="client-ranks"] .earn-rank-card {
    --card-width: 136px;
    --card-image-padding: 1px 4px 6px;
  }

  .earn-rank-row-viewport[data-row-group="coach-level-f"] .earn-rank-card-image {
    --card-image-transform: scale(1.02);
    --card-image-hover-transform: scale(1.04);
  }

  .earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card {
    --card-width: 136px;
    --card-image-padding: 1px 4px 7px;
  }

  .earn-rank-row-viewport[data-row-group="client-badges"] .earn-rank-card-image {
    --card-image-transform: scale(1.03);
    --card-image-hover-transform: scale(1.05);
  }

  .earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card {
    --card-width: 136px;
    --card-image-padding: 0;
  }

  .earn-rank-row-viewport[data-row-group="coach-level-m"] .earn-rank-card-image {
    --card-image-transform: scale(1);
    --card-image-hover-transform: scale(1.03);
  }
}

/* PT pricing flow overrides */

.pt-mode-support {
  max-width: 34rem;
  font-size: 0.94rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.7);
}

.pt-mode-card-stack {
  width: min(68rem, 100%);
  gap: 1.2rem;
}

.pt-mode-card {
  min-height: 332px;
  gap: 0.98rem;
  padding: 1.4rem 1.5rem 1.28rem;
  border-radius: 34px;
  background:
    linear-gradient(
      148deg,
      rgba(255, 255, 255, 0.09),
      rgba(var(--mode-accent-alt), 0.11) 14%,
      rgba(var(--mode-accent), 0.07) 38%,
      rgba(8, 8, 8, 0.985)
    ),
    rgba(8, 8, 8, 0.96);
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.pt-mode-card::after {
  right: 0.85rem;
  bottom: 0.45rem;
  font-size: clamp(4.8rem, 12vw, 7.5rem);
  color: rgba(255, 255, 255, 0.05);
}

.pt-mode-title {
  max-width: 12.2ch;
  font-size: clamp(3.3rem, 6.4vw, 6rem);
}

.pt-mode-card-head {
  gap: 0.42rem;
}

.pt-mode-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--mode-accent-alt), 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(var(--mode-accent-alt), 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 238, 216, 0.88);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pt-mode-icon {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 26px;
  border-color: rgba(255, 226, 189, 0.28);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle at 74% 84%, rgba(35, 18, 6, 0.36), transparent 34%),
    linear-gradient(180deg, rgba(235, 176, 80, 0.98), rgba(108, 57, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -14px 20px rgba(57, 24, 0, 0.38),
    0 22px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 233, 198, 0.08);
}

.pt-mode-icon::before {
  inset: 0.38rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(45, 23, 10, 0.14), rgba(14, 7, 3, 0.5));
}

.pt-mode-icon::after {
  inset: -0.7rem;
  border-radius: 30px;
}

.pt-mode-icon svg {
  width: 2.85rem;
  height: 2.85rem;
  fill: none;
  stroke: none;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.06))
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
}

.pt-mode-icon--subscription {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 74% 84%, rgba(13, 24, 66, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(229, 175, 82, 0.98), rgba(72, 52, 74, 0.98));
}

.pt-mode-icon--extended {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 74% 84%, rgba(18, 31, 20, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(215, 188, 102, 0.98), rgba(58, 75, 54, 0.98));
}

.pt-mode-meta {
  gap: 0.46rem;
  margin-top: auto;
  color: rgba(255, 244, 226, 0.92);
}

.pt-mode-meta::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.pt-mode-footer {
  grid-template-columns: 1fr;
  gap: 0;
}

.pt-mode-stat--focus {
  position: relative;
  overflow: hidden;
  min-height: 4.5rem;
  padding: 0.86rem 0.92rem 0.88rem 1.08rem;
  border-color: rgba(var(--mode-accent-alt), 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(var(--mode-accent-alt), 0.09)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.pt-mode-stat--focus::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(var(--mode-accent-alt), 0.98), rgba(var(--mode-accent), 0.8));
  box-shadow: 0 0 18px rgba(var(--mode-accent-alt), 0.28);
}

.pt-mode-stat--focus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.pt-mode-stat--focus strong {
  color: rgba(255, 239, 208, 0.98);
}

.pt-mode-stat--focus span {
  color: rgba(255, 255, 255, 0.9);
}

.pt-tier-choice-page .pt-pricing-main {
  width: min(1040px, calc(100vw - 8.5rem));
}

.pt-tier-detail-page .pt-pricing-main {
  width: min(1380px, calc(100vw - 5.5rem));
}

.pt-tier-compare-page .pt-pricing-main {
  width: min(1380px, calc(100vw - 5.5rem));
}

.pt-tier-hero,
.pt-tier-select-section,
.pt-tier-detail-hero,
.pt-tier-detail-intro,
.pt-tier-pricing-section,
.pt-tier-compare-hero,
.pt-tier-compare-results {
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(255, 214, 161, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 224, 189, 0.022)),
    rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.pt-tier-choice-page .pt-tier-select-section {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.2), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.82), rgba(6, 6, 6, 0.88));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.pt-tier-hero-copy,
.pt-tier-detail-hero-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 48rem;
}

.pt-tier-detail-hero-copy h1 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

.pt-tier-detail-hero-copy .section-copy {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.72;
  color: rgba(255, 244, 232, 0.82);
}

.pt-tier-select-head,
.pt-tier-pricing-head {
  display: grid;
  gap: 1rem;
}

.pt-tier-select-head {
  justify-items: center;
  text-align: center;
}

.pt-tier-select-head > div {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 54rem;
}

.pt-tier-select-title {
  margin: 0;
  max-width: 8ch;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.pt-tier-select-summary {
  max-width: 42rem;
}

.pt-tier-compare-head {
  display: grid;
  width: min(68rem, 100%);
  max-width: 100%;
  margin-inline: auto;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.pt-tier-compare-copy {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 0.82rem;
}

.pt-tier-compare-copy .kicker {
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pt-tier-compare-title {
  margin: 0;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.pt-tier-compare-summary {
  max-width: 52rem;
  width: auto;
  margin: 0 auto;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.pt-compare-mode-switch {
  width: min(68rem, 100%);
  margin: 1.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  justify-content: center;
}

.pt-compare-mode-link {
  min-height: 254px;
  padding: 1.26rem 1.32rem 1.18rem;
  text-decoration: none;
  color: inherit;
}

.pt-compare-mode-link:focus-visible {
  outline: none;
}

.pt-compare-mode-switch .pt-mode-card-top {
  align-items: flex-start;
}

.pt-compare-mode-switch .pt-mode-card-head {
  gap: 0.36rem;
}

.pt-compare-mode-switch .pt-mode-name {
  max-width: 8ch;
  font-size: clamp(2.1rem, 4.1vw, 3rem);
  line-height: 0.9;
}

.pt-compare-mode-switch .pt-mode-icon {
  width: 4.7rem;
  height: 4.7rem;
}

.pt-compare-mode-switch .pt-mode-icon svg {
  width: 2.55rem;
  height: 2.55rem;
}

.pt-compare-mode-switch .pt-mode-copy {
  max-width: 25rem;
  font-size: 0.94rem;
  line-height: 1.62;
}

.pt-compare-mode-switch .pt-mode-badges {
  margin-top: auto;
}

.pt-compare-controls {
  width: min(68rem, 100%);
  margin: 1.04rem auto 0;
  display: grid;
  gap: 1rem;
}

.pt-compare-picker {
  display: grid;
  gap: 1rem;
  padding: 1.16rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 214, 161, 0.11);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 214, 161, 0.08), transparent 18%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 224, 189, 0.02)),
    rgba(10, 10, 10, 0.78);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pt-compare-picker-head {
  display: grid;
  justify-items: center;
  gap: 0.26rem;
  text-align: center;
}

.pt-compare-picker-head .kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pt-compare-picker-title {
  margin: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.pt-compare-tier-grid {
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pt-compare-tier-button {
  --compare-accent: 255, 214, 161;
  --tier-tilt-x: 0deg;
  --tier-tilt-y: 0deg;
  --tier-hover-scale: 1;
  --tier-hover-lift: 0px;
  --tier-spot-x: 50%;
  --tier-spot-y: 18%;
  width: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.68rem;
  padding: 1.06rem 0.98rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 12%, rgba(var(--compare-accent), 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03) 30%, rgba(9, 9, 9, 0.96)),
    rgba(9, 9, 9, 0.96);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(var(--compare-accent), 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  transform:
    perspective(1400px)
    rotateX(var(--tier-tilt-x))
    rotateY(var(--tier-tilt-y))
    translate3d(0, var(--tier-hover-lift), 0)
    scale(var(--tier-hover-scale));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.34s ease,
    opacity 0.22s ease;
}

.pt-compare-tier-button > * {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.pt-compare-tier-button > .pt-tier-choice-aura,
.pt-compare-tier-button > .pt-tier-choice-orbit,
.pt-compare-tier-button > .pt-tier-choice-trace {
  z-index: 0;
}

.pt-compare-tier-button:hover:not(:disabled),
.pt-compare-tier-button:focus-visible,
.pt-compare-tier-button.is-tier-live {
  --tier-hover-scale: 1.012;
  --tier-hover-lift: -6px;
  border-color: rgba(var(--compare-accent), 0.32);
  box-shadow:
    0 28px 46px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(var(--compare-accent), 0.08);
  outline: none;
}

.pt-compare-tier-button.is-active {
  border-color: rgba(var(--compare-accent), 0.48);
  --tier-hover-scale: 1.015;
  --tier-hover-lift: -8px;
  box-shadow:
    0 30px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(var(--compare-accent), 0.12),
    0 0 28px rgba(var(--compare-accent), 0.12);
}

.pt-compare-tier-button:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  filter: saturate(0.72);
}

.pt-compare-tier-button--tier1 {
  --compare-accent: 116, 214, 255;
}

.pt-compare-tier-button--tier2 {
  --compare-accent: 214, 179, 112;
}

.pt-compare-tier-button--tier3 {
  --compare-accent: 255, 177, 84;
}

.pt-compare-tier-button--tier4 {
  --compare-accent: 213, 239, 242;
}

.pt-compare-tier-icon {
  width: 4.9rem;
  height: 4.9rem;
  min-width: 4.9rem;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 241, 221, 0.14);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.26), transparent 22%),
    radial-gradient(circle at 76% 82%, rgba(20, 20, 20, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(var(--compare-accent), 0.24), rgba(20, 20, 20, 0.94));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(var(--compare-accent), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -8px 16px rgba(0, 0, 0, 0.2);
}

.pt-compare-tier-svg {
  width: 3.25rem;
  height: 3.25rem;
  overflow: visible;
}

.pt-compare-tier-svg-core,
.pt-compare-tier-svg-node {
  fill: rgba(var(--compare-accent), 0.94);
}

.pt-compare-tier-svg-panel {
  fill: rgba(255, 243, 218, 0.92);
}

.pt-compare-tier-svg-orbit,
.pt-compare-tier-svg-tail,
.pt-compare-tier-svg-ring,
.pt-compare-tier-svg-link,
.pt-compare-tier-svg-halo,
.pt-compare-tier-svg-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pt-compare-tier-svg-orbit,
.pt-compare-tier-svg-ring,
.pt-compare-tier-svg-link,
.pt-compare-tier-svg-halo {
  stroke: rgba(255, 244, 226, 0.9);
  stroke-width: 3.2;
}

.pt-compare-tier-svg-tail,
.pt-compare-tier-svg-glow {
  stroke: rgba(var(--compare-accent), 0.94);
  stroke-width: 3.8;
}

.pt-compare-tier-svg-star {
  fill: rgba(255, 248, 231, 0.96);
}

.pt-compare-tier-svg-star--soft {
  opacity: 0.62;
}

.pt-compare-tier-button.is-active .pt-compare-tier-icon,
.pt-compare-tier-button:hover:not(:disabled) .pt-compare-tier-icon,
.pt-compare-tier-button:focus-visible .pt-compare-tier-icon,
.pt-compare-tier-button.is-tier-live .pt-compare-tier-icon {
  box-shadow:
    0 22px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(var(--compare-accent), 0.12),
    0 0 24px rgba(var(--compare-accent), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -8px 16px rgba(0, 0, 0, 0.2);
}

.pt-compare-tier-button-body {
  display: grid;
  width: 100%;
  gap: 0.38rem;
}

.pt-compare-tier-button-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--compare-accent), 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(var(--compare-accent), 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 241, 214, 0.86);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pt-compare-tier-button-title {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.68rem;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.pt-compare-tier-button-copy {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.58;
}

.pt-compare-tier-button .pt-summary-pills {
  justify-content: center;
}

.pt-compare-status {
  max-width: 46rem;
  margin: 1.1rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.74;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pt-compare-status--picker {
  max-width: 34rem;
  margin: 0 auto;
}

.pt-compare-actions {
  margin-top: 0.98rem;
  display: flex;
  justify-content: center;
}

.pt-compare-actions .pt-inline-back {
  min-height: 3rem;
  padding: 0.8rem 1.12rem;
}

.pt-tier-compare-results-title {
  margin: 0;
}

.pt-tier-compare-card--tier1 {
  border-color: rgba(116, 214, 255, 0.3);
}

.pt-tier-compare-card--tier2 {
  border-color: rgba(214, 179, 112, 0.3);
}

.pt-tier-compare-card--tier3 {
  border-color: rgba(255, 177, 84, 0.32);
}

.pt-tier-compare-card--tier4 {
  border-color: rgba(213, 239, 242, 0.32);
}

.pt-tier-compare-starting-note {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.pt-tier-compare-table thead th {
  vertical-align: top;
}

.pt-compare-copy {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.pt-compare-value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.pt-compare-value-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.64;
}

.pt-compare-value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 28%, #fff6e2 0, #ffc57c 48%, #f15922 100%);
  box-shadow: 0 0 0 4px rgba(241, 89, 34, 0.12);
}

.pt-compare-empty {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.pt-compare-package-spec {
  display: grid;
  gap: 0.2rem;
}

.pt-compare-package-spec strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 1.08rem + 0.8vw, 1.7rem);
  line-height: 0.96;
  white-space: nowrap;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.pt-compare-package-spec span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.48;
}

.pt-tier-select-grid {
  width: min(1120px, 100%);
  margin: 1.55rem auto 0;
  display: grid;
  gap: 1.05rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pt-tier-choice-card {
  --tier-accent: 116, 214, 255;
  --tier-accent-alt: 44, 120, 214;
  --tier-ring-speed: 10.2s;
  --tier-pulse-speed: 3.1s;
  --tier-bloom-speed: 6.2s;
  --tier-sheen-speed: 7.2s;
  --tier-sheen-angle: 108deg;
  --tier-tilt-x: 0deg;
  --tier-tilt-y: 0deg;
  --tier-hover-scale: 1;
  --tier-hover-lift: 0px;
  --tier-spot-x: 50%;
  --tier-spot-y: 18%;
  --tier-orb-size: 0.92rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 278px;
  display: grid;
  align-content: start;
  gap: 0.88rem;
  padding: 1.36rem 1.28rem 1.32rem;
  border: 1px solid rgba(var(--tier-accent), 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(var(--tier-accent), 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(var(--tier-accent), 0.06) 32%, rgba(9, 9, 9, 0.98)),
    rgba(10, 10, 10, 0.96);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(var(--tier-accent), 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform:
    perspective(1400px)
    rotateX(var(--tier-tilt-x))
    rotateY(var(--tier-tilt-y))
    translate3d(0, var(--tier-hover-lift), 0)
    scale(var(--tier-hover-scale));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.34s ease;
}

.pt-tier-choice-card > * {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.pt-tier-choice-card > .pt-tier-choice-aura,
.pt-tier-choice-card > .pt-tier-choice-orbit,
.pt-tier-choice-card > .pt-tier-choice-element,
.pt-tier-choice-card > .pt-tier-choice-trace {
  z-index: 0;
}

.pt-tier-choice-card--tier1 {
  --tier-accent: 116, 214, 255;
  --tier-accent-alt: 44, 120, 214;
  --tier-point-core: 206, 244, 255;
  --tier-point-edge: 44, 120, 214;
  --tier-point-ring: 116, 214, 255;
  --tier-ring-speed: 10.6s;
  --tier-pulse-speed: 3.2s;
  --tier-bloom-speed: 6.5s;
  --tier-sheen-speed: 7.8s;
  --tier-sheen-angle: 120deg;
  background:
    radial-gradient(circle at 84% 12%, rgba(167, 233, 255, 0.24), transparent 26%),
    radial-gradient(circle at 16% 88%, rgba(44, 120, 214, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(116, 214, 255, 0.08) 32%, rgba(9, 9, 9, 0.98)),
    rgba(10, 10, 10, 0.96);
}

.pt-tier-choice-card--tier2 {
  --tier-accent: 214, 179, 112;
  --tier-accent-alt: 118, 82, 44;
  --tier-point-core: 243, 228, 182;
  --tier-point-edge: 118, 82, 44;
  --tier-point-ring: 214, 179, 112;
  --tier-ring-speed: 9.1s;
  --tier-pulse-speed: 2.8s;
  --tier-bloom-speed: 5.8s;
  --tier-sheen-speed: 6.6s;
  --tier-sheen-angle: 90deg;
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 214, 156, 0.2), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(118, 82, 44, 0.16), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(214, 179, 112, 0.075) 32%, rgba(9, 9, 9, 0.98)),
    rgba(10, 10, 10, 0.96);
}

.pt-tier-choice-card--tier3 {
  --tier-accent: 255, 177, 84;
  --tier-accent-alt: 241, 89, 34;
  --tier-point-core: 255, 229, 182;
  --tier-point-edge: 241, 89, 34;
  --tier-point-ring: 255, 177, 84;
  --tier-ring-speed: 7.8s;
  --tier-pulse-speed: 2.5s;
  --tier-bloom-speed: 5.1s;
  --tier-sheen-speed: 5.2s;
  --tier-sheen-angle: 100deg;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 214, 145, 0.24), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(241, 89, 34, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 177, 84, 0.08) 32%, rgba(9, 9, 9, 0.98)),
    rgba(10, 10, 10, 0.96);
}

.pt-tier-choice-card--tier4 {
  --tier-accent: 213, 239, 242;
  --tier-accent-alt: 132, 184, 193;
  --tier-point-core: 244, 253, 255;
  --tier-point-edge: 132, 184, 193;
  --tier-point-ring: 213, 239, 242;
  --tier-ring-speed: 6.4s;
  --tier-pulse-speed: 2.2s;
  --tier-bloom-speed: 4.6s;
  --tier-sheen-speed: 5.1s;
  --tier-sheen-angle: 28deg;
  background:
    radial-gradient(circle at 82% 14%, rgba(240, 250, 252, 0.24), transparent 26%),
    radial-gradient(circle at 18% 84%, rgba(132, 184, 193, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(213, 239, 242, 0.075) 34%, rgba(9, 9, 9, 0.98)),
    rgba(10, 10, 10, 0.96);
}

.pt-tier-choice-aura,
.pt-tier-choice-orbit,
.pt-tier-choice-element,
.pt-tier-choice-trace {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pt-tier-choice-aura {
  inset: -16%;
  border-radius: 38px;
  filter: blur(30px);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.pt-tier-choice-orbit {
  inset: 0;
  border-radius: inherit;
  opacity: 1;
}

.pt-tier-choice-orbit::before,
.pt-tier-choice-orbit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), rgba(var(--tier-accent), 0.96) 42%, rgba(var(--tier-accent-alt), 0.16) 66%, transparent 100%);
  box-shadow:
    0 0 0 4px rgba(var(--tier-accent), 0.14),
    0 0 20px rgba(var(--tier-accent-alt), 0.28),
    0 0 38px rgba(var(--tier-accent), 0.16);
}

.pt-tier-choice-orbit::before {
  width: var(--tier-orb-size);
  height: var(--tier-orb-size);
  opacity: 0.76;
  animation: pt-tier-orbit 9.6s linear infinite;
}

.pt-tier-choice-orbit::after {
  width: calc(var(--tier-orb-size) * 0.7);
  height: calc(var(--tier-orb-size) * 0.7);
  opacity: 0.54;
  animation: pt-tier-orbit-reverse 11.8s linear infinite;
  animation-delay: -4.1s;
}

.pt-tier-choice-trace {
  inset: 0;
  border-radius: inherit;
  opacity: 1;
}

.pt-tier-choice-card--tier1 .pt-tier-choice-aura {
  background:
    radial-gradient(circle at 16% 18%, rgba(205, 245, 255, 0.66), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(116, 214, 255, 0.42), transparent 20%),
    radial-gradient(circle at 72% 86%, rgba(44, 120, 214, 0.34), transparent 30%);
  animation: pt-tier-bloom 6.5s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier2 .pt-tier-choice-aura {
  background:
    radial-gradient(circle at 82% 16%, rgba(232, 214, 156, 0.72), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(118, 82, 44, 0.34), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(214, 179, 112, 0.24), transparent 30%);
  animation: pt-tier-bloom 5.8s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier3 .pt-tier-choice-aura {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 233, 180, 0.72), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 177, 84, 0.42), transparent 24%),
    radial-gradient(circle at 74% 86%, rgba(241, 89, 34, 0.42), transparent 30%);
  animation: pt-tier-bloom 5.1s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier4 .pt-tier-choice-aura {
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 253, 255, 0.76), transparent 22%),
    radial-gradient(circle at 84% 76%, rgba(187, 227, 233, 0.34), transparent 24%),
    radial-gradient(circle at 14% 84%, rgba(132, 184, 193, 0.38), transparent 30%);
  animation: pt-tier-bloom 4.7s ease-in-out infinite alternate;
}

.pt-tier-choice-element {
  inset: 0;
  opacity: 1;
  overflow: visible;
}

.pt-tier-choice-element::before,
.pt-tier-choice-element::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}

.pt-tier-choice-card--tier1 .pt-tier-choice-element::before {
  right: -6%;
  top: 14%;
  width: 58%;
  height: 58%;
  border-radius: 58% 42% 54% 46% / 44% 56% 44% 56%;
  background:
    radial-gradient(circle at 26% 34%, rgba(234, 252, 255, 0.62), transparent 16%),
    radial-gradient(circle at 68% 46%, rgba(154, 230, 255, 0.36), transparent 22%),
    repeating-radial-gradient(circle at 48% 52%, rgba(148, 222, 255, 0.22) 0 2px, transparent 2px 13px);
  box-shadow: 0 0 34px rgba(84, 188, 255, 0.18);
  filter: blur(0.4px);
  animation: pt-tier-water-ripple 8.8s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier1 .pt-tier-choice-element::after {
  right: 6%;
  bottom: 18%;
  width: 52%;
  height: 20%;
  border-radius: 58% 42% 64% 36% / 62% 38% 62% 38%;
  background:
    linear-gradient(180deg, rgba(226, 248, 255, 0.28), transparent 64%),
    radial-gradient(ellipse at 48% 54%, rgba(76, 176, 255, 0.28), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
  filter: blur(12px);
  transform: rotate(-8deg);
  animation: pt-tier-water-flow 6.6s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier2 .pt-tier-choice-element::before {
  right: -8%;
  bottom: -8%;
  width: 68%;
  height: 44%;
  clip-path: polygon(0 100%, 0 72%, 12% 68%, 24% 52%, 38% 58%, 50% 34%, 64% 46%, 78% 22%, 100% 36%, 100% 100%);
  background:
    radial-gradient(ellipse at 10% 94%, rgba(86, 58, 31, 0.78), transparent 34%),
    radial-gradient(ellipse at 36% 86%, rgba(122, 84, 46, 0.6), transparent 28%),
    radial-gradient(ellipse at 64% 78%, rgba(166, 119, 66, 0.46), transparent 26%),
    radial-gradient(ellipse at 88% 72%, rgba(214, 179, 112, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(228, 209, 154, 0.08), transparent 28%);
  filter: blur(1.4px);
  animation: pt-tier-earth-rise 9.4s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier2 .pt-tier-choice-element::after {
  right: 10%;
  top: 18%;
  width: 30%;
  height: 28%;
  background:
    radial-gradient(circle at 22% 64%, rgba(240, 225, 187, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 56% 44%, rgba(214, 179, 112, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 24%, rgba(188, 144, 86, 0.16) 0 2px, transparent 3px),
    repeating-linear-gradient(168deg, transparent 0 12px, rgba(196, 158, 98, 0.09) 12px 14px, transparent 14px 24px);
  background-repeat: no-repeat;
  filter: blur(0.3px);
  animation: pt-tier-earth-dust 8.2s linear infinite;
}

.pt-tier-choice-card--tier3 .pt-tier-choice-element::before {
  right: 4%;
  bottom: -6%;
  width: 40%;
  height: 72%;
  clip-path: polygon(48% 0, 58% 16%, 76% 10%, 70% 28%, 90% 40%, 74% 48%, 86% 70%, 60% 62%, 56% 100%, 32% 76%, 18% 100%, 24% 62%, 8% 56%, 20% 42%, 12% 28%, 28% 24%, 24% 10%, 40% 16%);
  background:
    radial-gradient(ellipse at 50% 88%, rgba(255, 122, 36, 0.78), transparent 32%),
    radial-gradient(ellipse at 48% 56%, rgba(255, 188, 98, 0.5), transparent 18%),
    radial-gradient(ellipse at 62% 24%, rgba(255, 234, 178, 0.22), transparent 12%),
    linear-gradient(180deg, rgba(255, 245, 218, 0.08), transparent 24%);
  filter: blur(2px);
  animation: pt-tier-fire-plume 4.6s ease-in-out infinite alternate;
}

.pt-tier-choice-card--tier3 .pt-tier-choice-element::after {
  right: 8%;
  top: 18%;
  width: 30%;
  height: 52%;
  background:
    radial-gradient(circle at 20% 82%, rgba(255, 215, 152, 0.26) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 60%, rgba(255, 150, 60, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 40%, rgba(255, 109, 23, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 18%, rgba(255, 196, 108, 0.18) 0 2px, transparent 3px);
  background-repeat: no-repeat;
  filter: blur(0.2px);
  animation: pt-tier-fire-embers 5.4s linear infinite;
}

.pt-tier-choice-card--tier4 .pt-tier-choice-element::before {
  right: -8%;
  top: 16%;
  width: 64%;
  height: 20%;
  border-radius: 999px;
  clip-path: ellipse(48% 42% at 50% 50%);
  background:
    linear-gradient(
      90deg,
      transparent 0 8%,
      rgba(245, 253, 255, 0.24) 12% 22%,
      transparent 26% 34%,
      rgba(205, 238, 244, 0.18) 38% 50%,
      transparent 54% 64%,
      rgba(170, 219, 228, 0.16) 68% 78%,
      transparent 82% 100%
    );
  filter: blur(4px);
  transform: rotate(-7deg);
  animation: pt-tier-wind-stream 7.4s ease-in-out infinite;
}

.pt-tier-choice-card--tier4 .pt-tier-choice-element::after {
  right: 8%;
  top: 46%;
  width: 54%;
  height: 16%;
  border-radius: 999px;
  clip-path: ellipse(48% 44% at 50% 50%);
  background:
    linear-gradient(
      90deg,
      transparent 0 10%,
      rgba(245, 253, 255, 0.22) 16% 28%,
      transparent 34% 46%,
      rgba(220, 246, 250, 0.18) 52% 64%,
      transparent 70% 100%
    );
  filter: blur(8px);
  transform: rotate(9deg);
  animation: pt-tier-wind-gust 6.1s ease-in-out infinite alternate;
}

.pt-tier-choice-trace::before,
.pt-tier-choice-trace::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pt-tier-choice-trace::before {
  inset: -1px;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(var(--tier-accent-alt), 0) 0deg,
    rgba(var(--tier-accent-alt), 0.98) 54deg,
    rgba(var(--tier-accent), 0.94) 104deg,
    rgba(var(--tier-accent-alt), 0.18) 154deg,
    rgba(var(--tier-accent), 0.9) 230deg,
    rgba(var(--tier-accent-alt), 0.98) 302deg,
    rgba(var(--tier-accent-alt), 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 8px rgba(var(--tier-accent-alt), 0.18))
    drop-shadow(0 0 20px rgba(var(--tier-accent), 0.14));
  animation: pt-tier-ring var(--tier-ring-speed) linear infinite, pt-tier-ring-pulse var(--tier-pulse-speed) ease-in-out infinite alternate;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.pt-tier-choice-trace::after {
  inset: -14%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--tier-accent), 0.24), transparent 16%),
    radial-gradient(circle at 88% 16%, rgba(var(--tier-accent-alt), 0.22), transparent 16%),
    radial-gradient(circle at 82% 84%, rgba(var(--tier-accent), 0.18), transparent 18%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  filter: blur(18px);
  opacity: 0.62;
  mix-blend-mode: screen;
  animation: pt-tier-bloom var(--tier-bloom-speed) ease-in-out infinite alternate;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.pt-tier-choice-card::before {
  content: attr(data-tier-code);
  position: absolute;
  right: 0.9rem;
  bottom: 0.35rem;
  z-index: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(4.4rem, 9vw, 6.3rem);
  line-height: 0.84;
  color: rgba(var(--tier-accent), 0.1);
  pointer-events: none;
}

.pt-tier-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(var(--tier-accent), 0.95), rgba(var(--tier-accent-alt), 0.68), transparent 72%),
    radial-gradient(circle at var(--tier-spot-x) var(--tier-spot-y), rgba(var(--tier-accent), 0.14), transparent 28%),
    linear-gradient(
      var(--tier-sheen-angle),
      transparent 20%,
      rgba(255, 255, 255, 0.03) 38%,
      rgba(255, 255, 255, 0.24) 48%,
      rgba(var(--tier-accent), 0.18) 52%,
      rgba(255, 255, 255, 0.03) 58%,
      transparent 74%
    );
  background-size: 100% 3px, 100% 100%, 220% 100%;
  background-position: 0 0, 0 0, -156% 50%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
  animation: pt-tier-sheen var(--tier-sheen-speed) linear infinite;
}

.pt-tier-choice-card:hover,
.pt-tier-choice-card:focus-visible,
.pt-tier-choice-card.is-tier-live {
  --tier-hover-scale: 1.018;
  --tier-hover-lift: -8px;
  border-color: rgba(var(--tier-accent), 0.32);
  box-shadow:
    0 34px 54px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--tier-accent), 0.08),
    0 0 40px rgba(var(--tier-accent-alt), 0.14);
  outline: none;
}

.pt-tier-choice-card:hover .pt-tier-choice-trace::before,
.pt-tier-choice-card:focus-visible .pt-tier-choice-trace::before,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-trace::before {
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(var(--tier-accent-alt), 0.24))
    drop-shadow(0 0 28px rgba(var(--tier-accent), 0.22));
  animation-duration: calc(var(--tier-ring-speed) * 0.78), calc(var(--tier-pulse-speed) * 0.82);
}

.pt-tier-choice-card:hover .pt-tier-choice-trace::after,
.pt-tier-choice-card:focus-visible .pt-tier-choice-trace::after,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-trace::after {
  opacity: 0.86;
  filter: blur(22px);
  animation-duration: calc(var(--tier-bloom-speed) * 0.8);
}

.pt-tier-choice-card:hover::after,
.pt-tier-choice-card:focus-visible::after,
.pt-tier-choice-card.is-tier-live::after {
  opacity: 0.96;
}

.pt-tier-choice-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tier-accent), 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 238, 216, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateZ(32px);
  transition: transform 0.3s ease;
}

.pt-tier-choice-title {
  margin: 0;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  transform: translateZ(56px);
  transition: transform 0.3s ease;
}

.pt-tier-choice-strap {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 243, 226, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateZ(42px);
  transition: transform 0.3s ease;
}

.pt-tier-choice-points {
  margin: 0.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
  transform: translateZ(22px);
  transition: transform 0.3s ease;
}

.pt-tier-choice-card:hover .pt-tier-choice-index,
.pt-tier-choice-card:focus-visible .pt-tier-choice-index,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-index {
  transform: translateZ(42px) translateY(-1px);
}

.pt-tier-choice-card:hover .pt-tier-choice-title,
.pt-tier-choice-card:focus-visible .pt-tier-choice-title,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-title {
  transform: translateZ(70px) translateY(-1px);
}

.pt-tier-choice-card:hover .pt-tier-choice-strap,
.pt-tier-choice-card:focus-visible .pt-tier-choice-strap,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-strap {
  transform: translateZ(52px);
}

.pt-tier-choice-card:hover .pt-tier-choice-points,
.pt-tier-choice-card:focus-visible .pt-tier-choice-points,
.pt-tier-choice-card.is-tier-live .pt-tier-choice-points {
  transform: translateZ(30px);
}

.pt-tier-choice-points li {
  position: relative;
  padding-left: 0.96rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.46;
}

.pt-tier-choice-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, rgba(var(--tier-point-core, 255, 249, 235), 0.98) 0, rgba(var(--tier-accent), 0.96) 56%, rgba(var(--tier-point-edge, var(--tier-accent-alt)), 0.98) 100%);
  box-shadow:
    0 0 0 4px rgba(var(--tier-point-ring, var(--tier-accent)), 0.12),
    0 0 16px rgba(var(--tier-point-edge, var(--tier-accent-alt)), 0.24);
}

@keyframes pt-tier-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pt-tier-ring-pulse {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pt-tier-bloom {
  0% {
    transform: scale(0.94) translate3d(-2%, -2%, 0);
    opacity: 0.58;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform: scale(1.08) translate3d(4%, 4%, 0);
    opacity: 1;
  }
}

@keyframes pt-tier-sheen {
  0% {
    background-position: 0 0, 0 0, -156% 50%;
    opacity: 0.42;
  }

  40% {
    opacity: 0.88;
  }

  100% {
    background-position: 0 0, 0 0, 186% 50%;
    opacity: 0.5;
  }
}

@keyframes pt-tier-orbit {
  0% {
    transform: translate3d(16px, 18px, 0) scale(0.8);
    opacity: 0.38;
  }

  24% {
    transform: translate3d(calc(100% - 24px), 12px, 0) scale(1);
    opacity: 0.84;
  }

  50% {
    transform: translate3d(calc(100% - 22px), calc(100% - 22px), 0) scale(0.88);
    opacity: 0.58;
  }

  74% {
    transform: translate3d(12px, calc(100% - 24px), 0) scale(1.08);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(16px, 18px, 0) scale(0.8);
    opacity: 0.38;
  }
}

@keyframes pt-tier-orbit-reverse {
  0% {
    transform: translate3d(calc(100% - 22px), 22px, 0) scale(0.68);
    opacity: 0.28;
  }

  28% {
    transform: translate3d(18px, 18px, 0) scale(0.92);
    opacity: 0.68;
  }

  52% {
    transform: translate3d(14px, calc(100% - 20px), 0) scale(0.74);
    opacity: 0.42;
  }

  78% {
    transform: translate3d(calc(100% - 24px), calc(100% - 18px), 0) scale(0.96);
    opacity: 0.76;
  }

  100% {
    transform: translate3d(calc(100% - 22px), 22px, 0) scale(0.68);
    opacity: 0.28;
  }
}

@keyframes pt-tier-water-ripple {
  0% {
    transform: translate3d(-3%, 1%, 0) scale(0.98) rotate(-3deg);
    opacity: 0.52;
  }

  50% {
    opacity: 0.82;
  }

  100% {
    transform: translate3d(4%, -3%, 0) scale(1.08) rotate(4deg);
    opacity: 0.72;
  }
}

@keyframes pt-tier-water-flow {
  0% {
    transform: translate3d(-4%, 2%, 0) scale(0.98);
    opacity: 0.34;
  }

  100% {
    transform: translate3d(5%, -3%, 0) scale(1.08);
    opacity: 0.62;
  }
}

@keyframes pt-tier-earth-rise {
  0% {
    transform: translate3d(-2%, 4%, 0) scale(0.98);
    opacity: 0.52;
  }

  100% {
    transform: translate3d(3%, -3%, 0) scale(1.04);
    opacity: 0.76;
  }
}

@keyframes pt-tier-earth-dust {
  0% {
    transform: translate3d(0, 8%, 0);
    opacity: 0.3;
  }

  35% {
    opacity: 0.62;
  }

  100% {
    transform: translate3d(-3%, -10%, 0);
    opacity: 0.38;
  }
}

@keyframes pt-tier-fire-plume {
  0% {
    transform: translate3d(-3%, 6%, 0) scaleY(0.92) rotate(-3deg);
    opacity: 0.56;
  }

  50% {
    opacity: 0.92;
  }

  100% {
    transform: translate3d(4%, -8%, 0) scaleY(1.12) rotate(4deg);
    opacity: 0.74;
  }
}

@keyframes pt-tier-fire-embers {
  0% {
    transform: translate3d(0, 12%, 0) scale(0.96);
    opacity: 0.28;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    transform: translate3d(-6%, -18%, 0) scale(1.04);
    opacity: 0.12;
  }
}

@keyframes pt-tier-wind-stream {
  0% {
    transform: translate3d(-6%, 1%, 0) rotate(-5deg) scale(0.98);
    opacity: 0.34;
  }

  50% {
    opacity: 0.68;
  }

  100% {
    transform: translate3d(8%, -2%, 0) rotate(6deg) scale(1.04);
    opacity: 0.48;
  }
}

@keyframes pt-tier-wind-gust {
  0% {
    transform: translate3d(-8%, 2%, 0) scaleX(0.94);
    opacity: 0.32;
  }

  100% {
    transform: translate3d(10%, -2%, 0) scaleX(1.08);
    opacity: 0.58;
  }
}

.pt-tier-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  border-color: rgba(var(--tier-detail-accent), 0.2);
  background:
    radial-gradient(circle at 84% 16%, rgba(var(--tier-detail-accent), 0.2), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(var(--tier-detail-accent-alt), 0.16), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(var(--tier-detail-accent), 0.06) 34%, rgba(9, 9, 9, 0.98)),
    rgba(9, 9, 9, 0.96);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(var(--tier-detail-accent), 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pt-tier-detail-hero > * {
  position: relative;
  z-index: 1;
}

.pt-tier-detail-hero::before,
.pt-tier-detail-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pt-tier-detail-hero::before {
  inset: -14%;
  z-index: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 16% 20%, rgba(var(--tier-detail-accent), 0.28), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(var(--tier-detail-accent-alt), 0.24), transparent 22%),
    radial-gradient(circle at 72% 86%, rgba(var(--tier-detail-accent), 0.18), transparent 26%);
  filter: blur(28px);
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: pt-tier-bloom 7.2s ease-in-out infinite alternate;
}

.pt-tier-detail-hero::after {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(var(--tier-detail-accent), 0.96), rgba(var(--tier-detail-accent-alt), 0.7), transparent 72%),
    radial-gradient(circle at 76% 16%, rgba(var(--tier-detail-accent), 0.14), transparent 24%),
    linear-gradient(
      118deg,
      transparent 18%,
      rgba(255, 255, 255, 0.03) 38%,
      rgba(255, 255, 255, 0.22) 48%,
      rgba(var(--tier-detail-accent), 0.16) 52%,
      rgba(255, 255, 255, 0.02) 58%,
      transparent 74%
    );
  background-size: 100% 3px, 100% 100%, 220% 100%;
  background-position: 0 0, 0 0, -156% 50%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0.68;
  animation: pt-tier-sheen 8.4s linear infinite;
}

.pt-inline-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  width: fit-content;
  padding: 0.68rem 0.98rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tier-detail-accent), 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(var(--tier-detail-accent), 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(var(--tier-detail-accent), 0.96);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.pt-inline-back:hover,
.pt-inline-back:focus-visible {
  border-color: rgba(var(--tier-detail-accent), 0.34);
  color: #ffffff;
  outline: none;
}

.pt-tier-detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pt-tier-detail-page {
  --tier-detail-accent: 255, 197, 124;
  --tier-detail-accent-alt: 241, 89, 34;
  --tier-point-core: 255, 249, 235;
  --tier-point-edge: 241, 89, 34;
  --tier-point-ring: 255, 197, 124;
}

.pt-tier-detail-page.pt-tier-detail-theme--tier1,
.pt-tier-detail-main.pt-tier-detail-theme--tier1 {
  --tier-detail-accent: 116, 214, 255;
  --tier-detail-accent-alt: 44, 120, 214;
  --tier-point-core: 206, 244, 255;
  --tier-point-edge: 44, 120, 214;
  --tier-point-ring: 116, 214, 255;
}

.pt-tier-detail-page.pt-tier-detail-theme--tier2,
.pt-tier-detail-main.pt-tier-detail-theme--tier2 {
  --tier-detail-accent: 214, 179, 112;
  --tier-detail-accent-alt: 118, 82, 44;
  --tier-point-core: 243, 228, 182;
  --tier-point-edge: 118, 82, 44;
  --tier-point-ring: 214, 179, 112;
}

.pt-tier-detail-page.pt-tier-detail-theme--tier3,
.pt-tier-detail-main.pt-tier-detail-theme--tier3 {
  --tier-detail-accent: 255, 177, 84;
  --tier-detail-accent-alt: 241, 89, 34;
  --tier-point-core: 255, 229, 182;
  --tier-point-edge: 241, 89, 34;
  --tier-point-ring: 255, 177, 84;
}

.pt-tier-detail-page.pt-tier-detail-theme--tier4,
.pt-tier-detail-main.pt-tier-detail-theme--tier4 {
  --tier-detail-accent: 213, 239, 242;
  --tier-detail-accent-alt: 132, 184, 193;
  --tier-point-core: 244, 253, 255;
  --tier-point-edge: 132, 184, 193;
  --tier-point-ring: 213, 239, 242;
}

.pt-tier-detail-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.12rem 1.08rem;
  border-radius: 24px;
  border: 1px solid rgba(var(--tier-detail-accent), 0.14);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(var(--tier-detail-accent), 0.05)),
    rgba(10, 10, 10, 0.78);
}

.pt-tier-detail-intro {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.pt-tier-pricing-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.pt-tier-detail-page .pt-tier-detail-hero .kicker.kicker--accent {
  color: rgba(var(--tier-detail-accent), 0.98);
}

.pt-tier-detail-page .pt-tier-detail-hero .pt-summary-pill {
  border-color: rgba(var(--tier-detail-accent), 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(var(--tier-detail-accent), 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(var(--tier-point-core), 0.94);
}

.pt-tier-detail-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.76;
}

.pt-tier-detail-card--specialist {
  margin-top: 1rem;
  border-color: rgba(var(--tier-detail-accent), 0.2);
  background:
    linear-gradient(165deg, rgba(var(--tier-detail-accent), 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.82);
}

.pt-tier-detail-label {
  color: rgba(var(--tier-detail-accent), 0.96);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pt-tier-expect-list,
.pt-specialist-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.pt-tier-expect-list li,
.pt-specialist-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.pt-tier-expect-list li::before,
.pt-specialist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, rgba(var(--tier-point-core), 0.98) 0, rgba(var(--tier-detail-accent), 0.96) 56%, rgba(var(--tier-point-edge), 0.98) 100%);
  box-shadow:
    0 0 0 4px rgba(var(--tier-point-ring), 0.12),
    0 0 16px rgba(var(--tier-point-edge), 0.24);
}

.pt-tier-pricing-head {
  display: grid;
  gap: 0.9rem;
}

.pt-package-stack {
  gap: 1.05rem;
}

.pt-training-block {
  padding: 1.08rem;
  border-radius: 28px;
  border-color: rgba(var(--tier-detail-accent), 0.14);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(var(--tier-detail-accent), 0.05)),
    rgba(10, 10, 10, 0.78);
}

.pt-tier-detail-page .pt-training-block .kicker.kicker--accent {
  color: rgba(var(--tier-detail-accent), 0.98);
  text-shadow: 0 0 14px rgba(var(--tier-detail-accent), 0.14);
}

.pt-tier-card {
  border-color: rgba(var(--tier-detail-accent), 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(var(--tier-detail-accent), 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(10, 10, 10, 0.98)),
    rgba(10, 10, 10, 0.98);
}

.pt-tier-top {
  grid-template-columns: minmax(0, 1fr);
}

.pt-tier-detail-page .pt-tier-eyebrow {
  color: rgba(var(--tier-detail-accent), 0.96);
}

.pt-tier-highlight {
  min-width: 12rem;
  border-color: rgba(var(--tier-detail-accent), 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(var(--tier-detail-accent), 0.05));
}

.pt-package-grid {
  align-items: stretch;
  gap: 0.68rem;
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
}

.pt-package-featured-wrap {
  position: relative;
  align-self: stretch;
  display: grid;
  overflow: visible;
  padding-top: 0;
}

.pt-package-featured-wrap > .pt-package-tile {
  height: 100%;
}

.pt-package-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 9.8rem;
  padding: 0.94rem 0.96rem 0.9rem;
  display: grid;
  grid-template-rows: minmax(2rem, auto) minmax(2.7rem, auto) auto minmax(2.85rem, auto) auto;
  align-content: start;
  gap: 0.22rem;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(12, 12, 12, 0.96)),
    rgba(12, 12, 12, 0.96);
}

.pt-tier-detail-page .pt-package-sessions {
  min-width: 5.8rem;
  min-height: 1.9rem;
  justify-content: center;
  border-color: rgba(var(--tier-detail-accent), 0.18);
  background: rgba(var(--tier-detail-accent), 0.08);
  color: rgba(var(--tier-point-core), 0.96);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

.pt-package-tile > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.pt-package-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-height: 2rem;
}

.pt-package-flag {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-height: 1.96rem;
  padding: 0.34rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tier-detail-accent), 0.34);
  background:
    linear-gradient(145deg, rgba(var(--tier-point-core), 0.18), rgba(var(--tier-detail-accent-alt), 0.28)),
    rgba(22, 10, 5, 0.9);
  color: rgba(var(--tier-point-core), 0.98);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 20px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(var(--tier-detail-accent-alt), 0.22);
}

.pt-package-tile--featured {
  min-height: 9.8rem;
  overflow: hidden;
  padding-top: 0.94rem;
  border-color: rgba(var(--tier-detail-accent), 0.4);
  background:
    radial-gradient(circle at 84% 16%, rgba(var(--tier-detail-accent), 0.16), transparent 24%),
    linear-gradient(
      118deg,
      transparent 18%,
      rgba(255, 255, 255, 0.03) 38%,
      rgba(var(--tier-detail-accent), 0.16) 50%,
      rgba(255, 255, 255, 0.03) 58%,
      transparent 74%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(12, 12, 12, 0.96)),
    rgba(12, 12, 12, 0.96);
  background-size: 100% 100%, 220% 100%, 100% 100%;
  background-position: 0 0, -156% 50%, 0 0;
  background-repeat: no-repeat;
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(var(--tier-detail-accent), 0.1),
    inset 0 1px 0 rgba(255, 247, 232, 0.05);
  animation: pt-package-featured-sheen 8.2s linear infinite;
}

.pt-package-tile--featured .pt-package-head {
  min-height: 1.96rem;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.7rem;
  padding-right: 0;
}

.pt-package-tile--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(var(--tier-detail-accent-alt), 0) 0deg,
    rgba(var(--tier-detail-accent-alt), 0.98) 54deg,
    rgba(var(--tier-detail-accent), 0.96) 102deg,
    rgba(var(--tier-detail-accent-alt), 0.28) 152deg,
    rgba(var(--tier-detail-accent), 0.94) 230deg,
    rgba(var(--tier-detail-accent-alt), 0.98) 298deg,
    rgba(var(--tier-detail-accent-alt), 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 6px rgba(var(--tier-detail-accent-alt), 0.18))
    drop-shadow(0 0 12px rgba(var(--tier-detail-accent), 0.1));
  animation: pt-tier-ring 4.9s linear infinite, pt-tier-ring-pulse 1.9s ease-in-out infinite alternate;
  pointer-events: none;
}

.pt-package-tile--featured::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 20%, rgba(var(--tier-detail-accent), 0.3), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(var(--tier-detail-accent-alt), 0.28), transparent 22%),
    radial-gradient(circle at 54% 102%, rgba(var(--tier-detail-accent-alt), 0.24), transparent 42%);
  filter: blur(18px);
  opacity: 0.78;
  animation: pt-tier-bloom 2.8s ease-in-out infinite alternate;
  pointer-events: none;
}

.pt-package-tile--featured .pt-package-total {
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(var(--tier-detail-accent), 0.12),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.pt-package-tile--featured .pt-package-subtotal {
  color: #ffffff;
}

.pt-package-tile--featured .pt-package-line {
  color: #ffffff;
}

.pt-package-tile--featured .pt-package-line--installment {
  color: #ffffff;
}

@keyframes pt-package-featured-sheen {
  0% {
    background-position: 0 0, -156% 50%, 0 0;
  }

  40% {
    background-position: 0 0, -16% 50%, 0 0;
  }

  100% {
    background-position: 0 0, 186% 50%, 0 0;
  }
}

.pt-package-total {
  margin-top: 0;
  min-height: 2.7rem;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: clamp(1.5rem, 1.16rem + 0.82vw, 1.86rem);
  line-height: 0.96;
}

.pt-currency-prefix {
  font-size: 0.78em;
  letter-spacing: 0.015em;
}

.pt-package-subtotal {
  display: inline-flex;
  align-items: center;
  min-height: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.pt-package-meta {
  margin-top: 0.3rem;
  min-height: 2.85rem;
  display: grid;
  align-content: start;
  gap: 0.16rem;
}

.pt-package-actions {
  margin-top: 0;
  padding-top: 0.72rem;
  align-self: end;
}

.pt-package-action {
  width: 100%;
  justify-content: center;
}

.pt-package-line,
.pt-loading-copy {
  font-size: 0.82rem;
  line-height: 1.4;
}

.pt-side-cta-stack {
  position: fixed;
  right: clamp(0.85rem, 1.8vw, 1.45rem);
  top: 50%;
  z-index: 6500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  transform: translateY(-50%);
}

.pt-side-commitment,
.pt-side-compare,
.pt-side-whatsapp {
  --pt-side-open-gap: 7px;
  --pt-side-label-pad-left: 10px;
  --pt-side-label-pad-right: 6px;
  --pt-side-open-extra: 18px;
  position: relative;
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: stretch;
  justify-items: stretch;
  gap: 0;
  border-radius: 12px;
  clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  padding: 0;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  color: #f3fffa;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 211, 150, 0.52),
    0 0 22px rgba(241, 89, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -5px 10px rgba(120, 38, 10, 0.28);
  border: 1px solid rgba(255, 208, 142, 0.5);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s ease,
    gap 0.24s ease,
    box-shadow 0.22s ease;
}

.pt-side-compare {
  --pt-side-open-gap: 6px;
  --pt-side-label-pad-left: 8px;
  --pt-side-label-pad-right: 8px;
  --pt-side-open-extra: 8px;
}

.pt-side-cta-icon {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  justify-self: stretch;
  color: #fff8f0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.pt-side-cta-icon::after {
  content: none;
}

.pt-side-cta-icon--commitment::before {
  content: "";
  width: 28px;
  height: 28px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff9ee' d='M9.77 8.2h10.9l-2.37-2.4 1.41-1.4L24.5 9.2l-4.8 4.8-1.41-1.42 2.38-2.38H9.77c-1.98 0-3.57 1.6-3.57 3.58 0 1.97 1.6 3.57 3.57 3.57h3.03v2H9.77a5.57 5.57 0 0 1 0-11.15Zm12.46 5.45v.01a5.57 5.57 0 0 1 0 11.14h-10.9l2.37 2.38-1.41 1.42-4.8-4.8 4.8-4.8 1.41 1.4-2.38 2.4h10.9a3.57 3.57 0 1 0 0-7.15h-3.03v-2h3.03Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  position: relative;
  z-index: 1;
}

.pt-side-cta-icon--compare {
  position: relative;
  font-size: 0;
}

.pt-side-cta-icon--compare::before {
  content: "VS";
  position: relative;
  z-index: 1;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
}

.pt-side-cta-icon--whatsapp svg {
  display: none;
}

.pt-side-cta-icon--whatsapp::before {
  content: "";
  width: 30px;
  height: 30px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16.02 3.2c-7 0-12.68 5.68-12.68 12.69 0 2.24.59 4.43 1.71 6.35L3.2 28.8l6.74-1.77a12.68 12.68 0 0 0 6.08 1.55h.01c7 0 12.68-5.68 12.68-12.69A12.68 12.68 0 0 0 16.02 3.2Zm0 23.15h-.01a10.48 10.48 0 0 1-5.34-1.46l-.38-.22-4 1.05 1.07-3.9-.24-.4a10.45 10.45 0 1 1 9.9 4.93Zm5.73-7.83c-.31-.16-1.83-.9-2.11-1-.28-.1-.49-.16-.69.16-.2.31-.8 1-.98 1.21-.18.2-.36.23-.67.08-.31-.16-1.31-.48-2.5-1.52-.92-.82-1.55-1.82-1.73-2.13-.18-.31-.02-.48.13-.64.14-.14.31-.36.47-.54.15-.18.2-.31.31-.51.1-.2.05-.39-.03-.54-.08-.16-.69-1.67-.95-2.29-.25-.6-.5-.52-.69-.52h-.59c-.2 0-.51.08-.77.39-.26.31-1 1-.99 2.44 0 1.44 1.04 2.82 1.19 3.01.15.2 2.04 3.11 4.95 4.36.69.3 1.22.48 1.64.61.69.22 1.31.19 1.8.12.55-.08 1.83-.75 2.09-1.47.26-.72.26-1.33.18-1.46-.08-.13-.28-.2-.59-.36Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  position: relative;
  z-index: 1;
}

.pt-side-cta-label {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  overflow: hidden;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fffdf8;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(110, 44, 11, 0.54),
    0 3px 10px rgba(66, 20, 4, 0.32);
  transform: translateX(10px);
  transform-origin: right center;
  transition:
    opacity 0.18s ease,
    transform 0.24s ease,
    padding 0.24s ease;
}

.pt-side-commitment:hover,
.pt-side-commitment:focus-visible,
.pt-side-compare:hover,
.pt-side-compare:focus-visible,
.pt-side-whatsapp:hover,
.pt-side-whatsapp:focus-visible {
  width: var(--pt-side-open-width, 220px);
  gap: var(--pt-side-open-gap);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 218, 166, 0.58),
    0 0 28px rgba(241, 89, 34, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -7px 13px rgba(120, 38, 10, 0.32);
  outline: none;
}

.pt-side-commitment:hover,
.pt-side-commitment:focus-visible {
  transform: translateX(-6px) translateY(-1px);
}

.pt-side-commitment:active {
  transform: translateX(-2px) scale(0.98);
}

.pt-side-compare:hover,
.pt-side-compare:focus-visible {
  transform: translateX(-6px) translateY(-1px);
}

.pt-side-compare:active {
  transform: translateX(-2px) scale(0.98);
}

.pt-side-whatsapp:hover,
.pt-side-whatsapp:focus-visible {
  transform: translateX(-6px) translateY(-1px);
}

.pt-side-whatsapp:active {
  transform: translateX(-2px) scale(0.98);
}

.pt-side-commitment:hover .pt-side-cta-label,
.pt-side-commitment:focus-visible .pt-side-cta-label,
.pt-side-compare:hover .pt-side-cta-label,
.pt-side-compare:focus-visible .pt-side-cta-label,
.pt-side-whatsapp:hover .pt-side-cta-label,
.pt-side-whatsapp:focus-visible .pt-side-cta-label {
  opacity: 1;
  transform: translateX(0);
  padding-left: var(--pt-side-label-pad-left);
  padding-right: var(--pt-side-label-pad-right);
}

.pt-side-commitment:hover .pt-side-cta-icon,
.pt-side-commitment:focus-visible .pt-side-cta-icon,
.pt-side-compare:hover .pt-side-cta-icon,
.pt-side-compare:focus-visible .pt-side-cta-icon,
.pt-side-whatsapp:hover .pt-side-cta-icon,
.pt-side-whatsapp:focus-visible .pt-side-cta-icon {
  transform: translateZ(0) translateY(-1px);
}

[hidden] {
  display: none !important;
}

@media (max-width: 700px) {
  .pt-tier-choice-page .pt-pricing-main,
  .pt-tier-detail-page .pt-pricing-main,
  .pt-tier-compare-page .pt-pricing-main {
    width: min(95vw, 95vw);
  }

  .pt-side-cta-stack {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

@media (max-width: 759px) {
  .pt-mode-card {
    min-height: 312px;
    padding: 1.12rem 1rem 1rem;
    border-radius: 26px;
  }

  .pt-mode-index {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .pt-mode-icon {
    width: 4.35rem;
    height: 4.35rem;
    border-radius: 20px;
  }

  .pt-mode-icon svg {
    width: 2.35rem;
    height: 2.35rem;
  }

  .pt-mode-card::after {
    font-size: clamp(4rem, 18vw, 5.2rem);
  }

  .pt-mode-footer {
    margin-top: 0.1rem;
  }

  .pt-mode-stat--focus {
    min-height: auto;
    padding: 0.82rem 0.82rem 0.82rem 0.98rem;
  }

  .pt-tier-hero,
  .pt-tier-select-section,
  .pt-tier-detail-hero,
  .pt-tier-detail-intro,
  .pt-tier-pricing-section,
  .pt-tier-compare-hero,
  .pt-tier-compare-results {
    padding: 1rem;
    border-radius: 24px;
  }

  .pt-tier-select-grid,
  .pt-tier-detail-grid {
    grid-template-columns: 1fr;
  }

  .pt-tier-compare-title {
    max-width: none;
    font-size: clamp(1.08rem, 4.1vw, 1.7rem);
    line-height: 0.96;
    letter-spacing: 0.06em;
  }

  .pt-tier-compare-summary {
    font-size: 0.76rem;
    line-height: 1.72;
    letter-spacing: 0.07em;
  }

  .pt-compare-mode-switch {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pt-compare-mode-link {
    min-height: 214px;
    padding: 1rem 0.95rem 0.94rem;
  }

  .pt-compare-mode-switch .pt-mode-name {
    font-size: clamp(1.85rem, 6vw, 2.35rem);
  }

  .pt-compare-mode-switch .pt-mode-copy {
    font-size: 0.82rem;
    line-height: 1.56;
  }

  .pt-compare-mode-switch .pt-mode-icon {
    width: 4.2rem;
    height: 4.2rem;
  }

  .pt-compare-mode-switch .pt-mode-icon svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .pt-compare-picker {
    padding: 0.98rem;
  }

  .pt-compare-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-compare-tier-button {
    min-height: 168px;
    padding: 0.92rem 0.8rem;
    gap: 0.56rem;
  }

  .pt-compare-tier-button-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .pt-compare-tier-button-title {
    font-size: 1.28rem;
  }

  .pt-compare-tier-button-copy {
    max-width: none;
    font-size: 0.74rem;
    line-height: 1.48;
  }

  .pt-compare-status {
    font-size: 0.73rem;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }

  .pt-tier-choice-card {
    min-height: 244px;
    padding: 1rem 0.95rem 1.05rem;
  }

  .pt-package-head {
    align-items: flex-start;
  }

  .pt-package-flag {
    min-height: 1.82rem;
    padding: 0.32rem 0.74rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .pt-side-cta-stack {
    right: 0.85rem;
    gap: 0.55rem;
  }

  .pt-side-commitment,
  .pt-side-compare {
    --pt-side-open-gap: 6px;
    --pt-side-label-pad-left: 9px;
    --pt-side-label-pad-right: 5px;
    --pt-side-open-extra: 16px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 0;
  }

  .pt-side-whatsapp {
    --pt-side-open-gap: 6px;
    --pt-side-label-pad-left: 9px;
    --pt-side-label-pad-right: 5px;
    --pt-side-open-extra: 16px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 0;
  }

  .pt-side-compare {
    --pt-side-label-pad-left: 7px;
    --pt-side-label-pad-right: 7px;
    --pt-side-open-extra: 6px;
  }

  .pt-side-commitment:hover,
  .pt-side-commitment:focus-visible,
  .pt-side-compare:hover,
  .pt-side-compare:focus-visible,
  .pt-side-whatsapp:hover,
  .pt-side-whatsapp:focus-visible {
    gap: var(--pt-side-open-gap);
  }

  .pt-side-cta-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .pt-side-cta-icon--commitment::before {
    width: 24px;
    height: 24px;
  }

  .pt-side-cta-icon--compare::before {
    font-size: 0.88rem;
  }

  .pt-side-cta-icon--whatsapp::before {
    width: 26px;
    height: 26px;
  }

  .pt-side-cta-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
}

.store-banner {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-top: 1.35rem;
  margin-right: calc(50% - 50vw);
  margin-left: -50vw;
  overflow: hidden;
  min-height: clamp(24rem, 48vw, 34rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.56) 44%, rgba(3, 3, 3, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.54)),
    url("./assets/team-optimized/gym-floor-960.jpg") center/cover no-repeat;
}

.store-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(241, 89, 34, 0.22), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(254, 161, 42, 0.16), transparent 24%);
  pointer-events: none;
}

.store-banner-inner {
  position: relative;
  z-index: 1;
  width: var(--site-width);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(3.25rem, 7vw, 5.4rem) var(--site-pad) clamp(2.6rem, 5vw, 4rem);
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.store-banner h1 {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 8.8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin: 0.12rem 0 0.46rem;
  max-width: 12ch;
  color: #ffffff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.7);
}

.store-banner .kicker {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.store-banner p {
  margin-top: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.store-banner .hero-actions {
  margin-top: 0.15rem;
  justify-content: flex-start;
}

.store-shell {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.store-sidebar {
  height: fit-content;
  padding: 0.88rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 89, 34, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.92);
}

.store-category-nav {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.48rem;
}

.store-category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.72rem 0.82rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font: inherit;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.store-category-button strong {
  display: inline-flex;
  min-width: 2rem;
  justify-content: center;
  padding: 0.22rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
}

.store-category-button:hover,
.store-category-button:focus-visible,
.store-category-button.is-active {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.2), rgba(254, 161, 42, 0.08)),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.store-category-button.is-active strong {
  background: rgba(255, 208, 142, 0.18);
  color: #fff2dc;
}

.store-main {
  min-width: 0;
}

.store-collection-head {
  align-items: end;
  gap: 0.6rem;
}

.store-results {
  display: grid;
  gap: 0.95rem;
}

.store-grid {
  display: grid;
  gap: 0.88rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.store-featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
  justify-content: start;
  gap: 1rem;
}

.store-standard-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.store-grid-divider {
  width: 100%;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 208, 146, 0.28) 16%, rgba(255, 208, 146, 0.34) 50%, rgba(255, 208, 146, 0.28) 84%, rgba(255, 255, 255, 0));
}

.store-product-card {
  --store-card-radius: var(--radius-md);
  position: relative;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
  border-radius: var(--store-card-radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.9);
}

.store-product-card.has-promo {
  overflow: hidden;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.store-artwork {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.store-laser-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

.store-laser-frame svg {
  display: block;
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 6px var(--promo-line))
    drop-shadow(0 0 14px var(--promo-glow));
}

.store-laser-track,
.store-laser-beam {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.store-laser-track {
  stroke: var(--promo-line-soft);
  stroke-width: 1.15;
  opacity: 0.8;
}

.store-laser-beam {
  stroke: var(--promo-line);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 16 84;
  filter:
    drop-shadow(0 0 1px var(--promo-line))
    drop-shadow(0 0 8px var(--promo-glow));
  animation: store-frame-trace 3.2s linear infinite;
}

.store-product-card--new .store-laser-beam,
.store-product-card--new .store-laser-beam--echo,
.store-product-card--new .store-laser-beam--echo-2,
.store-product-card--new .store-laser-beam--echo-3 {
  filter:
    drop-shadow(0 0 1px var(--promo-line))
    drop-shadow(0 0 8px var(--promo-glow))
    drop-shadow(0 0 16px rgba(255, 179, 86, 0.28));
}

.store-laser-beam--echo {
  stroke-width: 2.2;
  stroke-dasharray: 10 90;
  opacity: 0.82;
  animation-duration: 3.95s;
  animation-delay: -0.92s;
}

.store-laser-beam--echo-2 {
  stroke-width: 1.9;
  stroke-dasharray: 8 92;
  opacity: 0.68;
  animation-duration: 4.55s;
  animation-delay: -1.58s;
}

.store-laser-beam--echo-3 {
  stroke-width: 1.65;
  stroke-dasharray: 7 93;
  opacity: 0.56;
  animation-duration: 5.1s;
  animation-delay: -2.14s;
}

.store-product-card--new .store-laser-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 216, 146, 0.96) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 24% 74%, rgba(255, 145, 42, 0.86) 0 1px, transparent 1.8px),
    radial-gradient(circle at 56% 10%, rgba(255, 194, 122, 0.88) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 82% 18%, rgba(255, 209, 136, 0.92) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 90% 76%, rgba(255, 134, 34, 0.82) 0 1px, transparent 1.8px),
    radial-gradient(circle at 68% 88%, rgba(255, 167, 70, 0.78) 0 1px, transparent 1.8px);
  opacity: 0.78;
  pointer-events: none;
  animation: store-new-sparks 2.8s ease-in-out infinite alternate;
}

.store-product-card--sale {
  --promo-line: #8e1121;
  --promo-line-soft: rgba(142, 17, 33, 0.58);
  --promo-glow: rgba(186, 22, 44, 0.34);
}

.store-product-card--new {
  --promo-line: #f15922;
  --promo-line-soft: rgba(241, 89, 34, 0.5);
  --promo-glow: rgba(254, 161, 42, 0.3);
}

.store-product-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.72rem;
  padding: 0.88rem;
}

.store-product-card.has-promo .store-product-link {
  gap: 0.72rem;
  padding: 0.88rem;
}

.store-product-card--overlay .store-product-link {
  gap: 0.72rem;
  padding: 0.88rem;
}

.store-product-visual {
  position: relative;
}

.store-product-promo-row {
  display: flex;
  justify-content: center;
  margin: 0.18rem 0 0.06rem;
}

.store-product-card.has-promo .store-product-promo-row {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 4;
  margin: 0;
}

.store-product-copy {
  display: grid;
  gap: 0.34rem;
  padding: 0.82rem 0.9rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-md) - 4px);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.store-product-info-box {
  position: relative;
  overflow: hidden;
}

.store-product-info-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(254, 161, 42, 0.42), rgba(254, 161, 42, 0));
  pointer-events: none;
}

.store-product-copy h3 {
  margin: 0;
  line-height: 1;
}

.store-product-card.has-promo .store-product-copy h3 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-product-card--overlay .store-product-copy h3 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 0.98;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-product-copy p {
  display: none;
}

.store-product-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.store-product-card.has-promo .store-product-category {
  font-size: 0.68rem;
  line-height: 1;
  color: rgba(255, 243, 232, 0.86);
}

.store-product-card--overlay .store-product-category {
  font-size: 0.68rem;
  line-height: 1;
  color: rgba(255, 243, 232, 0.84);
}

.store-product-category {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-product-price {
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #fea12a;
}

.store-product-price--overlay {
  position: absolute;
  right: 0.88rem;
  bottom: 0.88rem;
  z-index: 4;
  min-width: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: clamp(1.34rem, 2vw, 1.56rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.38),
    0 0 16px rgba(241, 89, 34, 0.12);
}

.store-artwork {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  gap: 0.42rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-md) - 4px);
  padding: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.store-artwork.has-photo {
  background: #050505;
  border-color: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.store-product-card.has-promo .store-artwork {
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: none;
}

.store-product-card--overlay .store-artwork {
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: none;
  padding: 0;
}

.store-product-card.has-promo .store-artwork.has-photo {
  border-color: rgba(255, 255, 255, 0.1);
}

.store-product-card--overlay .store-artwork.has-photo {
  border-color: rgba(255, 255, 255, 0.1);
}

.store-artwork-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.store-product-card.has-promo .store-artwork-photo {
  object-fit: cover;
  object-position: center 28%;
  transform: none;
}

.store-product-card--overlay .store-artwork-photo {
  object-fit: cover;
  object-position: center 28%;
  transform: none;
}

.store-artwork-copy-layer {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  min-height: 100%;
  gap: 0.45rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.22) 38%, rgba(3, 3, 3, 0.78) 100%);
}

.store-artwork-copy-layer.is-compact {
  padding: 0.82rem;
  gap: 0.36rem;
}

.store-product-link .store-artwork::before,
.store-product-link .store-artwork::after,
.store-product-link .store-artwork-copy-layer,
.store-product-link .store-artwork-eyebrow,
.store-product-link .store-artwork-tag,
.store-product-link .store-artwork-caption {
  display: none;
}

.store-artwork::before,
.store-artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.store-artwork::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(145deg, transparent 40%, rgba(255, 255, 255, 0.06) 100%);
  z-index: -1;
}

.store-artwork::after {
  inset: auto -14% -36% auto;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  opacity: 0.42;
  z-index: -1;
}

.store-artwork-mark {
  position: absolute;
  top: 16%;
  right: 10%;
  width: min(34%, 132px);
  opacity: 0.92;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.store-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.2rem;
  padding: 0.48rem 0.84rem;
  border-radius: 999px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.store-promo-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0.78;
}

.store-promo-badge--sale {
  border: 1px solid rgba(185, 74, 95, 0.64);
  background: linear-gradient(135deg, rgba(90, 8, 18, 0.98), rgba(149, 16, 35, 0.96));
  color: #fff1f3;
  animation: store-sale-pulse 2.1s ease-in-out infinite;
}

.store-promo-badge--sale::before {
  display: none;
}

.store-promo-badge--new {
  border: 1px solid rgba(255, 168, 92, 0.66);
  background: linear-gradient(135deg, rgba(136, 38, 8, 0.98), rgba(241, 89, 34, 0.94));
  color: #fff3e8;
  animation: store-new-float 2.5s ease-in-out infinite;
}

.store-promo-badge--new::before {
  background: linear-gradient(90deg, transparent, rgba(255, 224, 184, 0.42), transparent);
  animation: store-new-sheen 2.6s ease-in-out infinite;
}

.store-promo-badge--new::after {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: inherit;
  border: 1px solid rgba(255, 168, 92, 0.26);
  animation: store-new-ring 2.8s ease-out infinite;
}

.store-artwork-eyebrow,
.store-artwork-tag {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-artwork-eyebrow {
  color: rgba(255, 234, 212, 0.82);
}

.store-artwork-title {
  position: relative;
  z-index: 1;
  max-width: 10.5ch;
  font-family: "League Spartan", "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 0.92;
  color: #ffffff;
}

.store-artwork-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff2dc;
}

.store-artwork-caption {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
}

.store-artwork.is-compact {
  padding: 0.82rem;
}

.store-artwork.is-compact .store-artwork-title {
  font-size: clamp(1.28rem, 2.7vw, 1.68rem);
}

.store-artwork.is-compact .store-artwork-caption {
  font-size: 0.76rem;
}

.store-artwork.has-photo.is-compact .store-artwork-tag {
  font-size: 0.66rem;
}

.store-artwork--ember {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 185, 90, 0.24), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(241, 89, 34, 0.24), transparent 34%),
    linear-gradient(160deg, #1c100d 0%, #0e0b0a 100%);
}

.store-artwork--obsidian {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
    radial-gradient(circle at 78% 20%, rgba(241, 89, 34, 0.18), transparent 28%),
    linear-gradient(160deg, #121212 0%, #050505 100%);
}

.store-artwork--sand {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(254, 161, 42, 0.18), transparent 28%),
    linear-gradient(160deg, #35271f 0%, #17110e 100%);
}

.store-artwork--smoke {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(131, 131, 131, 0.18), transparent 30%),
    linear-gradient(160deg, #242424 0%, #111111 100%);
}

.store-artwork--ivory {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.2), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(255, 185, 90, 0.16), transparent 26%),
    linear-gradient(160deg, #2a251f 0%, #13100d 100%);
}

.store-artwork--steel {
  background:
    radial-gradient(circle at 18% 20%, rgba(160, 223, 255, 0.16), transparent 25%),
    radial-gradient(circle at 84% 18%, rgba(241, 89, 34, 0.18), transparent 28%),
    linear-gradient(160deg, #172026 0%, #0d0f11 100%);
}

.store-artwork--fog {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 25%),
    radial-gradient(circle at 80% 16%, rgba(196, 196, 196, 0.12), transparent 28%),
    linear-gradient(160deg, #2d2e31 0%, #171819 100%);
}

.store-artwork--sun {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 223, 123, 0.22), transparent 25%),
    radial-gradient(circle at 82% 16%, rgba(241, 89, 34, 0.18), transparent 28%),
    linear-gradient(160deg, #2b1d12 0%, #140f0d 100%);
}

.store-artwork--carbon {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(254, 161, 42, 0.16), transparent 26%),
    linear-gradient(160deg, #1b1b1b 0%, #090909 100%);
}

.store-artwork--chalk {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(241, 89, 34, 0.12), transparent 26%),
    linear-gradient(160deg, #302f2d 0%, #171615 100%);
}

.store-artwork--pearl {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 16%, rgba(255, 208, 142, 0.16), transparent 26%),
    linear-gradient(160deg, #2b2926 0%, #131210 100%);
}

.store-artwork--stone {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(155, 155, 155, 0.14), transparent 26%),
    linear-gradient(160deg, #262320 0%, #12100f 100%);
}

.store-gallery-card,
.store-detail-card,
.store-config-card {
  gap: 0;
}

.store-product-shell {
  display: grid;
  gap: 1rem;
}

.store-gallery-card,
.store-detail-card,
.store-config-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.92);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.store-gallery-head {
  display: grid;
  gap: 0.35rem;
}

.store-gallery-slider {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.7rem;
}

.store-gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.store-gallery-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.store-gallery-slide {
  min-width: 100%;
}

.store-gallery-slide .store-artwork {
  border-radius: var(--radius-md);
}

.store-gallery-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
}

.store-gallery-nav {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font: inherit;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.store-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-gallery-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-gallery-dot.is-active {
  background: linear-gradient(130deg, rgba(241, 89, 34, 0.92), rgba(254, 161, 42, 0.9));
  transform: scale(1.08);
}

.store-product-stack {
  display: grid;
  gap: 0.88rem;
}

.store-config-form {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.82rem;
}

.store-config-grid {
  display: grid;
  gap: 0.85rem;
}

.store-config-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

.store-config-form input,
.store-config-form select {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.38);
}

.store-checkout-link.is-disabled,
.store-checkout-link[aria-disabled="true"] {
  opacity: 0.54;
  pointer-events: none;
}

.store-related-band {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.82rem;
}

.store-related-head {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
}

.store-related-head h2 {
  margin: 0;
  width: 100%;
  font-size: clamp(1.02rem, 2.05vw, 1.82rem);
  line-height: 1.05;
  white-space: nowrap;
}

.store-related-slider-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.72rem;
}

.store-related-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.store-related-viewport::-webkit-scrollbar {
  display: none;
}

.store-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, calc((100% - 1.76rem) / 3));
  gap: 0.88rem;
}

.store-related-slide {
  scroll-snap-align: start;
}

.store-related-slide > .store-product-card {
  height: 100%;
}

.store-related-nav {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.7rem 0.82rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font: inherit;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.store-related-nav:hover,
.store-related-nav:focus-visible {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.18), rgba(254, 161, 42, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.store-related-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.store-related-card .store-product-link {
  padding: 0;
}

@media (min-width: 980px) {
  .store-shell {
    grid-template-columns: 246px minmax(0, 1fr);
  }

  .store-sidebar {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .store-product-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: start;
  }

}

@media (min-width: 640px) {
  .store-config-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .store-banner {
    min-height: 22rem;
  }

  .store-banner h1 {
    font-size: clamp(2.35rem, 12.6vw, 3.95rem);
  }

  .store-banner .kicker {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
  }

  .store-banner p {
    font-size: 0.88rem;
    max-width: 36ch;
  }

  .store-related-slider-shell {
    grid-template-columns: 1fr;
  }

  .store-related-track {
    grid-auto-columns: minmax(84%, 84%);
  }

  .store-related-nav {
    display: none;
  }

  .store-product-promo-row {
    justify-content: center;
    margin: 0.18rem 0 0.08rem;
  }

  .store-gallery-controls {
    gap: 0.65rem;
  }
}

@keyframes store-sale-pulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(164, 20, 40, 0.34);
  }

  50% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 0 10px rgba(164, 20, 40, 0);
  }
}

@keyframes store-sale-glint {
  0%,
  16% {
    transform: translateX(-120%) skewX(-18deg);
  }

  48%,
  100% {
    transform: translateX(160%) skewX(-18deg);
  }
}

@keyframes store-new-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes store-new-sheen {
  0%,
  18% {
    transform: translateX(-120%) skewX(-18deg);
  }

  52%,
  100% {
    transform: translateX(160%) skewX(-18deg);
  }
}

@keyframes store-new-ring {
  0% {
    opacity: 0.46;
    transform: scale(0.92);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes store-new-sparks {
  0% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(0.3%, -0.5%, 0);
  }

  100% {
    opacity: 0.56;
    transform: translate3d(-0.25%, 0.35%, 0);
  }
}

@keyframes store-frame-trace {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -100;
  }
}

@keyframes team-card-frame-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 920px) {
  .pt-tier-select-summary,
  .pt-tier-compare-summary {
    max-width: none;
    white-space: nowrap;
  }

  .pt-tier-detail-hero-copy .section-copy {
    max-width: 62ch;
    white-space: normal;
    text-wrap: pretty;
  }

  .pt-tier-grid.pt-tier-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .pt-tier-grid.pt-tier-grid--single .pt-package-grid {
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .pt-package-tile--featured,
  .pt-tier-choice-card {
    animation: none;
    transform: none;
    transition: none;
  }

  .pt-tier-choice-aura,
  .pt-tier-choice-orbit::before,
  .pt-tier-choice-orbit::after,
  .pt-tier-choice-element::before,
  .pt-tier-choice-element::after,
  .pt-tier-choice-trace::before,
  .pt-tier-choice-trace::after,
  .pt-tier-choice-card::after,
  .pt-tier-detail-hero::before,
  .pt-tier-detail-hero::after,
  .pt-package-tile--featured::before,
  .pt-package-tile--featured::after {
    animation: none;
  }
}

.page-about-community {
  --about-ink: #ffffff;
  --about-muted: rgba(255, 255, 255, 0.76);
  --about-line: rgba(255, 255, 255, 0.12);
  --about-panel: rgba(12, 12, 12, 0.58);
  --about-panel-strong: rgba(10, 10, 10, 0.76);
  --about-soft-glow: rgba(241, 89, 34, 0.16);
  --about-soft-gold: rgba(254, 161, 42, 0.16);
  color: var(--about-ink);
  font-family: "Roboto", "Segoe UI", sans-serif;
}

.page-about-community .cinematic-bg {
  display: block;
  opacity: 1;
}

.page-about-community .bg-layer--base {
  background-image:
    linear-gradient(112deg, rgba(4, 4, 4, 0.94) 14%, rgba(6, 6, 6, 0.62) 48%, rgba(4, 4, 4, 0.94) 88%),
    url("./assets/legacy-gym-bg.jpeg");
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(1.1) brightness(0.4);
}

.page-about-community .bg-layer--smoke {
  background:
    radial-gradient(38rem 30rem at 12% 8%, rgba(241, 89, 34, 0.3), transparent 58%),
    radial-gradient(34rem 30rem at 88% 16%, rgba(254, 161, 42, 0.2), transparent 60%),
    radial-gradient(32rem 24rem at 54% 88%, rgba(241, 89, 34, 0.16), transparent 66%);
}

.page-about-community .bg-vignette {
  background:
    radial-gradient(circle at center, transparent 24%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
}

.page-about-community .site-header {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 82% 10%, rgba(241, 89, 34, 0.22), transparent 38%),
    radial-gradient(circle at 18% -16%, rgba(254, 161, 42, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(4, 4, 4, 0.9), rgba(8, 8, 8, 0.82));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.page-about-community .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(254, 161, 42, 0.34), transparent);
}

.page-about-community .site-nav a,
.page-about-community .nav-dropdown-toggle,
.page-about-community .menu-toggle,
.page-about-community .account-gateway-trigger {
  color: var(--ink);
}

.page-about-community .menu-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.page-about-community .nav-submenu {
  background: rgba(12, 12, 12, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.page-about-community .nav-submenu a {
  color: var(--ink);
}

.page-about-community .header-cta-group .btn-primary,
.page-about-community .hero-actions .btn-primary {
  color: #fff;
}

.page-about-community .site-footer {
  width: min(1320px, 94vw);
  margin: 2rem auto 2.6rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.page-about-community .site-footer a {
  color: inherit;
}

.page-about-community .floating-wa {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.about-community-editorial {
  width: min(1360px, 94vw);
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 2rem) 0 clamp(3rem, 7vw, 5.5rem);
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.25rem);
}

.about-community-editorial section {
  position: relative;
}

.about-community-editorial h1,
.about-community-editorial h2 {
  margin: 0;
  color: #fff;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-community-editorial h1 {
  font-size: clamp(2.65rem, 6.2vw, 5.2rem);
  line-height: 0.96;
}

.about-community-editorial h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 0.98;
}

.about-community-editorial p {
  color: var(--about-muted);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.about-community-editorial p.about-mini-label {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: #ffd7a5;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Roboto", "Segoe UI", sans-serif;
  text-shadow: none;
}

.about-inline-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: #ffd7a5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  text-shadow: none;
}

.about-community-editorial p.about-lead {
  max-width: 58ch;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.about-sunrise-hero {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: center;
}

.about-sunrise-copy {
  display: grid;
  gap: 1rem;
}

.about-sunrise-hero::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: clamp(1rem, 5vw, 5rem);
  width: clamp(180px, 24vw, 340px);
  aspect-ratio: 1;
  background: url("./assets/Logo - Legacy_Symbol (Orange flame, white plus).png") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.about-sunrise-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.about-sunrise-ribbon span {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff1df;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.about-sunrise-visual {
  position: relative;
  min-height: 520px;
  padding: 1.2rem;
}

.about-sunrise-main-photo,
.about-sunrise-snapshot {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-sunrise-main-photo {
  height: 100%;
  background:
    radial-gradient(circle at top left, var(--about-soft-glow), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.28));
}

.about-sunrise-main-photo img,
.about-sunrise-snapshot img,
.about-photo-story-slide img,
.about-luke-journal-image img,
.about-community-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-sunrise-snapshot {
  position: absolute;
  width: min(38%, 250px);
  height: 180px;
  border: 8px solid rgba(10, 10, 10, 0.94);
  transform-origin: center;
}

.about-sunrise-snapshot--one {
  right: 0;
  top: 0.8rem;
  animation: about-snapshot-float 8s ease-in-out infinite;
}

.about-sunrise-snapshot--two {
  left: 0;
  bottom: 0;
  animation: about-snapshot-float 8s ease-in-out infinite reverse;
}

.about-welcome-note {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 2.8vw, 2rem) 0;
}

.about-welcome-note-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.about-welcome-note-copy {
  display: grid;
  gap: 1rem;
  max-width: 60rem;
}

.about-welcome-note-side {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.95rem;
  height: 100%;
}

.about-welcome-note-side li {
  margin: 0;
  position: relative;
  padding: 0 0 0 1.4rem;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.about-welcome-note-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(241, 89, 34, 0.12);
}

.about-photo-story {
  display: grid;
  gap: 1rem;
}

.about-photo-story-head {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}

.about-photo-story-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 40vw);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(144, 88, 51, 0.24) transparent;
}

.about-photo-story-slide {
  scroll-snap-align: start;
  display: grid;
  gap: 0.9rem;
}

.about-photo-story-slide > div {
  display: grid;
  gap: 0.45rem;
}

.about-photo-story-slide img {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-photo-story-slide strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.about-photo-story-slide p {
  color: #ffd9b8;
}

.about-community-editorial p.about-slider-note {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.56);
}

.about-feel-list {
  display: grid;
  gap: 1.35rem;
}

.about-feel-row {
  display: grid;
  gap: 1.35rem;
  align-items: start;
  padding: 1.65rem 0;
  border-top: 1px solid var(--about-line);
}

.about-feel-row:last-child {
  border-bottom: 1px solid var(--about-line);
}

.about-feel-row > span {
  color: var(--accent);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 6.3vw, 5.25rem);
  line-height: 0.88;
  display: block;
  transform: translateY(0.55rem);
}

.about-feel-row h2 {
  font-size: clamp(1.65rem, 3.6vw, 3rem);
}

.about-feel-row > p {
  max-width: 44ch;
}

.about-community-rails {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.about-community-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.about-community-rail-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.about-community-rail--forward .about-community-rail-track {
  animation: about-community-marquee-forward 30s linear infinite;
}

.about-community-rail--reverse .about-community-rail-track {
  animation: about-community-marquee-reverse 34s linear infinite;
}

.about-community-rail img {
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-luke-journal {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-luke-journal-image {
  margin: 0;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-luke-journal-copy {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.about-first-steps {
  display: grid;
  gap: 1.6rem;
}

.about-first-steps-head {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.about-first-steps-list {
  display: grid;
  gap: 0;
}

.about-first-steps-list > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 1.15rem;
  gap: 0.55rem;
  align-content: start;
  align-items: start;
  padding: 1.2rem 0;
  border-top: 1px solid var(--about-line);
}

.about-first-steps-list > div:last-child {
  border-bottom: 1px solid var(--about-line);
}

.about-first-steps-list strong {
  grid-column: 1;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  text-shadow: 0 0 14px rgba(254, 161, 42, 0.16);
}

.about-first-steps-list p {
  grid-column: 2;
  max-width: 42rem;
}

.about-quote-ribbon {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.about-quote-ribbon-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  color: #fff2de;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
  animation: about-quote-ribbon 28s linear infinite;
}

.about-soft-cta {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.2), transparent 28%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.82), rgba(6, 6, 6, 0.88));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-soft-cta p {
  max-width: 42rem;
}

@keyframes about-snapshot-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes about-community-marquee-forward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes about-community-marquee-reverse {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes about-quote-ribbon {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 1.2rem));
  }
}

@media (min-width: 920px) {
  .about-sunrise-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  }

  .about-welcome-note-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  }

  .about-luke-journal {
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  }

  .about-sunrise-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  }

  .about-feel-row {
    grid-template-columns: 112px minmax(0, 1.12fr) minmax(0, 1fr);
  }

  .about-feel-row > p {
    margin-top: 2.2rem;
  }

  .about-first-steps {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
  }
}

@media (max-width: 919px) {
  .about-community-editorial {
    width: min(94vw, 720px);
  }

  .about-sunrise-visual {
    min-height: 420px;
    padding: 0.2rem 0;
  }

  .about-sunrise-main-photo {
    height: 360px;
  }

  .about-sunrise-snapshot {
    width: 44%;
    height: 150px;
  }

  .about-photo-story-slider {
    grid-auto-columns: 86vw;
  }

  .about-luke-journal-image {
    min-height: 360px;
  }

  .about-soft-cta {
    border-radius: 26px;
  }

  .about-feel-row > p,
  .about-first-steps-list p {
    max-width: none;
  }

  .about-first-steps-list > div {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .about-first-steps-list p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-sunrise-snapshot,
  .about-community-rail-track,
  .about-quote-ribbon-track {
    animation: none;
  }
}

/* Store refresh */
body.page-store .store-banner {
  min-height: clamp(22rem, 36vw, 28rem);
  background:
    linear-gradient(92deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.8) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.4)),
    url("./assets/team-optimized/gym-floor-960.jpg") center/cover no-repeat;
}

body.page-store .store-banner::before {
  background:
    radial-gradient(circle at 14% 24%, rgba(241, 89, 34, 0.18), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(254, 161, 42, 0.1), transparent 22%);
}

body.page-store .store-banner-inner {
  width: min(1280px, 94vw);
  grid-template-columns: minmax(0, 38rem);
  gap: 0.55rem;
}

body.page-store .store-banner h1 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 6.4vw, 4.5rem);
  letter-spacing: -0.02em;
}

body.page-store .store-banner p {
  max-width: 34rem;
  font-size: 0.98rem;
}

body.page-store .store-shell.section,
body.page-store #store-product-root.section,
body.page-store .store-related-band {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(241, 89, 34, 0.16), transparent 24%),
    radial-gradient(circle at top left, rgba(254, 161, 42, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.96), rgba(6, 6, 6, 0.98));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3);
}

body.page-store .store-shell.section,
body.page-store #store-product-root.section {
  padding: 1.3rem;
}

body.page-store .store-related-band {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-store .store-shell.section h2,
body.page-store #store-product-root.section h2,
body.page-store .store-related-head h2,
body.page-store .store-detail-card h3,
body.page-store .store-config-card h3 {
  color: #ffffff;
}

body.page-store .store-shell.section .kicker,
body.page-store #store-product-root.section .kicker,
body.page-store .store-related-band .kicker {
  color: #ffd7a5;
  text-shadow: none;
}

body.page-store .store-shell.section .section-copy,
body.page-store .store-detail-card p,
body.page-store .store-related-head p {
  color: rgba(255, 255, 255, 0.7);
}

body.page-store .store-collection-head {
  gap: 0.55rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-store .store-sidebar,
body.page-store .store-gallery-card,
body.page-store .store-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(9, 9, 9, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

body.page-store .store-sidebar {
  padding: 1rem;
}

body.page-store .store-category-nav {
  gap: 0.56rem;
}

body.page-store .store-filter-group {
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.55rem;
}

body.page-store .store-filter-group .kicker {
  margin-bottom: 0;
}

body.page-store .store-audience-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

body.page-store .store-audience-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  min-height: 4.2rem;
  padding: 0.62rem 0.55rem;
  display: grid;
  gap: 0.24rem;
  justify-items: center;
  align-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.page-store .store-audience-button span {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.page-store .store-audience-button strong {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #ffd7a5;
}

body.page-store .store-audience-button:hover,
body.page-store .store-audience-button:focus-visible {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.16), rgba(254, 161, 42, 0.08)),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

body.page-store .store-audience-button.is-active {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.24), rgba(254, 161, 42, 0.1)),
    rgba(255, 255, 255, 0.06);
}

body.page-store .store-category-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.72rem 0.84rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

body.page-store .store-category-button strong {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
}

body.page-store .store-category-button:hover,
body.page-store .store-category-button:focus-visible {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.16), rgba(254, 161, 42, 0.08)),
    rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

body.page-store .store-category-button.is-active {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.24), rgba(254, 161, 42, 0.1)),
    rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transform: none;
}

body.page-store .store-category-button.is-active strong {
  background: rgba(255, 208, 142, 0.18);
  color: #fff2dc;
}

body.page-store .store-results {
  gap: 1.25rem;
}

body.page-store .store-grid {
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.page-store .store-featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

body.page-store .store-standard-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.page-store .store-grid-divider {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 208, 146, 0.18) 18%, rgba(255, 208, 146, 0.28) 50%, rgba(255, 208, 146, 0.18) 82%, rgba(0, 0, 0, 0));
}

body.page-store .store-product-card {
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.24s ease;
}

body.page-store .store-product-card:hover {
  transform: translateY(-3px);
}

body.page-store .store-product-card.has-promo {
  background: transparent;
}

body.page-store .store-product-link,
body.page-store .store-product-card.has-promo .store-product-link,
body.page-store .store-product-card--overlay .store-product-link,
body.page-store .store-related-card .store-product-link {
  gap: 0;
  padding: 0;
  color: inherit;
}

body.page-store .store-product-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 161, 42, 0.12), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(241, 89, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #171310 0%, #090909 100%);
}

body.page-store .store-product-promo-row,
body.page-store .store-product-card.has-promo .store-product-promo-row {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  right: auto;
  z-index: 4;
  justify-content: flex-start;
  margin: 0;
}

body.page-store .store-promo-badge {
  min-width: 0;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  animation: none !important;
}

body.page-store .store-promo-badge::before,
body.page-store .store-promo-badge::after {
  display: none !important;
}

body.page-store .store-promo-badge--new {
  border-color: rgba(255, 168, 92, 0.66);
  background: linear-gradient(135deg, rgba(136, 38, 8, 0.98), rgba(241, 89, 34, 0.94));
  color: #ffffff;
}

body.page-store .store-promo-badge--sale {
  border-color: rgba(185, 74, 95, 0.64);
  background: linear-gradient(135deg, rgba(90, 8, 18, 0.98), rgba(149, 16, 35, 0.96));
  color: #ffffff;
}

body.page-store .store-artwork,
body.page-store .store-product-card.has-promo .store-artwork,
body.page-store .store-product-card--overlay .store-artwork {
  aspect-ratio: 4 / 4.6;
  border: 0;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 161, 42, 0.12), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(241, 89, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #171310 0%, #090909 100%);
  box-shadow: none;
  padding: 0;
}

body.page-store .store-artwork.has-photo,
body.page-store .store-product-card.has-promo .store-artwork.has-photo,
body.page-store .store-product-card--overlay .store-artwork.has-photo {
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 161, 42, 0.1), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(241, 89, 34, 0.08), transparent 30%),
    linear-gradient(180deg, #171310 0%, #090909 100%);
  border-color: transparent;
}

body.page-store .store-artwork::before,
body.page-store .store-artwork::after {
  display: none;
}

body.page-store .store-product-card .store-artwork-photo {
  inset: -5%;
  width: calc(100% + 10%);
  height: calc(100% + 10%);
  object-fit: cover;
  object-position: center 22%;
  padding: 0;
  transition: transform 0.45s ease;
}

body.page-store .store-product-card:hover .store-artwork-photo {
  transform: scale(1.06);
}

body.page-store .store-product-copy {
  min-height: 8.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(9, 9, 9, 0.98));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

body.page-store .store-product-info-box::before {
  display: none;
}

body.page-store .store-product-meta {
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
}

body.page-store .store-product-category,
body.page-store .store-product-card.has-promo .store-product-category,
body.page-store .store-product-card--overlay .store-product-category {
  color: rgba(255, 243, 232, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

body.page-store .store-product-note {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 215, 165, 0.78);
}

body.page-store .store-product-copy h3,
body.page-store .store-product-card.has-promo .store-product-copy h3,
body.page-store .store-product-card--overlay .store-product-copy h3 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.05;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

body.page-store .store-product-fit {
  display: block !important;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.35;
}

body.page-store .store-product-footer {
  margin-top: auto;
  padding-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body.page-store .store-product-price {
  font-family: "Roboto", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fea12a;
}

body.page-store .store-product-price--overlay {
  display: none;
}

body.page-store #store-product-root.section {
  margin-top: 1.45rem;
}

body.page-store .store-product-shell {
  gap: 1.15rem;
}

body.page-store .store-gallery-card,
body.page-store .store-detail-card,
body.page-store .store-config-card {
  gap: 0;
  border-radius: 26px;
  padding: 1.08rem;
}

body.page-store .store-gallery-head,
body.page-store .store-related-head {
  gap: 0.35rem;
}

body.page-store .store-gallery-slider {
  margin-top: 0.82rem;
  gap: 0.82rem;
}

body.page-store .store-gallery-viewport {
  border-radius: 20px;
}

body.page-store .store-gallery-slide .store-artwork {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-store .store-gallery-card .store-artwork-copy-layer {
  gap: 0.4rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0) 42%, rgba(7, 7, 7, 0.68) 100%);
}

body.page-store .store-gallery-card .store-artwork-tag {
  width: fit-content;
  padding: 0.32rem 0.54rem;
  background: rgba(255, 255, 255, 0.14);
}

body.page-store .store-gallery-card .store-artwork-caption {
  max-width: 28ch;
}

body.page-store .store-gallery-nav,
body.page-store .store-related-nav {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.84rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: none;
}

body.page-store .store-gallery-nav:hover,
body.page-store .store-gallery-nav:focus-visible,
body.page-store .store-related-nav:hover,
body.page-store .store-related-nav:focus-visible {
  border-color: rgba(255, 207, 146, 0.42);
  background:
    linear-gradient(135deg, rgba(241, 89, 34, 0.16), rgba(254, 161, 42, 0.08)),
    rgba(255, 255, 255, 0.05);
}

body.page-store .store-gallery-dot {
  background: rgba(255, 255, 255, 0.18);
}

body.page-store .store-gallery-dot.is-active {
  background: linear-gradient(130deg, rgba(241, 89, 34, 0.92), rgba(254, 161, 42, 0.9));
}

body.page-store .store-detail-card .store-product-meta {
  margin-bottom: 0.35rem;
}

body.page-store .store-detail-card .store-product-price {
  font-size: 1.45rem;
  color: #fea12a;
}

body.page-store .store-detail-card h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

body.page-store .store-config-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #14110f 0%, #0a0908 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body.page-store .store-config-card h3,
body.page-store .store-config-card label,
body.page-store .store-config-card .form-note {
  color: rgba(255, 255, 255, 0.88);
}

body.page-store .store-config-card .kicker {
  color: #ffd7a5;
}

body.page-store .store-config-form input,
body.page-store .store-config-form select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

body.page-store .store-config-form option {
  color: #171412;
}

body.page-store .store-related-head {
  justify-items: start;
  text-align: left;
}

body.page-store .store-related-band .store-related-head h2 {
  white-space: normal;
}

@media (min-width: 980px) {
  body.page-store .store-shell {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 1.25rem;
  }

  body.page-store .store-product-shell {
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  }
}

@media (max-width: 639px) {
  body.page-store .store-banner {
    min-height: 20rem;
  }

  body.page-store .store-banner h1 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 11vw, 3.7rem);
  }

  body.page-store .store-banner p {
    font-size: 0.9rem;
    max-width: 34ch;
  }

  body.page-store .store-shell.section,
  body.page-store #store-product-root.section,
  body.page-store .store-related-band {
    border-radius: 24px;
    padding: 1rem;
  }

  body.page-store .store-product-copy {
    min-height: auto;
  }

  body.page-store .store-related-track {
    grid-auto-columns: minmax(84%, 84%);
  }

  body.page-store .store-audience-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-store .store-product-card,
  body.page-store .store-artwork-photo {
    transition: none;
  }
}
