:root {
  color-scheme: dark;
  --matte-black: #050505;
  --soft-black: #0b0b0a;
  --chalk: #f7f4ec;
  --muted: #c8c2b5;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select,
textarea {
  font-size: 16px;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, rgba(255, 255, 255, 0.018)),
    var(--matte-black);
  color: var(--chalk);
  overflow-x: hidden;
}

body.overlay-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 28%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.78));
}

body::after {
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: screen;
}

.turf-floor {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: min(34vh, 18rem);
  overflow: hidden;
  pointer-events: none;
  perspective: 38rem;
}

.turf-floor::before {
  content: "";
  position: absolute;
  inset: 9% -8% -20%;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.72) 7.2% 7.8%, transparent 8% 92%, rgba(255, 255, 255, 0.72) 92.2% 92.8%, transparent 93%),
    repeating-linear-gradient(90deg, transparent 0 7.5%, rgba(255, 255, 255, 0.7) 7.5% 8.1%, transparent 8.1% 12.5%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 1.9rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 0.42rem),
    linear-gradient(90deg, #163d29, #1d6940 18%, #226f45 50%, #1a5d39 82%, #123321);
  box-shadow:
    inset 0 1.1rem 2.5rem rgba(0, 0, 0, 0.7),
    inset 0 -2rem 4rem rgba(0, 0, 0, 0.55),
    0 -0.4rem 2.8rem rgba(49, 190, 104, 0.18);
  filter: saturate(1.04);
  transform: rotateX(62deg);
  transform-origin: bottom center;
}

.turf-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.58) 28%, rgba(5, 5, 5, 0.12) 52%, rgba(5, 5, 5, 0.2)),
    radial-gradient(ellipse at 50% 100%, rgba(64, 217, 118, 0.28), transparent 58%);
}

.turf-lane {
  position: absolute;
  right: 12%;
  bottom: 1.85rem;
  left: 12%;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 5.8rem;
  transform: rotateX(55deg);
  transform-origin: bottom center;
}

.turf-lane img {
  width: min(14rem, 40vw);
  height: auto;
  opacity: 0.34;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.45rem rgba(255, 255, 255, 0.22));
  mix-blend-mode: screen;
}

.site-page {
  position: relative;
  z-index: 1;
}

.notification-region {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: grid;
  width: min(24rem, calc(100vw - 2rem));
  pointer-events: none;
}

.notification-card {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.92);
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.42),
    inset 0 0 1.2rem rgba(255, 255, 255, 0.035);
  opacity: 0;
  transform: translateX(1rem) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(14px);
}

.notification-card.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.notification-card span {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #bde8c8;
  font-weight: 900;
}

.notification-card.error span {
  color: #ffb4a8;
}

.notification-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.84);
  font-size: 0.9rem;
  line-height: 1.35;
}

.coming-soon {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.logo-stage {
  display: grid;
  justify-items: center;
  gap: clamp(1.25rem, 3vw, 2.2rem);
  width: min(78rem, 100%);
  transform: translateY(-1vh);
}

.brand-logo {
  display: block;
  width: min(48rem, 86vw);
  height: auto;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.55rem rgba(255, 255, 255, 0.78))
    drop-shadow(0 0 2.2rem rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 6.5rem rgba(255, 255, 255, 0.18));
}

h1 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 1.6rem rgba(255, 255, 255, 0.42);
}

.signup-form {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(34rem, 100%);
  margin-top: -0.25rem;
}

.signup-form h1 {
  color: rgba(247, 244, 236, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 1rem rgba(255, 255, 255, 0.28);
}

.signup-form p {
  max-width: 26rem;
  margin: -0.15rem 0 0.35rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.5;
  text-align: center;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.66);
  box-shadow:
    0 0 1.6rem rgba(255, 255, 255, 0.1),
    inset 0 0 1rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.signup-row:focus-within {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 2.4rem rgba(255, 255, 255, 0.16),
    inset 0 0 1rem rgba(255, 255, 255, 0.05);
}

.signup-form.is-success .signup-row,
.intake-form.is-success,
.sponsor-form.is-success,
.portal-form.is-success {
  border-color: rgba(189, 232, 200, 0.42);
  box-shadow:
    0 0 2rem rgba(80, 210, 122, 0.12),
    inset 0 0 1.2rem rgba(80, 210, 122, 0.05);
}

.signup-form.is-error .signup-row,
.intake-form.is-error,
.sponsor-form.is-error,
.portal-form.is-error {
  border-color: rgba(255, 180, 168, 0.42);
  box-shadow:
    0 0 2rem rgba(255, 110, 95, 0.12),
    inset 0 0 1.2rem rgba(255, 110, 95, 0.05);
}

.signup-row input,
.signup-row button {
  min-width: 0;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.signup-row input {
  width: 100%;
  padding: 0 1rem;
  background: transparent;
  color: var(--chalk);
  outline: none;
}

.signup-row input::placeholder {
  color: rgba(247, 244, 236, 0.48);
}

.signup-row button {
  padding: 0 1.2rem;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.signup-row button:hover,
.signup-row button:focus-visible,
.intake-form button:hover,
.intake-form button:focus-visible,
.sponsor-form button:hover,
.sponsor-form button:focus-visible,
.portal-form button:hover,
.portal-form button:focus-visible {
  background: #ffffff;
  box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.35);
}

.signup-row button:disabled,
.intake-form button:disabled,
.sponsor-form button:disabled,
.portal-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.intake-link {
  margin-top: -0.45rem;
  color: rgba(247, 244, 236, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.sponsor-link {
  margin-top: -1.35rem;
  color: rgba(247, 244, 236, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.pricing-link {
  margin-top: -1.2rem;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.portal-link {
  margin-top: -1.15rem;
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.62rem 0.82rem;
  background: rgba(247, 244, 236, 0.06);
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 1rem rgba(255, 255, 255, 0.035);
}

.contact-link {
  margin-top: -1.45rem;
  border-bottom: 1px solid rgba(247, 244, 236, 0.25);
  padding-bottom: 0.2rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.intake-link:hover,
.intake-link:focus-visible,
.sponsor-link:hover,
.sponsor-link:focus-visible,
.pricing-link:hover,
.pricing-link:focus-visible,
.portal-link:hover,
.portal-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.55);
}

.form-message {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.84rem;
  line-height: 1.4;
  text-align: center;
}

.signup-form.is-success .form-message,
.intake-form.is-success .intake-message,
.sponsor-form.is-success .sponsor-message,
.portal-form.is-success .portal-message,
.portal-form.is-success .portal-code-message {
  color: #bde8c8;
}

.signup-form.is-error .form-message,
.intake-form.is-error .intake-message,
.sponsor-form.is-error .sponsor-message,
.portal-form.is-error .portal-message,
.portal-form.is-error .portal-code-message {
  color: #ffb4a8;
}

.intake-page {
  overflow: auto;
}

.member-intake {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: grid;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.84)),
    radial-gradient(circle at 22% 25%, rgba(48, 157, 91, 0.18), transparent 24rem);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(16px);
}

.member-intake.is-active {
  opacity: 1;
  pointer-events: auto;
}

.member-intake::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), transparent 18%, transparent 82%, rgba(5, 5, 5, 0.88));
  opacity: 0;
  transform: translateX(24%);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.member-intake.is-active::before {
  opacity: 1;
  transform: translateX(-24%);
}

.sponsors-section {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: grid;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 20% 86%, rgba(50, 176, 94, 0.13), transparent 22rem);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(16px);
}

.sponsors-section.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sponsors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.075), transparent),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), transparent 18%, transparent 82%, rgba(5, 5, 5, 0.88));
  opacity: 0;
  transform: translateX(-24%);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.sponsors-section.is-active::before {
  opacity: 1;
  transform: translateX(24%);
}

.pricing-section {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.84)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 78% 82%, rgba(50, 176, 94, 0.16), transparent 22rem);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(16px);
}

.pricing-section.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), transparent 24%, transparent 76%, rgba(5, 5, 5, 0.9)),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  opacity: 0;
  transform: translateY(10%);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.pricing-section.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.pricing-area {
  position: relative;
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: min(78rem, 100%);
  margin: auto;
  padding: 0.2rem;
  transform: translateY(4rem) scale(0.98);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-section.is-active .pricing-area {
  transform: translateY(0) scale(1);
}

.pricing-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 236, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-close:hover,
.pricing-close:focus-visible {
  background: var(--chalk);
  color: var(--soft-black);
}

.pricing-head {
  display: grid;
  gap: 0.75rem;
  padding-right: 5rem;
}

.pricing-head p,
.pricing-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pricing-head h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--chalk);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.pricing-head span {
  max-width: 34rem;
  color: rgba(247, 244, 236, 0.66);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1rem;
}

.pricing-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 23rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(1rem, 2vw, 1.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.76);
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.34),
    inset 0 0 1.6rem rgba(255, 255, 255, 0.032);
  backdrop-filter: blur(12px);
}

.pricing-card.featured {
  border-color: rgba(189, 232, 200, 0.42);
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.34),
    0 0 2.2rem rgba(80, 210, 122, 0.12),
    inset 0 0 1.8rem rgba(80, 210, 122, 0.045);
}

.pricing-card h3 {
  margin: 0;
  color: var(--chalk);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: 0;
  line-height: 1;
}

.pricing-card strong {
  color: var(--chalk);
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 0.92;
}

.pricing-card strong span {
  color: rgba(247, 244, 236, 0.58);
  font-size: 1rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.94rem;
  line-height: 1.35;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  aspect-ratio: 1;
  margin-right: 0.55rem;
  background: #bde8c8;
  vertical-align: 0.1rem;
}

.pricing-card a {
  display: inline-grid;
  width: 100%;
  min-height: 3.15rem;
  margin-top: auto;
  place-items: center;
  background: var(--chalk);
  color: var(--soft-black);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.portal-section {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: grid;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.8)),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 75% 86%, rgba(50, 176, 94, 0.14), transparent 24rem);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(16px);
}

.portal-section.is-active {
  opacity: 1;
  pointer-events: auto;
}

.portal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(5, 5, 5, 0.28)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), transparent 20%, transparent 80%, rgba(5, 5, 5, 0.88));
  opacity: 0;
  transform: translateY(10%);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.portal-section.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.portal-area {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.86fr) minmax(18rem, 0.7fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  width: min(62rem, 100%);
  max-height: calc(100svh - clamp(2rem, 8vw, 6rem));
  margin: auto;
  overflow-y: auto;
  padding: 0.2rem;
  transform: translateY(3rem) scale(0.98);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portal-section.is-active .portal-area {
  transform: translateY(0) scale(1);
}

.portal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 236, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-close:hover,
.portal-close:focus-visible {
  background: var(--chalk);
  color: var(--soft-black);
}

.portal-copy {
  display: grid;
  gap: 1rem;
  opacity: 0.74;
  transform: translateY(2rem);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portal-section.is-active .portal-copy {
  opacity: 1;
  transform: translateY(0);
}

.portal-copy p {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portal-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--chalk);
  font-size: clamp(2.5rem, 7vw, 6.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.portal-copy span {
  max-width: 27rem;
  color: rgba(247, 244, 236, 0.66);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.55;
}

.portal-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.76);
  box-shadow:
    0 2.4rem 6rem rgba(0, 0, 0, 0.38),
    inset 0 0 2rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  opacity: 0.76;
  transform: translateY(3rem);
  transition:
    opacity 560ms ease,
    transform 660ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portal-section.is-active .portal-card {
  opacity: 1;
  transform: translateY(0);
}

.portal-form {
  display: grid;
  gap: 1rem;
}

.portal-form[hidden] {
  display: none;
}

.portal-form label {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-form input {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.95rem;
  background: rgba(0, 0, 0, 0.36);
  color: var(--chalk);
  font: inherit;
  outline: none;
}

.signup-row input,
.portal-form input,
.sponsor-form input,
.sponsor-form textarea,
.sponsor-form select,
.member-intake .intake-form input,
.member-intake .intake-form textarea,
.intake-form input,
.intake-form textarea,
.member-panel input,
.member-panel textarea,
.scan-form input,
.kiosk-form input {
  font-size: 16px;
  line-height: 1.25;
}

/* Final performance and member portal light pass. */
.member-intake,
.sponsors-section,
.pricing-section,
.portal-section {
  transition: opacity 120ms ease;
  backdrop-filter: none;
}

.member-intake::before,
.sponsors-section::before,
.pricing-section::before,
.portal-section::before {
  display: none;
}

.intake-area,
.sponsor-area,
.pricing-area,
.portal-area,
.portal-copy,
.portal-card {
  transition-duration: 140ms;
}

.member-body {
  background:
    radial-gradient(circle at 50% -12%, rgba(53, 227, 212, 0.08), transparent 17rem),
    #070807;
}

.member-shell {
  width: min(64rem, 100%);
}

.member-top,
.member-hero,
.member-panel,
.member-actions,
.portal-notice,
.member-app-home {
  box-shadow:
    0 0.8rem 2rem rgba(0, 0, 0, 0.22),
    inset 0 0 1rem rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
}

.member-app-home {
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(5, 5, 5, 0.58);
}

.member-app-home a {
  min-height: 5.6rem;
  background: rgba(255, 255, 255, 0.035);
}

.member-app-icon {
  width: 2.7rem;
}

.member-app-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.member-hero,
.checkin-panel {
  background: rgba(5, 5, 5, 0.62);
}

.club-pass-card {
  gap: 0.75rem;
  padding: 1rem;
}

.club-pass-card img {
  width: min(14rem, 68vw);
  border-width: 0.5rem;
  box-shadow: none;
}

/* Final front-page overrides for Juanita brief. */
.coming-soon {
  position: relative;
}

.home-nav {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(64rem, calc(100% - 2rem));
  justify-content: center;
  gap: clamp(0.55rem, 1.4vw, 1rem);
  transform: translateX(-50%);
}

.home-nav a,
.quick-links a {
  margin: 0;
  color: rgba(247, 244, 236, 0.64);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hero-actions a {
  margin: 0;
  min-width: min(14rem, 100%);
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.78rem 1rem;
  text-align: center;
  text-decoration: none;
}

.hero-actions .intake-link {
  background: var(--chalk);
  color: #080908;
}

.hero-actions .pricing-link {
  background: rgba(247, 244, 236, 0.065);
}

.quick-links {
  margin-top: -0.35rem;
}

.quick-links a {
  border: 0;
  padding: 0.2rem 0.35rem;
}

.review-marquee {
  position: absolute;
  right: 0;
  bottom: clamp(8.6rem, 19vh, 12.5rem);
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(247, 244, 236, 0.1);
  padding: 0.75rem 0;
  background: rgba(5, 5, 5, 0.28);
  color: rgba(247, 244, 236, 0.76);
  backdrop-filter: blur(10px);
}

.review-marquee div {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
  animation: herhaus-marquee 28s linear infinite;
}

.review-marquee span {
  margin-left: 2rem;
  color: #f7f4ec;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-marquee p {
  margin: 0;
  font-size: 0.92rem;
  white-space: nowrap;
}

.brand-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(247, 244, 236, 0.1);
  padding: clamp(1.1rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.025)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.28);
}

.brand-section-copy {
  display: grid;
  gap: 0.45rem;
}

.brand-section-copy p,
.brand-section article span,
.team-card span,
.schedule-preview span {
  margin: 0;
  color: #b7ede4;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-section-copy h2,
.brand-section h3 {
  margin: 0;
  color: var(--chalk);
}

.brand-section-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 0.98;
}

.brand-section-grid,
.schedule-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-section article,
.team-card,
.schedule-preview div {
  border: 1px solid rgba(247, 244, 236, 0.11);
  padding: 1rem;
  background: rgba(247, 244, 236, 0.055);
}

.brand-section article {
  display: grid;
  gap: 0.7rem;
}

.brand-section article p,
.team-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  line-height: 1.55;
}

.team-card {
  max-width: 34rem;
}

.team-card h3 {
  margin: 0.45rem 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.schedule-preview strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--chalk);
  font-size: 1.1rem;
}

.partner-cta {
  justify-self: start;
  margin: 0;
  border: 1px solid var(--chalk);
  padding: 0.85rem 1rem;
  color: #080908;
  background: var(--chalk);
  text-decoration: none;
}

.pricing-card strong span {
  display: inline-block;
  margin-left: 0.2rem;
}

@media (max-width: 820px) {
  .home-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1rem;
    transform: none;
  }

  .home-nav a {
    border: 1px solid rgba(247, 244, 236, 0.1);
    padding: 0.65rem;
    text-align: center;
    background: rgba(247, 244, 236, 0.04);
  }

  .brand-section-grid,
  .schedule-preview {
    grid-template-columns: 1fr;
  }

  .review-marquee {
    bottom: clamp(7.5rem, 16vh, 10rem);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-top: 1rem;
  }

  .home-nav {
    width: 100%;
    gap: 0.4rem;
  }

  .home-nav a {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: min(22rem, 100%);
  }

  .hero-actions a {
    width: 100%;
  }

  .review-marquee {
    bottom: 7.5rem;
    padding: 0.55rem 0;
  }

  .review-marquee p {
    font-size: 0.8rem;
  }
}

/* Restore original matte-black launch page. Keep this final. */
body {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.08), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, rgba(255, 255, 255, 0.018)),
    var(--matte-black);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: start;
  justify-items: center;
  padding: clamp(4rem, 12vh, 7rem) clamp(1.1rem, 4vw, 5rem) clamp(10rem, 24vh, 15rem);
}

.coming-soon::before {
  content: none;
}

.home-nav,
.review-marquee {
  display: none;
}

.logo-stage {
  display: grid;
  width: min(52rem, 100%);
  justify-items: center;
  gap: clamp(1rem, 2.6vw, 1.8rem);
  transform: none;
}

.brand-logo {
  display: block;
  width: min(46rem, 92vw);
  max-height: 28vh;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.55rem rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 2rem rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 5.5rem rgba(255, 255, 255, 0.18));
}

.signup-form {
  display: grid;
  width: min(36rem, 100%);
  justify-items: center;
  gap: 0.78rem;
  margin: 0;
}

.signup-form h1 {
  margin: 0;
  color: rgba(247, 244, 236, 0.74);
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signup-form p {
  max-width: 30rem;
  margin: 0 0 0.45rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.45;
  text-align: center;
}

.signup-row {
  width: min(34rem, 100%);
  min-height: 5rem;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.74);
}

.signup-row input {
  min-height: 3.1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
}

.signup-row button {
  min-height: 3.1rem;
  width: 100%;
  background: var(--chalk);
  color: #0a0a09;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.quick-links {
  display: flex;
  width: min(36rem, 100%);
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: clamp(1rem, 3vh, 2rem) 0 0;
}

.quick-links a {
  width: auto;
  margin: 0;
  border: 0;
  padding: 0.1rem 0.2rem;
  color: rgba(247, 244, 236, 0.7);
  font-size: clamp(0.82rem, 2.3vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.quick-links .portal-link {
  position: relative;
  margin-top: 1.4rem;
  border: 1px solid rgba(247, 244, 236, 0.24);
  padding: 0.85rem 1.6rem;
  width: min(26rem, 100%);
}

.quick-links .portal-link::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 9rem;
  height: 1px;
  background: rgba(247, 244, 236, 0.24);
  transform: translateX(-50%);
}

.turf-floor {
  height: min(28vh, 15rem);
}

.turf-lane img {
  width: min(16rem, 48vw);
}

@media (max-width: 640px) {
  .coming-soon {
    padding-top: clamp(6rem, 14vh, 8rem);
    padding-inline: 1rem;
    padding-bottom: clamp(12rem, 28vh, 15rem);
  }

  .brand-logo {
    width: min(56rem, 96vw);
    max-height: 21vh;
  }

  .signup-form {
    width: 100%;
  }

  .signup-row {
    min-height: 6.2rem;
  }

  .quick-links {
    margin-top: 1.7rem;
  }

  .quick-links a {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }
}

/* Restore original matte-black launch page. */
body {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.08), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, rgba(255, 255, 255, 0.018)),
    var(--matte-black);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: start;
  justify-items: center;
  padding: clamp(4rem, 12vh, 7rem) clamp(1.1rem, 4vw, 5rem) clamp(10rem, 24vh, 15rem);
}

.coming-soon::before {
  content: none;
}

.home-nav,
.review-marquee {
  display: none;
}

.logo-stage {
  display: grid;
  width: min(52rem, 100%);
  justify-items: center;
  gap: clamp(1rem, 2.6vw, 1.8rem);
  transform: none;
}

.brand-logo {
  display: block;
  width: min(46rem, 92vw);
  max-height: 28vh;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.55rem rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 2rem rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 5.5rem rgba(255, 255, 255, 0.18));
}

.signup-form {
  display: grid;
  width: min(36rem, 100%);
  justify-items: center;
  gap: 0.78rem;
  margin: 0;
}

.signup-form h1 {
  margin: 0;
  color: rgba(247, 244, 236, 0.74);
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signup-form p {
  max-width: 30rem;
  margin: 0 0 0.45rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.45;
  text-align: center;
}

.signup-row {
  width: min(34rem, 100%);
  min-height: 5rem;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.74);
}

.signup-row input {
  min-height: 3.1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
}

.signup-row button {
  min-height: 3.1rem;
  width: 100%;
  background: var(--chalk);
  color: #0a0a09;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.quick-links {
  display: flex;
  width: min(36rem, 100%);
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: clamp(1rem, 3vh, 2rem) 0 0;
}

.quick-links a {
  width: auto;
  margin: 0;
  border: 0;
  padding: 0.1rem 0.2rem;
  color: rgba(247, 244, 236, 0.7);
  font-size: clamp(0.82rem, 2.3vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.quick-links .portal-link {
  position: relative;
  margin-top: 1.4rem;
  border: 1px solid rgba(247, 244, 236, 0.24);
  padding: 0.85rem 1.6rem;
  width: min(26rem, 100%);
}

.quick-links .portal-link::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 9rem;
  height: 1px;
  background: rgba(247, 244, 236, 0.24);
  transform: translateX(-50%);
}

.turf-floor {
  height: min(28vh, 15rem);
}

.turf-lane img {
  width: min(16rem, 48vw);
}

@media (max-width: 640px) {
  .coming-soon {
    padding-top: clamp(6rem, 14vh, 8rem);
    padding-inline: 1rem;
    padding-bottom: clamp(12rem, 28vh, 15rem);
  }

  .brand-logo {
    width: min(56rem, 96vw);
    max-height: 21vh;
  }

  .signup-form {
    width: 100%;
  }

  .signup-row {
    min-height: 6.2rem;
  }

  .quick-links {
    margin-top: 1.7rem;
  }

  .quick-links a {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }
}

/* Dogpound-inspired editorial pass. */
.coming-soon {
  align-items: center;
  min-height: 100svh;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(9rem, 18vh, 13rem);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 18rem),
    radial-gradient(circle at 84% 36%, rgba(32, 198, 181, 0.13), transparent 24rem),
    repeating-linear-gradient(115deg, rgba(247, 244, 236, 0.035) 0 1px, transparent 1px 5.5rem);
}

.home-nav {
  top: 1.25rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(247, 244, 236, 0.12);
  padding: 0.6rem 0.75rem;
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(14px);
}

.home-nav a {
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.62rem;
}

.logo-stage {
  width: min(84rem, 100%);
  gap: clamp(1rem, 2.4vw, 1.65rem);
}

.brand-logo {
  width: min(54rem, 92vw);
}

.hero-editorial {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  text-align: center;
}

.hero-editorial p {
  margin: 0;
  color: #b7ede4;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-editorial h1 {
  max-width: 13ch;
  color: #f7f4ec;
  font-size: clamp(2.9rem, 9vw, 7.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-editorial span {
  max-width: 40rem;
  color: rgba(247, 244, 236, 0.7);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.55;
}

.hero-media-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(62rem, 100%);
  gap: 0.8rem;
}

.hero-media-row div {
  min-height: clamp(7.5rem, 15vw, 12rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.45rem;
  border: 1px solid rgba(247, 244, 236, 0.13);
  padding: 1rem;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 50% 20%, rgba(247, 244, 236, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(247, 244, 236, 0.12), rgba(32, 198, 181, 0.1));
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.32);
}

.hero-media-row div:nth-child(2) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 40% 22%, rgba(255, 255, 255, 0.22), transparent 9rem),
    linear-gradient(135deg, rgba(32, 198, 181, 0.14), rgba(247, 244, 236, 0.1));
}

.hero-media-row div:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 58% 20%, rgba(247, 244, 236, 0.18), transparent 8rem),
    linear-gradient(135deg, rgba(247, 244, 236, 0.1), rgba(149, 221, 200, 0.12));
}

.hero-media-row span {
  color: rgba(247, 244, 236, 0.6);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.hero-media-row strong {
  color: var(--chalk);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.signup-form {
  width: min(44rem, 100%);
}

.signup-form p {
  max-width: 100%;
  margin: 0;
}

.signup-row {
  min-height: 3.6rem;
}

.hero-actions a {
  min-width: min(16rem, 100%);
  padding-block: 0.95rem;
}

.brand-section {
  grid-template-columns: 0.82fr 1fr;
  align-items: stretch;
  min-height: clamp(28rem, 54vw, 42rem);
  width: min(86rem, calc(100% - 2rem));
  padding: 0;
  overflow: hidden;
}

.brand-section-copy,
.brand-section-grid,
.team-card,
.schedule-preview,
.partner-cta {
  position: relative;
  z-index: 2;
}

.brand-section-copy {
  align-content: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.brand-section-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 6.4rem);
  text-transform: uppercase;
}

.section-media {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 11rem),
    linear-gradient(135deg, rgba(32, 198, 181, 0.14), rgba(247, 244, 236, 0.1));
}

.section-media-right {
  order: 2;
}

.section-media span {
  width: max-content;
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.42rem 0.55rem;
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-section-grid,
.schedule-preview {
  align-self: end;
  grid-template-columns: 1fr;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.brand-section article,
.team-card,
.schedule-preview div {
  background: rgba(247, 244, 236, 0.075);
  backdrop-filter: blur(8px);
}

.team-card,
.partner-cta {
  margin: clamp(1.25rem, 4vw, 3rem);
  align-self: end;
}

.partner-section {
  min-height: 24rem;
}

.partner-section .brand-section-copy h2 {
  max-width: 14ch;
}

@media (max-width: 820px) {
  .coming-soon {
    padding-block: 1rem 8.5rem;
  }

  .home-nav {
    position: static;
    width: 100%;
    transform: none;
  }

  .hero-editorial h1 {
    max-width: 10ch;
  }

  .hero-media-row {
    grid-template-columns: 1fr;
  }

  .hero-media-row div {
    min-height: 7rem;
  }

  .brand-section {
    grid-template-columns: 1fr;
  }

  .section-media,
  .section-media-right {
    min-height: 16rem;
    order: 0;
  }

  .brand-section-copy h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 4.2rem);
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: min(34rem, 92vw);
  }

  .hero-editorial h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

  .hero-editorial span {
    font-size: 0.9rem;
  }

  .signup-row {
    width: 100%;
  }

  .brand-section {
    width: calc(100% - 1rem);
  }
}

/* Dogpound literal direction: black, photographic, sparse, editorial. */
body {
  background: #020202;
}

body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.52));
}

.turf-floor {
  opacity: 0.42;
}

.coming-soon {
  min-height: 100svh;
  padding: 5.25rem 1rem 9rem;
  place-items: stretch;
}

.coming-soon::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(ellipse at 48% 22%, rgba(255, 255, 255, 0.2), transparent 24rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #050505;
}

.home-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 12;
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  gap: clamp(0.8rem, 2vw, 1.65rem);
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 1.25rem;
  background: rgba(0, 0, 0, 0.72);
  transform: none;
  backdrop-filter: blur(18px);
}

.home-nav img {
  position: absolute;
  left: 1.25rem;
  width: 6rem;
  max-height: 2.2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-nav a {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-nav .nav-portal {
  position: absolute;
  right: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.72rem 0.9rem;
  color: #fff;
}

.logo-stage {
  width: min(92rem, 100%);
  min-height: calc(100svh - 14rem);
  align-content: center;
  justify-self: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0;
}

.brand-logo {
  width: min(58rem, 94vw);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 1.4rem rgba(255, 255, 255, 0.56));
}

.dog-hero-frame {
  position: relative;
  display: grid;
  width: min(78rem, 100%);
  min-height: clamp(22rem, 48vw, 43rem);
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 42% 22%, rgba(255, 255, 255, 0.24), transparent 10rem),
    radial-gradient(circle at 72% 35%, rgba(255, 255, 255, 0.14), transparent 16rem),
    linear-gradient(135deg, #181818, #050505 58%, #111);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.5);
}

.dog-hero-frame::before,
.dog-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dog-hero-frame::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16%),
    repeating-linear-gradient(90deg, transparent 0 9%, rgba(255, 255, 255, 0.08) 9.2% 9.45%, transparent 9.7% 14%),
    radial-gradient(ellipse at 50% 100%, rgba(40, 160, 100, 0.22), transparent 48%);
  transform: perspective(40rem) rotateX(58deg) translateY(22%);
  transform-origin: bottom center;
  opacity: 0.72;
}

.dog-hero-frame::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 6px);
}

.dog-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  max-width: 62rem;
  padding: clamp(1.1rem, 4vw, 3rem);
  text-align: left;
}

.dog-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dog-hero-copy h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 7.7rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-align: left;
  text-transform: uppercase;
}

.hero-actions {
  gap: 0;
}

.hero-actions a {
  min-width: min(18rem, 50vw);
  border-color: #fff;
  padding: 1rem 1.35rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.hero-actions .intake-link {
  background: #fff;
  color: #050505;
}

.hero-actions .pricing-link {
  background: #050505;
}

.signup-form {
  width: min(36rem, 100%);
  margin-top: 0;
}

.signup-form p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signup-row {
  background: rgba(0, 0, 0, 0.82);
}

.quick-links a {
  color: rgba(255, 255, 255, 0.62);
}

.review-marquee {
  bottom: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: #060606;
}

.review-marquee div {
  animation-duration: 24s;
}

.site-page {
  background: #020202;
}

.brand-section {
  width: 100%;
  min-height: min(86svh, 54rem);
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  background: #050505;
}

.brand-section:nth-of-type(odd) {
  background: #f4f0e8;
}

.brand-section:nth-of-type(odd) .brand-section-copy p,
.brand-section:nth-of-type(odd) .brand-section-copy h2,
.brand-section:nth-of-type(odd) h3,
.brand-section:nth-of-type(odd) article p,
.brand-section:nth-of-type(odd) .team-card p {
  color: #050505;
}

.section-media {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 45% 20%, rgba(255, 255, 255, 0.3), transparent 12rem),
    linear-gradient(135deg, #242424, #050505 62%, #1c1c1c);
}

.section-media-right {
  order: 2;
}

.section-media span {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.brand-section-copy {
  align-content: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.brand-section-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.brand-section-copy h2 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  letter-spacing: -0.04em;
  line-height: 0.84;
}

.brand-section-grid,
.schedule-preview {
  align-self: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.brand-section article,
.team-card,
.schedule-preview div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

.brand-section:nth-of-type(odd) article,
.brand-section:nth-of-type(odd) .team-card,
.brand-section:nth-of-type(odd) .schedule-preview div {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
}

.partner-section {
  min-height: 62svh;
  background: #050505;
}

.partner-section .brand-section-copy h2 {
  max-width: 12ch;
}

.partner-cta {
  align-self: center;
  margin: clamp(2rem, 5vw, 5rem);
  border-color: #fff;
  background: #fff;
  color: #050505;
}

@media (max-width: 920px) {
  .home-nav {
    justify-content: start;
    overflow-x: auto;
    padding-left: 8rem;
    padding-right: 1rem;
  }

  .home-nav .nav-portal {
    position: static;
    flex: 0 0 auto;
  }

  .brand-section {
    grid-template-columns: 1fr;
  }

  .section-media,
  .section-media-right {
    order: 0;
    min-height: 18rem;
  }

  .brand-section-copy h2 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 6rem);
  }
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 5rem 0.75rem 8rem;
  }

  .home-nav {
    min-height: 4rem;
    padding-left: 6.8rem;
  }

  .home-nav img {
    left: 0.75rem;
    width: 5.3rem;
  }

  .home-nav a {
    font-size: 0.56rem;
    white-space: nowrap;
  }

  .brand-logo {
    width: min(30rem, 94vw);
  }

  .dog-hero-frame {
    min-height: 26rem;
  }

  .dog-hero-copy h1 {
    font-size: clamp(2.55rem, 15vw, 4.35rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions a {
    min-width: 50%;
    padding-inline: 0.7rem;
    font-size: 0.62rem;
  }

  .signup-form {
    width: 100%;
  }

  .brand-section-copy,
  .brand-section-grid,
  .schedule-preview {
    padding: 1.25rem;
  }
}

/* Soft luxury reset after Dogpound exploration. */
:root {
  --her-ink: #070806;
  --her-espresso: #11100d;
  --her-ivory: #f7f2e8;
  --her-mist: #dfe8e2;
  --her-sage: #b8d4c5;
  --her-teal: #20c6b5;
  --her-blush: #ead9d3;
}

body {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, #0b0c0a 0%, #050505 100%);
}

body::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 18% 18%, rgba(184, 212, 197, 0.12), transparent 18rem),
    radial-gradient(circle at 84% 32%, rgba(234, 217, 211, 0.1), transparent 22rem);
}

.turf-floor {
  opacity: 0.72;
}

.coming-soon {
  min-height: 100svh;
  padding: clamp(5rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem) clamp(8rem, 16vh, 12rem);
  place-items: center;
}

.coming-soon::before {
  background:
    linear-gradient(180deg, rgba(7, 8, 6, 0.58), rgba(7, 8, 6, 0.16) 42%, rgba(7, 8, 6, 0.86)),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 22rem);
}

.home-nav {
  position: fixed;
  top: 1rem;
  right: 50%;
  left: auto;
  z-index: 12;
  display: flex;
  width: min(72rem, calc(100% - 2rem));
  min-height: auto;
  gap: clamp(0.55rem, 1.2vw, 1rem);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: rgba(7, 8, 6, 0.68);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.24);
  transform: translateX(50%);
  backdrop-filter: blur(16px);
}

.home-nav img {
  position: static;
  width: 5.4rem;
  max-height: 1.9rem;
  margin-right: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-nav a {
  flex: 0 0 auto;
  color: rgba(247, 242, 232, 0.76);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.home-nav .nav-portal {
  position: static;
  margin-left: auto;
  border: 1px solid rgba(247, 242, 232, 0.28);
  border-radius: 999px;
  padding: 0.58rem 0.8rem;
  color: var(--her-ivory);
}

.logo-stage {
  width: min(76rem, 100%);
  min-height: auto;
  gap: clamp(1rem, 2.5vw, 1.7rem);
  padding-top: 0;
  transform: none;
}

.brand-logo {
  width: min(46rem, 88vw);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.65rem rgba(255, 255, 255, 0.62))
    drop-shadow(0 0 3rem rgba(255, 255, 255, 0.18));
}

.herhaus-hero-frame,
.dog-hero-frame {
  position: relative;
  display: grid;
  width: min(54rem, 100%);
  min-height: auto;
  overflow: visible;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-radius: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(145deg, rgba(247, 242, 232, 0.105), rgba(247, 242, 232, 0.035)),
    rgba(7, 8, 6, 0.58);
  box-shadow:
    0 1.6rem 4rem rgba(0, 0, 0, 0.32),
    inset 0 0 2rem rgba(255, 255, 255, 0.025);
}

.herhaus-hero-frame::before,
.herhaus-hero-frame::after,
.dog-hero-frame::before,
.dog-hero-frame::after {
  display: none;
}

.herhaus-hero-copy,
.dog-hero-copy {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 0;
  text-align: center;
}

.herhaus-hero-copy p,
.dog-hero-copy p {
  margin: 0;
  color: var(--her-sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.herhaus-hero-copy h1,
.dog-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--her-ivory);
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-align: center;
  text-transform: none;
}

.herhaus-hero-copy span {
  max-width: 38rem;
  color: rgba(247, 242, 232, 0.72);
  line-height: 1.55;
}

.hero-actions {
  gap: 0.7rem;
}

.hero-actions a {
  min-width: min(15rem, 100%);
  border: 1px solid rgba(247, 242, 232, 0.22);
  padding: 0.86rem 1rem;
  color: var(--her-ivory);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero-actions .intake-link {
  border-color: var(--her-ivory);
  background: var(--her-ivory);
  color: var(--her-ink);
}

.hero-actions .pricing-link {
  background: rgba(247, 242, 232, 0.05);
}

.signup-form {
  width: min(34rem, 100%);
}

.signup-form p {
  color: rgba(247, 242, 232, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-row {
  min-height: 3.35rem;
  background: rgba(7, 8, 6, 0.7);
}

.signup-row button {
  background: var(--her-ivory);
  color: var(--her-ink);
}

.review-marquee {
  bottom: clamp(7.8rem, 16vh, 11rem);
  border-color: rgba(247, 242, 232, 0.11);
  background: rgba(7, 8, 6, 0.48);
}

.site-page {
  background: transparent;
}

.brand-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  width: min(76rem, calc(100% - 2rem));
  min-height: auto;
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(247, 242, 232, 0.11);
  background:
    linear-gradient(145deg, rgba(247, 242, 232, 0.08), rgba(247, 242, 232, 0.025)),
    rgba(7, 8, 6, 0.7);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.25);
}

.brand-section:nth-of-type(odd) {
  background:
    linear-gradient(145deg, rgba(247, 242, 232, 0.08), rgba(247, 242, 232, 0.025)),
    rgba(7, 8, 6, 0.7);
}

.section-media {
  min-height: clamp(15rem, 28vw, 22rem);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(7, 8, 6, 0.64)),
    radial-gradient(circle at 48% 24%, rgba(247, 242, 232, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(184, 212, 197, 0.15), rgba(234, 217, 211, 0.12)),
    #161612;
}

.section-media span {
  border-color: rgba(247, 242, 232, 0.2);
  color: rgba(247, 242, 232, 0.78);
}

.brand-section-copy {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.brand-section-copy p,
.brand-section:nth-of-type(odd) .brand-section-copy p {
  color: var(--her-sage);
}

.brand-section-copy h2,
.brand-section:nth-of-type(odd) .brand-section-copy h2 {
  max-width: 13ch;
  color: var(--her-ivory);
  font-size: clamp(2.1rem, 5.4vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 0.93;
  text-transform: none;
}

.brand-section article,
.team-card,
.schedule-preview div,
.brand-section:nth-of-type(odd) article,
.brand-section:nth-of-type(odd) .team-card,
.brand-section:nth-of-type(odd) .schedule-preview div {
  border-color: rgba(247, 242, 232, 0.1);
  background: rgba(247, 242, 232, 0.045);
}

.brand-section h3,
.brand-section:nth-of-type(odd) h3 {
  color: var(--her-ivory);
}

.brand-section article p,
.team-card p,
.brand-section:nth-of-type(odd) article p,
.brand-section:nth-of-type(odd) .team-card p {
  color: rgba(247, 242, 232, 0.68);
}

.partner-section {
  min-height: auto;
}

.partner-cta {
  align-self: end;
  border-color: var(--her-ivory);
  background: var(--her-ivory);
  color: var(--her-ink);
}

@media (max-width: 920px) {
  .home-nav {
    right: 1rem;
    left: 1rem;
    width: auto;
    justify-content: start;
    overflow-x: auto;
    transform: none;
  }

  .home-nav img,
  .home-nav .nav-portal {
    margin: 0;
  }

  .brand-section {
    grid-template-columns: 1fr;
  }

  .section-media,
  .section-media-right {
    order: 0;
  }
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 5.25rem 1rem 8rem;
  }

  .home-nav {
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    padding: 0.5rem;
  }

  .home-nav a {
    font-size: 0.54rem;
  }

  .brand-logo {
    width: min(31rem, 92vw);
  }

  .herhaus-hero-frame,
  .dog-hero-frame {
    padding: 1rem;
  }

  .herhaus-hero-copy h1,
  .dog-hero-copy h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero-actions {
    width: min(22rem, 100%);
  }

  .hero-actions a {
    width: 100%;
  }

  .brand-section {
    width: calc(100% - 1rem);
  }
}

/* Juanita brief alignment: cleaner app-style front page sections. */
.coming-soon {
  position: relative;
}

.home-nav {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(64rem, calc(100% - 2rem));
  justify-content: center;
  gap: clamp(0.55rem, 1.4vw, 1rem);
  transform: translateX(-50%);
}

.home-nav a,
.quick-links a {
  margin: 0;
  color: rgba(247, 244, 236, 0.64);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.quick-links a:hover,
.quick-links a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.46);
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hero-actions a {
  margin: 0;
  min-width: min(14rem, 100%);
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.78rem 1rem;
  text-align: center;
  text-decoration: none;
}

.hero-actions .intake-link {
  background: var(--chalk);
  color: #080908;
}

.hero-actions .pricing-link {
  background: rgba(247, 244, 236, 0.065);
}

.quick-links {
  margin-top: -0.35rem;
}

.quick-links a {
  margin: 0;
  border: 0;
  padding: 0.2rem 0.35rem;
}

.review-marquee {
  position: absolute;
  right: 0;
  bottom: clamp(8.6rem, 19vh, 12.5rem);
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(247, 244, 236, 0.1);
  padding: 0.75rem 0;
  background: rgba(5, 5, 5, 0.28);
  color: rgba(247, 244, 236, 0.76);
  backdrop-filter: blur(10px);
}

.review-marquee div {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
  animation: herhaus-marquee 28s linear infinite;
}

.review-marquee span {
  margin-left: 2rem;
  color: #f7f4ec;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-marquee p {
  margin: 0;
  font-size: 0.92rem;
  white-space: nowrap;
}

@keyframes herhaus-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(247, 244, 236, 0.1);
  padding: clamp(1.1rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.025)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.28);
}

.brand-section-copy {
  display: grid;
  gap: 0.45rem;
}

.brand-section-copy p,
.brand-section article span,
.team-card span,
.schedule-preview span {
  margin: 0;
  color: #b7ede4;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-section-copy h2,
.brand-section h3 {
  margin: 0;
  color: var(--chalk);
}

.brand-section-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 0.98;
}

.brand-section-grid,
.schedule-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-section article,
.team-card,
.schedule-preview div {
  border: 1px solid rgba(247, 244, 236, 0.11);
  padding: 1rem;
  background: rgba(247, 244, 236, 0.055);
}

.brand-section article {
  display: grid;
  gap: 0.7rem;
}

.brand-section article p,
.team-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  line-height: 1.55;
}

.team-card {
  max-width: 34rem;
}

.team-card h3 {
  margin: 0.45rem 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.schedule-preview strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--chalk);
  font-size: 1.1rem;
}

.partner-cta {
  justify-self: start;
  margin: 0;
  border: 1px solid var(--chalk);
  padding: 0.85rem 1rem;
  color: #080908;
  background: var(--chalk);
  text-decoration: none;
}

.pricing-card strong span {
  display: inline-block;
  margin-left: 0.2rem;
}

@media (max-width: 820px) {
  .home-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1rem;
    transform: none;
  }

  .home-nav a {
    border: 1px solid rgba(247, 244, 236, 0.1);
    padding: 0.65rem;
    text-align: center;
    background: rgba(247, 244, 236, 0.04);
  }

  .brand-section-grid,
  .schedule-preview {
    grid-template-columns: 1fr;
  }

  .review-marquee {
    bottom: clamp(7.5rem, 16vh, 10rem);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-top: 1rem;
  }

  .home-nav {
    width: 100%;
    gap: 0.4rem;
  }

  .home-nav a {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: min(22rem, 100%);
  }

  .hero-actions a {
    width: 100%;
  }

  .review-marquee {
    bottom: 7.5rem;
    padding: 0.55rem 0;
  }

  .review-marquee p {
    font-size: 0.8rem;
  }
}

/* Member portal overlap repair. */
.member-body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 198, 181, 0.1), transparent 19rem),
    linear-gradient(180deg, #080908 0%, #050505 100%);
}

.member-shell {
  width: min(58rem, 100%);
  padding: clamp(0.85rem, 3vw, 1.6rem);
  gap: 0.85rem;
}

.member-top,
.member-hero,
.member-panel,
.member-actions,
.portal-notice,
.member-app-home {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.member-top {
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(0.75rem, 2.5vw, 1rem);
}

.member-top img {
  width: clamp(5.8rem, 16vw, 9.5rem);
}

.member-top h1 {
  overflow-wrap: anywhere;
}

.member-grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.member-app-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.65rem;
}

.member-app-home a {
  min-width: 0;
  min-height: 5.25rem;
  gap: 0.4rem;
  padding: 0.7rem 0.45rem;
  font-size: 0.7rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.member-app-icon {
  width: 2.35rem;
}

.member-app-icon svg {
  width: 1.28rem;
  height: 1.28rem;
}

.member-hero {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.member-avatar {
  width: clamp(4.4rem, 14vw, 5.9rem);
}

.member-identity h2,
.member-identity span,
.member-identity p,
.scan-status p,
.touch-pass-status p,
.club-pass-card p {
  overflow-wrap: anywhere;
}

.member-mini-stats {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-panel {
  padding: clamp(0.85rem, 3vw, 1.15rem);
  overflow: hidden;
}

.club-pass-card {
  width: 100%;
  padding: clamp(0.85rem, 3vw, 1.1rem);
}

.club-pass-card img {
  display: block;
  width: min(15rem, 78vw);
  max-width: 100%;
  height: auto;
}

.scan-status strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.8rem, 11vw, 3.2rem);
}

.photo-row,
.touch-pass-layout,
.member-pair {
  grid-template-columns: 1fr;
}

.photo-row {
  align-items: start;
}

.photo-preview {
  width: min(7rem, 34vw);
}

.member-panel input,
.member-panel textarea {
  min-width: 0;
  max-width: 100%;
}

.touch-pass-status,
.touch-pass-fields,
.member-actions {
  min-width: 0;
}

@media (max-width: 640px) {
  .member-shell {
    padding: 0;
    gap: 0;
  }

  .member-top,
  .member-hero,
  .member-panel,
  .member-actions,
  .portal-notice,
  .member-app-home {
    border-right: 0;
    border-left: 0;
  }

  .member-top {
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
  }

  .member-top a:first-child {
    grid-column: 1 / -1;
  }

  .member-top img {
    width: 7.25rem;
  }

  .member-top h1 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .member-logout {
    align-self: end;
    padding: 0.58rem 0.68rem;
    white-space: nowrap;
  }

  .member-grid {
    gap: 0;
  }

  .member-app-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }

  .member-app-home a {
    min-height: 4.9rem;
    font-size: 0.66rem;
  }

  .member-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .member-identity p,
  .member-identity h2,
  .member-identity span {
    text-align: center;
  }

  .member-mini-stats {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .member-app-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-mini-stats {
    grid-template-columns: 1fr;
  }
}

/* Barry's-inspired pricing catalog refresh for Her Haus. */
.pricing-section {
  align-items: start;
  padding: clamp(0.75rem, 2.5vw, 2rem);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 23rem),
    radial-gradient(circle at 84% 84%, rgba(32, 198, 181, 0.18), transparent 26rem);
}

.pricing-area {
  width: min(72rem, 100%);
  gap: clamp(0.9rem, 2vw, 1.2rem);
  padding: clamp(0.7rem, 2vw, 1rem);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  border: 1px solid rgba(247, 244, 236, 0.14);
  padding: clamp(1.25rem, 4vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.024)),
    rgba(4, 5, 5, 0.86);
  box-shadow:
    0 1.4rem 4rem rgba(0, 0, 0, 0.38),
    inset 0 0 2rem rgba(255, 255, 255, 0.025);
}

.pricing-kicker {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.pricing-kicker span,
.pricing-kicker strong,
.pricing-card-top span {
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.42rem 0.55rem;
  color: rgba(247, 244, 236, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-kicker strong,
.pricing-card-top span {
  background: rgba(32, 198, 181, 0.16);
  color: #dffdf8;
}

.pricing-head {
  gap: 0.55rem;
  padding-right: 0;
}

.pricing-head h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 7vw, 5.7rem);
}

.pricing-head span {
  max-width: 38rem;
}

.pricing-hero-actions {
  display: grid;
  gap: 0.7rem;
  min-width: min(18rem, 100%);
}

.pricing-hero-actions a,
.pricing-tabs button {
  min-height: 3.2rem;
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0 1rem;
  color: rgba(247, 244, 236, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.pricing-hero-actions a {
  display: grid;
  place-items: center;
  background: rgba(247, 244, 236, 0.06);
}

.pricing-hero-actions .primary {
  border-color: var(--chalk);
  background: var(--chalk);
  color: #080908;
}

.pricing-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(28rem, 100%);
  border: 1px solid rgba(247, 244, 236, 0.14);
  padding: 0.25rem;
  background: rgba(247, 244, 236, 0.055);
}

.pricing-tabs button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.pricing-tabs button.is-active {
  background: var(--chalk);
  color: #080908;
}

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

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}

.pricing-card {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.96), rgba(230, 226, 215, 0.94));
  color: #10110f;
  box-shadow:
    0 1.4rem 3.6rem rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 94% 0%, rgba(32, 198, 181, 0.16), transparent 11rem),
    linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.035));
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(32, 198, 181, 0.75);
  box-shadow:
    0 1.6rem 4rem rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(32, 198, 181, 0.42),
    0 0 2.2rem rgba(32, 198, 181, 0.14);
}

.pricing-card-dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(32, 198, 181, 0.18), transparent 12rem),
    linear-gradient(180deg, #151817, #080908);
  color: var(--chalk);
}

.pricing-card-top {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
}

.pricing-card p {
  color: rgba(16, 17, 15, 0.58);
}

.pricing-card-dark p {
  color: rgba(247, 244, 236, 0.58);
}

.pricing-card h3 {
  color: inherit;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.pricing-card strong {
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.pricing-card strong span {
  color: currentColor;
  opacity: 0.58;
}

.pricing-card li {
  color: rgba(16, 17, 15, 0.68);
}

.pricing-card-dark li {
  color: rgba(247, 244, 236, 0.68);
}

.pricing-card li::before {
  background: #20c6b5;
}

.pricing-card a {
  min-height: 3.25rem;
  background: #080908;
  color: var(--chalk);
}

.pricing-card.featured a,
.pricing-card-dark a {
  background: #20c6b5;
  color: #06100f;
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  border: 1px solid rgba(247, 244, 236, 0.14);
  padding: 0.9rem 1rem;
  background: rgba(247, 244, 236, 0.055);
}

.pricing-note span {
  color: var(--chalk);
  font-weight: 900;
}

.pricing-note p {
  margin: 0;
  color: rgba(247, 244, 236, 0.66);
}

@media (max-width: 760px) {
  .pricing-section {
    padding: 0;
  }

  .pricing-area {
    padding: 0.85rem;
  }

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

  .pricing-hero-actions {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .pricing-area {
    padding-top: 3.4rem;
  }

  .pricing-head h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 14vw, 3.8rem);
  }

  .pricing-tabs {
    width: 100%;
  }

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

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

@media (max-width: 720px) {
  .member-intake,
  .sponsors-section,
  .pricing-section,
  .portal-section {
    transition-duration: 80ms;
  }

  .intake-area,
  .sponsor-area,
  .pricing-area,
  .portal-area,
  .portal-copy,
  .portal-card {
    transform: none;
    transition: none;
  }
}

/* Faster overlays and lighter member portal. */
.member-intake,
.sponsors-section,
.pricing-section,
.portal-section {
  transition: opacity 120ms ease;
  backdrop-filter: none;
}

.member-intake::before,
.sponsors-section::before,
.pricing-section::before,
.portal-section::before {
  display: none;
}

.intake-area,
.sponsor-area,
.pricing-area,
.portal-area,
.portal-copy,
.portal-card {
  transition-duration: 140ms;
}

.member-body {
  background:
    radial-gradient(circle at 50% -12%, rgba(53, 227, 212, 0.08), transparent 17rem),
    #070807;
}

.member-shell {
  width: min(64rem, 100%);
}

.member-top,
.member-hero,
.member-panel,
.member-actions,
.portal-notice,
.member-app-home {
  box-shadow:
    0 0.8rem 2rem rgba(0, 0, 0, 0.22),
    inset 0 0 1rem rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
}

.member-app-home {
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(5, 5, 5, 0.58);
}

.member-app-home a {
  min-height: 5.6rem;
  background: rgba(255, 255, 255, 0.035);
}

.member-app-icon {
  width: 2.7rem;
}

.member-app-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.member-hero {
  background: rgba(5, 5, 5, 0.62);
}

.checkin-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.7);
}

.club-pass-card {
  gap: 0.75rem;
  padding: 1rem;
}

.club-pass-card img {
  width: min(14rem, 68vw);
  border-width: 0.5rem;
  box-shadow: none;
}

@media (max-width: 720px) {
  .member-intake,
  .sponsors-section,
  .pricing-section,
  .portal-section {
    transition-duration: 80ms;
  }

  .intake-area,
  .sponsor-area,
  .pricing-area,
  .portal-area,
  .portal-copy,
  .portal-card {
    transform: none;
    transition: none;
  }
}

/* Member app and reception scanner polish. */
.member-body {
  background:
    radial-gradient(circle at 50% -8%, rgba(53, 227, 212, 0.22), transparent 22rem),
    linear-gradient(180deg, #050505, #0c0d0c 46%, #050505);
}

.member-shell {
  width: min(70rem, 100%);
}

.member-app-home {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(0.9rem, 2.5vw, 1.2rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(53, 227, 212, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.78);
  box-shadow:
    0 1.6rem 5rem rgba(0, 0, 0, 0.32),
    inset 0 0 2rem rgba(255, 255, 255, 0.03);
}

.member-app-home a {
  display: grid;
  gap: 0.52rem;
  min-height: 6.7rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 244, 236, 0.86);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
}

.member-app-home a:hover,
.member-app-home a:focus-visible {
  border-color: rgba(53, 227, 212, 0.5);
  background: rgba(53, 227, 212, 0.12);
  outline: none;
}

.member-app-icon {
  display: grid;
  width: 3.2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: var(--chalk);
  color: var(--soft-black);
}

.member-app-icon svg {
  width: 1.72rem;
  height: 1.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.club-pass-panel {
  gap: 1rem;
}

.club-pass-card {
  display: grid;
  gap: 1rem;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1rem, 3vw, 1.35rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 227, 212, 0.14), transparent 11rem),
    #f9f8f3;
  color: #11110f;
  text-align: center;
}

.club-pass-top {
  display: grid;
  gap: 0.25rem;
}

.club-pass-top span {
  color: rgba(17, 17, 15, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.club-pass-top strong {
  color: #11110f;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  letter-spacing: 0.08em;
}

.club-pass-card img {
  width: min(18rem, 78vw);
  aspect-ratio: 1;
  border: 0.75rem solid #ffffff;
  background: #ffffff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.14);
}

.club-pass-card p {
  margin: 0;
  color: rgba(17, 17, 15, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
}

.kiosk-scan-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.camera-scan-button {
  min-height: clamp(4.3rem, 8vw, 5.4rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--chalk);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.camera-scanner {
  position: relative;
  min-height: min(44svh, 24rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000000;
}

.camera-scanner[hidden] {
  display: none;
}

.camera-scanner video {
  width: 100%;
  height: 100%;
  min-height: min(44svh, 24rem);
  object-fit: cover;
}

.scanner-frame {
  position: absolute;
  inset: 18%;
  border: 0.2rem solid rgba(53, 227, 212, 0.92);
  box-shadow:
    0 0 0 999rem rgba(0, 0, 0, 0.36),
    0 0 1.6rem rgba(53, 227, 212, 0.45);
}

.scanner-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.68);
  color: rgba(247, 244, 236, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

@media (max-width: 760px) {
  .member-app-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kiosk-scan-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .member-app-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-app-home a {
    min-height: 6rem;
  }
}

.portal-form input:focus {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 1.4rem rgba(255, 255, 255, 0.1);
}

.portal-form button {
  min-height: 3.25rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-form .portal-back {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(247, 244, 236, 0.74);
}

.portal-form .portal-back:hover,
.portal-form .portal-back:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.portal-message,
.portal-code-message {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.sponsor-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  width: min(72rem, 100%);
  max-height: calc(100svh - clamp(2rem, 8vw, 6rem));
  margin: auto;
  align-items: start;
  position: relative;
  overflow-y: auto;
  padding: 0.2rem;
  transform: translateX(8vw);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sponsors-section.is-active .sponsor-area {
  transform: translateX(0);
}

.sponsor-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 236, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sponsor-close:hover,
.sponsor-close:focus-visible {
  background: var(--chalk);
  color: var(--soft-black);
}

.sponsor-copy {
  display: grid;
  gap: 1rem;
  opacity: 0.74;
  transform: translateX(-4rem);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sponsors-section.is-active .sponsor-copy {
  opacity: 1;
  transform: translateX(0);
}

.sponsor-copy p {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sponsor-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--chalk);
  font-size: clamp(2.4rem, 7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.sponsor-copy span {
  max-width: 32rem;
  color: rgba(247, 244, 236, 0.66);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.sponsor-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(5, 5, 5, 0.74);
  box-shadow:
    0 2.4rem 6rem rgba(0, 0, 0, 0.38),
    inset 0 0 2rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  opacity: 0.76;
  transform: translateX(7rem);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 560ms ease,
    transform 660ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sponsors-section.is-active .sponsor-card {
  opacity: 1;
  transform: translateX(0);
}

.sponsor-form {
  display: grid;
  gap: 1rem;
}

.sponsor-form label {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.sponsor-form input,
.sponsor-form textarea,
.sponsor-form select {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.92rem;
  background: rgba(0, 0, 0, 0.36);
  color: var(--chalk);
  font: inherit;
  outline: none;
}

.sponsor-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(247, 244, 236, 0.7) 50%),
    linear-gradient(135deg, rgba(247, 244, 236, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.7rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.3rem 0.3rem;
}

.sponsor-form input:focus,
.sponsor-form textarea:focus,
.sponsor-form select:focus {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 1.4rem rgba(255, 255, 255, 0.1);
}

.sponsor-form button {
  min-height: 3.25rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-message {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.intake-area {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  width: min(72rem, 100%);
  max-height: calc(100svh - clamp(2rem, 8vw, 6rem));
  margin: auto;
  align-items: start;
  position: relative;
  overflow-y: auto;
  padding: 0.2rem;
  transform: translateX(-8vw);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.member-intake.is-active .intake-area {
  transform: translateX(0);
}

.intake-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 236, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intake-close:hover,
.intake-close:focus-visible {
  background: var(--chalk);
  color: var(--soft-black);
}

.intake-copy {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1rem;
  padding-top: 0.35rem;
  opacity: 0.74;
  transform: translateX(4rem);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.member-intake.is-active .intake-copy {
  opacity: 1;
  transform: translateX(0);
}

.intake-copy p {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intake-copy h2 {
  margin: 0;
  color: var(--chalk);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.intake-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    0 2.4rem 6rem rgba(0, 0, 0, 0.38),
    inset 0 0 2rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  opacity: 0.76;
  transform: translateX(-7rem);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 560ms ease,
    transform 660ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.member-intake.is-active .intake-card {
  opacity: 1;
  transform: translateX(0);
}

.member-intake .intake-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.member-intake .intake-form label,
.member-intake .intake-form legend {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.member-intake .intake-form input,
.member-intake .intake-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.92rem;
  background: rgba(0, 0, 0, 0.36);
  color: var(--chalk);
  font: inherit;
  outline: none;
}

.member-intake .intake-form input:focus,
.member-intake .intake-form textarea:focus,
.sponsor-form input:focus,
.sponsor-form textarea:focus,
.sponsor-form select:focus {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 1.4rem rgba(255, 255, 255, 0.1);
}

.member-intake .intake-form fieldset {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem;
}

.member-intake .choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.member-intake .choice-grid label,
.member-intake .consent {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 2.4rem;
}

.member-intake .choice-grid input,
.member-intake .consent input {
  width: auto;
  margin: 0;
}

.member-intake .intake-form button {
  min-height: 3.25rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intake-message {
  min-height: 1.25rem;
  margin: 0;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.intake-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: min(58rem, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(1.25rem, 5vw, 4rem);
}

.brand-link {
  display: inline-grid;
  justify-self: center;
  width: min(28rem, 82vw);
}

.brand-link .brand-logo {
  width: 100%;
}

.intake-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1rem, 3vw, 1.4rem);
  background: rgba(5, 5, 5, 0.72);
  box-shadow:
    0 0 4rem rgba(255, 255, 255, 0.08),
    inset 0 0 2rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.intake-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.intake-head p {
  margin: 0;
  color: rgba(247, 244, 236, 0.65);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intake-head h1 {
  color: var(--chalk);
  font-size: clamp(1.45rem, 4vw, 2.7rem);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.intake-form label,
.intake-form legend {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.84rem;
  font-weight: 750;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.32);
  color: var(--chalk);
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.intake-form .wide,
.intake-form button {
  grid-column: 1 / -1;
}

.intake-form fieldset {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.9rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.choice-grid label,
.consent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.choice-grid input,
.consent input {
  width: auto;
  margin: 0;
}

.intake-form button {
  min-height: 3.2rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-message,
.error-message {
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.8rem;
  text-align: center;
}

.success-message {
  color: #bde8c8;
}

.error-message {
  color: #ffb4a8;
}

.member-body {
  min-height: 100svh;
  overflow: auto;
}

.member-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(76rem, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.member-top,
.member-hero,
.member-panel,
.member-actions,
.portal-notice {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.76);
  box-shadow:
    0 1.6rem 5rem rgba(0, 0, 0, 0.32),
    inset 0 0 2rem rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.member-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.member-top img {
  display: block;
  width: min(11rem, 38vw);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.75rem rgba(255, 255, 255, 0.42));
}

.member-top p,
.panel-title p {
  margin: 0 0 0.35rem;
  color: rgba(247, 244, 236, 0.56);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.member-top h1,
.panel-title h2 {
  margin: 0;
  color: var(--chalk);
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.member-top h1 {
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1;
}

.member-logout,
.member-doc-link,
.touch-pass-button {
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.member-logout {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.055);
}

.member-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.member-profile-form {
  display: contents;
}

.member-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1rem, 3vw, 1.4rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.45rem);
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.14), transparent 14rem),
    linear-gradient(135deg, rgba(54, 173, 96, 0.16), transparent 36%),
    rgba(5, 5, 5, 0.78);
}

.member-avatar {
  display: grid;
  width: clamp(5.8rem, 10vw, 7.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.34);
  box-shadow:
    0 0 2.2rem rgba(255, 255, 255, 0.12),
    inset 0 0 1.6rem rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-avatar span {
  color: rgba(247, 244, 236, 0.86);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
}

.member-identity {
  min-width: 0;
}

.member-identity p {
  margin: 0 0 0.45rem;
  color: rgba(247, 244, 236, 0.54);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-identity h2 {
  margin: 0;
  color: var(--chalk);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.member-identity span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(247, 244, 236, 0.58);
  font-size: 0.94rem;
  line-height: 1.4;
}

.member-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.member-mini-stats div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.78rem;
  background: rgba(0, 0, 0, 0.28);
}

.member-mini-stats span {
  display: block;
  color: rgba(247, 244, 236, 0.48);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-mini-stats strong {
  display: block;
  margin-top: 0.4rem;
  overflow: hidden;
  color: var(--chalk);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.profile-panel,
.touch-pass-panel {
  grid-row: span 1;
}

.checkin-panel {
  background:
    radial-gradient(circle at 88% 14%, rgba(54, 173, 96, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.76);
}

.scan-status {
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(54, 173, 96, 0.2), transparent 54%),
    rgba(0, 0, 0, 0.26);
}

.scan-status span {
  color: rgba(247, 244, 236, 0.56);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scan-status strong {
  color: var(--chalk);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.scan-status p {
  margin: 0;
  color: rgba(247, 244, 236, 0.64);
  font-size: 0.92rem;
  line-height: 1.45;
}

.scan-status.is-checked {
  border-color: rgba(152, 226, 189, 0.4);
  box-shadow: inset 0 0 2rem rgba(54, 173, 96, 0.08);
}

.scan-form {
  display: grid;
  gap: 0.85rem;
}

.scan-form input {
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.scan-form button {
  min-height: 3.2rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-form button:disabled,
.scan-form input:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.kiosk-member-link {
  display: inline-grid;
  min-height: 3.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.touch-pass-panel {
  grid-column: 1 / -1;
}

.touch-pass-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
}

.touch-pass-status {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(0, 0, 0, 0.22);
}

.touch-pass-status span {
  color: rgba(247, 244, 236, 0.54);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.touch-pass-status strong {
  color: var(--chalk);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 0.95;
}

.touch-pass-status p {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.touch-pass-fields {
  display: grid;
  gap: 1rem;
}

.panel-title h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.photo-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.photo-preview {
  display: grid;
  width: 7rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview span {
  color: rgba(247, 244, 236, 0.46);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-panel label {
  display: grid;
  gap: 0.45rem;
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.member-panel input,
.member-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.92rem;
  background: rgba(0, 0, 0, 0.34);
  color: var(--chalk);
  font: inherit;
  outline: none;
}

.member-panel input:disabled {
  color: rgba(247, 244, 236, 0.48);
}

.member-panel input:focus,
.member-panel textarea:focus {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 1.4rem rgba(255, 255, 255, 0.1);
}

.member-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.member-help {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.touch-pass-button {
  display: inline-grid;
  justify-self: start;
  min-height: 3.2rem;
  place-items: center;
  border: 0;
  padding: 0 1rem;
  background: var(--chalk);
  color: var(--soft-black);
}

.member-doc-link {
  justify-self: start;
  border-bottom: 1px solid rgba(247, 244, 236, 0.28);
  padding-bottom: 0.18rem;
}

.member-actions {
  grid-column: 1 / -1;
  padding: 1rem;
}

.member-actions button {
  width: 100%;
  min-height: 3.3rem;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-notice {
  margin: 0;
  padding: 0.85rem 1rem;
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.9rem;
}

.portal-notice.success {
  color: #bde8c8;
}

.portal-notice.error {
  color: #ffb4a8;
}

.kiosk-body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 20rem),
    radial-gradient(circle at 50% 100%, rgba(54, 173, 96, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 30%),
    #050505;
}

.kiosk-body::before {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 18svh;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 0.18rem, transparent 0.18rem 5.2rem),
    linear-gradient(180deg, #204d2e, #12331e);
  box-shadow: inset 0 1rem 3rem rgba(0, 0, 0, 0.34);
  opacity: 0.88;
}

.kiosk-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 100svh;
  width: min(58rem, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.kiosk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kiosk-top img {
  width: min(15rem, 42vw);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 1rem rgba(255, 255, 255, 0.42));
}

.kiosk-top span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 244, 236, 0.72);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kiosk-card {
  align-self: center;
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.25rem, 5vw, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(5, 5, 5, 0.78);
  box-shadow:
    0 2rem 7rem rgba(0, 0, 0, 0.42),
    inset 0 0 3rem rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.kiosk-copy {
  display: grid;
  gap: 0.65rem;
  text-align: center;
}

.kiosk-copy p,
.kiosk-result span {
  margin: 0;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kiosk-copy h1,
.kiosk-result h1 {
  margin: 0;
  color: var(--chalk);
  font-size: clamp(3rem, 9vw, 7.2rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
  text-align: center;
  text-transform: none;
}

.kiosk-copy span {
  color: rgba(247, 244, 236, 0.66);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  line-height: 1.35;
}

.kiosk-form {
  display: grid;
  gap: 1rem;
}

.kiosk-form label {
  display: grid;
  gap: 0.65rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.kiosk-form input {
  width: 100%;
  min-height: clamp(4.8rem, 10vw, 6.2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.36);
  color: var(--chalk);
  font: inherit;
  font-size: clamp(1.5rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  outline: none;
  padding: 0.8rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.kiosk-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 2rem rgba(255, 255, 255, 0.12);
}

.kiosk-form input::placeholder {
  color: rgba(247, 244, 236, 0.42);
  font-size: clamp(1rem, 2.8vw, 1.55rem);
  letter-spacing: 0.04em;
}

.kiosk-form button,
.kiosk-reset {
  display: grid;
  min-height: clamp(4.3rem, 8vw, 5.4rem);
  place-items: center;
  border: 0;
  background: var(--chalk);
  color: var(--soft-black);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.kiosk-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.kiosk-options span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 244, 236, 0.56);
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: center;
}

.kiosk-alert {
  margin: 0;
  border: 1px solid rgba(255, 180, 168, 0.28);
  padding: 0.9rem 1rem;
  background: rgba(255, 180, 168, 0.055);
  color: #ffb4a8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  text-align: center;
}

.kiosk-result {
  display: grid;
  gap: 1rem;
  min-height: 28rem;
  place-items: center;
  text-align: center;
}

.kiosk-result.success {
  background:
    radial-gradient(circle at 50% 50%, rgba(80, 210, 122, 0.22), transparent 18rem),
    transparent;
}

.kiosk-result p {
  margin: 0;
  color: #bde8c8;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 850;
}

@media (max-width: 720px) {
  .coming-soon {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: start;
    padding-top: max(1.25rem, env(safe-area-inset-top));
  }

  .logo-stage {
    gap: 1rem;
    padding-top: clamp(3.25rem, 8svh, 5.25rem);
    padding-bottom: min(22vh, 9rem);
    transform: none;
  }

  .brand-logo {
    width: min(30rem, 90vw);
  }

  .signup-form {
    width: min(24rem, 100%);
  }

  .member-intake,
  .sponsors-section,
  .pricing-section,
  .portal-section {
    align-items: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .intake-area,
  .sponsor-area,
  .pricing-area,
  .portal-area {
    width: 100%;
    max-height: none;
    margin: 0;
  }

  .portal-area {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .portal-close {
    right: 0.2rem;
  }

  .notification-region {
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-inline: 1.25rem;
  }

  .logo-stage {
    padding-top: clamp(3.5rem, 7.5svh, 4.75rem);
  }

  .brand-logo {
    width: min(34rem, 92vw);
  }

  h1 {
    letter-spacing: 0.28em;
  }

  .signup-form {
    width: min(22rem, 100%);
  }

  .signup-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .signup-row input {
    min-height: 3.1rem;
    text-align: center;
  }

  .signup-row button {
    min-height: 3.1rem;
  }

  .intake-area,
  .sponsor-area,
  .portal-area,
  .pricing-grid,
  .member-top,
  .member-grid,
  .member-hero,
  .member-mini-stats,
  .touch-pass-layout,
  .member-pair,
  .photo-row,
  .field-pair,
  .member-intake .choice-grid,
  .intake-form,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .intake-copy {
    position: static;
  }

  .member-intake {
    padding: 1rem;
  }

  .intake-area {
    max-height: calc(100svh - 2rem);
    padding-top: 3rem;
  }

  .intake-close {
    right: 0.2rem;
  }

  .sponsor-copy h2 {
    max-width: 100%;
  }

  .sponsor-area {
    max-height: calc(100svh - 2rem);
    padding-top: 3rem;
  }

  .sponsor-close {
    right: 0.2rem;
  }

  .pricing-area {
    padding-top: 3rem;
  }

  .pricing-head {
    padding-right: 0;
  }

  .pricing-head h2 {
    max-width: 100%;
  }

  .kiosk-body {
    overflow: auto;
  }

  .kiosk-top,
  .kiosk-options {
    grid-template-columns: 1fr;
  }

  .kiosk-top {
    display: grid;
    justify-items: center;
  }
}

.signup-row input,
.portal-form input,
.sponsor-form input,
.sponsor-form textarea,
.sponsor-form select,
.member-intake .intake-form input,
.member-intake .intake-form textarea,
.intake-form input,
.intake-form textarea,
.member-panel input,
.member-panel textarea,
.scan-form input,
.kiosk-form input {
  font-size: 16px;
  line-height: 1.25;
}

/* Final member portal light pass. */
.member-body {
  background:
    radial-gradient(circle at 50% -12%, rgba(53, 227, 212, 0.08), transparent 17rem),
    #070807;
}

.member-shell {
  width: min(64rem, 100%);
}

.member-top,
.member-hero,
.member-panel,
.member-actions,
.portal-notice,
.member-app-home {
  box-shadow:
    0 0.8rem 2rem rgba(0, 0, 0, 0.22),
    inset 0 0 1rem rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
}

.member-app-home {
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(5, 5, 5, 0.58);
}

.member-app-home a {
  min-height: 5.6rem;
  background: rgba(255, 255, 255, 0.035);
}

.member-app-icon {
  width: 2.7rem;
}

.member-app-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.member-hero,
.checkin-panel {
  background: rgba(5, 5, 5, 0.62);
}

.club-pass-card {
  gap: 0.75rem;
  padding: 1rem;
}

.club-pass-card img {
  width: min(14rem, 68vw);
  border-width: 0.5rem;
  box-shadow: none;
}

/* Final front-page overrides for Juanita brief. */
.coming-soon {
  position: relative;
}

.home-nav {
  position: absolute;
  top: clamp(1rem, 3vw, 1.5rem);
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(64rem, calc(100% - 2rem));
  justify-content: center;
  gap: clamp(0.55rem, 1.4vw, 1rem);
  transform: translateX(-50%);
}

.home-nav a,
.quick-links a {
  margin: 0;
  color: rgba(247, 244, 236, 0.64);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hero-actions a {
  margin: 0;
  min-width: min(14rem, 100%);
  border: 1px solid rgba(247, 244, 236, 0.18);
  padding: 0.78rem 1rem;
  text-align: center;
  text-decoration: none;
}

.hero-actions .intake-link {
  background: var(--chalk);
  color: #080908;
}

.hero-actions .pricing-link {
  background: rgba(247, 244, 236, 0.065);
}

.quick-links {
  margin-top: -0.35rem;
}

.quick-links a {
  border: 0;
  padding: 0.2rem 0.35rem;
}

.review-marquee {
  position: absolute;
  right: 0;
  bottom: clamp(8.6rem, 19vh, 12.5rem);
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(247, 244, 236, 0.1);
  padding: 0.75rem 0;
  background: rgba(5, 5, 5, 0.28);
  color: rgba(247, 244, 236, 0.76);
  backdrop-filter: blur(10px);
}

.review-marquee div {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
  animation: herhaus-marquee 28s linear infinite;
}

.review-marquee span {
  margin-left: 2rem;
  color: #f7f4ec;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-marquee p {
  margin: 0;
  font-size: 0.92rem;
  white-space: nowrap;
}

.brand-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(247, 244, 236, 0.1);
  padding: clamp(1.1rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.025)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.28);
}

.brand-section-copy {
  display: grid;
  gap: 0.45rem;
}

.brand-section-copy p,
.brand-section article span,
.team-card span,
.schedule-preview span {
  margin: 0;
  color: #b7ede4;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-section-copy h2,
.brand-section h3 {
  margin: 0;
  color: var(--chalk);
}

.brand-section-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 0.98;
}

.brand-section-grid,
.schedule-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.brand-section article,
.team-card,
.schedule-preview div {
  border: 1px solid rgba(247, 244, 236, 0.11);
  padding: 1rem;
  background: rgba(247, 244, 236, 0.055);
}

.brand-section article {
  display: grid;
  gap: 0.7rem;
}

.brand-section article p,
.team-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  line-height: 1.55;
}

.team-card {
  max-width: 34rem;
}

.team-card h3 {
  margin: 0.45rem 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.schedule-preview strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--chalk);
  font-size: 1.1rem;
}

.partner-cta {
  justify-self: start;
  margin: 0;
  border: 1px solid var(--chalk);
  padding: 0.85rem 1rem;
  color: #080908;
  background: var(--chalk);
  text-decoration: none;
}

.pricing-card strong span {
  display: inline-block;
  margin-left: 0.2rem;
}

@media (max-width: 820px) {
  .home-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1rem;
    transform: none;
  }

  .home-nav a {
    border: 1px solid rgba(247, 244, 236, 0.1);
    padding: 0.65rem;
    text-align: center;
    background: rgba(247, 244, 236, 0.04);
  }

  .brand-section-grid,
  .schedule-preview {
    grid-template-columns: 1fr;
  }

  .review-marquee {
    bottom: clamp(7.5rem, 16vh, 10rem);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-top: 1rem;
  }

  .home-nav {
    width: 100%;
    gap: 0.4rem;
  }

  .home-nav a {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    width: min(22rem, 100%);
  }

  .hero-actions a {
    width: 100%;
  }

  .review-marquee {
    bottom: 7.5rem;
    padding: 0.55rem 0;
  }

  .review-marquee p {
    font-size: 0.8rem;
  }
}

/* EOF restore original matte-black launch page. */
body {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.08), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, rgba(255, 255, 255, 0.018)),
    var(--matte-black);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: start;
  justify-items: center;
  padding: clamp(4rem, 12vh, 7rem) clamp(1.1rem, 4vw, 5rem) clamp(10rem, 24vh, 15rem);
}

.coming-soon::before {
  content: none;
}

.home-nav,
.review-marquee {
  display: none;
}

.site-page > .brand-section {
  display: none;
}

.logo-stage {
  display: grid;
  width: min(52rem, 100%);
  justify-items: center;
  gap: clamp(1.05rem, 2.8vw, 1.95rem);
  transform: none;
}

.brand-logo {
  display: block;
  width: min(46rem, 92vw);
  max-height: 28vh;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.55rem rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 2rem rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 5.5rem rgba(255, 255, 255, 0.18));
}

.signup-form {
  display: grid;
  width: min(36rem, 100%);
  justify-items: center;
  gap: 0.78rem;
  margin: 0;
}

.signup-form h1 {
  margin: 0;
  color: rgba(247, 244, 236, 0.74);
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signup-form p {
  max-width: 30rem;
  margin: 0 0 0.45rem;
  color: rgba(247, 244, 236, 0.68);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.45;
  text-align: center;
}

.signup-row {
  width: min(34rem, 100%);
  min-height: 5rem;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.74);
}

.signup-row input {
  min-height: 3.1rem;
  padding: 0 1rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
}

.signup-row button {
  min-height: 3.1rem;
  width: 100%;
  background: var(--chalk);
  color: #0a0a09;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.quick-links {
  display: flex;
  width: min(36rem, 100%);
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  margin: clamp(1.6rem, 4vh, 2.7rem) 0 0;
}

.quick-links a {
  width: auto;
  margin: 0;
  border: 0;
  padding: 0.1rem 0.2rem;
  color: rgba(247, 244, 236, 0.7);
  font-size: clamp(0.82rem, 2.3vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.quick-links .portal-link {
  position: relative;
  margin-top: 1.4rem;
  border: 1px solid rgba(247, 244, 236, 0.24);
  padding: 0.85rem 1.6rem;
  width: min(26rem, 100%);
}

.quick-links .portal-link::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 9rem;
  height: 1px;
  background: rgba(247, 244, 236, 0.24);
  transform: translateX(-50%);
}

.turf-floor {
  height: min(28vh, 15rem);
}

.turf-lane img {
  width: min(16rem, 48vw);
}

@media (max-width: 640px) {
  .coming-soon {
    padding-top: clamp(4.2rem, 10vh, 5.8rem);
    padding-inline: 1rem;
    padding-bottom: clamp(12rem, 30vh, 16rem);
  }

  .brand-logo {
    width: min(54rem, 96vw);
    max-height: 18vh;
  }

  .signup-form {
    width: 100%;
  }

  .signup-row {
    min-height: 6.2rem;
  }

  .quick-links {
    margin-top: 1.9rem;
  }

  .quick-links a {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }
}
