body:has(.s25-strength-app) .entry-header {
  display:none !important;
}

:root {
  --s25-bg:#f8f5ef;
  --s25-card:#fffaf2;
  --s25-card-clean:#fff;
  --s25-text:#111;
  --s25-muted:#6f6a63;
  --s25-border:rgba(0,0,0,.09);
  --s25-soft-border:rgba(0,0,0,.06);
}

.s25-strength-app {
  width:min(980px,92%);
  margin:60px auto 120px;
  color:var(--s25-text);
  font-family:inherit;
}

.s25-app-hero {
  background:#111;
  color:#fff;
  border-radius:34px;
  padding:42px;
  margin-bottom:22px;
}

.s25-kicker {
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.14em;
  font-weight:900;
  opacity:.65;
  margin:0 0 14px;
}

.s25-app-hero h1 {
  font-size:clamp(38px,6vw,68px);
  line-height:.92;
  letter-spacing:-.06em;
  margin:0 0 18px;
  max-width:720px;
}

.s25-app-hero p:last-child {
  font-size:18px;
  line-height:1.6;
  max-width:680px;
  opacity:.86;
  margin:0;
}

.s25-card,
.s25-member-card {
  background:var(--s25-card);
  border:1px solid var(--s25-border);
  border-radius:30px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.045);
}

.s25-register-form {
  display:grid;
  gap:16px;
}

.s25-form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.s25-strength-app input,
.s25-strength-app select,
.s25-strength-app textarea {
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  padding:16px 17px;
  font-size:16px;
  line-height:1.4;
  background:#fff;
  color:#111;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.s25-strength-app input:focus,
.s25-strength-app select:focus,
.s25-strength-app textarea:focus {
  border-color:#111;
  box-shadow:0 0 0 4px rgba(0,0,0,.06);
}

.s25-strength-app textarea {
  min-height:118px;
  resize:vertical;
}

.s25-strength-app button {
  background:#111;
  color:#fff;
  border:0;
  border-radius:18px;
  padding:17px 22px;
  font-size:15px;
  font-weight:900;
  letter-spacing:.02em;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.s25-strength-app button:hover {
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}

.s25-message {
  display:none;
  border-radius:18px;
  padding:15px 16px;
  font-weight:800;
}

.s25-message.success {
  display:block;
  background:#111;
  color:#fff;
}

.s25-message.error {
  display:block;
  background:#ffe7e7;
  color:#9b0000;
}

@media (max-width:700px) {
  .s25-strength-app {
    width:min(94%, 720px);
    margin:34px auto 90px;
  }

  .s25-app-hero {
    border-radius:26px;
    padding:30px 24px;
  }

  .s25-app-hero h1 {
    font-size:42px;
  }

  .s25-card,
  .s25-member-card {
    border-radius:24px;
    padding:22px;
  }

  .s25-form-grid {
    grid-template-columns:1fr;
  }
}

/* App Page Spacing Fix */
.s25-strength-app {
  padding-top: 90px;
}

.s25-app-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

@media (max-width:700px) {
  .s25-strength-app {
    padding-top: 70px;
  }

  .s25-app-hero h1 {
    font-size: 36px;
  }
}

/* Coach Dashboard Polish */
.s25-strength-app[data-s25-view="coach"] {
  max-width: 1180px;
}

.s25-strength-app[data-s25-view="coach"] .s25-app-hero {
  background:
    linear-gradient(135deg, rgba(17,17,17,.96), rgba(17,17,17,.82));
  border: 1px solid rgba(255,255,255,.08);
}

.s25-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.s25-members-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.s25-member-card {
  background: #fff;
  border-radius: 30px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.s25-member-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.s25-member-header h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.05em;
  line-height: .95;
}

.s25-status {
  display: inline-flex;
  width: fit-content;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  background: #f5f0e8;
  color: #111;
  border-radius: 999px;
  padding: 7px 10px;
  margin: 0;
}

.s25-activate-btn {
  flex: 0 0 auto;
  background: #111 !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.s25-member-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.s25-member-meta p {
  background: #fffaf2;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 14px;
  margin: 0;
  line-height: 1.45;
}

.s25-member-meta strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .55;
  margin-bottom: 5px;
}

.s25-panel {
  background: #f8f5ef;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  margin-top: 14px;
  overflow: hidden;
}

.s25-panel summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
}

.s25-panel summary::-webkit-details-marker {
  display: none;
}

.s25-panel summary::after {
  content: "+";
  float: right;
  font-weight: 900;
}

.s25-panel[open] summary::after {
  content: "–";
}

.s25-panel form {
  padding: 0 20px 20px;
}

.s25-movement-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.s25-movement-row h3 {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 800px) {
  .s25-search-row,
  .s25-member-meta,
  .s25-movement-row {
    grid-template-columns: 1fr;
  }

  .s25-member-header {
    flex-direction: column;
  }

  .s25-activate-btn {
    width: 100%;
  }
}

/* Registration Launch Polish */
body:has(.s25-strength-app) .entry-header {
  display:none !important;
}

.s25-register-intro,
.s25-next-steps {
  margin-bottom: 18px;
}

.s25-register-intro h2,
.s25-next-steps h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}

.s25-register-intro p {
  max-width: 760px;
  line-height: 1.7;
}

.s25-register-intro p + p {
  margin-top: 12px;
}

.s25-register-note {
  background: #f5f0e8;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #5f5a52;
}

.s25-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.s25-next-grid div {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 22px;
}

.s25-next-grid span {
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  opacity: .45;
  margin-bottom: 14px;
}

.s25-next-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.s25-next-grid p {
  margin: 0;
  line-height: 1.6;
  color: #6f6a63;
}

.s25-strength-app[data-s25-view="register"] .s25-app-hero {
  background:
    linear-gradient(135deg, rgba(17,17,17,.96), rgba(17,17,17,.84));
}

.s25-strength-app[data-s25-view="register"] .s25-register-form button {
  margin-top: 4px;
}

@media (max-width: 800px) {
  .s25-next-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Registration Final Polish ===== */

.s25-strength-app[data-s25-view="register"] {
  max-width: 860px;
}

.s25-strength-app[data-s25-view="register"] .s25-app-hero {
  padding: 52px;
  overflow: hidden;
  position: relative;
}

.s25-strength-app[data-s25-view="register"] .s25-app-hero::after {
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  right:-180px;
  top:-180px;

  border-radius:50%;

  background:
  radial-gradient(
    rgba(255,255,255,.08),
    transparent 70%
  );

  pointer-events:none;
}

.s25-strength-app[data-s25-view="register"] .s25-app-hero h1 {
  max-width:540px;
}

.s25-register-form {
  gap:20px;
}

.s25-register-form input,
.s25-register-form select,
.s25-register-form textarea {
  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #fcfbf8
    );

  border:1px solid rgba(0,0,0,.08);

  font-size:15px;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border .2s ease;
}

.s25-register-form input:hover,
.s25-register-form select:hover,
.s25-register-form textarea:hover {
  transform:translateY(-1px);
}

.s25-register-form input:focus,
.s25-register-form select:focus,
.s25-register-form textarea:focus {
  box-shadow:
    0 16px 35px rgba(0,0,0,.06);
}

.s25-register-form button {

  min-height:66px;

  font-size:16px;

  letter-spacing:.06em;

  background:
  linear-gradient(
    135deg,
    #111,
    #1f1f1f
  );

  position:relative;

  overflow:hidden;
}

.s25-register-form button::before {

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.12),
    transparent
  );

  transform:translateX(-100%);

  transition:.8s;
}

.s25-register-form button:hover::before {
  transform:translateX(100%);
}

.s25-register-note {

  display:flex;

  gap:14px;

  align-items:flex-start;

  font-size:14px;

  line-height:1.7;
}

.s25-register-note::before {

  content:"→";

  font-weight:900;

  opacity:.45;
}

.s25-next-grid div {

  transition:
    transform .3s ease,
    box-shadow .3s ease;

  cursor:default;
}

.s25-next-grid div:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 35px rgba(0,0,0,.06);
}

.s25-next-grid span {
  font-size:13px;
}

.s25-next-grid h3 {
  font-size:22px;
}

.s25-message.success {

  text-align:center;

  font-size:15px;

  border-radius:20px;

  padding:18px;
}

@media (max-width:700px){

.s25-strength-app[data-s25-view="register"] .s25-app-hero{
padding:36px 28px;
}

.s25-register-form button{
min-height:60px;
}

}

/* MEMBER ACCOUNT */

.s25-strength-app[data-s25-view="member-account"] {
max-width:980px;
}

.s25-member-overview {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-bottom:18px;
}

.s25-member-overview .s25-card {
text-align:left;
}

.s25-member-overview span {
font-size:40px;
display:block;
margin-bottom:18px;
}

.s25-member-overview h3 {
margin:0 0 12px;
font-size:30px;
letter-spacing:-.04em;
}

.s25-member-overview p {
margin:0;
line-height:1.7;
color:#666;
}

.s25-locked-grid {
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
margin-top:22px;
}

.s25-locked-grid div {

background:#faf7f1;

border:1px solid rgba(0,0,0,.06);

padding:26px;

border-radius:24px;

position:relative;

overflow:hidden;

}

.s25-locked-grid div::after {

content:"";

position:absolute;

inset:0;

backdrop-filter:blur(4px);

opacity:.2;

}

.s25-locked-grid span {
font-size:28px;
display:block;
margin-bottom:14px;
}

.s25-locked-grid h4 {
margin:0 0 10px;
font-size:26px;
}

.s25-locked-grid p {
margin:0;
line-height:1.7;
color:#666;
}

@media(max-width:800px){

.s25-member-overview{
grid-template-columns:1fr;
}

.s25-locked-grid{
grid-template-columns:1fr;
}

}

.s25-account-logout {
  display:inline-flex;
  margin-top:22px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:900;
  border-radius:16px;
  padding:14px 18px;
}

.s25-account-logout:hover {
  opacity:.85;
}
.s25-account-logout {
  display:inline-flex;
  margin-top:22px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:900;
  border-radius:16px;
  padding:14px 18px;
}

.s25-account-logout:hover {
  opacity:.85;
}

/*==========================
FIRST LOGIN AVATAR
==========================*/

.s25-avatar-setup-field {
  width: min(360px, 100%);
  margin: 0 auto;
  text-align: left;
}

.s25-avatar-setup-field label {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.s25-avatar-setup-field select {
  width: 100%;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 16px;
  font-weight: 900;
}

.s25-avatar-setup-field option {
  color: #111;
}

.s25-avatar-modal{
position:fixed;
inset:0;
background:rgba(5,8,12,.92);

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

padding:32px;

backdrop-filter:blur(20px);
}

.s25-avatar-modal.closing{
opacity:0;

transition:.45s;
}

.s25-avatar-modal-inner{

width:min(1200px,100%);

text-align:center;

animation:s25Fade .6s;
}

.s25-avatar-modal h1{

font-size:52px;

margin-bottom:8px;
}

.s25-avatar-modal p{

opacity:.8;

margin-bottom:40px;
}

.s25-avatar-grid{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(170px,1fr)
);

gap:18px;
}

.s25-avatar-option{

background:#111;

border:1px solid rgba(255,255,255,.08);

padding:18px;

border-radius:24px;

cursor:pointer;

transition:.25s;

color:white;
}

.s25-avatar-option:hover{

transform:
translateY(-6px);

border-color:#D4AF37;

background:#171717;
}

.s25-avatar-option.loading{

opacity:.55;

pointer-events:none;
}

.s25-avatar-option img{

width:90px;

height:90px;

object-fit:contain;

display:block;

margin:0 auto 14px;
}

.s25-avatar-option span{

display:block;

font-size:15px;

font-weight:700;
}

.s25-member-hero{

display:grid;

grid-template-columns:
280px 1fr;

gap:40px;

align-items:center;
}

.s25-member-avatar-full{

width:100%;

max-width:280px;

display:block;

margin:auto;
}

@keyframes s25Fade{

from{

opacity:0;

transform:
translateY(18px);

}

to{

opacity:1;

transform:
translateY(0);

}
}

@media(max-width:768px){

.s25-member-hero{

grid-template-columns:1fr;

}

.s25-avatar-modal h1{

font-size:34px;

}

}

/* ==========================
   AVATAR CHARACTER SELECT
========================== */

.s25-avatar-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.08), transparent 38%),
    rgba(5, 6, 8, .96);
  color: #fff;
  overflow-y: auto;
  backdrop-filter: blur(18px);
}

.s25-avatar-modal-inner {
  width: min(1120px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 26px;
  text-align: center;
}

.s25-avatar-copy h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.06em;
  margin: 0 0 14px;
}

.s25-avatar-copy p {
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.s25-avatar-stage {
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  gap: 18px;
  align-items: center;
}

.s25-avatar-feature {
  display: grid;
  grid-template-columns: minmax(180px, 360px) 1fr;
  align-items: center;
  gap: 28px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.s25-avatar-feature img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.45));
}

.s25-avatar-feature-copy span {
  display: inline-flex;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.s25-avatar-feature-copy h2 {
  color: #fff;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .88;
  letter-spacing: -.06em;
  margin: 0;
}

.s25-avatar-arrow {
  height: 58px;
  width: 58px;
  border-radius: 999px !important;
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  font-size: 38px !important;
  line-height: 1 !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

.s25-avatar-arrow:hover {
  background: rgba(255,255,255,.18) !important;
}

.s25-avatar-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  scroll-snap-type: x mandatory;
}

.s25-avatar-rail::-webkit-scrollbar {
  height: 6px;
}

.s25-avatar-rail::-webkit-scrollbar-track {
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.s25-avatar-rail::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.28);
  border-radius: 999px;
}

.s25-avatar-thumb {
  min-width: 112px;
  background: rgba(255,255,255,.07) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 20px !important;
  padding: 12px !important;
  scroll-snap-align: center;
  box-shadow: none !important;
}

.s25-avatar-thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.s25-avatar-thumb span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.s25-avatar-thumb.is-active {
  border-color: #d4af37 !important;
  background: rgba(212,175,55,.16) !important;
  transform: translateY(-3px);
}

.s25-avatar-confirm {
  justify-self: center;
  min-width: min(360px, 100%);
  min-height: 62px;
  border-radius: 18px !important;
  background: #fff !important;
  color: #111 !important;
  font-weight: 900 !important;
}

.s25-avatar-modal.closing {
  opacity: 0;
  transition: .45s ease;
}

@media (max-width: 760px) {
  .s25-avatar-stage {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .s25-avatar-feature {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
  }

  .s25-avatar-feature img {
    max-height: 280px;
  }

  .s25-avatar-feature-copy h2 {
    font-size: 38px;
  }

  .s25-avatar-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px !important;
  }
}

/* Member Dashboard Tools */

.s25-member-tools {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:18px 0;
}

.s25-tool-card {
  text-align:left;
  background:#fffaf2 !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:26px !important;
  padding:24px !important;
  min-height:210px;
  box-shadow:0 18px 45px rgba(0,0,0,.045);
}

.s25-tool-card span {
  font-size:36px;
  display:block;
  margin-bottom:18px;
}

.s25-tool-card h3 {
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.04em;
}

.s25-tool-card p {
  margin:0;
  line-height:1.55;
  color:#6f6a63;
}

.s25-tool-card.is-locked {
  opacity:.65;
  cursor:not-allowed;
}

.s25-tool-output {
  margin-top:18px;
}

.s25-tool-form {
  display:grid;
  gap:14px;
  margin-top:18px;
}

.s25-tool-result {
  margin-top:16px;
  background:#111;
  color:#fff;
  border-radius:20px;
  padding:18px;
}

.s25-choice-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.s25-choice {
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
}

@media(max-width:900px) {
  .s25-member-tools {
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px) {
  .s25-member-tools,
  .s25-choice-grid {
    grid-template-columns:1fr;
  }
}

.s25-coach-member-row {
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:24px;
  padding:18px;
  display:grid;
  gap:16px;
  box-shadow:0 14px 35px rgba(0,0,0,.04);
}

.s25-coach-member-main {
  display:flex;
  align-items:center;
  gap:16px;
}

.s25-coach-avatar {
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:50%;
  background:#111;
}

.s25-coach-member-main h2 {
  margin:4px 0 0;
  font-size:26px;
  letter-spacing:-.04em;
}

.s25-update-panel {
  background:#f8f5ef;
  border-radius:20px;
  padding:18px;
}

.s25-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.s25-member-actions button {
  flex: 0 0 auto;
}

.s25-member-actions button.is-active {
  background: #d4af37 !important;
  color: #111 !important;
}

@media(max-width:700px) {
  .s25-member-actions {
    width:100%;
  }

  .s25-member-actions button {
    width:100%;
  }
}

.s25-record-session {
  display:grid;
  gap:16px;
}

.s25-result-form {
  display:grid;
  gap:14px;
}

.s25-category-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.s25-category-tabs button {
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:999px !important;
  padding:11px 14px !important;
  font-size:12px !important;
  box-shadow:none !important;
}

.s25-category-tabs button.active {
  background:#111 !important;
  color:#fff !important;
}

.s25-result-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

@media(max-width:700px) {
  .s25-result-grid {
    grid-template-columns:1fr;
  }

  .s25-category-tabs button {
    flex:1 1 auto;
  }
}

/* TRAINING RESULTS */

.s25-training-results {
  margin: 18px 0;
}

.s25-training-results h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: .95;
  letter-spacing: -.05em;
}

.s25-results-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.s25-results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.s25-results-table th,
.s25-results-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
}

.s25-results-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .55;
}

.s25-results-table td {
  color: #111;
  font-weight: 700;
}

.s25-result-note-row td {
  background: #f8f5ef;
  color: #6f6a63;
  font-weight: 500;
  border-radius: 14px;
}

/* MEMBERS WORLD */

.s25-strength-app[data-s25-view="members-world"] {
  max-width: 980px;
}

.s25-members-world-hero {
  position: relative;
  overflow: hidden;
}

.s25-members-world-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,255,255,.1), transparent 70%);
  pointer-events: none;
}

.s25-members-world-feed {
  display: grid;
  gap: 16px;
}

.s25-world-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  background: #fffaf2;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.s25-world-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.s25-world-avatar img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.s25-world-content {
  min-width: 0;
}

.s25-world-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.s25-world-topline strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.s25-world-topline span {
  font-size: 12px;
  font-weight: 800;
  opacity: .45;
}

.s25-world-action {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .5;
}

.s25-world-card h2 {
  margin: 0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: .95;
  letter-spacing: -.05em;
}

.s25-world-result {
  margin: 10px 0 0;
  display: inline-flex;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
}

.s25-world-meta {
  margin: 12px 0 0;
  color: #6f6a63;
  font-weight: 700;
}

.s25-world-note {
  margin: 14px 0 0;
  background: #f8f5ef;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 14px;
  color: #6f6a63;
  line-height: 1.55;
}

@media(max-width: 650px) {
  .s25-world-card {
    grid-template-columns: 1fr;
  }

  .s25-world-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* MEMBERS WORLD — MILESTONES */

.s25-world-section {
  margin-top: 22px;
}

.s25-world-section-head {
  margin: 0 0 14px;
}

.s25-world-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: .95;
  letter-spacing: -.05em;
}

.s25-milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.s25-milestone-card {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

.s25-milestone-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}

.s25-milestone-icon {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 28px;
  opacity: .85;
}

.s25-milestone-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.s25-milestone-avatar img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.s25-milestone-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: .95;
  letter-spacing: -.05em;
  color: #fff;
}

.s25-milestone-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.s25-milestone-card span {
  display: inline-flex;
  margin-top: 12px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

@media(max-width: 760px) {
  .s25-milestone-grid {
    grid-template-columns: 1fr;
  }

  .s25-milestone-card {
    grid-template-columns: 58px 1fr;
  }

  .s25-milestone-avatar {
    width: 58px;
    height: 58px;
  }

  .s25-milestone-avatar img {
    width: 52px;
    height: 52px;
  }
}

.s25-coach-tool-divider {
  margin: 22px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.s25-coach-tool-divider h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.s25-coach-tool-divider p {
  margin: 0;
  color: #6f6a63;
}

.s25-shoutout-form {
  display: grid;
  gap: 12px;
}

/* MEMBERS WORLD — COACH SHOUTOUTS */

.s25-shoutout-grid {
  display: grid;
  gap: 16px;
}

.s25-shoutout-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}

.s25-shoutout-card::after {
  content: "★";
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 34px;
  opacity: .16;
}

.s25-shoutout-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.s25-shoutout-card .s25-world-action,
.s25-shoutout-card .s25-world-meta,
.s25-shoutout-card .s25-world-topline span {
  color: rgba(255,255,255,.68);
}

.s25-shoutout-card .s25-world-avatar {
  background: rgba(255,255,255,.08);
}

@media(max-width: 650px) {
  .s25-shoutout-card {
    grid-template-columns: 1fr;
  }
}

/* MEMBERS WORLD — MEMBER POPUP */

.s25-member-popup-trigger {
  cursor: pointer;
}

.s25-member-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,6,8,.88);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 24px;
}

.s25-member-popup[hidden] {
  display: none;
}

.s25-member-popup-inner {
  width: min(520px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fffaf2;
  color: #111;
  border-radius: 34px;
  padding: 34px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}

.s25-member-popup-close {
  position: sticky;
  top: 0;
  float: right;
  margin: -14px -14px 0 0;
  width: 42px;
  height: 42px;
  border-radius: 999px !important;
  padding: 0 !important;
  z-index: 2;
}

.s25-member-popup-avatar {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #111;
  border-radius: 50%;
  margin: 8px auto 20px;
  display: block;
}

.s25-member-popup-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: .9;
  letter-spacing: -.06em;
}

.s25-member-popup-inner p {
  margin: 0;
  color: #6f6a63;
  font-weight: 800;
}

.s25-member-popup-actions {
  margin-top: 24px;
}

.s25-member-popup-actions button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.s25-member-card-details {
  margin-top: 24px;
  text-align: left;
}

.s25-member-card-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.s25-member-card-stat-grid div {
  background: #f8f5ef;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

.s25-member-card-stat-grid strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em;
}

.s25-member-card-stat-grid span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6f6a63;
}

.s25-member-card-section {
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 16px;
  margin-top: 16px;
}

.s25-member-card-section h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.s25-member-card-section p {
  color: #6f6a63;
  font-weight: 600;
}

.s25-member-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.s25-member-card-pills span {
  display: inline-flex;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.s25-member-card-row {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
}

.s25-member-card-row strong {
  font-size: 15px;
}

.s25-member-card-row span {
  font-weight: 900;
}

.s25-member-card-row em {
  font-style: normal;
  color: #6f6a63;
  text-transform: capitalize;
  font-size: 13px;
}

.s25-member-card-shoutout {
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

@media(max-width: 650px) {
  .s25-member-popup {
    padding: 24px 14px;
  }

  .s25-member-popup-inner {
    max-height: calc(100vh - 48px);
    padding: 28px 20px;
    border-radius: 28px;
  }

  .s25-member-card-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* THE BOARD */

.s25-strength-app[data-s25-view="the-board"] {
  max-width: 1180px;
}

.s25-board-hero {
  position: relative;
  overflow: hidden;
}

.s25-board-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -200px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}

.s25-board-section {
  margin-top: 26px;
}

.s25-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.s25-board-card {
  min-height: 230px;
  border-radius: 30px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.045);
  position: relative;
  overflow: hidden;
}

.s25-board-card.is-held {
  background: #111;
  color: #fff;
}

.s25-board-card.is-open {
  background: #fffaf2;
  color: #111;
}

.s25-board-card.is-conditioning {
  background: #fff;
}

.s25-board-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(rgba(0,0,0,.06), transparent 70%);
  pointer-events: none;
}

.s25-board-card.is-held::after {
  background: radial-gradient(rgba(255,255,255,.12), transparent 70%);
}

.s25-board-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.s25-board-card-top span {
  font-size: 26px;
}

.s25-board-card-top p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: inherit;
  opacity: .68;
}

.s25-board-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: .9;
  letter-spacing: -.06em;
  position: relative;
  z-index: 1;
}

.s25-board-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.s25-board-holder {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.s25-board-holder img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.s25-board-holder h3 {
  color: #fff;
}

.s25-board-holder strong {
  font-size: 24px;
}

@media(max-width: 980px) {
  .s25-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 650px) {
  .s25-board-grid {
    grid-template-columns: 1fr;
  }
}

/* MEMBER ACCOUNT MODAL */

.s25-account-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5,6,8,.88);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 24px;
}

.s25-account-modal[hidden] {
  display: none;
}

.s25-account-modal-inner {
  width: min(720px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fffaf2;
  color: #111;
  border-radius: 34px;
  padding: 34px;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}

.s25-account-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: -14px -14px 0 0;
  width: 42px;
  height: 42px;
  border-radius: 999px !important;
  padding: 0 !important;
  z-index: 2;
}

.s25-account-modal-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .92;
  letter-spacing: -.06em;
}

.s25-dashboard-card {
  text-align: left;
  border: 0;
  cursor: pointer;
}

@media(max-width:650px) {
  .s25-account-modal {
    padding: 24px 14px;
  }

  .s25-account-modal-inner {
    max-height: calc(100vh - 48px);
    padding: 28px 20px;
    border-radius: 28px;
  }
}

/* MEMBER ACCOUNT — DASHBOARD POLISH */

.s25-dashboard-card,
.s25-tool-card {
  cursor: pointer;
}

.s25-dashboard-card:hover,
.s25-tool-card:hover {
  transform: translateY(-4px);
}

.s25-account-modal-inner {
  animation: s25ModalIn .28s ease;
}

@keyframes s25ModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.s25-account-modal-inner .s25-results-table-wrap {
  margin-top: 18px;
}

.s25-account-modal-inner .s25-tool-form {
  margin-top: 22px;
}

.s25-account-modal-inner .s25-choice-grid {
  margin-top: 22px;
}

.s25-account-modal-inner .s25-tool-result {
  margin-top: 18px;
}

.s25-account-modal-inner p {
  line-height: 1.65;
}

.s25-board-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 200px;
  min-height: 58px;

  background: #fff;
  color: #111;

  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -.02em;

  border-radius: 18px;

  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.s25-board-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* MEMBER ACCOUNT — DASHBOARD POLISH */

.s25-dashboard-card,
.s25-tool-card {
  cursor: pointer;
}

.s25-dashboard-card:hover,
.s25-tool-card:hover {
  transform: translateY(-4px);
}

.s25-account-modal-inner {
  animation: s25ModalIn .28s ease;
}

@keyframes s25ModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.s25-account-modal-inner .s25-results-table-wrap {
  margin-top: 18px;
}

.s25-account-modal-inner .s25-tool-form {
  margin-top: 22px;
}

.s25-account-modal-inner .s25-choice-grid {
  margin-top: 22px;
}

.s25-account-modal-inner .s25-tool-result {
  margin-top: 18px;
}

.s25-account-modal-inner p {
  line-height: 1.65;
}

/* MEMBERS WORLD — BOARD CTA */

.s25-world-board-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  background: #111;
  color: #fff;
}

.s25-world-board-cta h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .95;
  letter-spacing: -.05em;
}

.s25-world-board-cta p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.s25-world-board-cta a {
  flex: 0 0 auto;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 900;
  border-radius: 18px;
  padding: 16px 20px;
}

@media(max-width: 700px) {
  .s25-world-board-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .s25-world-board-cta a {
    width: 100%;
    text-align: center;
  }
}

/* MEMBER MESSAGES */

.s25-inbox-message {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 16px;
  margin-top: 12px;
}

.s25-inbox-message strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.s25-inbox-message p {
  margin: 0 0 10px;
  color: #111;
  font-weight: 600;
}

.s25-inbox-message span {
  font-size: 12px;
  font-weight: 800;
  color: #6f6a63;
}

/* REGISTRATION SUCCESS MODAL */

.s25-register-success-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 6, 8, .88);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.s25-register-success-modal[hidden] {
  display: none !important;
}

.s25-register-success-inner {
  width: min(560px, 100%);
  background: #fffaf2;
  color: #111;
  border-radius: 34px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
  animation: s25ModalIn .28s ease;
}

.s25-register-success-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: .9;
  letter-spacing: -.06em;
}

.s25-register-success-inner p {
  margin: 0 auto 22px;
  max-width: 430px;
  line-height: 1.6;
  color: #6f6a63;
}

.s25-register-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  background: #111;
  color: #fff;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 900;
}

.s25-register-login-btn:hover {
  opacity: .9;
  color: #fff;
}

/* MEMBERS WORLD — MEMBER CARD CLEAN POLISH */

.s25-member-popup {
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 24px;
}

.s25-member-popup-inner {
  width: min(560px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fffaf2;
  border-radius: 34px;
  padding: 34px;
}

.s25-member-popup-avatar {
  width: 132px;
  height: 132px;
  margin: 8px auto 18px;
  border: 3px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.s25-member-popup-inner h2 {
  font-size: clamp(38px, 6vw, 58px);
}

.s25-member-popup-actions {
  display: grid;
  gap: 10px;
}

.s25-member-popup-actions button,
.s25-member-message-box button {
  width: 100%;
}

.s25-member-message-box {
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 16px;
  text-align: left;
}

.s25-member-message-box textarea {
  min-height: 90px;
}

.s25-member-card-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 18px;
}

@media(max-width:650px) {
  .s25-member-popup {
    padding: 24px 14px;
  }

  .s25-member-popup-inner {
    max-height: calc(100vh - 48px);
    padding: 28px 20px;
  }
}

/* MEMBER FLOATING BUBBLE MENU */

.s25-member-bubble-menu {
  position: fixed;
  right: 24px;
  bottom: 112px;
  z-index: 9998;
}

.s25-member-bubble-trigger {
  width: 74px !important;
  height: 74px !important;
  border-radius: 999px !important;
  padding: 0 !important;
  background: #111 !important;
  border: 2px solid rgba(255,255,255,.85) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.22) !important;
  display: grid !important;
  place-items: center !important;
}

.s25-member-bubble-trigger img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}

.s25-member-bubble-trigger.is-active {
  transform: translateY(-3px) scale(1.03);
}

.s25-member-bubble-panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: 230px;
  background: #fffaf2;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.s25-member-bubble-panel[hidden] {
  display: none;
}

.s25-member-bubble-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 15px;
  color: #111;
  text-decoration: none;
  font-weight: 900;
}

.s25-member-bubble-panel a:hover {
  background: #111;
  color: #fff;
}

@media(max-width: 700px) {
  .s25-member-bubble-menu {
    right: 18px;
    bottom: 104px;
  }

  .s25-member-bubble-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    border-radius: 28px 0 0 28px;
    padding: 34px 22px;
    box-shadow: -20px 0 60px rgba(0,0,0,.26);
  }

  .s25-member-bubble-panel a {
    min-height: 58px;
    font-size: 18px;
  }
}

/* TV DISPLAY PAGES */

body:has(.s25-tv-app) {
  background: #050608;
  overflow: hidden;
}

body:has(.s25-tv-app) .site-header,
body:has(.s25-tv-app) .site-footer,
body:has(.s25-tv-app) .entry-header {
  display: none !important;
}

.s25-tv-app {
  width: 100vw;
  height: 100vh;
  padding: 4vh 4vw;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 32%),
    linear-gradient(135deg, #050608, #111);
  font-family: inherit;
  box-sizing: border-box;
}

.s25-tv-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4vw;
  margin-bottom: 3vh;
}

.s25-tv-hero p {
  margin: 0 0 1vh;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1vw;
  font-weight: 900;
  opacity: .6;
}

.s25-tv-hero h1 {
  margin: 0;
  font-size: 5.2vw;
  line-height: .85;
  letter-spacing: -.07em;
  color: #fff;
}

.s25-tv-hero span {
  font-size: 1.4vw;
  opacity: .7;
  max-width: 34vw;
  line-height: 1.35;
}

.s25-tv-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2vw;
}

.s25-tv-feed-card,
.s25-tv-board-card,
.s25-tv-avatar-grid article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2vw;
  padding: 1.3vw;
  box-shadow: 0 2vh 5vh rgba(0,0,0,.24);
}

.s25-tv-feed-card {
  display: grid;
  grid-template-columns: 5vw 1fr;
  gap: 1vw;
  align-items: center;
}

.s25-tv-feed-card img,
.s25-tv-record-holder img {
  width: 5vw;
  height: 5vw;
  object-fit: contain;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.s25-tv-feed-card strong {
  font-size: 1.25vw;
}

.s25-tv-feed-card h2 {
  margin: .4vh 0;
  color: #fff;
  font-size: 1.65vw;
  line-height: 1;
}

.s25-tv-feed-card p {
  display: inline-flex;
  margin: .4vh 0;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: .45vw .7vw;
  font-size: 1vw;
  font-weight: 900;
}

.s25-tv-feed-card span {
  display: block;
  font-size: .85vw;
  opacity: .55;
  font-weight: 900;
}

.s25-tv-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3vw;
}

.s25-tv-board-card {
  min-height: 19vh;
}

.s25-tv-board-card p {
  margin: 0 0 2vh;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85vw;
  font-weight: 900;
  opacity: .58;
}

.s25-tv-board-card h2 {
  margin: 0;
  color: #fff;
  font-size: 2.5vw;
  line-height: .9;
}

.s25-tv-board-card strong {
  display: block;
  margin-top: .8vh;
  font-size: 1.35vw;
}

.s25-tv-record-holder {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.s25-tv-avatar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1vw;
}

.s25-tv-avatar-grid article {
  text-align: center;
  padding: 1vw;
}

.s25-tv-avatar-grid img {
  width: 100%;
  height: 19vh;
  object-fit: contain;
  filter: drop-shadow(0 2vh 3vh rgba(0,0,0,.4));
}

.s25-tv-avatar-grid strong {
  display: block;
  margin-top: .8vh;
  font-size: 1.15vw;
}

/* TV PAGES — FORCE FULL SCREEN STANDALONE */

body:has(.s25-tv-app) {
  margin: 0 !important;
  padding: 0 !important;
  background: #050608 !important;
  overflow: hidden !important;
}

body:has(.s25-tv-app) header,
body:has(.s25-tv-app) footer,
body:has(.s25-tv-app) .site-header,
body:has(.s25-tv-app) .site-footer,
body:has(.s25-tv-app) .entry-header,
body:has(.s25-tv-app) .page-header,
body:has(.s25-tv-app) .wp-block-template-part,
body:has(.s25-tv-app) #masthead,
body:has(.s25-tv-app) #colophon {
  display: none !important;
}

body:has(.s25-tv-app) .site,
body:has(.s25-tv-app) .site-content,
body:has(.s25-tv-app) .content-area,
body:has(.s25-tv-app) main,
body:has(.s25-tv-app) article,
body:has(.s25-tv-app) .entry-content {
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.s25-tv-app {
  margin: 0 !important;
}

/* COACH DASHBOARD — CLIENT PROFILE DRAWER */

.s25-profile-toggle {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  color: #111 !important;
  padding: 0 !important;
  text-align: left;
  box-shadow: none !important;
  display: flex !important;
  align-items: center;
  gap: 16px;
}

.s25-profile-toggle:hover {
  transform: none !important;
  box-shadow: none !important;
}

.s25-profile-cog {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f8f5ef;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .25s ease, background .25s ease;
}

.s25-profile-toggle.is-active .s25-profile-cog {
  transform: rotate(45deg);
  background: #111;
  color: #fff;
}

.s25-profile-settings {
  margin-top: 16px;
  background: #f8f5ef;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 18px;
  animation: s25ProfileDrawerIn .24s ease;
}

.s25-profile-settings[hidden] {
  display: none;
}

@keyframes s25ProfileDrawerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s25-profile-settings-head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.s25-profile-settings-head p {
  margin: 0 0 16px;
  color: #6f6a63;
  line-height: 1.5;
}

.s25-profile-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.s25-gender-update label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6f6a63;
  margin-bottom: 8px;
}

@media(max-width:700px) {
  .s25-profile-settings-grid {
    grid-template-columns: 1fr;
  }
}

/* COACH DASHBOARD — CLIENT PROFILE DRAWER */

.s25-profile-toggle {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  color: #111 !important;
  padding: 0 !important;
  text-align: left;
  box-shadow: none !important;
  display: flex !important;
  align-items: center;
  gap: 16px;
}

.s25-profile-toggle:hover {
  transform: none !important;
  box-shadow: none !important;
}

.s25-profile-cog {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f8f5ef;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .25s ease, background .25s ease;
}

.s25-profile-toggle.is-active .s25-profile-cog {
  transform: rotate(45deg);
  background: #111;
  color: #fff;
}

.s25-profile-settings {
  margin-top: 16px;
  background: #f8f5ef;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 18px;
  animation: s25ProfileDrawerIn .24s ease;
}

.s25-profile-settings[hidden] {
  display: none;
}

@keyframes s25ProfileDrawerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s25-profile-settings-head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.s25-profile-settings-head p {
  margin: 0 0 16px;
  color: #6f6a63;
  line-height: 1.5;
}

.s25-profile-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.s25-gender-update label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6f6a63;
  margin-bottom: 8px;
}

@media(max-width:700px) {
  .s25-profile-settings-grid {
    grid-template-columns: 1fr;
  }
}

/* TV BOYS / GIRLS BOARD — AESTHETIC UPGRADE */

.s25-tv-board {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.12), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(212,175,55,.18), transparent 34%),
    linear-gradient(135deg, #050608 0%, #101010 48%, #1a1712 100%);
  position: relative;
  overflow: hidden;
}

.s25-tv-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 75%);
  pointer-events: none;
}

.s25-tv-board .s25-tv-hero,
.s25-tv-board .s25-tv-board-grid {
  position: relative;
  z-index: 1;
}

.s25-tv-board .s25-tv-hero {
  padding-bottom: 2.2vh;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.s25-tv-board .s25-tv-hero h1 {
  text-transform: uppercase;
  text-shadow: 0 2vh 6vh rgba(0,0,0,.55);
}

.s25-tv-board .s25-tv-hero span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .8vw 1.1vw;
  font-weight: 900;
}

.s25-tv-board-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1vw;
}

.s25-tv-board-card {
  min-height: 20vh;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.8vw;
  position: relative;
  overflow: hidden;
}

.s25-tv-board-card::after {
  content: "STUDIO 25";
  position: absolute;
  right: -1vw;
  bottom: -.6vh;
  font-size: 2.4vw;
  font-weight: 1000;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.035);
}

.s25-tv-board-card > p {
  color: rgba(255,255,255,.62);
  font-size: .9vw;
}

.s25-tv-record-holder {
  position: relative;
  z-index: 1;
}

.s25-tv-record-holder img {
  width: 6vw;
  height: 6vw;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.18), transparent 58%),
    rgba(0,0,0,.36);
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 1.5vh 4vh rgba(0,0,0,.36);
}

.s25-tv-record-holder h2 {
  font-size: 3vw;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.s25-tv-record-holder strong {
  display: inline-flex;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: .55vw .9vw;
  font-size: 1.25vw;
  font-weight: 1000;
  margin-top: .6vh;
}

.s25-tv-board-card h2 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.s25-tv-board-card > strong {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
}

/* Optional subtle difference between URLs */
body:has(.s25-tv-board) .s25-tv-board .s25-tv-hero p::after {
  content: " • Updated Live";
}

/* TV BOARD — SMALLER CARDS / MORE RECORDS */

.s25-tv-board-grid {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: .85vw !important;
}

.s25-tv-board-card {
  min-height: 14.8vh !important;
  border-radius: 1.15vw !important;
  padding: .95vw !important;
}

.s25-tv-board-card > p {
  font-size: .72vw !important;
  line-height: 1.15 !important;
  letter-spacing: .08em !important;
  margin-bottom: 1.1vh !important;
  white-space: normal !important;
}

.s25-tv-record-holder {
  gap: .75vw !important;
}

.s25-tv-record-holder img {
  width: 4.45vw !important;
  height: 4.45vw !important;
  flex: 0 0 auto;
}

.s25-tv-record-holder h2 {
  font-size: 2.05vw !important;
  line-height: .9 !important;
}

.s25-tv-record-holder strong {
  font-size: .95vw !important;
  padding: .38vw .62vw !important;
}

.s25-tv-board-card h2 {
  font-size: 1.85vw !important;
  line-height: .9 !important;
}

.s25-tv-board-card > strong {
  font-size: .95vw !important;
}

.s25-tv-board-card::after {
  font-size: 1.8vw !important;
}