:root {
  --black: #000;
  --white: #fff;
  --soft-white: #f5f5f5;
  --muted: #aaa;
  --dim: #767676;
  --line: rgba(255, 255, 255, 0.24);
  --panel: rgba(0, 0, 0, 0.76);
  --nav-height: 88px;
  --tracking-tight: 0.24em;
  --tracking-wide: 0.42em;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

html:has(body.home-page),
html:has(body.blank-page) {
  height: 100%;
  overflow: hidden;
}

html:has(body.services-reference-page) {
  height: 100%;
  overflow: hidden;
}

html:has(body.about-page) {
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.home-page,
.blank-page {
  height: 100%;
  overflow: hidden;
}

.services-reference-page {
  height: 100%;
  overflow: hidden;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(28px, 5.4vw, 90px);
  padding: 0 clamp(18px, 5vw, 96px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.top-nav a {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 30px;
  min-height: 30px;
  padding: 0;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.42em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  transition: none;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.42em;
  bottom: 0;
  height: 2px;
  background: #fff;
  opacity: 0;
  transform: none;
  transform-origin: center;
  transition: none;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a.is-active {
  opacity: 1;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.top-nav a.is-active::after {
  opacity: 1;
  transform: none;
}

.blank-page {
  min-height: 100vh;
  min-height: 100svh;
  background: #000 url("assets/nbs-about-background-topclean.png") center top / cover no-repeat;
}

.blank-page .blank-canvas {
  min-height: 100vh;
  min-height: 100svh;
}

/* =============================================
   HERO — homepage full-screen background
   ============================================= */
.hero {
  /* Calibrated to overlay the baked-in form in image-1781103548241.webp.
     Horizontal in vw, vertical in vh — image is 16:9. */
  --form-left: 38.2vw;
  --form-top: 41.1vh;
  --form-width: 24.8vw;
  --field-height: 5.95vh;
  --login-field-height: var(--field-height);
  --password-offset: 8.4vh;
  --button-offset: 16.5vh;
  --button-height: 6.1vh;
  --forgot-top: calc(var(--form-top) + var(--button-offset) + var(--button-height) + 2.5vh);

  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #000 url("assets/image-1781103548241-login-clean.webp") center center / cover no-repeat;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

/* =============================================
   SHARED FORM STYLES (used on non-home pages)
   ============================================= */
.auth-form,
.reset-form {
  display: grid;
  gap: 14px;
}

.field-group {
  position: relative;
  display: grid;
  gap: 8px;
}

.field-label {
  justify-self: start;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: var(--tracking-wide);
  line-height: 1;
  text-transform: uppercase;
}

.field-group > input,
.password-shell {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field-group > input,
.password-shell input {
  padding: 0 54px 0 68px;
  outline: 0;
}

.password-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.password-shell input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
}

.field-group > input::placeholder,
.password-shell input::placeholder {
  color: #9a9a9a;
}

.field-group:focus-within > input,
.field-group:focus-within .password-shell {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.field-icon {
  position: absolute;
  left: 22px;
  top: 17px;
  z-index: 2;
  width: 24px;
  height: 24px;
  color: #9c9c9c;
  pointer-events: none;
}

.field-label + .field-icon {
  top: 38px;
}

.password-shell .field-icon {
  top: 17px;
}

.field-icon svg,
.password-toggle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #a7a7a7;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, opacity 180ms ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: #fff;
}

.password-toggle .icon-eye-off,
.password-toggle.is-visible .icon-eye {
  display: none;
}

.password-toggle.is-visible .icon-eye-off {
  display: block;
}

.field-error {
  min-height: 16px;
  margin: -3px 0 0;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: left;
}

.field-group.has-error > input,
.field-group.has-error .password-shell {
  border-color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.sign-in-button {
  min-height: 64px;
  margin-top: 2px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.sign-in-button:hover,
.sign-in-button:focus-visible {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.sign-in-button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-status {
  min-height: 19px;
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.forgot-link {
  align-self: center;
  margin-top: 2px;
  color: #d8d8d8;
  font-size: 0.84rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 180ms ease, opacity 180ms ease;
}

.forgot-link:hover,
.forgot-link:focus-visible {
  color: #fff;
  opacity: 0.78;
}

.bottom-slogan {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: 1.9;
}

.bottom-slogan span {
  display: block;
}

/* =============================================
   HOME PAGE — real visible interactive form
   Styled inputs overlay the baked-in form in
   nbs-hero-bg.png with matching dark appearance.
   ============================================= */

/* ===========================================================================
   HOMEPAGE — invisible-at-rest interactive overlay
   ===========================================================================
   The background image (image-1781103548241.webp) IS the design: nav, NBS
   logo, form fields, Sign In button, Forgot Password, slogan, gym scene.
   At rest the page is pixel-identical to Screenshot #2.

   HTML elements below are transparent click/type targets positioned over
   their baked-in counterparts. A field becomes opaque ONLY when the user
   types into it — so the typed text replaces the baked-in placeholder
   visually rather than overlapping it.

   No backdrops. No masks. No overlays. The image shows through everywhere.
   =========================================================================== */

.home-page .auth-form {
  position: absolute;
  left: var(--form-left);
  top: var(--form-top);
  width: var(--form-width);
  height: calc(var(--button-offset) + var(--button-height));
  display: block;
  z-index: 2;
  pointer-events: auto;
}

.home-page .auth-form .field-group {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--login-field-height);
  display: block;
  overflow: hidden;
}

.home-page .auth-form .field-group:nth-of-type(1) { top: 0; }
.home-page .auth-form .field-group:nth-of-type(2) { top: var(--password-offset); }

.home-page .auth-form .field-group > input,
.home-page .auth-form .password-shell {
  width: 100%;
  height: var(--login-field-height);
  min-height: var(--login-field-height);
  max-height: var(--login-field-height);
  box-sizing: border-box;
  border: 0;
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: none;
  overflow: hidden;
}

.home-page .auth-form .field-group > input,
.home-page .auth-form .password-shell input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #fff;
  caret-color: #fff;
  height: var(--login-field-height);
  min-height: var(--login-field-height);
  max-height: var(--login-field-height);
  padding: 0 3.6vw 0 3.9vw;
  line-height: var(--login-field-height);
  font-size: clamp(0.7rem, 1.05vw, 0.88rem);
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  box-shadow: none;
  transform: none;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.home-page .auth-form .password-shell {
  display: flex;
  align-items: center;
}

.home-page .auth-form .password-shell input {
  flex: 1 1 auto;
}

.home-page .auth-form .field-group > input::placeholder,
.home-page .auth-form .password-shell input::placeholder {
  color: transparent;
}

.home-page .auth-form .field-group > input:not(:placeholder-shown) {
  background: #000;
}

.home-page .auth-form .password-shell:has(input:not(:placeholder-shown)) {
  background: #000;
}

.home-page .auth-form .field-group:focus-within > input,
.home-page .auth-form .field-group:focus-within .password-shell {
  height: var(--login-field-height);
  min-height: var(--login-field-height);
  max-height: var(--login-field-height);
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.home-page .auth-form .field-group > input:focus,
.home-page .auth-form .field-group > input:active,
.home-page .auth-form .password-shell input:focus,
.home-page .auth-form .password-shell input:active {
  height: var(--login-field-height);
  min-height: var(--login-field-height);
  max-height: var(--login-field-height);
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: var(--login-field-height);
  outline: 0;
  box-shadow: none;
  transform: none;
}

.home-page .auth-form .field-group > input:-webkit-autofill,
.home-page .auth-form .field-group > input:-webkit-autofill:hover,
.home-page .auth-form .field-group > input:-webkit-autofill:focus,
.home-page .auth-form .field-group > input:-webkit-autofill:active,
.home-page .auth-form .password-shell input:-webkit-autofill,
.home-page .auth-form .password-shell input:-webkit-autofill:hover,
.home-page .auth-form .password-shell input:-webkit-autofill:focus,
.home-page .auth-form .password-shell input:-webkit-autofill:active {
  height: var(--login-field-height);
  min-height: var(--login-field-height);
  max-height: var(--login-field-height);
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: var(--login-field-height);
  box-shadow: 0 0 0 1000px #000 inset;
  -webkit-text-fill-color: #fff;
  transition: background-color 999999s ease-in-out 0s;
}

.home-page .auth-form .field-icon {
  display: none;
}

.home-page .auth-form .field-error {
  display: none;
}

/* Sign In — invisible click target over the baked-in button. */
.home-page .auth-form .sign-in-button {
  position: absolute;
  left: 0;
  top: var(--button-offset);
  width: 100%;
  height: var(--button-height);
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font: inherit;
  cursor: pointer;
  pointer-events: auto;
  transform: none;
}

.home-page .auth-form .sign-in-button:hover,
.home-page .auth-form .sign-in-button:focus-visible {
  background: transparent;
  color: transparent;
  transform: none;
}

/* Password toggle — invisible eye over the baked-in eye. Becomes visible
   when password has been typed (so the user can show/hide). */
.home-page .password-toggle {
  right: 0.55vw;
  top: 50%;
  width: clamp(28px, 3vw, 40px);
  height: var(--field-height);
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(220, 220, 220, 0.9);
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.home-page .password-toggle svg {
  opacity: 0;
}

.home-page .password-toggle:hover,
.home-page .password-toggle:focus-visible {
  color: #fff;
}

/* Forgot Password — invisible click target over the baked-in link. */
.home-page .create-account-prompt {
  position: absolute;
  z-index: 3;
  left: calc(var(--form-left) + var(--form-width) / 2);
  top: calc(var(--form-top) + var(--button-offset) + var(--button-height) + 3.6vh);
  width: 28vw;
  height: 1.6vh;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.56rem, 0.72vw, 0.68rem);
  font-weight: 400;
  line-height: 1.6vh;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  transform: translateX(-50%);
  pointer-events: auto;
}

.home-page .create-account-prompt a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.home-page .create-account-prompt a:hover,
.home-page .create-account-prompt a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-page .forgot-link {
  position: absolute;
  z-index: 2;
  left: calc(var(--form-left) + var(--form-width) / 2);
  top: var(--forgot-top);
  width: 14vw;
  height: 3vh;
  margin: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  font-size: clamp(0.6rem, 0.88vw, 0.78rem);
  text-decoration: none;
  text-align: center;
  line-height: 3vh;
  transform: translateX(-50%);
  pointer-events: auto;
}

/* Form status — visible only when there is a message to display. */
.home-page .auth-form .form-status {
  position: absolute;
  left: 0;
  top: calc(var(--button-offset) + var(--button-height) + 4vh);
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(0.6rem, 0.85vw, 0.78rem);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.home-page .auth-form .form-status:not(:empty) {
  padding: 2px 4px;
  background: rgba(0, 0, 0, 0.88);
}

/* Clean rebuilt login controls: simple inputs, fixed geometry, stable focus. */
.home-page .auth-form {
  --login-control-height: clamp(54px, 7.3vh, 68px);
  --login-field-gap: clamp(14px, 1.9vh, 18px);
  --login-button-gap: clamp(26px, 3.7vh, 34px);
  --login-button-height: clamp(54px, 6.9vh, 64px);

  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.home-page .auth-form::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: calc((var(--login-control-height) * 2) + var(--login-field-gap) - 1px);
  height: calc(var(--login-button-gap) + 2px);
  background: rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.home-page .auth-form .field-group {
  position: static;
  width: 100%;
  height: var(--login-control-height);
  min-height: var(--login-control-height);
  max-height: var(--login-control-height);
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
  transform: none;
}

.home-page .auth-form .field-group + .field-group {
  margin-top: var(--login-field-gap);
}

.home-page .auth-form .field-group > input {
  display: block;
  width: 100%;
  height: var(--login-control-height);
  min-height: var(--login-control-height);
  max-height: var(--login-control-height);
  margin: 0;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  caret-color: #fff;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  line-height: var(--login-control-height);
  outline: 0;
  box-shadow: none;
  transform: none;
  appearance: none;
  -webkit-appearance: none;
}

.home-page .auth-form .field-group > input::placeholder {
  color: rgba(255, 255, 255, 0.86);
}

.home-page .auth-form .field-group > input:focus,
.home-page .auth-form .field-group > input:active,
.home-page .auth-form .field-group:focus-within > input,
.home-page .auth-form .field-group > input:-webkit-autofill,
.home-page .auth-form .field-group > input:-webkit-autofill:hover,
.home-page .auth-form .field-group > input:-webkit-autofill:focus,
.home-page .auth-form .field-group > input:-webkit-autofill:active {
  width: 100%;
  height: var(--login-control-height);
  min-height: var(--login-control-height);
  max-height: var(--login-control-height);
  margin: 0;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  line-height: var(--login-control-height);
  outline: 0;
  box-shadow: none;
  transform: none;
  -webkit-text-fill-color: #fff;
  transition: background-color 999999s ease-in-out 0s;
}

.home-page .auth-form .sign-in-button {
  position: static;
  z-index: 1;
  width: 100%;
  height: var(--login-button-height);
  min-height: var(--login-button-height);
  max-height: var(--login-button-height);
  margin: var(--login-button-gap) 0 0;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  cursor: pointer;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: var(--login-button-height);
  text-align: center;
  text-transform: uppercase;
  transform: none;
}

.home-page .auth-form .sign-in-button:hover,
.home-page .auth-form .sign-in-button:focus,
.home-page .auth-form .sign-in-button:active,
.home-page .auth-form .sign-in-button:focus-visible {
  height: var(--login-button-height);
  min-height: var(--login-button-height);
  max-height: var(--login-button-height);
  margin-top: var(--login-button-gap);
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  line-height: var(--login-button-height);
  transform: none;
}

.home-page .auth-form .form-status {
  position: static;
  width: 100%;
  min-height: 18px;
  margin: 12px 0 0;
  padding: 0;
}

/* Visual cleanup: keep the screenshot as the visible form design. */
.home-page .auth-form {
  --login-control-height: clamp(54px, 7.3vh, 68px);

  height: calc(var(--button-offset) + var(--button-height));
  display: block;
}

.home-page .auth-form::before {
  display: none;
}

.home-page .auth-form .field-group {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--login-control-height);
  min-height: var(--login-control-height);
  max-height: var(--login-control-height);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.home-page .auth-form .field-group:nth-of-type(1) {
  top: 0;
}

.home-page .auth-form .field-group:nth-of-type(2) {
  top: var(--password-offset);
}

.home-page .auth-form .field-group + .field-group {
  margin-top: 0;
}

.home-page .auth-form .field-group > input,
.home-page .auth-form .field-group > input:focus,
.home-page .auth-form .field-group > input:active,
.home-page .auth-form .field-group:focus-within > input,
.home-page .auth-form .field-group > input:-webkit-autofill,
.home-page .auth-form .field-group > input:-webkit-autofill:hover,
.home-page .auth-form .field-group > input:-webkit-autofill:focus,
.home-page .auth-form .field-group > input:-webkit-autofill:active {
  width: 100%;
  height: var(--login-control-height);
  min-height: var(--login-control-height);
  max-height: var(--login-control-height);
  margin: 0;
  padding: 0 68px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0;
  background: transparent;
  color: #fff;
  caret-color: #fff;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  line-height: var(--login-control-height);
  outline: 0;
  box-shadow: none;
  transform: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-fill-color: #fff;
  transition: background-color 999999s ease-in-out 0s;
  position: relative;
  z-index: 1;
}

.home-page .auth-form .field-group > input::placeholder {
  color: transparent;
}

.home-page .auth-form .field-group > input:not(:placeholder-shown),
.home-page .auth-form .field-group > input:-webkit-autofill,
.home-page .auth-form .field-group > input:-webkit-autofill:hover,
.home-page .auth-form .field-group > input:-webkit-autofill:focus,
.home-page .auth-form .field-group > input:-webkit-autofill:active {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 0 68px;
  box-sizing: border-box;
}

.home-page .auth-form .sign-in-button,
.home-page .auth-form .sign-in-button:hover,
.home-page .auth-form .sign-in-button:focus,
.home-page .auth-form .sign-in-button:active,
.home-page .auth-form .sign-in-button:focus-visible {
  position: absolute;
  left: 0;
  top: var(--button-offset);
  z-index: 1;
  width: 100%;
  height: var(--button-height);
  min-height: var(--button-height);
  max-height: var(--button-height);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  color: transparent;
  line-height: var(--button-height);
  transform: none;
}

.home-page .auth-form .form-status {
  position: absolute;
  left: 0;
  top: calc(var(--button-offset) + var(--button-height) + 4vh);
  min-height: 0;
  margin: 0;
  pointer-events: none;
}

.home-page .auth-form .sign-in-button:focus-visible,
.home-page .create-account-prompt a:focus-visible,
.home-page .forgot-link:focus-visible,
.home-page .password-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.interior-page {
  background:
    #000 url("assets/nbs-gym-reference.png") center top / cover no-repeat fixed;
}

.interior-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
}

.about-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.about-page main {
  background: #000;
}

.about-hero {
  position: relative;
  min-height: 74vh;
  min-height: 74svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-height) + clamp(34px, 6vw, 82px)) 24px clamp(52px, 6vw, 86px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background-color: #000;
  background-image: url("assets/nbs-about-background-topclean.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  text-align: center;
  text-transform: uppercase;
}

.about-hero-content p,
.about-hero-content span {
  margin: 0;
  color: #f4f4f4;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.5;
}

.about-hero-content h1 {
  margin: 14px auto 18px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  padding: clamp(48px, 5vw, 78px) clamp(22px, 5vw, 72px);
  scroll-margin-top: calc(var(--nav-height) + 18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: #000;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1180px);
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  transform: translateX(-50%);
  pointer-events: none;
}

.about-shell,
.about-copy-block,
.mission-block {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.about-copy-block {
  width: min(100%, 900px);
  text-align: center;
}

.about-section h2 {
  margin: 0 auto clamp(22px, 3vw, 38px);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.55vw, 3.65rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.about-copy-block p {
  margin: 0 auto 22px;
  color: #d8d8d8;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.about-copy-block .about-emphasis {
  margin: 26px auto 10px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body.about-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000 url("assets/nbs-about-warehouse-reference-topclean.png") center top / cover fixed no-repeat;
  color: #fff;
}

body.about-page::before {
  display: none;
}

.about-page main,
.about-landing {
  background: transparent;
}

.about-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
}

.about-philosophy {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 42vw) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(30px, 4.8vw, 82px);
  padding:
    calc(var(--nav-height) + clamp(28px, 4vw, 60px))
    clamp(28px, 10vw, 156px)
    clamp(42px, 6vw, 92px)
    clamp(28px, 15.5vw, 238px);
}

.about-philosophy-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.about-philosophy-copy h1 {
  margin: 0 0 clamp(24px, 2.6vw, 34px);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 3.52vw, 3.7rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-philosophy-copy p {
  max-width: 58ch;
  margin: 0 0 clamp(18px, 1.55vw, 24px);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.94rem, 0.98vw, 1rem);
  font-weight: 400;
  line-height: 1.56;
}

.about-philosophy-copy p:last-child {
  margin-bottom: 0;
}

.wall-slogan {
  display: none;
  justify-self: center;
  align-self: center;
  margin: clamp(42px, 10vh, 92px) 0 0 clamp(12px, 3vw, 46px);
  color: rgba(0, 0, 0, 0.82);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.5rem, 5.25vw, 5.4rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
}

.wall-slogan span {
  display: block;
}

body.about-image-only-page {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.about-image-only-page .about-image-page,
.about-image-only-page .about-image-section {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  background: #000;
}

.about-reference-image {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.register-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  isolation: isolate;
}

.register-page::before {
  content: "";
  position: fixed;
  top: -88px;
  left: 0;
  right: 0;
  height: calc(100vh + 88px);
  height: calc(100svh + 88px);
  z-index: -1;
  background: url("assets/bafa2f6a-cefd-47da-a43a-f7bbfba4bf23.png") center top / cover no-repeat;
  pointer-events: none;
}

.register-main {
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-height) + clamp(34px, 5.4vh, 54px)) clamp(20px, 5vw, 72px) clamp(28px, 4vh, 46px);
}

.register-panel {
  width: min(100%, 796px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
  padding: clamp(26px, 3.5vh, 34px) clamp(28px, 3vw, 40px) clamp(24px, 3vh, 30px);
  backdrop-filter: none;
}

.register-header {
  text-align: center;
  text-transform: uppercase;
}

.register-header p {
  margin: 0 0 13px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.7rem, 0.74vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.46em;
}

.register-header h1,
.register-step h2,
.register-success h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.35rem, 4.35vw, 4.55rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.register-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
  margin: clamp(20px, 2.7vh, 24px) 0 clamp(22px, 2.9vh, 27px);
  padding: 0;
  counter-reset: register-step;
  list-style: none;
}

.register-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.register-progress::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  height: 2px;
  background: #fff;
}

.register-panel[data-current-step="2"] .register-progress::after {
  width: 50%;
}

.register-panel[data-current-step="3"] .register-progress::after {
  width: 75%;
}

.register-panel[data-current-step="4"] .register-progress::after {
  width: 100%;
}

.register-progress li {
  counter-increment: register-step;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 13px 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.58rem, 0.7vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.register-progress li::before {
  content: counter(register-step);
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  line-height: 1;
}

.register-progress li.is-active,
.register-progress li.is-complete {
  color: #fff;
}

.register-progress li.is-active::before,
.register-progress li.is-complete::before {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.register-progress li.is-complete::before {
  content: "\2713";
}

.register-step[hidden] {
  display: none;
}

.register-service-step h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(3.1rem, 4vw, 4.35rem);
}

.register-panel[data-current-step="2"] {
  width: min(100%, 1030px);
  padding: 24px 38px 26px;
}

.register-panel[data-current-step="2"] .register-header p {
  margin-bottom: 8px;
  font-size: 0.74rem;
}

.register-panel[data-current-step="2"] .register-header h1 {
  font-size: clamp(3.8rem, 4.5vw, 5.05rem);
}

.register-panel[data-current-step="2"] .register-progress {
  margin: 22px 0 24px;
}

.register-panel[data-current-step="2"] .register-progress li {
  padding-bottom: 14px;
}

.register-panel[data-current-step="2"] .register-service-step h2 {
  margin-bottom: 8px;
  font-size: clamp(3.05rem, 3.55vw, 3.95rem);
}

.register-panel[data-current-step="3"] {
  width: min(100%, 1030px);
  padding: 22px 48px 20px;
}

.register-panel[data-current-step="3"] .register-header p {
  margin-bottom: 6px;
  font-size: 0.72rem;
}

.register-panel[data-current-step="3"] .register-header h1 {
  font-size: clamp(3.15rem, 3.7vw, 4.18rem);
}

.register-panel[data-current-step="3"] .register-progress {
  margin: 18px 0 18px;
}

.register-panel[data-current-step="3"] .register-progress li {
  padding-bottom: 11px;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 2.6vw, 28px);
  row-gap: clamp(13px, 1.8vh, 17px);
}

.register-grid label,
.payment-preview p {
  display: grid;
  gap: 8px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.66rem, 0.72vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-input-shell {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: clamp(46px, 5.2vh, 50px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 16px;
}

.register-grid input {
  width: 100%;
  min-width: 0;
  height: auto;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  font: 400 clamp(0.84rem, 0.96vw, 1rem)/1.2 Arial, Helvetica, sans-serif;
  outline: 0;
}

.register-field-error {
  display: block;
  min-height: 0.86rem;
  height: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-transform: none;
}

.register-field.has-error .register-input-shell {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.register-grid input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.register-input-shell:focus-within {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.register-page .register-grid input,
.register-page .register-grid input:hover,
.register-page .register-grid input:focus,
.register-page .register-grid input:active,
.register-page .register-grid input:focus-visible {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #fff !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff !important;
  filter: none !important;
  transition: background-color 999999s ease-in-out 0s, color 160ms ease;
}

.register-page .register-grid input::placeholder {
  color: rgba(255, 255, 255, 0.52) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.52) !important;
  opacity: 1;
}

.register-page .register-grid input::selection {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.register-page .register-grid input:-webkit-autofill,
.register-page .register-grid input:-webkit-autofill:hover,
.register-page .register-grid input:-webkit-autofill:focus,
.register-page .register-grid input:-webkit-autofill:active {
  border: 0;
  outline: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: 0 0 0 1000px #000 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #000 inset !important;
  color: #fff !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 999999s ease-in-out 0s, color 999999s ease-in-out 0s;
}

.register-page .register-input-shell,
.register-page .register-input-shell:hover,
.register-page .register-input-shell:focus-within {
  background: rgba(0, 0, 0, 0.5) !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.register-input-icon,
.register-input-eye {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.82);
}

button.register-input-eye {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

button.register-input-eye:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.84);
  outline-offset: 4px;
}

.register-input-eye.is-visible {
  color: #fff;
}

.register-input-icon-user::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.register-input-icon-user::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 16px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  box-sizing: border-box;
}

.register-input-icon-mail::before {
  content: "";
  position: absolute;
  inset: 4px 2px;
  border: 2px solid currentColor;
  box-sizing: border-box;
}

.register-input-icon-mail::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 14px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.register-input-icon-phone::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 10px;
  height: 16px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 10px;
  transform: rotate(-36deg);
  box-sizing: border-box;
}

.register-input-icon-lock::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 14px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
}

.register-input-icon-lock::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 8px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}

.register-input-eye::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 20px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.register-input-eye::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: 8px;
}

.plan-card {
  min-height: 470px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 15px 18px 13px;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.plan-card:hover,
.plan-card:focus-visible {
  border-color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34);
  outline: 0;
}

.plan-card.is-selected {
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28), 0 0 0 1px #fff;
  background: rgba(0, 0, 0, 0.72);
}

.plan-card-header h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.76rem, 0.9vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-price {
  margin: 8px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.28rem, 1.48vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.plan-price span {
  font-size: 0.62em;
}

.plan-tagline {
  min-height: 28px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-style: italic;
  line-height: 1.18;
}

.plan-description {
  min-height: 78px;
  margin: 13px 0 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.68rem, 0.73vw, 0.76rem);
  line-height: 1.28;
}

.plan-features {
  flex: 1 1 auto;
  margin: 0;
  padding: 0 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.62rem, 0.7vw, 0.72rem);
  line-height: 1.24;
  text-align: left;
}

.plan-features li {
  margin: 0 0 2px;
  padding-left: 4px;
}

.plan-select-label {
  width: min(100%, 178px);
  min-height: 34px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card.is-selected .plan-select-label {
  background: #fff;
  color: #000;
}

.payment-preview {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.payment-preview p {
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  padding: 16px;
}

.payment-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: start;
}

.payment-details h2,
.order-summary h2 {
  margin: 0 0 12px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.payment-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 11px 28px;
}

.payment-field {
  display: grid;
  gap: 5px;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-field-full {
  grid-column: 1 / -1;
}

.payment-input-shell {
  min-height: 43px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.52) !important;
  padding: 0 18px;
}

.stripe-payment-shell {
  min-height: 224px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.52);
  padding: 14px;
}

.stripe-loading {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.stripe-loading[hidden] {
  display: none;
}

.stripe-payment-element {
  color-scheme: dark;
}

.payment-field input,
.payment-field input:hover,
.payment-field input:focus,
.payment-field input:active,
.payment-field input:focus-visible {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #fff !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff !important;
  font: 400 0.94rem/1.2 Arial, Helvetica, sans-serif;
  transition: background-color 999999s ease-in-out 0s;
}

.payment-field input::placeholder {
  color: rgba(255, 255, 255, 0.52) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.52) !important;
  opacity: 1;
}

.payment-field input:-webkit-autofill,
.payment-field input:-webkit-autofill:hover,
.payment-field input:-webkit-autofill:focus,
.payment-field input:-webkit-autofill:active {
  border: 0;
  outline: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: 0 0 0 1000px #000 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #000 inset !important;
  color: #fff !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 999999s ease-in-out 0s, color 999999s ease-in-out 0s;
}

.payment-terms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1.4;
}

.payment-terms input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #000;
  display: grid;
  place-items: center;
}

.payment-terms input:checked::before {
  content: "\2713";
  color: #fff;
  font-size: 0.92rem;
  line-height: 1;
}

.payment-terms input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.payment-terms a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-status {
  min-height: 15px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
}

.order-summary-panel {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.46);
  padding: 16px 24px 16px;
}

.summary-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.summary-plan-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.summary-plan-row strong {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.summary-plan-row span {
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.summary-tagline {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-style: italic;
}

.summary-divider {
  height: 1px;
  margin: 13px 0 10px;
  background: rgba(255, 255, 255, 0.42);
}

.summary-features {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  line-height: 1.25;
}

.summary-features li {
  margin-bottom: 1px;
  padding-left: 4px;
}

.payment-security {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
}

.payment-security-lock {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 22px;
}

.payment-security-lock::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 14px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
}

.payment-security-lock::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}

.payment-security p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.payment-security strong,
.payment-security span {
  display: block;
}

.payment-security strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.payment-security span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-style: italic;
}

.register-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: clamp(18px, 2.4vh, 22px);
}

.register-actions-split {
  justify-content: space-between;
}

.register-plan-actions {
  align-items: center;
  margin-top: 22px;
}

.register-plan-actions button {
  min-width: 148px;
  min-height: 48px;
}

.register-plan-actions button:last-child {
  position: relative;
  min-width: 300px;
  justify-content: center;
}

.register-plan-actions button:last-child span:last-child {
  position: absolute;
  right: 24px;
}

.register-plan-actions button:disabled {
  opacity: 1;
}

.register-payment-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.register-payment-actions button:first-child {
  position: relative;
  width: 100%;
  min-height: 48px;
  justify-content: center;
  font-size: 0.98rem;
  letter-spacing: 0.28em;
}

.register-payment-actions button:first-child span:last-child {
  position: absolute;
  right: 24px;
}

.register-payment-actions .secondary-action {
  width: 136px;
  min-height: 40px;
  justify-content: center;
}

.register-actions button,
.register-button {
  min-height: 54px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-decoration: none;
  text-transform: uppercase;
}

.register-actions-full {
  display: block;
}

.register-actions-full button {
  width: 100%;
  min-height: clamp(48px, 5.1vh, 52px);
  position: relative;
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  letter-spacing: 0.34em;
}

.register-actions-full button:disabled {
  opacity: 1;
}

.register-actions-full button svg {
  position: absolute;
  right: 26px;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.register-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.register-actions-full button:disabled {
  opacity: 1;
}

.register-plan-actions button:disabled {
  opacity: 1;
}

.register-actions .secondary-action,
.register-button.secondary-action {
  background: transparent;
  color: #fff;
}

.register-signin-prompt {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  line-height: 1.4;
  text-align: center;
}

.register-signin-prompt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.register-success {
  text-align: center;
}

.register-success p {
  margin: 22px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.success-summary {
  display: grid;
  gap: 12px;
  width: min(100%, 620px);
  margin: 26px auto 0;
  padding: 0;
}

.success-summary div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  padding: 14px 18px;
}

.success-summary dt,
.success-summary dd {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.success-summary dt {
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
}

.success-summary dd {
  color: #fff;
  text-align: right;
}

.success-actions {
  width: min(100%, 760px);
  margin-inline: auto;
}

@media (max-width: 900px) {
  .register-page {
    background-attachment: scroll;
  }

  .register-main {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 22px) 18px 34px;
  }

  .register-panel {
    width: min(100%, 680px);
    padding: 28px 22px;
  }

  .register-header h1,
  .register-step h2,
  .register-success h2 {
    font-size: clamp(3.1rem, 11vw, 4.5rem);
  }

  .register-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .register-progress::before,
  .register-progress::after {
    display: none;
  }

  .register-progress li {
    padding-bottom: 0;
  }

  .register-grid,
  .plan-options,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .payment-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .register-main {
    padding: calc(var(--nav-height) + 18px) clamp(18px, 4vw, 56px) 28px;
  }

  .register-panel {
    padding: 24px 48px 22px;
  }

  .register-header p {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .register-header h1,
  .register-step h2,
  .register-success h2 {
    font-size: clamp(3.1rem, 4.45vw, 3.65rem);
  }

  .register-progress {
    margin: 22px 0 22px;
  }

  .register-progress li {
    padding-bottom: 14px;
  }

  .register-grid {
    row-gap: 16px;
  }

  .register-grid label,
  .payment-preview p {
    gap: 8px;
  }

  .register-input-shell {
    min-height: 50px;
  }

  .register-actions {
    margin-top: 20px;
  }

  .register-actions-full button {
    min-height: 54px;
  }

  .register-signin-prompt {
    margin-top: 14px;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .register-main {
    align-items: flex-start;
    padding: calc(var(--nav-height) + 18px) 14px 28px;
  }

  .register-panel {
    padding: 24px 16px;
  }

  .register-header p {
    letter-spacing: 0.28em;
  }

  .register-header h1,
  .register-step h2,
  .register-success h2 {
    font-size: clamp(2.55rem, 14vw, 3.4rem);
  }

  .register-progress {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0;
  }

  .register-input-shell {
    min-height: 56px;
    gap: 14px;
    padding: 0 15px;
  }

  .register-actions,
  .register-actions-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .register-payment-actions .secondary-action {
    width: 100%;
  }

  .register-actions-full button {
    min-height: 60px;
    letter-spacing: 0.22em;
  }

  .register-actions-full button svg {
    right: 18px;
    width: 27px;
    height: 27px;
  }
}

.athlete-grid,
.provides-grid,
.execution-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

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

.athlete-card,
.provide-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.74);
  color: #fff;
  text-align: center;
}

.athlete-card {
  padding: clamp(22px, 2.1vw, 30px) 18px 24px;
}

.mono-icon {
  position: relative;
  display: block;
  width: 64px;
  height: 52px;
  margin: 0 auto 18px;
}

.mono-icon::before,
.mono-icon::after {
  content: "";
  position: absolute;
  border-color: #fff;
}

.icon-powerlifter::before {
  left: 2px;
  right: 2px;
  top: 24px;
  height: 4px;
  background: #fff;
}

.icon-powerlifter::after {
  inset: 9px 9px auto;
  height: 34px;
  border-left: 7px solid #fff;
  border-right: 7px solid #fff;
}

.icon-weightlifter::before {
  left: 30px;
  top: 4px;
  width: 4px;
  height: 44px;
  background: #fff;
}

.icon-weightlifter::after {
  left: 12px;
  right: 12px;
  top: 8px;
  height: 34px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.icon-strongman::before {
  left: 10px;
  right: 10px;
  top: 12px;
  height: 28px;
  border: 4px solid #fff;
}

.icon-strongman::after {
  left: 25px;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
}

.icon-bodybuilder::before {
  left: 9px;
  top: 12px;
  width: 46px;
  height: 26px;
  border-top: 7px solid #fff;
  border-left: 7px solid #fff;
  border-right: 7px solid #fff;
  border-radius: 30px 30px 10px 10px;
}

.icon-bodybuilder::after {
  left: 27px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.athlete-card h3,
.provide-card h3 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.02;
  text-transform: uppercase;
}

.athlete-card h3 {
  font-size: clamp(1.45rem, 1.8vw, 2.05rem);
}

.athlete-card p {
  margin: 16px auto 0;
  color: #e4e4e4;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.45;
}

.understand-close {
  width: min(100%, 900px);
  margin: clamp(28px, 3vw, 44px) auto 0;
  padding-top: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  text-align: center;
}

.understand-close p {
  margin: 0 auto 14px;
  color: #f3f3f3;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
}

.provides-grid,
.execution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.provide-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.5vw, 38px) clamp(20px, 2.2vw, 34px);
}

.provide-card h3 {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: clamp(1.42rem, 1.9vw, 2.05rem);
}

.provide-card p {
  margin: 0 0 9px;
  color: #e7e7e7;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.35;
}

.simple-section {
  padding-top: clamp(70px, 7vw, 112px);
  padding-bottom: clamp(70px, 7vw, 112px);
}

.mission-block {
  width: min(100%, 960px);
  text-align: center;
}

.mission-block p {
  margin: 0 auto;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2.65vw, 2.85rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.06;
  text-transform: uppercase;
}

.execution-section {
  padding-top: clamp(62px, 6vw, 104px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

.execution-section h2 {
  width: min(100%, 1040px);
  font-size: clamp(1.6rem, 2.55vw, 2.75rem);
}

.execution-word {
  margin: 0 0 clamp(28px, 3.7vw, 52px);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.execution-grid {
  align-items: center;
}

.execution-list,
.execution-center {
  min-height: 230px;
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(0, 0, 0, 0.72);
}

.execution-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.execution-list p,
.execution-center p {
  margin: 0;
  color: #e6e6e6;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.execution-center {
  display: grid;
  place-items: center;
  text-align: center;
}

.execution-center p {
  width: min(100%, 320px);
}

.execution-center strong {
  display: block;
  margin-top: 22px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  max-width: 100%;
  font-size: clamp(1.2rem, 1.55vw, 1.72rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.05;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.services-page {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.services-hero {
  min-height: 100vh;
  min-height: 100svh;
  background-color: #000;
  background-image: url("assets/nbs-services-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-pricing-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-height) + clamp(18px, 2.8vw, 40px)) clamp(24px, 4vw, 72px) clamp(30px, 4vw, 56px);
}

.services-pricing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.pricing-section {
  position: relative;
  z-index: 1;
  width: min(100%, 1375px);
  margin: 0 auto;
}

.pricing-header {
  margin: 0 auto clamp(24px, 2.8vw, 38px);
  text-align: center;
}

.pricing-header h1 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.1rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.pricing-header p {
  margin: 12px 0 0;
  color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 34px);
  align-items: stretch;
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  text-align: center;
}

.pricing-card h2 {
  min-height: 44px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.28rem, 1.5vw, 1.62rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.pricing-rule {
  height: 1px;
  margin: 6px 0 12px;
  background: rgba(255, 255, 255, 0.34);
}

.price {
  margin: 0 0 8px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  text-transform: uppercase;
}

.price span {
  font-size: clamp(3.15rem, 4vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.price small {
  margin-left: 6px;
  font-size: clamp(0.82rem, 0.95vw, 1.12rem);
  letter-spacing: 0.04em;
}

.pricing-lead {
  min-height: 30px;
  margin: 0 0 16px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.pricing-copy {
  min-height: 76px;
  margin: 0 0 12px;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.42;
}

.pricing-card ul {
  margin: 0 0 8px;
  padding-left: 15px;
  color: #fff;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1.44;
}

.pricing-card li {
  margin: 0 0 3px;
}

.pricing-button {
  width: 100%;
  min-height: 40px;
  margin: auto auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.pricing-button:hover,
.pricing-button:focus-visible {
  background: #000;
  color: #fff;
}

.services-reference-page {
  background: #000;
}

.services-reference-canvas {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #000 url("assets/6b88d47a-35ca-4110-8902-64afcfd79d2f-topclean.png") center center / 100% 100% no-repeat;
}

.services-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
}

.services-hotspot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.services-hotspot-training {
  left: 10.1%;
  top: 89.9%;
  width: 10.7%;
  height: 4.4%;
}

.services-hotspot-guided {
  left: 32.8%;
  top: 89.9%;
  width: 10.7%;
  height: 4.4%;
}

.services-hotspot-self {
  left: 55.6%;
  top: 89.9%;
  width: 10.7%;
  height: 4.4%;
}

.services-hotspot-virtual {
  left: 78.4%;
  top: 89.9%;
  width: 10.7%;
  height: 4.4%;
}

.training-coaching-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.training-coaching-page main {
  background: #000;
}

.tc-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-height) + clamp(24px, 4vw, 50px)) 24px clamp(28px, 4vw, 54px);
  overflow: hidden;
  background-color: #000;
  background-image: url("assets/nbs-services-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.tc-hero::before,
.tc-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.tc-hero-content,
.tc-final-content {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}

.tc-wall-type {
  margin: 0 0 -2px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(4.2rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.82;
  text-transform: uppercase;
}

.tc-hero h1,
.tc-section h2,
.tc-final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.98;
  text-transform: uppercase;
}

.tc-hero h1 {
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
}

.tc-hero h1 span {
  display: inline;
}

.tc-subhead,
.tc-final-cta p:first-of-type {
  margin: 12px 0 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.16rem, 1.9vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.tc-hero-copy {
  width: min(100%, 690px);
  margin: 14px auto 0;
  color: #f5f5f5;
  font-size: clamp(0.94rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.tc-price {
  margin: 16px 0 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  text-transform: uppercase;
}

.tc-price span {
  font-size: clamp(2.8rem, 4.3vw, 4.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

.tc-price small {
  margin-left: 8px;
  font-size: clamp(0.98rem, 1.4vw, 1.35rem);
  letter-spacing: 0.06em;
}

.tc-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tc-button {
  min-width: 210px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tc-button-primary {
  background: #fff;
  color: #000;
}

.tc-button-secondary {
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
}

.tc-button:hover,
.tc-button:focus-visible {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

.tc-section {
  position: relative;
  padding: clamp(46px, 6vw, 82px) clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #000;
}

.tc-section h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.tc-section h3 {
  margin: 24px 0 12px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
}

.tc-section p {
  margin: 16px 0 0;
  color: #f5f5f5;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.6;
}

.tc-split,
.tc-review-grid,
.tc-archive-grid {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.tc-split,
.tc-archive-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1fr);
}

.tc-review-grid {
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
}

.tc-app-visuals {
  min-height: 470px;
  position: relative;
}

.tc-phone {
  position: absolute;
  width: min(34vw, 250px);
  max-height: 430px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 0 7px #000;
}

.tc-phone-left {
  left: 0;
  top: 42px;
  opacity: 0.78;
}

.tc-phone-center {
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translateX(-50%);
}

.tc-phone-right {
  right: 0;
  top: 70px;
  opacity: 0.78;
}

.tc-feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.tc-feature-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: #fff;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.35;
}

.tc-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.tc-feature-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.2em + 4px);
  width: 6px;
  height: 3px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.tc-two-col {
  columns: 2;
  column-gap: clamp(28px, 4vw, 60px);
}

.tc-two-col li {
  break-inside: avoid;
}

.tc-bordered-copy {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.64);
}

.tc-review-section {
  background-color: #000;
  background-image: url("assets/nbs-gym-reference.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tc-review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.tc-review-grid {
  position: relative;
  z-index: 1;
}

.tc-review-copy {
  max-width: 610px;
  justify-self: end;
}

.tc-review-copy p:first-child {
  color: #fff;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.55;
}

.tc-centered {
  width: min(100%, 980px);
  margin: 0 auto 30px;
  text-align: center;
}

.tc-proof-image {
  display: block;
  width: min(100%, 1440px);
  height: auto;
  max-height: none;
  margin: clamp(28px, 4vw, 46px) auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #000;
}

.tc-card-grid {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.tc-icon-card,
.tc-folder-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
}

.tc-icon-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 30px 20px 24px;
  text-align: center;
}

.tc-icon-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.tc-icon-card p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.tc-card-icon {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
}

.tc-icon-annotate {
  border: 2px solid #fff;
}

.tc-icon-annotate::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  width: 42px;
  height: 2px;
  background: #fff;
  transform: rotate(-42deg);
}

.tc-icon-annotate::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  background: #000;
}

.tc-icon-video {
  border: 3px solid #fff;
  border-radius: 8px;
}

.tc-icon-video::before {
  content: "";
  position: absolute;
  right: -22px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.tc-icon-barbell::before,
.tc-icon-barbell::after {
  content: "";
  position: absolute;
  top: 33px;
  height: 6px;
  background: #fff;
}

.tc-icon-barbell::before {
  left: 8px;
  right: 8px;
}

.tc-icon-barbell::after {
  left: 0;
  right: 0;
  box-shadow:
    8px -18px 0 -1px #fff,
    8px 18px 0 -1px #fff,
    58px -18px 0 -1px #fff,
    58px 18px 0 -1px #fff;
}

.tc-icon-notes {
  border: 2px solid #fff;
}

.tc-icon-notes::before,
.tc-icon-notes::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 14px;
  height: 2px;
  background: #fff;
  box-shadow: 0 14px 0 #fff, 0 28px 0 #fff;
}

.tc-icon-notes::before {
  top: 18px;
}

.tc-icon-notes::after {
  display: none;
}

.tc-icon-target {
  border: 3px solid #fff;
  border-radius: 50%;
}

.tc-icon-target::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.tc-icon-target::after {
  content: "";
  position: absolute;
  left: 34px;
  top: -10px;
  width: 2px;
  height: 88px;
  background: #fff;
  transform: rotate(45deg);
}

.tc-support-copy,
.tc-archive-copy {
  width: min(100%, 1220px);
  margin: 30px auto 0;
  text-align: center;
}

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

.tc-folder-card {
  padding: 24px;
}

.tc-folder-card h3 {
  position: relative;
  min-height: 42px;
  margin: 0 0 14px;
  padding-left: 58px;
  display: flex;
  align-items: center;
}

.tc-folder-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 42px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.tc-folder-card h3::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 20px;
  height: 10px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.tc-folder-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-folder-card li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: #f5f5f5;
  font-size: 0.96rem;
  line-height: 1.35;
}

.tc-folder-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.tc-library-visual {
  min-height: 390px;
  position: relative;
}

.tc-laptop,
.tc-small-device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #000;
}

.tc-laptop {
  right: 60px;
  top: 30px;
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  padding: 32px 28px 24px;
}

.tc-laptop::after {
  content: "";
  position: absolute;
  left: -70px;
  right: -70px;
  bottom: -24px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #000;
}

.tc-small-device {
  right: 0;
  bottom: 34px;
  width: 150px;
  height: 265px;
  border-radius: 16px;
  padding: 34px 14px 16px;
}

.tc-window-bar {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.tc-folder-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
}

.tc-small-device .tc-folder-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tc-folder-wall span {
  position: relative;
  display: block;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.tc-folder-wall span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 18px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 0;
}

.tc-final-cta {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  overflow: hidden;
  background-color: #000;
  background-image: url("assets/nbs-services-background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tc-final-cta::before {
  background: rgba(0, 0, 0, 0.62);
}

.tc-final-cta h2 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.tc-final-cta .tc-button {
  margin-top: 18px;
}

.app-page {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.app-hero {
  min-height: 100vh;
  min-height: 100svh;
  background-color: #000;
  background-image: url("assets/nbs-app-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 64px) 24px 72px;
}

.content-panel {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.8);
}

.eyebrow {
  margin: 0 0 16px;
  color: #cfcfcf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.content-panel h1 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #dedede;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}

.reset-form {
  max-width: 440px;
  margin-top: 28px;
}

body.contact-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  isolation: isolate;
}

body.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("assets/a9c97134-b5ab-4ced-a0ae-d1dd2d407b49-topclean.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.contact-main {
  min-height: calc(100vh - 110px);
  min-height: calc(100svh - 110px);
  padding:
    calc(var(--nav-height) + clamp(34px, 4.8vw, 66px))
    clamp(34px, 6.5vw, 108px)
    clamp(38px, 4vw, 56px);
}

.contact-layout {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(300px, 40fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.contact-primary {
  max-width: 640px;
}

.contact-primary h1,
.contact-side-section h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-primary h1 {
  margin-bottom: 24px;
  font-size: clamp(4.5rem, 7vw, 6.8rem);
}

.contact-kicker {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1.38rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-kicker span {
  display: block;
}

.contact-intro,
.contact-side-section p,
.support-email {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.58;
}

.contact-intro {
  max-width: 58ch;
  margin: 0 0 24px;
}

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

.contact-field {
  grid-column: 1 / -1;
}

.contact-field-half {
  grid-column: span 1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.contact-field input,
.contact-field select {
  height: 54px;
  padding: 0 20px;
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
  padding: 18px 20px;
}

.contact-field select {
  cursor: pointer;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.contact-field select:invalid {
  color: rgba(255, 255, 255, 0.7);
}

.contact-field option {
  background: #000;
  color: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.82);
}

.contact-submit {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 1px solid #fff;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #000;
  color: #fff;
}

.contact-secondary {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding-left: clamp(42px, 5vw, 70px);
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.contact-side-section {
  max-width: 440px;
}

.contact-side-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.25vw, 2.3rem);
  letter-spacing: 0.14em;
}

.contact-side-section p {
  margin: 0 0 20px;
}

.support-email {
  display: inline-block;
  text-decoration: none;
}

.support-email:hover,
.support-email:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-divider {
  width: min(100%, 420px);
  height: 1px;
  margin: clamp(44px, 5vw, 62px) 0;
  border: 0;
  background: rgba(255, 255, 255, 0.68);
}

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

.store-badge {
  min-width: 160px;
  min-height: 56px;
  display: inline-grid;
  align-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.store-badge span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
}

.store-badge strong {
  display: block;
  margin-top: 1px;
  font-size: 1.18rem;
  line-height: 1.05;
}

.contact-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding: 14px clamp(34px, 5vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  background: #000;
}

.footer-logo {
  position: relative;
  width: 168px;
  height: 76px;
  flex: 0 0 168px;
  display: block;
  overflow: hidden;
}

.footer-logo img {
  position: absolute;
  left: -76px;
  bottom: -18px;
  width: 1537px;
  max-width: none;
  height: auto;
}

.footer-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 72px);
}

.footer-links a {
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.blank-page.about-page,
.blank-page.services-page,
.blank-page.app-page,
.blank-page.contact-page {
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000 url("assets/nbs-about-background-topclean.png") center top / cover no-repeat;
}

.blank-page main {
  background: transparent;
}

@media (max-width: 920px) {
  :root {
    --nav-height: 76px;
  }

  .top-nav {
    top: 32px;
    gap: clamp(10px, 4vw, 34px);
    padding: 0 14px;
  }

  .top-nav a {
    height: 24px;
    min-height: 24px;
    padding: 0;
    font-size: clamp(0.48rem, 1.8vw, 0.72rem);
    letter-spacing: 0.18em;
  }

  body.contact-page {
    background-position: 58% center;
    background-attachment: scroll;
  }

  .contact-main {
    min-height: auto;
    padding:
      calc(var(--nav-height) + 42px)
      clamp(22px, 6vw, 54px)
      46px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 44px;
  }

  .contact-primary {
    max-width: 680px;
  }

  .contact-secondary {
    min-height: auto;
    padding: 38px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .contact-footer {
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 34px;
    padding-top: 12px;
  }

  body.about-page {
    background-position: 62% top;
    background-attachment: scroll;
  }

  body.about-page::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.18) 100%);
  }

  .about-philosophy {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 38px;
    padding:
      calc(var(--nav-height) + 44px)
      clamp(22px, 7vw, 54px)
      64px;
  }

  .about-philosophy-copy {
    width: min(100%, 640px);
  }

  .wall-slogan {
    display: block;
    justify-self: start;
    margin: 4px 0 0;
    font-size: clamp(3.2rem, 12vw, 5.1rem);
    opacity: 0.62;
  }

  .services-pricing-page {
    padding: calc(var(--nav-height) + 32px) 22px 42px;
    overflow: auto;
  }

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

  .about-hero {
    min-height: 640px;
    padding-inline: 22px;
  }

  .athlete-grid,
  .provides-grid,
  .execution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .execution-center {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .execution-list {
    min-height: 250px;
  }

  .tc-hero {
    min-height: 560px;
    padding-inline: 22px;
  }

  .tc-split,
  .tc-review-grid,
  .tc-archive-grid {
    grid-template-columns: 1fr;
  }

  .tc-app-visuals {
    min-height: 410px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .tc-phone {
    width: min(38vw, 220px);
    max-height: 380px;
  }

  .tc-two-col {
    columns: 1;
  }

  .tc-review-copy {
    justify-self: stretch;
    max-width: none;
  }

  .tc-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-archive-grid {
    gap: 28px;
  }

  .tc-library-visual {
    min-height: 330px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .tc-laptop {
    right: 42px;
    width: calc(100% - 90px);
  }

  .hero {
    padding-top: calc(var(--nav-height) + 20px);
    background-position: center top;
  }

  .hero-logo h1 {
    font-size: clamp(4.8rem, 18vw, 7rem);
  }

  .hero-logo p {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }
}

@media (max-width: 540px) {
  .contact-main {
    padding:
      calc(var(--nav-height) + 32px)
      20px
      38px;
  }

  .contact-primary h1 {
    margin-bottom: 20px;
    font-size: clamp(3.35rem, 19vw, 4.8rem);
  }

  .contact-kicker {
    font-size: clamp(1.15rem, 6vw, 1.45rem);
    letter-spacing: 0.22em;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field-half {
    grid-column: 1 / -1;
  }

  .contact-submit {
    letter-spacing: 0.24em;
  }

  .contact-secondary {
    padding-top: 30px;
  }

  .contact-side-section h2 {
    font-size: clamp(1.48rem, 8vw, 1.9rem);
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 210px);
  }

  .store-badge {
    min-width: 0;
  }

  .contact-footer {
    display: grid;
    gap: 16px;
    padding: 16px 20px 22px;
  }

  .footer-links {
    display: grid;
    gap: 14px;
    padding-top: 0;
  }

  .footer-links a {
    white-space: normal;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-content {
    width: min(100%, 380px);
  }

  .stacked-slogan,
  .bottom-slogan {
    letter-spacing: 0.3em;
  }

  .field-group > input,
  .password-shell {
    height: 56px;
  }

  .sign-in-button {
    min-height: 60px;
  }

  .content-panel {
    padding: 26px 20px;
  }

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

  .pricing-card {
    min-height: auto;
  }

  .about-hero {
    min-height: 560px;
    padding: calc(var(--nav-height) + 38px) 18px 58px;
  }

  .about-hero-content p,
  .about-hero-content span {
    letter-spacing: 0.24em;
  }

  .about-hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 7.6vw, 2.9rem);
    letter-spacing: 0.04em;
    line-height: 0.94;
  }

  .about-section {
    padding: 46px 18px;
  }

  .about-section h2 {
    font-size: clamp(1.6rem, 7.8vw, 2.45rem);
  }

  .about-copy-block .about-emphasis {
    font-size: clamp(1.22rem, 6.4vw, 1.85rem);
  }

  .about-philosophy {
    align-content: start;
    gap: 30px;
    padding:
      calc(var(--nav-height) + 34px)
      22px
      54px;
  }

  .about-philosophy-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
    line-height: 0.95;
    white-space: normal;
  }

  .about-philosophy-copy p {
    max-width: none;
    margin-bottom: 21px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .wall-slogan {
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.91;
  }

  .athlete-grid,
  .provides-grid,
  .execution-grid {
    grid-template-columns: 1fr;
  }

  .athlete-card,
  .provide-card,
  .execution-list,
  .execution-center {
    min-height: auto;
  }

  .provide-card {
    padding: 30px 22px;
  }

  .mission-block p {
    font-size: clamp(1.28rem, 6.6vw, 1.95rem);
  }

  .execution-word {
    font-size: clamp(2.5rem, 10.5vw, 3.65rem);
  }

  .execution-center {
    grid-column: auto;
  }

  .tc-hero {
    min-height: auto;
    overflow-x: hidden;
  }

  .tc-wall-type {
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .tc-hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .tc-wall-type,
  .tc-hero h1,
  .tc-subhead,
  .tc-hero-copy,
  .tc-price {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .tc-subhead,
  .tc-hero-copy {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .tc-subhead {
    max-width: 18rem;
  }

  .tc-subhead span {
    display: block;
  }

  .tc-hero-copy {
    max-width: 19rem;
  }

  .tc-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .tc-hero h1 span {
    display: block;
  }

  .tc-subhead,
  .tc-final-cta p:first-of-type {
    font-size: clamp(1rem, 7vw, 1.35rem);
    line-height: 1.15;
  }

  .tc-hero-copy {
    font-size: 0.92rem;
  }

  .tc-actions,
  .tc-folder-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tc-button {
    width: 100%;
    min-width: 0;
  }

  .tc-section {
    padding-inline: 18px;
  }

  .tc-app-visuals {
    min-height: 560px;
  }

  .tc-phone {
    width: min(58vw, 230px);
    max-height: 330px;
  }

  .tc-phone-left {
    left: 0;
    top: 44px;
  }

  .tc-phone-center {
    top: 0;
  }

  .tc-phone-right {
    right: 0;
    top: 228px;
  }

  .tc-card-grid {
    grid-template-columns: 1fr;
  }

  .tc-icon-card {
    min-height: auto;
  }

  .tc-library-visual {
    min-height: 280px;
  }

  .tc-laptop {
    left: 0;
    right: auto;
    width: calc(100% - 58px);
    padding: 28px 18px 18px;
  }

  .tc-laptop::after {
    left: -14px;
    right: -14px;
  }

  .tc-small-device {
    width: 96px;
    height: 184px;
    right: 0;
    bottom: 26px;
    padding: 30px 10px 12px;
  }

  .tc-folder-wall {
    gap: 12px;
  }

  .tc-folder-wall span {
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final clean home login controls: each row is one opaque field with one transparent input. */
.home-page .hero {
  --clean-field-height: clamp(46px, 5.45vh, 48px);
  --clean-field-gap: clamp(10px, 1.25vh, 12px);
  --clean-field-cover-top: 0px;
  --clean-field-cover-bottom: 0px;
  --clean-control-height: calc(var(--clean-field-height) + var(--clean-field-cover-top) + var(--clean-field-cover-bottom));
  --clean-button-top: calc((var(--clean-field-height) * 2) + (var(--clean-field-gap) * 2) - var(--clean-field-cover-top));
  --clean-button-height: var(--clean-control-height);
  --login-module-top: clamp(374px, 44vh, 410px);
  --login-module-width: clamp(280px, 18.3vw, 310px);
}

.home-page .auth-form {
  position: absolute;
  left: 50%;
  top: var(--login-module-top);
  width: var(--login-module-width);
  height: calc(var(--clean-button-top) + var(--clean-button-height));
  display: block;
  z-index: 2;
  pointer-events: auto;
  transform: translateX(-50%);
}

.home-page .auth-form::before,
.home-page .login-control::before,
.home-page .login-control::after,
.home-page .login-control *::before,
.home-page .login-control *::after {
  content: none;
  display: none;
}

.home-page .login-control {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--clean-control-height);
  min-height: var(--clean-control-height);
  max-height: var(--clean-control-height);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  border-radius: 3px;
  background: #000 !important;
  background-clip: padding-box;
  box-shadow: none;
  transform: none;
  outline: 0;
}

.home-page .login-control:nth-of-type(1) {
  top: calc(0px - var(--clean-field-cover-top));
}

.home-page .login-control:nth-of-type(2) {
  top: calc(var(--clean-field-height) + var(--clean-field-gap) - var(--clean-field-cover-top));
}

.home-page .login-control:focus-within,
.home-page .login-control.has-error {
  height: var(--clean-control-height);
  min-height: var(--clean-control-height);
  max-height: var(--clean-control-height);
  border: 1px solid rgba(255, 255, 255, 0.86) !important;
  background: #000 !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: none;
  outline: 0;
}

.home-page .login-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
}

.home-page .login-icon svg,
.home-page .password-eye svg {
  width: 100%;
  height: 100%;
}

.home-page .login-control > input,
.home-page .login-control > input:focus,
.home-page .login-control > input:active,
.home-page .login-control > input:-webkit-autofill,
.home-page .login-control > input:-webkit-autofill:hover,
.home-page .login-control > input:-webkit-autofill:focus,
.home-page .login-control > input:-webkit-autofill:active {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff;
  caret-color: #fff;
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  line-height: var(--clean-field-height);
  outline: 0 !important;
  box-shadow: none !important;
  transform: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-fill-color: #fff;
  letter-spacing: 0;
  transition: background-color 999999s ease-in-out 0s;
}

.home-page .login-control > input::placeholder {
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
}

.home-page .login-icon,
.home-page .login-icon svg,
.home-page .login-icon rect,
.home-page .login-icon path,
.home-page .password-eye,
.home-page .password-eye:hover,
.home-page .password-eye:focus,
.home-page .password-eye:active,
.home-page .password-eye:focus-visible,
.home-page .password-eye svg,
.home-page .password-eye path,
.home-page .password-eye circle {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.home-page .password-eye,
.home-page .password-eye:hover,
.home-page .password-eye:focus,
.home-page .password-eye:active,
.home-page .password-eye:focus-visible {
  flex: 0 0 42px;
  width: 42px;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  margin: 0 7px 0 0;
  padding: 0 9px;
  box-sizing: border-box;
  border: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: 0 !important;
  box-shadow: none !important;
  transform: none;
}

.home-page .password-eye .icon-eye-off,
.home-page .password-eye.is-visible .icon-eye {
  display: none;
}

.home-page .password-eye.is-visible .icon-eye-off {
  display: block;
}

.home-page .auth-form .sign-in-button,
.home-page .auth-form .sign-in-button:hover,
.home-page .auth-form .sign-in-button:focus,
.home-page .auth-form .sign-in-button:active,
.home-page .auth-form .sign-in-button:focus-visible {
  position: absolute;
  left: 0;
  top: var(--clean-button-top);
  width: 100%;
  height: var(--clean-button-height);
  min-height: var(--clean-button-height);
  max-height: var(--clean-button-height);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1;
  text-indent: 0.42em;
  outline: 0;
  box-shadow: none;
  transform: none;
}

.home-page .create-account-prompt {
  z-index: 3;
  left: 50%;
  top: calc(var(--login-module-top) + var(--clean-button-top) + var(--clean-button-height) + 1.2vh);
  width: var(--login-module-width);
  height: auto;
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
  line-height: 1.28;
  display: grid;
  gap: 0.25vh;
  place-items: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.98);
  transform: translateX(-50%);
}

.home-page .forgot-link {
  z-index: 3;
  left: 50%;
  top: calc(var(--login-module-top) + var(--clean-button-top) + var(--clean-button-height) + 5.2vh);
  width: var(--login-module-width);
  height: 2vh;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
  line-height: 2vh;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .home-page .hero {
    --clean-field-height: 64px;
    --clean-field-gap: 11px;
    --form-top: 41svh;
  }

  .home-page .hero-content {
    inset: 0;
    width: 100%;
    max-width: none;
  }

  .home-page .auth-form {
    left: 50%;
    width: min(86vw, 420px);
    transform: translateX(-50%);
  }

  .home-page .login-control {
    gap: 14px;
  }

  .home-page .login-icon {
    margin-left: 18px;
  }

  .home-page .login-control > input,
  .home-page .login-control > input:focus,
  .home-page .login-control > input:active,
  .home-page .login-control > input:-webkit-autofill,
  .home-page .login-control > input:-webkit-autofill:hover,
  .home-page .login-control > input:-webkit-autofill:focus,
  .home-page .login-control > input:-webkit-autofill:active {
    font-size: 0.92rem;
  }

  .home-page .auth-form .sign-in-button,
  .home-page .auth-form .sign-in-button:hover,
  .home-page .auth-form .sign-in-button:focus,
  .home-page .auth-form .sign-in-button:active,
  .home-page .auth-form .sign-in-button:focus-visible {
    font-size: 1.08rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
    white-space: nowrap;
  }

  .home-page .create-account-prompt,
  .home-page .forgot-link {
    left: 50%;
    width: min(86vw, 420px);
    transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .home-page .auth-form .sign-in-button,
  .home-page .auth-form .sign-in-button:hover,
  .home-page .auth-form .sign-in-button:focus,
  .home-page .auth-form .sign-in-button:active,
  .home-page .auth-form .sign-in-button:focus-visible {
    font-size: 1rem;
    letter-spacing: 0.26em;
    text-indent: 0.26em;
  }
}

/* Final Contact mockup rebuild: one-screen premium contact layout. */
body.contact-page {
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #000 url("assets/59750dd6-cc0d-402b-9266-4529e1325806.png") center center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.contact-main,
.contact-main *,
.contact-bottom-links,
.contact-bottom-links * {
  box-sizing: border-box;
}

body.contact-page::before {
  content: none;
}

body.contact-page::after {
  content: none;
}

.contact-main {
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px clamp(46px, 7vw, 144px) 58px;
}

.contact-layout {
  width: min(100%, 1248px);
  height: min(735px, calc(100svh - 162px));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.34fr) minmax(360px, 0.9fr);
  gap: clamp(54px, 5vw, 78px);
  align-items: stretch;
}

.contact-primary {
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.2vw, 46px) clamp(38px, 3.7vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
}

.contact-primary h1,
.contact-side-section h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-primary h1 {
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 7.25vw, 6.7rem);
  letter-spacing: 0.045em;
}

.contact-kicker {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1.28rem, 1.65vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.18;
  text-transform: uppercase;
}

.contact-kicker span {
  display: inline;
}

.contact-primary .contact-kicker::after,
.contact-side-section h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 20px;
  background: #fff;
}

.contact-intro,
.contact-side-section p,
.support-email {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1.02rem, 1.12vw, 1.13rem);
  line-height: 1.45;
}

.contact-intro {
  max-width: 59ch;
  margin: 0 0 24px;
}

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

.contact-field {
  grid-column: 1 / -1;
}

.contact-field-half {
  grid-column: span 1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  outline: 0;
}

.contact-field input,
.contact-field select {
  height: 62px;
  padding: 0 22px;
}

.contact-field textarea {
  height: 128px;
  min-height: 128px;
  max-height: 128px;
  padding: 18px 22px;
  resize: none;
}

.contact-field select {
  cursor: pointer;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.contact-field select:invalid {
  color: rgba(255, 255, 255, 0.86);
}

.contact-field option {
  background: #000;
  color: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.68);
}

.contact-submit {
  grid-column: 1 / -1;
  height: 62px;
  min-height: 62px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #000;
  color: #fff;
}

.contact-secondary {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(48px, 5vw, 70px);
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-side-section {
  max-width: 455px;
}

.contact-side-section h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 2.45vw, 2.55rem);
  letter-spacing: 0.1em;
}

.contact-side-section p {
  margin: 0 0 18px;
}

.support-email {
  display: inline-block;
  margin-top: 4px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.support-email:hover,
.support-email:focus-visible,
.contact-bottom-links a:hover,
.contact-bottom-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-divider {
  width: min(100%, 420px);
  height: 1px;
  margin: clamp(42px, 5vh, 64px) 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
}

.store-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  margin-top: 26px;
}

.store-badge {
  width: 176px;
  height: 72px;
  display: inline-grid;
  align-content: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
}

.store-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.05;
}

.store-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.05;
}

.contact-bottom-links {
  position: fixed;
  left: clamp(40px, 7vw, 144px);
  right: clamp(40px, 7vw, 144px);
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 86px);
  background: transparent;
  border: 0;
}

.contact-bottom-links a {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body.contact-page .contact-footer,
body.contact-page .footer-logo,
body.contact-page .footer-links {
  display: none;
}

@media (max-width: 1180px) {
  body.contact-page {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
  }

  .contact-main {
    height: auto;
    min-height: 100svh;
    padding: 100px 28px 84px;
  }

  .contact-layout {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-primary {
    height: auto;
  }

  .contact-secondary {
    height: auto;
    padding: 34px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
  }

  .contact-bottom-links {
    position: static;
    padding: 0 28px 28px;
    flex-wrap: wrap;
    gap: 16px 34px;
  }
}

@media (max-width: 640px) {
  .contact-main {
    padding: 94px 18px 42px;
  }

  .contact-primary {
    padding: 30px 22px;
  }

  .contact-primary h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .contact-kicker {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field-half {
    grid-column: 1 / -1;
  }

  .store-buttons {
    flex-wrap: wrap;
  }
}

@media (min-width: 1181px) {
  .contact-primary,
  .contact-secondary {
    min-height: 0;
    height: 100%;
  }

  .contact-primary {
    padding-block: clamp(30px, 2.65vw, 38px);
  }

  .contact-primary h1 {
    margin-bottom: 14px;
    font-size: clamp(4.4rem, 6.45vw, 6.1rem);
  }

  .contact-kicker {
    margin-bottom: 14px;
  }

  .contact-primary .contact-kicker::after,
  .contact-side-section h2::after {
    margin-top: 16px;
  }

  .contact-intro {
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 12px 16px;
  }

  .contact-field input,
  .contact-field select {
    height: 58px;
  }

  .contact-field textarea {
    height: 112px;
    min-height: 112px;
    max-height: 112px;
  }

  .contact-submit {
    height: 60px;
    min-height: 60px;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .contact-main {
    padding-top: 88px;
    padding-bottom: 54px;
  }

  .contact-layout {
    height: min(610px, calc(100svh - 142px));
    min-height: 0;
  }

  .contact-primary {
    padding-block: 24px;
  }

  .contact-primary h1 {
    margin-bottom: 10px;
    font-size: clamp(3.8rem, 5.3vw, 4.55rem);
  }

  .contact-kicker {
    margin-bottom: 10px;
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    letter-spacing: 0.25em;
  }

  .contact-primary .contact-kicker::after,
  .contact-side-section h2::after {
    margin-top: 12px;
  }

  .contact-intro,
  .contact-side-section p,
  .support-email {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .contact-intro {
    margin-bottom: 16px;
  }

  .contact-form {
    gap: 10px 16px;
  }

  .contact-field input,
  .contact-field select {
    height: 52px;
  }

  .contact-field textarea {
    height: 92px;
    min-height: 92px;
    max-height: 92px;
  }

  .contact-submit {
    height: 54px;
    min-height: 54px;
  }

  .contact-side-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 2.25vw, 2.25rem);
  }

  .contact-divider {
    margin: 34px 0;
  }

  .store-buttons {
    margin-top: 20px;
  }
}

/* Contact single-panel layout: remove right column and center the form. */
body.contact-page .contact-layout {
  width: min(660px, calc(100vw - 48px));
  height: min(735px, calc(100svh - 162px));
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  grid-template-columns: none;
}

body.contact-page .contact-main {
  padding-top: 86px;
  padding-bottom: 86px;
}

body.contact-page .contact-primary {
  width: 100%;
  max-width: none;
  height: 100%;
}

body.contact-page .contact-secondary,
body.contact-page .contact-divider {
  display: none;
}

@media (min-width: 1181px) and (max-height: 820px) {
  body.contact-page .contact-main {
    padding-top: 71px;
    padding-bottom: 71px;
  }

  body.contact-page .contact-layout {
    width: min(660px, calc(100vw - 64px));
    height: min(610px, calc(100svh - 142px));
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  body.contact-page .contact-layout {
    width: min(760px, 100%);
    height: auto;
    min-height: 0;
    display: flex;
  }
}

/* Contact centered intro copy. */
body.contact-page .contact-primary h1,
body.contact-page .contact-kicker,
body.contact-page .contact-intro {
  text-align: center;
}

body.contact-page .contact-primary .contact-kicker::after {
  display: none;
}

/* Contact image replacement page with real nav overlays. */
body.contact-page {
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: #000 url("assets/Contact/contact-box-smaller-20260614.png") center center / cover no-repeat;
}

body.contact-page::before,
body.contact-page::after {
  content: none;
}

body.contact-page .contact-main {
  display: none;
}

body.contact-page .top-nav,
body.contact-page .contact-bottom-links {
  z-index: 10;
}

/* Functional hotspots over the baked contact-page image. */
body.contact-page .contact-main {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 8;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  padding: 0;
  pointer-events: none;
}

body.contact-page .contact-layout,
body.contact-page .contact-primary {
  position: static;
  width: auto;
  height: auto;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

body.contact-page .contact-primary h1,
body.contact-page .contact-kicker,
body.contact-page .contact-intro {
  display: none;
}

body.contact-page .contact-form {
  position: fixed;
  left: 32.7vw;
  top: 43.6vh;
  z-index: 9;
  width: 34.25vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.48vh 0.95vw;
  pointer-events: auto;
}

body.contact-page .contact-field {
  grid-column: 1 / -1;
}

body.contact-page .contact-field-half {
  grid-column: span 1;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select,
body.contact-page .contact-field textarea,
body.contact-page .contact-submit {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select {
  height: 5.55vh;
  min-height: 34px;
  padding: 0 1.3vw;
}

body.contact-page .contact-field textarea {
  height: 9.2vh;
  min-height: 58px;
  max-height: none;
  padding: 1.35vh 1.3vw;
  resize: none;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select,
body.contact-page .contact-field textarea {
  color: #fff;
  font-size: clamp(0.78rem, 1.12vw, 1rem);
  caret-color: #fff;
}

body.contact-page .contact-field input::placeholder,
body.contact-page .contact-field textarea::placeholder {
  color: transparent;
}

body.contact-page .contact-field select:invalid {
  color: transparent;
}

body.contact-page .contact-field option {
  background: #000;
  color: #fff;
}

body.contact-page .contact-submit {
  grid-column: 1 / -1;
  height: 5.95vh;
  min-height: 38px;
  color: transparent;
  cursor: pointer;
}

body.contact-page .contact-field input:focus,
body.contact-page .contact-field select:focus,
body.contact-page .contact-field textarea:focus,
body.contact-page .contact-submit:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: -1px;
}

/* Single real Contact module: clean background plus one functional form. */
body.contact-page {
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  background: #000 url("assets/Contact/contact-gym-background-20260614.png") center center / cover no-repeat;
}

body.contact-page::before,
body.contact-page::after {
  content: none;
}

body.contact-page .contact-main {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 86px 24px 86px;
  pointer-events: none;
}

body.contact-page .contact-layout {
  width: min(660px, calc(100vw - 48px));
  height: auto;
  min-height: 0;
  display: block;
  margin: 0;
  pointer-events: auto;
}

body.contact-page .contact-primary {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vh, 32px) clamp(30px, 3.6vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
}

body.contact-page .contact-primary h1,
body.contact-page .contact-kicker,
body.contact-page .contact-intro {
  display: block;
  text-align: center;
}

body.contact-page .contact-primary h1 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3.6rem, 5.25vw, 4.85rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

body.contact-page .contact-kicker {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.28vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.18;
  text-transform: uppercase;
}

body.contact-page .contact-primary .contact-kicker::after {
  display: none;
}

body.contact-page .contact-intro {
  width: min(100%, 58ch);
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.42;
}

body.contact-page .contact-form {
  position: static;
  z-index: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  pointer-events: auto;
}

body.contact-page .contact-field {
  grid-column: 1 / -1;
}

body.contact-page .contact-field-half {
  grid-column: span 1;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select,
body.contact-page .contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  outline: 0;
  box-shadow: none;
  caret-color: #fff;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select {
  height: 50px;
  min-height: 50px;
  padding: 0 20px;
}

body.contact-page .contact-field textarea {
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  padding: 17px 20px;
  resize: none;
}

body.contact-page .contact-field input::placeholder,
body.contact-page .contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

body.contact-page .contact-field select:invalid {
  color: rgba(255, 255, 255, 0.86);
}

body.contact-page .contact-field option {
  background: #000;
  color: #fff;
}

body.contact-page .contact-field input:focus,
body.contact-page .contact-field select:focus,
body.contact-page .contact-field textarea:focus {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.46);
  outline: 0;
}

body.contact-page .contact-submit {
  grid-column: 1 / -1;
  height: 54px;
  min-height: 54px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
}

body.contact-page .contact-submit:hover,
body.contact-page .contact-submit:focus-visible {
  background: #000;
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.48);
  outline-offset: 2px;
}

body.contact-page .top-nav,
body.contact-page .contact-bottom-links {
  z-index: 10;
}

@media (max-width: 760px) {
  body.contact-page {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
  }

  body.contact-page .contact-main {
    position: static;
    min-height: 100svh;
    padding: 96px 18px 34px;
  }

  body.contact-page .contact-layout {
    width: 100%;
  }

  body.contact-page .contact-primary {
    padding: 30px 22px;
  }

  body.contact-page .contact-form {
    grid-template-columns: 1fr;
  }

  body.contact-page .contact-field-half {
    grid-column: 1 / -1;
  }
}

body.contact-page #service-interest {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25L7 7.25L13 1.25' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 14px 9px;
}
