:root {
  --brand-bg: #3f8500;
  --brand-primary: #b8e6a0;
  --brand-danger: #e35d5b;
  --brand-warning: #e4b84b;
  --brand-info: #8fcfe6;
  --brand-text: #f3f7ed;
  --brand-surface: #0f120f;
  --brand-surface-contrast: #d9e4d0;
  --brand-panel: rgba(13, 17, 13, 0.88);
  --brand-border: rgba(217, 228, 208, 0.14);
  --brand-shadow: rgba(6, 10, 7, 0.28);
  --club-banner-progress: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-bg) 92%, #000 8%) 0%, var(--brand-bg) 100%);
  min-height: 100vh;
  color: var(--brand-text);
}

.public-shell {
  min-height: 100vh;
}

.public-navbar {
  position: sticky;
  top: 0;
  z-index: 1035;
  background: rgba(10, 12, 11, 0.88);
  border-bottom: 1px solid var(--brand-border);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.public-navbar .container {
  position: relative;
  z-index: 1;
}

.public-navbar .navbar-collapse > .d-flex {
  flex-wrap: wrap;
  align-items: center;
}

.public-navbar-cover {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: calc(var(--club-banner-progress) * 0.96);
  transform: scale(calc(1.04 - (var(--club-banner-progress) * 0.04)));
  transition: opacity 120ms linear, transform 160ms linear;
  pointer-events: none;
}

body.has-club-banner .public-navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 11, calc(0.66 - (var(--club-banner-progress) * 0.3))), rgba(10, 12, 11, calc(0.52 - (var(--club-banner-progress) * 0.16))));
  pointer-events: none;
}

.public-navbar .navbar-brand,
.public-navbar .nav-link,
.public-navbar .navbar-toggler {
  color: var(--brand-text);
}

.public-navbar .nav-link:hover,
.public-navbar .nav-link:focus {
  color: var(--brand-primary);
}

.public-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.08);
}

.public-panel {
  background: rgba(11, 14, 12, 0.88);
  border: 1px solid var(--brand-border);
  border-radius: 1.4rem;
  box-shadow: 0 20px 50px var(--brand-shadow);
}

.public-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 20px 50px var(--brand-shadow);
  background:
    linear-gradient(135deg, rgba(10, 11, 10, 0.92), rgba(18, 24, 18, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  min-height: 26rem;
}

.public-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    radial-gradient(circle at 18% 24%, rgba(184, 230, 160, 0.2), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(143, 207, 230, 0.12), transparent 24%),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(135deg, rgba(22, 36, 20, 0.88), rgba(9, 12, 10, 0.34));
}

.public-hero-overlay {
  position: relative;
  z-index: 1;
}

.public-hero.is-club-cover {
  transition: opacity 180ms linear, transform 220ms ease-out;
  transform-origin: top center;
  opacity: calc(1 - (var(--club-banner-progress) * 0.18));
}

.public-hero-barrier {
  max-width: 78rem;
}

.public-kicker,
.public-section-title {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--brand-primary) 70%, white 30%);
}

.public-hero-content--centered {
  text-align: center;
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}

.public-hero-summary {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

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

.public-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 230, 160, 0.12);
  color: var(--brand-surface-contrast);
  font-size: 0.92rem;
  font-weight: 600;
}

.brand-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #101510;
  text-align: center;
  min-height: 2.9rem;
  line-height: 1.1;
}

.brand-btn-primary:hover,
.brand-btn-primary:focus {
  background: color-mix(in srgb, var(--brand-primary) 88%, black 12%);
  border-color: color-mix(in srgb, var(--brand-primary) 88%, black 12%);
  color: #101510;
}

.brand-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-color: var(--brand-surface-contrast);
  color: var(--brand-text);
  text-align: center;
  min-height: 2.9rem;
  line-height: 1.1;
}

.brand-btn-ghost:hover,
.brand-btn-ghost:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.public-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1.1rem;
  overflow: hidden;
  background: rgba(16, 20, 17, 0.96);
  border: 1px solid var(--brand-border);
}

.public-card-media {
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.06);
}

.public-card-body {
  padding: 1rem;
}

.public-card-summary,
.public-footer-note,
.public-muted {
  color: rgba(243, 247, 237, 0.72);
}

.public-grid-tile {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
}

.public-panel .text-secondary,
.public-panel .small.text-secondary,
.public-panel .public-grid-tile .text-secondary {
  color: rgba(243, 247, 237, 0.68) !important;
}

.public-panel .list-group-item {
  background: transparent;
  color: var(--brand-text);
  border-color: var(--brand-border);
}

.public-panel .btn-outline-secondary {
  border-color: var(--brand-surface-contrast);
  color: var(--brand-text);
}

.public-panel .btn-outline-secondary:hover,
.public-panel .btn-outline-secondary:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.public-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.16);
}

.public-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.public-carousel {
  position: relative;
  overflow: hidden;
}

.public-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.public-slide-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.public-slide-media {
  min-height: 15rem;
  background-position: center;
  background-size: cover;
}

.public-slide-copy {
  padding: 1.25rem;
}

.public-club-carousel {
  min-height: 22rem;
  padding-block: 0.5rem;
}

.public-club-carousel-track {
  padding-inline: clamp(0.5rem, 3vw, 2rem);
}

.public-club-slide {
  flex: 0 0 clamp(16rem, 27vw, 22rem);
  opacity: 0.55;
  transform: scale(0.9);
  transition: transform 420ms ease, opacity 420ms ease;
}

.public-club-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.public-club-slide-card {
  display: grid;
  grid-template-rows: minmax(14rem, 1fr) auto;
  border-radius: 1.4rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 230, 160, 0.1), rgba(143, 207, 230, 0.05)),
    rgba(16, 20, 17, 0.96);
  border: 1px solid var(--brand-border);
  min-height: 100%;
}

.public-club-slide-visual {
  position: relative;
  min-height: 14rem;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 205, 224, 0.58) 0,
      rgba(255, 205, 224, 0.58) 2px,
      rgba(184, 230, 160, 0.12) 2px,
      rgba(184, 230, 160, 0.12) 8px
    ),
    radial-gradient(circle at 30% 20%, rgba(255, 189, 220, 0.55), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(143, 207, 230, 0.35), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 12, 11, 0.12));
}

.public-club-slide-visual::before,
.public-club-slide-visual::after {
  content: "";
  position: absolute;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 214, 233, 0.5);
  background: rgba(255, 215, 232, 0.08);
}

.public-club-slide-visual::before {
  inset: 1rem auto 1rem 1rem;
  width: 34%;
}

.public-club-slide-visual::after {
  inset: 1.75rem 1rem 1.75rem auto;
  width: 42%;
}

.public-club-slide-visual span {
  position: relative;
  z-index: 1;
  width: 7rem;
  height: 7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 2rem;
  background: rgba(255, 236, 245, 0.14);
  border: 1px solid rgba(255, 232, 242, 0.55);
  color: #fff1f8;
  font-size: 2.8rem;
  font-weight: 800;
}

.public-club-slide-logo {
  position: relative;
  z-index: 1;
  width: min(72%, 12rem);
  max-height: 8.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0.85rem 1.4rem rgba(0, 0, 0, 0.28));
}

.public-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.public-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
}

.public-carousel-dot.is-active {
  background: var(--brand-primary);
}

.public-cta-grid {
  display: grid;
  gap: 1rem;
}

.public-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem;
  font-weight: 800;
  text-decoration: none;
  background: color-mix(in srgb, var(--brand-primary) 92%, white 8%);
  color: #101510;
  border: 1px solid rgba(16, 21, 16, 0.1);
}

.public-footer {
  border-top: 1px solid var(--brand-border);
  background: rgba(10, 12, 11, 0.96);
}

.public-footer a {
  color: var(--brand-surface-contrast);
  text-decoration: none;
}

.public-footer a:hover,
.public-footer a:focus {
  color: var(--brand-primary);
}

.public-mode-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(6, 10, 7, 0.34);
  backdrop-filter: blur(14px);
}

.public-mode-dialog {
  width: min(100%, 42rem);
}

@media (min-width: 768px) {
  .public-slide-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  .public-slide-copy {
    padding: 1.5rem;
  }

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

@media (max-width: 767.98px) {
  .public-hero-actions {
    grid-template-columns: 1fr;
  }

  .public-club-slide {
    flex-basis: calc(100% - 1rem);
    opacity: 0.8;
  }

  .public-club-slide-visual {
    min-height: 15rem;
  }

  .public-signup-club-crumb {
    width: 100%;
  }
}

.public-signup-hero {
  background:
    linear-gradient(135deg, rgba(184, 230, 160, 0.14), rgba(143, 207, 230, 0.06)),
    rgba(11, 16, 11, 0.96);
}

.public-signup-club-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.public-signup-club-search {
  max-width: 28rem;
}

.public-signup-club-search .form-control {
  background: rgba(14, 18, 15, 0.96);
}

.public-signup-club-carousel {
  min-height: 22rem;
  padding-block: 0.25rem 0.5rem;
}

.public-signup-club-carousel-track {
  padding-inline: 0.35rem;
}

.public-signup-club-empty {
  display: none;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(184, 230, 160, 0.22);
  color: var(--brand-surface-contrast);
}

.public-signup-club-card {
  cursor: pointer;
  user-select: none;
}

.public-signup-club-slide-card {
  min-height: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.public-signup-club-card:hover .public-signup-club-slide-card,
.public-signup-club-card.is-selected .public-signup-club-slide-card {
  border-color: var(--brand-primary);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
}

.public-signup-club-slide-copy {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.public-signup-club-title {
  font-size: clamp(1.3rem, 1.1rem + 0.45vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-text);
}

.public-signup-club-meta {
  color: rgba(243, 247, 237, 0.74);
  font-size: 1rem;
  line-height: 1.45;
}

.public-signup-carousel-dots {
  margin-top: 0.35rem;
}

.public-signup-club-card .public-club-slide-visual span {
  width: 6rem;
  height: 6rem;
  font-size: 2.3rem;
}

.public-signup-club-card .public-club-slide-logo {
  width: min(70%, 10rem);
  max-height: 7rem;
}

.public-signup-club-card:focus-visible {
  outline: none;
}

.public-signup-club-card:focus-visible .public-signup-club-slide-card {
  border-color: rgba(184, 230, 160, 0.84);
  box-shadow:
    0 0 0 0.18rem rgba(184, 230, 160, 0.18),
    0 1rem 2rem rgba(0, 0, 0, 0.24);
}

.public-signup-fields {
  display: grid;
  gap: 2rem;
}

.public-signup-section + .public-signup-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.public-signup-form .form-label,
.public-signup-form .form-check-label {
  color: var(--brand-text);
}

.public-signup-form .form-control,
.public-signup-form .form-select {
  background: rgba(9, 13, 10, 0.92);
  border: 1px solid rgba(184, 230, 160, 0.18);
  color: var(--brand-text);
  border-radius: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.public-signup-form .form-control::placeholder,
.public-signup-form .form-select::placeholder {
  color: rgba(243, 247, 237, 0.46);
}

.public-signup-form .form-control:hover,
.public-signup-form .form-select:hover {
  border-color: rgba(184, 230, 160, 0.32);
}

.public-signup-form .form-control:focus,
.public-signup-form .form-select:focus,
.public-signup-form .form-check-input:focus {
  background: rgba(12, 16, 12, 0.98);
  color: var(--brand-text);
  border-color: rgba(184, 230, 160, 0.64);
  box-shadow:
    0 0 0 0.2rem rgba(184, 230, 160, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.public-signup-form .is-invalid-control {
  border-color: var(--brand-danger) !important;
  box-shadow: 0 0 0 0.18rem rgba(227, 93, 91, 0.16);
}

.public-signup-form .password-input-shell.is-invalid-control .form-control {
  border-color: var(--brand-danger) !important;
  box-shadow: 0 0 0 0.18rem rgba(227, 93, 91, 0.16);
}

.public-signup-control-error {
  color: var(--brand-danger);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.public-signup-password-match {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.public-signup-password-match.is-password-mismatch {
  color: var(--brand-danger);
}

.public-signup-password-match.is-password-match {
  color: var(--brand-primary);
}

.public-signup-upload-card.is-invalid-control {
  border-color: var(--brand-danger);
  box-shadow: 0 0 0 0.18rem rgba(227, 93, 91, 0.12);
}

.public-signup-camera-dialog {
  width: min(94vw, 46rem);
  max-width: 46rem;
  margin-right: auto;
  margin-left: auto;
}

.public-signup-camera-dialog .public-signup-camera-modal {
  background-color: rgba(15, 18, 15, 0.99);
  border: 1px solid rgba(184, 230, 160, 0.26);
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
  color: var(--brand-text);
  overflow: hidden;
}

.public-signup-camera-dialog .modal-header,
.public-signup-camera-dialog .modal-body,
.public-signup-camera-dialog .modal-footer {
  background-color: transparent;
  color: var(--brand-text);
}

.public-signup-camera-dialog .modal-footer {
  gap: 0.5rem;
  justify-content: flex-end;
}

.public-signup-camera-dialog .public-signup-camera-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(8, 11, 8, 0.96);
  border: 1px solid rgba(184, 230, 160, 0.18);
  border-radius: 0.5rem;
}

.public-signup-camera-dialog .public-signup-camera-video,
.public-signup-camera-dialog #signup-camera-canvas,
.public-signup-camera-dialog .public-signup-camera-preview {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-signup-camera-dialog .public-signup-camera-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  background-color: rgba(243, 247, 237, 0.08);
  border: 1px solid rgba(243, 247, 237, 0.42);
  color: var(--brand-text);
  line-height: 1.1;
  text-align: center;
}

.public-signup-camera-dialog .public-signup-camera-secondary:hover,
.public-signup-camera-dialog .public-signup-camera-secondary:focus {
  background-color: rgba(243, 247, 237, 0.14);
  border-color: rgba(184, 230, 160, 0.78);
  color: var(--brand-primary);
}

@media (max-width: 575.98px) {
  .public-signup-camera-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .public-signup-camera-dialog .public-signup-camera-modal {
    min-height: 100%;
    border-radius: 0;
  }

  .public-signup-camera-dialog .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .public-signup-camera-dialog .modal-footer {
    justify-content: stretch;
  }

  .public-signup-camera-dialog .modal-footer .btn {
    flex: 1 1 8rem;
  }
}

.public-signup-form .form-check-input {
  background-color: rgba(9, 13, 10, 0.92);
  border-color: rgba(184, 230, 160, 0.28);
}

.public-signup-form .form-check-input:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.public-signup-dob-input,
.flatpickr-input[readonly] {
  cursor: pointer;
}

.public-signup-dob-quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.flatpickr-calendar {
  background: #101410;
  border: 1px solid rgba(184, 230, 160, 0.25);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.35);
}

.flatpickr-months,
.flatpickr-weekdays {
  background: #151c15;
}

.flatpickr-calendar .flatpickr-innerContainer,
.flatpickr-calendar .flatpickr-rContainer,
.flatpickr-calendar .flatpickr-days,
.flatpickr-calendar .dayContainer {
  background: #101410;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: color-mix(in srgb, var(--brand-primary) 78%, white 22%);
  color: color-mix(in srgb, var(--brand-primary) 78%, white 22%);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:focus svg,
.flatpickr-months .flatpickr-next-month:focus svg {
  fill: #ffffff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-weekday,
.flatpickr-day {
  color: #f3f7ed;
}

.flatpickr-current-month {
  color: #f3f7ed;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper input.cur-year {
  background: transparent;
  color: #f3f7ed;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month .numInputWrapper input.cur-year:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .numInputWrapper input.cur-year:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.flatpickr-current-month .numInputWrapper span.arrowUp::after {
  border-bottom-color: rgba(243, 247, 237, 0.8);
}

.flatpickr-current-month .numInputWrapper span.arrowDown::after {
  border-top-color: rgba(243, 247, 237, 0.8);
}

.flatpickr-day:hover,
.flatpickr-day:focus,
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #10210d;
}

.flatpickr-day.today {
  border-color: rgba(184, 230, 160, 0.65);
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  color: #10210d;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(243, 247, 237, 0.28);
}

.public-signup-doc-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid var(--brand-border);
  background:
    linear-gradient(135deg, rgba(184, 230, 160, 0.06), rgba(143, 207, 230, 0.04)),
    rgba(14, 18, 15, 0.96);
}

.public-signup-doc-frame {
  width: 100%;
  min-height: 23rem;
  border: 0;
  border-radius: 1rem;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(184, 230, 160, 0.28) 0,
      rgba(184, 230, 160, 0.28) 2px,
      rgba(255, 255, 255, 0.05) 2px,
      rgba(255, 255, 255, 0.05) 8px
    ),
    rgba(10, 12, 11, 0.94);
  display: none;
}

.public-signup-doc-frame.is-ready {
  display: block;
}

.public-home-club-copy {
  align-items: center;
  text-align: center;
}

.public-home-club-hours {
  color: var(--brand-surface-contrast);
  font-size: 0.94rem;
  font-weight: 600;
}

.public-home-qr {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.public-home-qr-code {
  width: 6.25rem;
  height: 6.25rem;
  padding: 0.45rem;
  border-radius: 0.85rem;
  background: #ffffff;
}

.public-home-qr-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(184, 230, 160, 0.44);
  border-radius: 999px;
  background: rgba(184, 230, 160, 0.12);
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.public-home-qr-fallback:hover,
.public-home-qr-fallback:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #101510;
}

@media (max-width: 767.98px) {
  .public-signup-club-card {
    flex-basis: calc(100% - 2.5rem);
  }

  .public-signup-doc-frame {
    min-height: 18rem;
  }
}

.member-hub-shell {
  max-width: 88rem;
  margin: 0 auto;
}

.member-float-up {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: rgba(11, 14, 12, 0.88);
  box-shadow: 0 14px 34px var(--brand-shadow);
  color: var(--brand-text);
  text-decoration: none;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms ease, border-color 140ms ease, color 140ms ease;
}

.member-float-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.member-float-up:hover,
.member-float-up:focus {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.member-nav-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.08);
}

.member-nav-club-form {
  min-width: 11rem;
}

.member-nav-club-form .form-select {
  appearance: none;
  min-height: 2.9rem;
  padding: 0.55rem 2.75rem 0.55rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(184, 230, 160, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.25 7.75L10 12.5L14.75 7.75' stroke='%23D9E4D0' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.95rem center / 1rem,
    rgba(14, 18, 15, 0.96);
  color: var(--brand-text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: left;
  text-align-last: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.member-nav-club-form .form-select:hover,
.member-nav-club-form .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.18rem rgba(184, 230, 160, 0.18);
}

.member-nav-club-form .form-select option {
  color: #101510;
}

.member-shared-footer {
  border-top: 1px solid var(--brand-border);
  background: rgba(8, 11, 9, 0.94);
}

.member-shared-footer-inner {
  width: min(100% - 2rem, 88rem);
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.member-shared-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.member-shared-footer a {
  color: var(--brand-surface-contrast);
  text-decoration: none;
}

.member-shared-footer a:hover,
.member-shared-footer a:focus {
  color: var(--brand-primary);
}

.member-hub-welcome-strip {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.member-hub-welcome-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.member-hub-welcome-number {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: color-mix(in srgb, var(--brand-primary) 86%, white 14%);
}

.member-hub-welcome-copy {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 28rem;
  margin-left: auto;
}

.member-hub-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184, 230, 160, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(143, 207, 230, 0.12), transparent 28%),
    rgba(11, 14, 12, 0.9);
  min-height: clamp(23rem, 46vw, 30rem);
}

.member-hub-hero .public-hero-overlay {
  z-index: 1;
}

.member-hub-note {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.05);
  color: color-mix(in srgb, var(--brand-text) 86%, white 14%);
}

.member-hub-status-wrap {
  display: flex;
  align-items: flex-end;
  min-height: clamp(18rem, 34vw, 24rem);
}

.member-hub-status-left,
.member-hub-status-right {
  height: 100%;
  padding: 1.75rem 2rem;
  border: 1px solid var(--brand-border);
  background: rgba(8, 10, 8, 0.8);
  backdrop-filter: blur(8px);
}

.member-hub-status-left {
  border-radius: 1.5rem 0 0 1.5rem;
}

.member-hub-status-right {
  border-left: 0;
  border-radius: 0 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  gap: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.member-hub-status-title {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.member-hub-status-stack {
  display: grid;
  gap: 1rem;
}

.member-hub-status-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(236, 129, 245, 0.98), rgba(233, 120, 225, 0.86));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.member-hub-status-pill--success {
  background: linear-gradient(135deg, rgba(134, 212, 130, 0.98), rgba(76, 169, 96, 0.9));
}

.member-hub-status-pill--pending {
  background: linear-gradient(135deg, rgba(236, 129, 245, 0.98), rgba(233, 120, 225, 0.86));
}

.member-hub-status-caption {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(243, 247, 237, 0.86);
}

.member-hub-grid,
.member-hub-rail {
  display: grid;
  gap: 1.5rem;
}

.member-hub-grid {
  grid-template-columns: minmax(0, 1fr);
}

.member-hub-middle {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.9fr);
  gap: 1.5rem;
}

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

.member-hub-sharing-pane,
.member-hub-news-pane {
  min-height: 100%;
}

.member-hub-middle-title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.member-hub-sharing-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.95fr) minmax(18rem, 1fr);
  gap: 1.5rem;
  min-height: 100%;
}

.member-hub-sharing-left {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.member-hub-helper-card {
  min-height: 8.75rem;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(47, 95, 17, 0.9), rgba(29, 70, 11, 0.96)),
    rgba(17, 23, 16, 0.94);
}

.member-hub-helper-card p {
  font-size: 1.1rem;
  line-height: 1.35;
}

.member-hub-dropdown-card {
  display: grid;
  gap: 0.65rem;
}

.member-hub-dropdown-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--brand-primary) 72%, white 28%);
}

.member-hub-story-select {
  appearance: none;
  width: 100%;
  min-height: 4rem;
  padding: 0.9rem 3.15rem 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 32%, white 68%);
  background:
    linear-gradient(180deg, rgba(220, 245, 191, 0.98), rgba(195, 231, 161, 0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.25 7.75L10 12.5L14.75 7.75' stroke='%23162114' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1rem center / 1rem,
    #d8efbf;
  color: #162114;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  text-align-last: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.member-hub-story-select:focus {
  outline: 0;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.18rem rgba(184, 230, 160, 0.18);
}

.member-hub-story-select option {
  color: #162114;
}

.member-hub-sharing-right {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-height: 100%;
}

.member-hub-sharing-story-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.member-hub-sharing-story {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid color-mix(in srgb, var(--brand-surface-contrast) 52%, white 48%);
  background:
    linear-gradient(135deg, rgba(17, 24, 16, 0.92), rgba(30, 43, 29, 0.82)),
    repeating-linear-gradient(
      135deg,
      rgba(217, 228, 208, 0.08) 0,
      rgba(217, 228, 208, 0.08) 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 8px
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.member-hub-news-list {
  display: grid;
  gap: 1rem;
}

.member-hub-news-list.is-scrollable {
  max-height: 39rem;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.member-hub-news-card {
  min-height: 7.5rem;
}

.member-hub-meta-list {
  display: grid;
  gap: 0.9rem;
}

.member-hub-meta-list > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--brand-border);
}

.member-hub-meta-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.member-hub-meta-list span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--brand-primary) 72%, white 28%);
}

.member-hub-meta-list strong {
  text-align: right;
  font-size: 0.98rem;
  color: var(--brand-text);
}

.member-hub-sister-list {
  display: grid;
  gap: 0.75rem;
}

.member-hub-sister-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--brand-text);
  text-decoration: none;
}

.member-hub-sister-item:hover,
.member-hub-sister-item:focus {
  border-color: color-mix(in srgb, var(--brand-primary) 50%, white 50%);
  color: var(--brand-primary);
}

.member-hub-sister-item img,
.member-hub-sister-fallback {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  object-fit: cover;
  border: 1px solid var(--brand-border);
  background: rgba(255, 255, 255, 0.06);
}

.member-hub-sister-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.member-hub-accordion .accordion-item,
.member-hub-accordion .accordion-button,
.member-hub-accordion .accordion-body {
  color: var(--brand-text);
  background: rgba(15, 18, 15, 0.92);
  border-color: var(--brand-border);
}

.member-hub-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--brand-primary);
}

.member-hub-document-frame {
  width: 100%;
  min-height: 26rem;
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.member-hub-modal {
  background: rgba(11, 14, 12, 0.98);
  color: var(--brand-text);
  border: 1px solid var(--brand-border);
}

.member-hub-modal .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-border);
  color: var(--brand-text);
}

.member-hub-modal .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-text);
}

.crew-workspace {
  max-width: 92rem;
  margin: 0 auto;
}

.crew-hero {
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.4rem);
  min-height: 20rem;
  background: rgba(7, 9, 8, 0.96);
  border-color: rgba(184, 230, 160, 0.26);
}

.crew-hero .public-hero-media {
  opacity: 1;
}

.crew-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.crew-hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.crew-hero-title {
  max-width: 42rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.02;
}

.crew-hero-copy {
  max-width: 46rem;
  color: color-mix(in srgb, var(--brand-text) 82%, white 18%);
}

.crew-status-card {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  min-height: 10rem;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(217, 228, 208, 0.22);
  border-radius: 1.25rem;
  background: rgba(7, 9, 8, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.crew-status-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.crew-status-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(217, 228, 208, 0.14);
  color: color-mix(in srgb, var(--brand-text) 78%, white 22%);
}

.crew-status-row strong {
  color: var(--brand-text);
  text-align: right;
}

.crew-status-capability {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 230, 160, 0.12);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.crew-clock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.crew-component-shell {
  padding: clamp(0.85rem, 2vw, 1.4rem);
  border: 1px solid rgba(217, 228, 208, 0.2);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(170, 188, 198, 0.92), rgba(126, 145, 154, 0.92)),
    color-mix(in srgb, var(--brand-bg) 26%, #9eb1bc 74%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 56px rgba(0, 0, 0, 0.18);
}

.crew-card {
  border: 1px solid rgba(217, 228, 208, 0.16);
  border-radius: 1.15rem;
  background: rgba(7, 9, 8, 0.97);
  color: var(--brand-text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.crew-card-heading {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.12;
}

.crew-muted {
  color: color-mix(in srgb, var(--brand-text) 62%, white 38%);
  font-size: 0.92rem;
}

.crew-form .form-label,
.crew-stock-form label {
  color: color-mix(in srgb, var(--brand-text) 82%, white 18%);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crew-form .form-control,
.crew-form .form-select {
  min-height: 2.75rem;
  border-color: rgba(217, 228, 208, 0.22);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--brand-text);
}

.crew-form .form-control:focus,
.crew-form .form-select:focus {
  border-color: var(--brand-primary);
  background-color: rgba(255, 255, 255, 0.07);
  color: var(--brand-text);
  box-shadow: 0 0 0 0.18rem rgba(184, 230, 160, 0.16);
}

.crew-form .form-control::placeholder {
  color: rgba(217, 228, 208, 0.52);
}

.crew-form .form-select option {
  color: #101510;
}

.crew-list {
  border-radius: 0.9rem;
  overflow: hidden;
}

.crew-list .list-group-item {
  padding: 1rem;
  border-color: rgba(217, 228, 208, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--brand-text);
}

.crew-list a.list-group-item:hover,
.crew-list a.list-group-item:focus {
  background: rgba(184, 230, 160, 0.12);
  color: var(--brand-primary);
}

.crew-member-search-result {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.crew-member-search-photo {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  max-height: 4rem;
  border: 1px solid rgba(217, 228, 208, 0.24);
  border-radius: 0.6rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.crew-member-search-body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.crew-member-search-name {
  color: var(--brand-text);
  font-weight: 800;
}

.crew-member-search-meta {
  color: color-mix(in srgb, var(--brand-text) 60%, white 40%);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.crew-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.crew-action-tile {
  min-height: 7.5rem;
  border-color: rgba(184, 230, 160, 0.2);
  background: rgba(184, 230, 160, 0.1);
  color: var(--brand-text);
}

.crew-action-tile .small {
  color: color-mix(in srgb, var(--brand-text) 58%, white 42%);
}

.crew-status-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
}

.crew-status-pill,
.crew-stock-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(184, 230, 160, 0.24);
  border-radius: 999px;
  background: rgba(184, 230, 160, 0.12);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.crew-primary-action {
  min-width: 12rem;
}

.crew-alert {
  border-color: rgba(228, 184, 75, 0.34);
  background: rgba(228, 184, 75, 0.14);
  color: color-mix(in srgb, var(--brand-warning) 72%, white 28%);
}

.crew-empty {
  width: 100%;
  padding: 1rem;
  border: 1px dashed rgba(217, 228, 208, 0.22);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  color: color-mix(in srgb, var(--brand-text) 62%, white 38%);
}

.crew-stock-grid {
  display: grid;
  gap: 1rem;
}

.crew-stock-card {
  display: grid;
  grid-template-columns: minmax(11rem, 16rem) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(217, 228, 208, 0.14);
  border-radius: 1rem;
  background: rgba(3, 4, 4, 0.72);
}

.crew-stock-visual {
  display: grid;
  place-items: center;
  min-height: 13rem;
  border: 1px solid rgba(217, 228, 208, 0.28);
  border-radius: 0.9rem;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.035) 75%, transparent 75%, transparent),
    linear-gradient(135deg, rgba(117, 141, 156, 0.88), rgba(62, 77, 86, 0.88));
  background-size: 0.45rem 0.45rem, auto;
  color: var(--brand-text);
  text-align: center;
}

.crew-stock-visual-trade {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.035) 75%, transparent 75%, transparent),
    linear-gradient(135deg, rgba(133, 84, 25, 0.9), rgba(66, 47, 27, 0.88));
  background-size: 0.45rem 0.45rem, auto;
}

.crew-stock-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  padding: 1rem;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: rgba(7, 9, 8, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crew-stock-content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.crew-stock-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.crew-stock-title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.crew-stock-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.crew-stock-metrics div {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(217, 228, 208, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
}

.crew-stock-metrics dt {
  margin-bottom: 0.35rem;
  color: color-mix(in srgb, var(--brand-text) 52%, white 48%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crew-stock-metrics dd {
  margin: 0;
  color: var(--brand-text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.crew-stock-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(217, 228, 208, 0.14);
}

.crew-stock-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.crew-stock-submit {
  min-height: 2.75rem;
}

.password-input-shell {
  position: relative;
}

.password-input-shell .password-input,
.password-input-shell .form-control {
  padding-right: 3rem;
}

.password-toggle-button {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 21, 16, 0.04);
  color: rgba(16, 21, 16, 0.72);
  z-index: 2;
}

.password-toggle-button:hover,
.password-toggle-button:focus {
  background: rgba(16, 21, 16, 0.1);
  color: #101510;
}

.password-toggle-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.18rem rgba(16, 21, 16, 0.18);
}

.password-toggle-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 767.98px) {
  .member-nav-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .member-float-up {
    right: 0.85rem;
    bottom: 0.85rem;
    min-width: 8.4rem;
  }

  .member-nav-club-form {
    min-width: 8.5rem;
  }

  .member-hub-meta-list > div {
    flex-direction: column;
  }

  .member-hub-meta-list strong {
    text-align: left;
  }

  .member-hub-welcome-copy {
    margin-left: 0;
  }

  .member-hub-status-left,
  .member-hub-status-right {
    border-radius: 1.2rem;
  }

  .member-hub-status-right {
    border-left: 1px solid var(--brand-border);
    text-align: left;
  }

  .member-hub-middle,
  .member-hub-support-row,
  .member-hub-sharing-layout {
    grid-template-columns: 1fr;
  }

  .crew-hero-layout,
  .crew-stock-card {
    grid-template-columns: 1fr;
  }

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

  .crew-stock-visual {
    min-height: 10rem;
  }

  .crew-stock-metrics,
  .crew-stock-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .crew-workspace {
    margin-inline: -0.35rem;
  }

  .crew-component-shell {
    padding: 0.75rem;
    border-radius: 1rem;
  }

  .crew-card,
  .crew-hero {
    border-radius: 1rem;
  }

  .crew-action-grid,
  .crew-stock-metrics,
  .crew-stock-form {
    grid-template-columns: 1fr;
  }

  .crew-stock-head {
    flex-direction: column;
  }

  .crew-stock-submit,
  .crew-primary-action {
    width: 100%;
  }
}
