:root {
  --bg: #0b0d10;
  --surface: rgba(20, 24, 29, 0.92);
  --surface-strong: #171b21;
  --ink: #eef2f7;
  --muted: #a0a9b8;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #d1d7e0;
  --brand-dark: #f5f7fa;
  --accent: #7f8ea3;
  --success: #2f9e74;
  --error: #d9534f;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at top right, rgba(120, 130, 145, 0.1), transparent 24%),
    linear-gradient(180deg, #0b0d10 0%, #11151a 48%, #0d1117 100%);
}

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

.shell {
  max-width: 1380px;
  margin: 0 auto;
  padding: 28px;
}

.portal-banner {
  position: relative;
  margin-bottom: 24px;
  padding: 10px;
  overflow: hidden;
}

.portal-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.banner-login-link {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d2d7de;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.banner-login-link:hover,
.banner-login-link:focus-visible {
  color: #6f7680;
  text-shadow: none;
}

.banner-login-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #d2d7de;
  flex: 0 0 26px;
}

.banner-login-icon::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2d7de;
  transform: translateX(-50%);
}

.banner-login-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 13px;
  height: 8px;
  border-radius: 10px 10px 6px 6px;
  background: #d2d7de;
  transform: translateX(-50%);
}

.banner-login-link:hover .banner-login-icon,
.banner-login-link:focus-visible .banner-login-icon {
  border-color: #6f7680;
}

.banner-login-link:hover .banner-login-icon::before,
.banner-login-link:hover .banner-login-icon::after,
.banner-login-link:focus-visible .banner-login-icon::before,
.banner-login-link:focus-visible .banner-login-icon::after {
  background: #6f7680;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.topbar-actions-only {
  justify-content: flex-end;
}

.portal-menu {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #8d939c 0%, #5f656d 48%, #8c929a 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26),
    0 14px 28px rgba(0, 0, 0, 0.24);
}

.portal-menu-toggle-control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.portal-menu-toggle {
  display: none;
}

.portal-menu-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  color: #f5f7fb;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}

.portal-menu .menu-link:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.portal-menu .menu-link:last-child {
  border-right: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.menu-link.is-current {
  background: transparent;
  color: #f5f7fb;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}

.menu-link[href]:hover,
.menu-link[href]:focus-visible {
  background: linear-gradient(180deg, #ffd565 0%, #f2a61f 100%);
  color: #221708;
  text-shadow: none;
}

.menu-link.is-disabled,
.menu-link.is-brand {
  cursor: default;
}

.menu-link.is-disabled {
  opacity: 0.72;
}

.menu-link.is-brand {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

@media (max-width: 900px) {
  .portal-menu {
    display: block;
    padding: 10px 12px;
  }

  .portal-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f7fb;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  }

  .portal-menu-links {
    display: none;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .portal-menu-toggle-control:checked + .portal-menu-toggle + .portal-menu-links {
    display: flex;
  }

  .portal-menu .menu-link:first-child,
  .portal-menu .menu-link:last-child {
    border-radius: 0;
  }

  .menu-link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .portal-menu-links .menu-link:last-child {
    border-bottom: 0;
  }
}

.topbar h1,
.hero h2,
.section-heading h3,
.card h4 {
  margin: 0;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 8px;
  color: #c6d0de;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.view-switcher {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px;
}

.view-tab {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.view-tab.is-active {
  background: linear-gradient(135deg, #2a313a, #3a434f);
  color: white;
}

.view-tab:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.layout,
.dashboard {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  min-height: 260px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.hero-copy p:last-child {
  margin: 0;
  max-width: 70ch;
  color: #c0c7d2;
}

.hero-badges,
.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span,
.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  align-content: center;
  gap: 14px;
}

.hero-stats article,
.metric-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.metric-card strong {
  display: block;
  font-size: 1.4rem;
}

.hero-stats span,
.metric-card span {
  color: var(--muted);
}

.panel-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.stack {
  display: grid;
  gap: 12px;
}

.compact {
  margin-bottom: 18px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
}

select option {
  color: #111111;
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #94a0b2;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #d7dde6, #8f9aac);
  color: #0d1117;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease;
}

button:hover {
  transform: translateY(-1px);
}

.ghost-button,
.inline-button,
.ghost-link {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

.member-menu {
  margin-bottom: 20px;
}

.member-menu-actions {
  justify-content: center;
}

.member-menu-link:hover,
.member-menu-link:focus-visible {
  background: #157c3a;
  border-color: #157c3a;
  color: #f5f7fb;
}

.member-menu-link.is-current {
  background: #157c3a;
  border-color: #157c3a;
  color: #f5f7fb;
}

.banner-carousel-shell {
  overflow: hidden;
}

.banner-carousel {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  min-height: 220px;
}

.banner-carousel-counter {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.68);
}

.banner-carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.banner-carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.banner-item {
  min-width: 100%;
  flex: 0 0 100%;
}

.banner-item a,
.banner-item .banner-item-static,
.banner-item picture,
.banner-item img {
  display: block;
  width: 100%;
}

.banner-item img {
  width: 100%;
  height: 358px;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
  background: #06080b;
}

.banner-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 56px;
  border: 0;
  border-radius: 0;
  background: rgba(11, 14, 18, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.85rem;
  line-height: 1;
}

.banner-carousel-arrow.is-prev {
  left: 0;
}

.banner-carousel-arrow.is-next {
  right: 0;
}

.banner-carousel-arrow:hover,
.banner-carousel-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.banner-admin-card {
  width: min(100%, 1440px);
  max-width: 1440px;
}

.admin-banner-list-card {
  margin-top: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.banner-admin-list {
  display: grid;
  gap: 18px;
}

.banner-admin-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
}

.banner-admin-thumb-wrap {
  width: 260px;
  flex: 0 0 260px;
}

.banner-admin-thumb-actions {
  margin-top: 12px;
  justify-items: stretch;
}

.banner-admin-thumb-actions .status-pill {
  justify-self: start;
}

.banner-admin-thumb-actions .action-group {
  justify-content: flex-start;
}

.banner-admin-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-admin-copy {
  min-width: 0;
}

.banner-admin-copy strong {
  display: inline;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.banner-admin-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.banner-admin-copy a {
  color: #fafe05;
  text-decoration: none;
}

.banner-admin-copy a:hover,
.banner-admin-copy a:focus-visible {
  color: #fff36a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .banner-item img {
    height: 240px;
  }

  .banner-carousel-arrow {
    width: 24px;
    height: 48px;
    font-size: 1.55rem;
  }

  .banner-admin-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .banner-admin-thumb-wrap {
    width: 100%;
  }

  .banner-admin-thumb {
    height: 160px;
  }

}

.list-grid,
.content-feed,
.data-list {
  display: grid;
  gap: 12px;
}

.feed-card,
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-card p,
.list-item span {
  margin: 6px 0 0;
  color: var(--muted);
}

.feed-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.section-heading {
  margin-bottom: 16px;
}

.section-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.admin-page {
  min-height: 100vh;
}

.single-column {
  display: grid;
  gap: 24px;
}

.admin-access-layout {
  min-height: calc(100vh - 56px);
  display: grid;
  align-items: center;
}

.membro-layout {
  min-height: calc(100vh - 180px);
}

.auth-split-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-access-card {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 28px;
}

.auth-split-card {
  width: 100%;
  margin: 0;
  padding: 28px;
}

.admin-access-links {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.auth-links-left {
  justify-content: flex-start;
}

.admin-login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.admin-login-logo img {
  width: min(140px, 38vw);
  height: auto;
}

.admin-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.contact-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.bio-content {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.bio-content p {
  margin: 0;
  max-width: 92ch;
  color: #d6dde7;
  line-height: 1.75;
}

.community-content {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.community-content h2,
.community-content h3,
.community-content h4 {
  margin: 0;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  letter-spacing: 0.02em;
}

.community-content h2 {
  color: #f2a61f;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
}

.community-content h3 {
  color: #eef2f7;
  font-size: clamp(1.08rem, 2.1vw, 1.4rem);
}

.community-content h4 {
  color: #d8e0eb;
  font-size: 1rem;
  text-transform: uppercase;
}

.community-content p,
.community-content li {
  color: #d6dde7;
  line-height: 1.78;
}

.community-content p,
.community-content ul,
.community-content ol {
  margin: 0;
}

.community-content ul,
.community-content ol {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.document-page {
  min-height: 100vh;
}

.document-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.document-shell-embedded {
  padding-top: 0;
}

.document-actions {
  justify-content: flex-end;
  margin-bottom: 18px;
}

.document-card {
  padding: 40px 38px;
}

.document-header {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.document-logo {
  width: min(180px, 42vw);
  height: auto;
}

.document-domain {
  margin: 0;
  color: #d6dde7;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.document-title {
  margin: 0;
  color: #f2a61f;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-copy {
  color: #dbe2ec;
  line-height: 1.85;
  white-space: normal;
  font-size: 1rem;
}

.pricing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(55, 84, 53, 0.18), transparent 24%),
    linear-gradient(180deg, #101911 0%, #10160f 100%);
}

.pricing-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.pricing-intro {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.pricing-brand-logo {
  width: min(102px, 28vw);
  height: auto;
}

.pricing-welcome {
  margin: 0;
  color: #f1f5f9;
  font-size: clamp(0.92rem, 1.9vw, 1.4rem);
}

.pricing-steps {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.pricing-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #d7dde6;
  text-transform: uppercase;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.pricing-step::before {
  content: '';
  position: absolute;
  top: 19px;
  left: -50%;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.85);
}

.pricing-step:first-child::before {
  display: none;
}

.pricing-step.is-active::before {
  background: #37c95f;
}

.pricing-step-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #cdd4dd;
  color: #202830;
  font-weight: 700;
}

.pricing-step.is-active .pricing-step-icon {
  background: #37c95f;
  color: #ffffff;
}

.pricing-title {
  margin: 2px 0 0;
  color: #f2a61f;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.pricing-card {
  padding: 22px 15px 15px;
  border-radius: 20px;
  background: #35393c;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pricing-card-logo {
  width: 78px;
  height: auto;
  margin-bottom: 10px;
}

.pricing-card h2 {
  margin: 0 0 8px;
  color: #ffb100;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-payline {
  margin: 0 0 7px;
  color: #f4f5f7;
  font-size: 0.82rem;
}

.pricing-copy {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 0.92rem;
}

.pricing-value {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: clamp(1.7rem, 4.2vw, 2.7rem);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.1rem;
  vertical-align: top;
}

.pricing-decimals {
  font-size: 0.88rem;
  color: #f3f5f7;
}

.pricing-features {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
  font-size: 0.92rem;
}

.pricing-features li::before {
  content: '✓';
  margin-right: 6px;
  color: #37c95f;
  font-weight: 700;
}

.pricing-plan-button {
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(180deg, #8d98a3 0%, #737d87 100%);
  color: #ffffff;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 30px;
  text-align: center;
}

.pricing-security {
  width: min(600px, 100%);
  padding: 16px 18px;
  background: #f2f3f5;
  color: #39424d;
  border-radius: 0;
  font-weight: 700;
}

.pricing-support,
.pricing-copyright {
  margin: 0;
  color: #eef2f7;
}

.register-card {
  max-width: 620px;
  margin: 0 auto;
}

.register-form {
  display: grid;
  gap: 14px;
}

.register-intro {
  margin: 0;
  color: #d6dde7;
  text-align: center;
}

.register-error {
  margin: 0;
  color: #ff6b6b;
  text-align: center;
}

.register-note {
  margin: -4px 0 0;
  color: #f2a61f;
  text-align: left;
}

.register-helper {
  margin: -4px 0 0;
  color: #ff8f8f;
  text-align: left;
  font-size: 0.95rem;
}

.register-helper.hidden,
.register-error.hidden {
  display: none !important;
}

.register-label {
  margin: 0;
  color: #f5f7fb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.register-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.register-switch {
  position: relative;
  width: 54px;
  height: 30px;
  display: inline-flex;
}

.register-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.register-switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.register-switch-slider::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5f7fb;
  transition: transform 180ms ease;
}

.register-switch input:checked + .register-switch-slider {
  background: #2aa7c9;
}

.register-switch input:checked + .register-switch-slider::after {
  transform: translateX(24px);
}

.register-terms {
  margin: 0;
  color: #dbe2ec;
}

.register-terms a {
  color: #2aa7c9;
  text-decoration: none;
}

.register-submit {
  width: 100%;
  margin-top: 6px;
  text-align: center;
}

.register-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.register-footer-link {
  margin: 8px 0 0;
  color: #dbe2ec;
  text-align: right;
  display: grid;
  gap: 2px;
  justify-items: end;
}

.register-footer-link a {
  color: #dbe2ec;
  text-decoration: none;
}

.register-footer-link a:hover,
.register-footer-link a:focus-visible {
  color: #f2a61f;
}

.video-grid {
  display: grid;
  gap: 18px;
}

.video-card {
  display: grid;
  gap: 16px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-player iframe,
.video-player video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player.is-portrait {
  aspect-ratio: 9 / 16;
  max-width: 420px;
  margin: 0 auto;
}

.video-player.is-portrait iframe,
.video-player.is-portrait video {
  object-fit: cover;
}

.video-player.is-landscape {
  aspect-ratio: 16 / 9;
}

.video-copy h4,
.video-copy p {
  margin: 0;
}

.video-copy {
  display: grid;
  gap: 8px;
}

.contact-copy p,
.form-meta {
  margin: 0;
  color: var(--muted);
}

.form-meta {
  display: flex;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.admin-login-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-club-card {
  width: min(720px, 100%);
}

.club-admin-list,
.club-public-grid {
  display: grid;
  gap: 14px;
}

.club-admin-item p,
.club-public-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.club-intro {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}

.club-heading h3 {
  color: #f2a61f;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.club-intro p,
.club-intro h4 {
  margin: 0;
}

.club-intro p {
  color: #d6dde7;
  line-height: 1.75;
}

.club-intro h4 {
  color: #f2a61f;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-public-card a {
  color: #dbe2ec;
  text-decoration: none;
}

.club-public-card h4 {
  color: #f2a61f;
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.club-public-card a:hover,
.club-public-card a:focus-visible {
  color: #f2a61f;
}

.action-edit {
  background: #1f66d1;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.action-delete {
  background: #c53a36;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.admin-copy p {
  margin: 0;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #0f1318;
  color: white;
  z-index: 30;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--error);
}

@media (max-width: 980px) {
  .hero,
  .panel-grid,
  .dashboard-grid,
  .admin-metrics,
  .auth-split-grid,
  .pricing-grid,
  .admin-login-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
  }

  .admin-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-switcher {
    flex-direction: column;
  }

  .shell {
    padding: 18px;
  }
}
