:root {
  --ink: #0f1115;
  --muted: #66707c;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: #dde2e8;
  --lime: #d7ff2f;
  --lime-strong: #bdf000;
  --steel: #e9edf2;
  --blue: #185ee0;
  --shadow: 0 24px 70px rgba(15, 17, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(247, 248, 250, 0.92);
  border-bottom: 1px solid rgba(15, 17, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.category-grid,
.steps,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 6px;
  font-size: 0.82rem;
}

.site-header nav {
  gap: 20px;
  color: #30363f;
  font-size: 0.94rem;
  font-weight: 760;
}

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

.header-cta,
.primary-btn,
.secondary-btn,
.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  font: inherit;
  cursor: pointer;
}

.header-cta,
.primary-btn {
  background: var(--lime);
  color: var(--ink);
}

.secondary-btn {
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  max-height: 850px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.18), rgba(15, 17, 21, 0.74) 58%, rgba(15, 17, 21, 0.9)),
    linear-gradient(0deg, rgba(15, 17, 21, 0.58), rgba(15, 17, 21, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 36px));
  margin-left: auto;
  margin-right: clamp(18px, 7vw, 96px);
  color: var(--white);
  padding: 64px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 12vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading p,
.event-card p,
.category-card p,
.step-card p,
.faq-item p,
.placeholder-page p,
.panel-card p,
.admin-hero p {
  color: var(--muted);
  line-height: 1.58;
}

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

.category-card,
.action-card,
.event-card,
.step-card,
.faq-item,
.panel-card {
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 17, 21, 0.04);
}

.category-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 2.2rem;
  line-height: 1;
}

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

.action-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.action-card p {
  margin-bottom: 8px;
}

.action-card .primary-btn,
.action-card .secondary-btn {
  width: max-content;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.event-meta,
.panel-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecffd1;
  color: #315900;
  font-size: 0.8rem;
  font-weight: 900;
}

.steps {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(180, 255, 0, 0.72);
  outline-offset: -5px;
}

.faq-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(15, 17, 21, 0.16);
  border-radius: 50%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer-inner {
  display: grid;
  gap: 10px;
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq-answer a {
  color: #315900;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.faq-more {
  display: flex;
  margin-top: 18px;
}

@media (hover: hover) {
  .faq-item:hover {
    border-color: rgba(180, 255, 0, 0.42);
    box-shadow: 0 18px 46px rgba(15, 17, 21, 0.08);
    transform: translateY(-1px);
  }

  .faq-item:hover .faq-icon {
    border-color: var(--lime-strong);
  }
}

.signup-placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signup-section {
  display: grid;
  gap: 18px;
}

.signup-section-inline {
  width: 100%;
  padding: 24px 0 0;
}

.fast-inline-registration {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, grid-template-rows 220ms ease;
}

.fast-inline-registration[hidden] {
  display: none;
}

.fast-inline-registration .placeholder-page {
  width: 100%;
  margin-top: 24px;
}

.inline-registration-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(180, 255, 0, 0.28);
  border-radius: 8px;
  background: #0f1115;
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.inline-registration-summary h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.inline-registration-summary p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.inline-registration-summary .secondary-btn {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(180, 255, 0, 0.46);
  color: #ffffff;
}

.inline-registration-summary .secondary-btn:hover {
  background: rgba(180, 255, 0, 0.14);
  border-color: rgba(180, 255, 0, 0.68);
}

.fast-signup-section.is-expanded .fast-signup-flow {
  margin-bottom: 6px;
}

.signup-section-inline {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180, 255, 0, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.52)),
    url("/assets/home-dark-bg-desktop.webp") center top / cover no-repeat;
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.42);
}

.signup-section-inline .registration-form {
  position: relative;
  z-index: 1;
}

.signup-section-inline .form-section {
  background: rgba(6, 8, 10, 0.84);
  border-color: rgba(180, 255, 0, 0.22);
  border-top-color: var(--lime);
  color: var(--white);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.36);
}

.signup-section-inline .form-section h2,
.signup-section-inline .field-grid label,
.signup-section-inline .form-choice-group legend,
.signup-section-inline .category-choice strong,
.signup-section-inline .summary-box strong {
  color: var(--white);
}

.signup-section-inline .form-section > div:first-child p:not(.eyebrow),
.signup-section-inline .category-choice small,
.signup-section-inline .category-choice em,
.signup-section-inline .field-grid label span,
.signup-section-inline .consent-item small,
.signup-section-inline .inline-status,
.signup-section-inline .summary-box {
  color: rgba(255, 255, 255, 0.7);
}

.signup-section-inline .category-choice span,
.signup-section-inline .consent-item,
.signup-section-inline .form-choice-group {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.signup-section-inline .category-choice input:checked + span {
  background: linear-gradient(180deg, rgba(215, 255, 47, 0.16), rgba(8, 10, 12, 0.88));
  border-color: var(--lime);
  box-shadow: 0 16px 42px rgba(180, 255, 0, 0.16);
}

.signup-section-inline .field-grid input,
.signup-section-inline .field-grid select,
.signup-section-inline .field-grid textarea {
  background: rgba(2, 3, 4, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.signup-section-inline .field-grid input:focus,
.signup-section-inline .field-grid select:focus,
.signup-section-inline .field-grid textarea:focus {
  outline: 3px solid rgba(180, 255, 0, 0.28);
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(180, 255, 0, 0.18);
}

.signup-section-inline .inline-status[data-type="error"],
.signup-section-inline .form-message[data-type="error"] {
  color: #ffb4a8;
}

.signup-section-inline .inline-status[data-type="warning"] {
  color: #ffd58a;
}

.signup-section-inline .inline-status[data-type="success"],
.signup-section-inline .form-message[data-type="success"] {
  color: var(--lime);
}

.signup-section-inline .summary-section,
.fast-inline-registration .success-page {
  background: linear-gradient(135deg, rgba(6, 8, 10, 0.92), rgba(18, 22, 18, 0.9));
  border-color: rgba(180, 255, 0, 0.26);
  color: var(--white);
}

.signup-section-inline .summary-box {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.event-summary-card,
.form-section {
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: 0 10px 28px rgba(15, 17, 21, 0.04);
}

.event-summary-card h1 {
  font-size: clamp(2.6rem, 8vw, 6.6rem);
}

.registration-form {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.form-section h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.form-section > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.category-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.category-choice {
  min-height: 172px;
  cursor: pointer;
}

.category-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-choice span {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-choice input:checked + span {
  border-color: var(--lime-strong);
  box-shadow: 0 16px 36px rgba(189, 240, 0, 0.2);
  transform: translateY(-2px);
}

.category-choice strong {
  font-size: 2rem;
}

.category-choice small,
.category-choice em,
.field-grid label span,
.consent-item small {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.category-choice em {
  margin-top: auto;
  color: #315900;
  font-weight: 900;
}

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

.field-grid label {
  display: grid;
  gap: 8px;
  color: #30363f;
  font-weight: 850;
}

.form-choice-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.form-choice-group legend {
  padding: 0 4px;
  color: #30363f;
  font-weight: 850;
}

.form-choice-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.form-choice-group input {
  width: auto;
  height: auto;
}

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

.field-grid input,
.field-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
}

.field-grid .form-choice-group input {
  width: auto;
  height: auto;
}

.inline-status {
  grid-column: 2;
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.inline-status[data-type="error"],
.form-message[data-type="error"] {
  color: #b42318;
}

.inline-status[data-type="warning"] {
  color: #9a5b00;
}

.inline-status[data-type="success"],
.form-message[data-type="success"] {
  color: #315900;
}

.conditional-section[hidden],
.consent-item[hidden] {
  display: none;
}

.consent-select-all {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1.5px dashed var(--lime-strong);
  border-radius: 8px;
  background: rgba(191, 240, 0, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.consent-select-all[hidden] {
  display: none;
}

.consent-select-all input {
  width: 20px;
  height: 20px;
  accent-color: var(--lime-strong);
}

.consent-select-all input:disabled + span {
  opacity: 0.5;
}

.consent-list {
  display: grid;
  gap: 12px;
}

.consent-item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.consent-item input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--lime-strong);
}

.consent-item span {
  display: grid;
  gap: 4px;
}

.consent-item a {
  color: var(--lime-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rules-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.rules-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.rules-toc strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.rules-toc a {
  color: var(--muted);
  font-weight: 820;
  text-decoration: none;
}

.rules-toc a:hover {
  color: var(--ink);
}

.rules-document {
  display: grid;
  gap: 28px;
  max-width: 880px;
  min-width: 0;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 58px rgba(15, 17, 21, 0.08);
}

.rules-document header {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.rules-document h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.96;
}

.rules-document h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.rules-document h4 {
  margin-top: 8px;
  font-size: 1.1rem;
}

.rules-document section {
  display: grid;
  gap: 12px;
  scroll-margin-top: 110px;
}

.rules-document ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.25rem;
}

.rules-document li,
.rules-document p {
  color: #30363f;
  line-height: 1.65;
}

.rules-document a {
  color: #315900;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.summary-section {
  background: var(--ink);
  color: var(--white);
}

.summary-section .eyebrow {
  color: var(--lime);
}

.summary-section h2 {
  color: var(--white);
}

.summary-box {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-box p,
.form-message {
  margin: 0;
}

.submit-btn {
  grid-column: 2;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-alert {
  padding: 16px;
  border: 1px solid #f5b5ae;
  border-radius: 8px;
  background: #fff4f2;
  color: #912018;
  font-weight: 780;
}

.success-page {
  display: grid;
  gap: 18px;
}

.confirmation-page {
  display: grid;
  gap: 20px;
}

.confirmation-page h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
}

.confirmation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 18px;
  align-items: stretch;
}

.confirmation-details,
.qr-panel {
  padding: clamp(20px, 4vw, 32px);
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 11, 14, 0.06);
}

.confirmation-details {
  display: grid;
  gap: 18px;
}

.confirmation-details h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.qr-panel {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.qr-code {
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-code svg {
  display: block;
  width: 100%;
  height: auto;
}

.qr-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.signup-placeholder label {
  display: grid;
  gap: 8px;
  color: #30363f;
  font-weight: 850;
}

.signup-placeholder input,
.signup-placeholder select {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
}

.signup-placeholder .full {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 86px auto 0;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.92rem;
}

.placeholder-page,
.admin-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.admin-hero {
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.admin-hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.dashboard-tile {
  min-height: 98px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
}

.dashboard-tile strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.dashboard-tile span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-card {
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
}

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

.admin-filters {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
  gap: 12px;
  min-width: 0;
  margin-bottom: 16px;
}

.admin-filters label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #30363f;
  font-weight: 850;
}

.admin-filters input,
.admin-filters select,
.login-form input,
.sms-test-grid input,
.status-editor select,
.status-editor textarea,
.sms-message-field textarea {
  min-width: 0;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
}

.status-editor textarea,
.sms-message-field textarea {
  height: auto;
  padding: 12px;
  resize: vertical;
}

.sms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.sms-compose,
.sms-history {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.sms-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

.sms-preview-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(180, 255, 0, 0.28);
  border-radius: 8px;
  background: #f7ffe8;
}

.sms-preview-summary span {
  color: var(--muted);
  font-weight: 780;
}

.sms-preview-list,
.sms-history-list {
  display: grid;
  gap: 10px;
  max-height: 460px;
  overflow: auto;
  padding-right: 4px;
}

.sms-recipient-row,
.sms-history-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.sms-recipient-row span,
.sms-recipient-row small,
.sms-history-item span,
.sms-history-item small {
  color: var(--muted);
}

.sms-recipient-row.is-skipped {
  opacity: 0.72;
}

.sms-skipped-title {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sms-message-field,
.sms-test-grid label {
  display: grid;
  gap: 8px;
  color: #30363f;
  font-weight: 850;
}

.sms-counter {
  color: var(--muted);
  font-weight: 780;
}

.sms-test-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.sms-history-item div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.sms-history-item p {
  margin: 0;
}

.compact-heading {
  margin-bottom: 0;
}

.management-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.management-list {
  display: grid;
  gap: 10px;
}

.management-item {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.management-item:hover {
  border-color: var(--lime-strong);
}

.management-item span,
.management-item small {
  color: var(--muted);
}

.management-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.management-form textarea,
.field-grid textarea {
  width: 100%;
  min-height: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.admin-wide-label {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 18px;
  color: #30363f;
  font-weight: 850;
}

.admin-wide-label select {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
}

.switch-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.switch-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--lime-strong);
}

.quick-filters,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.quick-filters label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 780;
}

.quick-filters input {
  accent-color: var(--lime-strong);
}

.registrations-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.registrations-table {
  width: 100%;
  min-width: 1260px;
  border-collapse: collapse;
  background: var(--white);
}

.start-list-table {
  min-width: 980px;
}

.compact-input {
  width: 86px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  font-weight: 820;
}

.registrations-table small {
  color: var(--muted);
}

.table-action {
  min-height: 34px;
  padding: 0 12px;
}

.status-chip {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #30363f;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-accepted {
  background: #ecffd1;
  color: #315900;
}

.status-needs_info {
  background: #fff4cf;
  color: #7a4a00;
}

.status-rejected {
  background: #fff0ef;
  color: #912018;
}

.status-waitlist {
  background: #eaf1ff;
  color: #174ea6;
}

.checkin-checked_in {
  background: #ecffd1;
  color: #315900;
}

.checkin-absent {
  background: #fff0ef;
  color: #912018;
}

.checkin-not_checked_in {
  background: #eef2f7;
  color: #30363f;
}

.checkin-list {
  display: grid;
  gap: 12px;
}

.checkin-row {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.checkin-main,
.checkin-meta,
.checkin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.checkin-main strong {
  display: block;
  font-size: 1.15rem;
}

.checkin-main span,
.checkin-meta span {
  color: var(--muted);
}

.checkin-meta {
  justify-content: flex-start;
}

.checkin-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.92rem;
}

.checkin-actions {
  justify-content: flex-start;
}

.checkin-actions .primary-btn,
.checkin-actions .secondary-btn {
  min-height: 40px;
}

.login-card {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 40px);
  background: var(--white);
  border: 1px solid rgba(15, 17, 21, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-card h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

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

.login-form label,
.status-editor label {
  display: grid;
  gap: 8px;
  color: #30363f;
  font-weight: 850;
}

.login-form .submit-btn {
  grid-column: 1;
}

.registration-modal {
  width: min(1080px, calc(100% - 28px));
  max-height: min(86vh, 980px);
  border: 0;
  border-radius: 10px;
  padding: 0;
  box-shadow: var(--shadow);
}

.registration-modal.is-open:not([open]) {
  display: block;
  position: fixed;
  inset: 7vh auto auto 50%;
  transform: translateX(-50%);
  z-index: 80;
}

.registration-modal::backdrop {
  background: rgba(15, 17, 21, 0.52);
}

.modal-shell {
  position: relative;
  padding: clamp(20px, 4vw, 32px);
  background: var(--white);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-header {
  padding-right: 48px;
}

.modal-header h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

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

.details-grid section,
.status-editor {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.detail-list {
  display: grid;
  gap: 9px;
}

.detail-list p {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.detail-list strong {
  color: #30363f;
}

.detail-list span {
  color: var(--muted);
}

.status-editor {
  margin-top: 14px;
}

.status-editor form {
  display: grid;
  gap: 12px;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.status-editor .primary-btn {
  border: 0;
}

.registrations-table th,
.registrations-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.registrations-table th {
  background: #f3f6f8;
  color: #30363f;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.registrations-table tr:last-child td {
  border-bottom: 0;
}

.notice {
  padding: 16px;
  background: #f2ffd8;
  border: 1px solid #d7ff2f;
  border-radius: 8px;
  color: #233900;
  font-weight: 760;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .category-grid,
  .action-grid,
  .category-choice-grid,
  .confirmation-card,
  .steps,
  .signup-placeholder,
  .form-section,
  .field-grid,
  .admin-filters,
  .management-layout,
  .dashboard-grid,
  .details-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .inline-status,
  .submit-btn {
    grid-column: 1;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 42px;
  }

  .hero {
    min-height: 690px;
    background-position: 58% center;
    align-items: end;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(3.4rem, 19vw, 5.6rem);
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Production UI polish inspired by the BMX Series poster */
:root {
  --ink: #090b0d;
  --graphite: #14181d;
  --graphite-soft: #20262d;
  --muted: #65707b;
  --paper: #f3f5f7;
  --white: #ffffff;
  --line: #d9e0e6;
  --lime: #8ee000;
  --lime-strong: #69bd00;
  --lime-soft: #efffce;
  --steel: #edf1f4;
  --shadow: 0 24px 70px rgba(6, 8, 11, 0.14);
}

body {
  background:
    linear-gradient(180deg, #050607 0, #0b0e11 380px, var(--paper) 381px);
}

body.admin-body,
body.checkin-body {
  background: #eef2f5;
}

.site-header {
  background: rgba(6, 8, 11, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.admin-body .site-header,
.checkin-body .site-header {
  background: rgba(12, 15, 18, 0.95);
}

.site-header nav {
  color: rgba(255, 255, 255, 0.78);
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: var(--white);
}

.site-header nav a:hover::after,
.site-header nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand-mark {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.header-cta,
.primary-btn,
.submit-btn {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(105, 189, 0, 0.22);
}

.primary-btn:hover,
.header-cta:hover,
.submit-btn:hover:not(:disabled) {
  background: #a4f30d;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(12, 15, 18, 0.13);
  color: var(--ink);
}

.hero {
  background: #050607;
}

.home-hero {
  width: 100%;
}

.section-glow-separator {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1px;
  overflow: visible;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    rgba(180, 255, 0, 0.16),
    rgba(255, 255, 255, 0.16),
    transparent
  );
}

.section-glow-separator::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -10px;
  height: 20px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(180, 255, 0, 0.2) 50%,
      rgba(255, 255, 255, 0.15) 80%,
      transparent 100%
    );
  filter: blur(12px);
  opacity: 0.48;
  pointer-events: none;
}

.section-glow-separator-light {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    rgba(180, 255, 0, 0.12),
    rgba(255, 255, 255, 0.12),
    transparent
  );
}

.home-dark-content {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  background-image: url("/assets/home-dark-bg-desktop.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y;
  color: var(--white);
}

.home-dark-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.24) 100%);
  pointer-events: none;
}

.home-dark-content > * {
  position: relative;
  z-index: 1;
}

.image-hero {
  display: block;
  min-height: 0;
  max-height: none;
  background: #050607;
  overflow: hidden;
}

.image-hero picture,
.image-hero img {
  display: block;
  width: 100%;
}

.image-hero img {
  position: static;
  height: auto;
  object-fit: contain;
  filter: none;
}

.hero img {
  filter: saturate(0.9) contrast(1.12) brightness(0.65);
}

.image-hero img {
  filter: none;
}

.page-hero::before,
.admin-hero::before {
  content: "";
  position: absolute;
  width: min(360px, 54vw);
  height: 14px;
  background: var(--lime);
  transform: rotate(-4deg);
  border-radius: 999px 30px 999px 30px;
  opacity: 0.95;
}

.hero::after {
  display: none;
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
}

.hero-content h1,
.page-hero h1 {
  text-wrap: balance;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  color: var(--lime);
}

.section {
  padding-top: 78px;
}

.action-section {
  padding-top: 58px;
}

.section-tight {
  padding-top: 34px;
}

.section-heading h2,
.section-heading h1 {
  text-wrap: balance;
}

.page-hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 9vw, 96px) clamp(22px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(5, 6, 7, 0.98), rgba(18, 22, 26, 0.92)),
    url("/assets/bmx-hero.webp") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 8px 8px;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.68)),
    radial-gradient(circle at 80% 20%, rgba(142, 224, 0, 0.14), transparent 26%);
}

.page-hero::before {
  left: clamp(22px, 5vw, 48px);
  bottom: 38px;
  z-index: 1;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .section-heading,
.page-hero .event-summary-card {
  max-width: 850px;
  margin-bottom: 0;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.compact-hero h1,
.event-hero h1,
.signup-hero h1 {
  font-size: clamp(2.9rem, 8vw, 6.4rem);
}

.event-summary-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--white);
  padding: 0 0 22px;
}

.event-summary-card h1 {
  color: var(--white);
}

.event-summary-card .notice {
  width: min(760px, 100%);
  margin-top: 18px;
}

.category-card,
.action-card,
.event-card,
.step-card,
.faq-item,
.panel-card,
.form-section,
.admin-card,
.dashboard-tile,
.login-card,
.checkin-row {
  border-color: rgba(11, 14, 17, 0.11);
  box-shadow: 0 14px 34px rgba(8, 11, 14, 0.06);
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 20px;
  width: 108px;
  height: 6px;
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(-3deg);
}

.action-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(58px, 8vw, 94px) 0 clamp(68px, 9vw, 112px);
  overflow: hidden;
  background-color: #050505;
  background-image: url("/assets/home-dark-bg-desktop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.action-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.32) 100%);
  pointer-events: none;
}

.action-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(11, 13, 10, 0), var(--paper));
  pointer-events: none;
}

.action-section > .section-heading,
.action-section > .action-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.action-section .section-heading {
  max-width: 840px;
}

.action-section .section-heading h2 {
  color: var(--white);
}

.action-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.action-section .action-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(180, 255, 0, 0.22);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.action-section .action-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--lime);
  opacity: 0.9;
}

.action-section .action-card:hover {
  border-color: rgba(142, 224, 0, 0.58);
}

.action-number {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 5px 9px;
  border: 1px solid rgba(142, 224, 0, 0.55);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
}

.action-section .action-card h3 {
  color: var(--white);
}

.action-section .action-card p {
  color: rgba(255, 255, 255, 0.72);
}

.action-section .action-card .secondary-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(142, 224, 0, 0.56);
  color: var(--white);
}

.fast-signup-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(46px, 7vw, 84px) clamp(14px, 4vw, 36px) clamp(58px, 8vw, 100px);
  overflow: hidden;
  background-color: #050505;
  background-image: url("/assets/home-dark-bg-desktop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.fast-signup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.36) 100%);
  pointer-events: none;
}

.fast-signup-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(11, 13, 10, 0), rgba(5, 5, 5, 0.68));
  pointer-events: none;
}

.fast-signup-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(1240px, 100%);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid rgba(180, 255, 0, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56);
}

.fast-signup-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.9;
}

.fast-signup-header {
  max-width: 840px;
}

.fast-signup-header h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.fast-signup-header p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.fast-signup-header small,
.fast-signup-message {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.48;
}

.fast-signup-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.fast-signup-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.fast-signup-step > label,
.fast-step-label {
  margin: 0;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fast-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.fast-event-card {
  min-width: 0;
  cursor: pointer;
}

.fast-event-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fast-event-card span {
  position: relative;
  display: grid;
  min-height: 150px;
  gap: 9px;
  align-content: start;
  padding: 20px 20px 20px 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.76);
  color: var(--white);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fast-event-card span:hover {
  border-color: rgba(180, 255, 0, 0.42);
  background: rgba(14, 17, 15, 0.88);
  transform: translateY(-2px);
}

.fast-event-card input:focus-visible + span {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.fast-event-card input:checked + span {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(215, 255, 47, 0.16), rgba(3, 4, 5, 0.9));
  box-shadow: 0 18px 42px rgba(180, 255, 0, 0.16);
}

.fast-event-card i {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.fast-event-card input:checked + span i {
  border-color: var(--lime);
  box-shadow: 0 0 0 5px rgba(180, 255, 0, 0.1);
}

.fast-event-card input:checked + span i::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--lime);
}

.fast-event-card strong {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.14;
}

.fast-event-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.36;
}

.fast-event-card .fast-status {
  width: fit-content;
  font-style: normal;
}

.fast-status {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 255, 47, 0.92);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
}

.fast-calendar-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(180, 255, 0, 0.5);
  text-underline-offset: 4px;
}

.fast-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fast-category-tile {
  min-width: 0;
  cursor: pointer;
}

.fast-category-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fast-category-tile span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.72);
  color: var(--white);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fast-category-tile input:checked + span {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(215, 255, 47, 0.18), rgba(3, 4, 5, 0.86));
  box-shadow: 0 18px 42px rgba(180, 255, 0, 0.17);
  transform: translateY(-2px);
}

.fast-category-tile strong {
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.fast-category-tile small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.38;
}

.fast-submit-step {
  align-content: center;
}

.fast-submit-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(180, 255, 0, 0.22);
}

.fast-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.home-faq-section {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.home-faq-section .section-heading h2 {
  color: var(--white);
}

.home-faq-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.home-faq-section .faq-list {
  gap: 14px;
}

.home-faq-section .faq-item {
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid rgba(180, 255, 0, 0.2);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.home-faq-section .faq-question {
  color: var(--white);
}

.home-faq-section .faq-icon {
  border-color: rgba(255, 255, 255, 0.28);
}

.home-faq-section .faq-answer p {
  color: rgba(255, 255, 255, 0.72);
}

.home-faq-section .faq-answer a {
  color: var(--lime);
}

.partners-section {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.partners-section .section-heading {
  max-width: 820px;
}

.partners-section .section-heading h2 {
  color: var(--white);
}

.partners-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.partner-groups {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
}

.partner-group {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.partner-group h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.partner-logo-grid {
  display: grid;
  gap: 16px;
}

.partner-group-host_cities .partner-logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-group-sponsors .partner-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-logo-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.partner-logo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180, 255, 0, 0.74), transparent);
  opacity: 0.74;
}

.partner-logo-card:hover {
  border-color: rgba(180, 255, 0, 0.36);
  background: #ffffff;
  transform: translateY(-2px);
}

.partner-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  max-height: 96px;
  overflow: hidden;
}

.partner-logo-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(170px, 100%);
  max-height: 70px;
  object-fit: contain;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center center;
}

.partner-logo-frame.has-logo .partner-logo-placeholder {
  display: none;
}

.partner-logo-frame.has-logo.is-placeholder .partner-logo-placeholder {
  display: grid;
}

.partner-logo-placeholder {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 10px;
  color: rgba(9, 11, 13, 0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.home-page .site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 34px clamp(18px, 5vw, 70px) 46px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 1)),
    url("/assets/home-dark-bg-desktop.webp") center bottom / cover repeat-y;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.home-page .site-footer::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(180, 255, 0, 0.18), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.home-page .site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.home-page .site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lime-strong);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card {
  background: linear-gradient(180deg, #fff, #f9fbfc);
  border-left: 5px solid var(--lime);
}

.event-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.event-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafc;
  color: #30363f;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill {
  background: var(--lime-soft);
  color: #315900;
}

.status-registration-open {
  background: var(--lime);
  color: var(--ink);
}

.status-registration-closed,
.status-finished {
  background: #e6ebef;
  color: #35404a;
}

.status-planned {
  background: #eaf1ff;
  color: #174ea6;
}

.status-cancelled {
  background: #fff0ef;
  color: #912018;
}

.step-card {
  background: #101418;
  color: var(--white);
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.step-card span {
  background: var(--lime);
  color: var(--ink);
}

.signup-section {
  padding-bottom: 12px;
}

.registration-form {
  gap: 22px;
}

.form-section {
  border-top: 4px solid var(--lime);
}

.form-section h2 {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
}

.category-choice span {
  background: #fff;
  border-width: 2px;
}

.category-choice input:checked + span {
  background: linear-gradient(180deg, #fbfff1, #ffffff);
  border-color: var(--lime-strong);
}

.field-grid input,
.field-grid select,
.field-grid textarea,
.admin-filters input,
.admin-filters select,
.login-form input,
.status-editor select,
.status-editor textarea,
.management-form textarea,
.admin-wide-label select,
.compact-input {
  background: #ffffff;
  border-color: #cfd7df;
}

.field-grid .form-choice-group input {
  background: initial;
  border-color: initial;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus,
.admin-filters input:focus,
.admin-filters select:focus,
.login-form input:focus,
.status-editor select:focus,
.status-editor textarea:focus,
.compact-input:focus {
  outline: 3px solid rgba(142, 224, 0, 0.28);
  border-color: var(--lime-strong);
}

.consent-item {
  background: #fff;
}

.summary-section {
  background:
    linear-gradient(135deg, #080a0c, #151a20);
  border-color: rgba(255, 255, 255, 0.14);
}

.summary-box {
  background: rgba(255, 255, 255, 0.08);
}

.success-page {
  background:
    linear-gradient(135deg, #080a0c, #151a20);
  color: var(--white);
  border-radius: 8px;
}

.success-page p:not(.eyebrow),
.success-info p {
  color: rgba(255, 255, 255, 0.78);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 950;
}

.success-info {
  display: grid;
  gap: 6px;
}

.site-footer {
  color: var(--white);
  border-top-color: rgba(255, 255, 255, 0.14);
  padding: 34px;
  background: #090b0d;
  border-radius: 8px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.admin-shell {
  padding-top: 42px;
}

.admin-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #090b0d, #171d23);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-hero::before {
  right: 34px;
  bottom: 30px;
}

.admin-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.dashboard-tile {
  background: #fff;
}

.dashboard-tile strong {
  color: var(--ink);
}

.admin-card {
  border-top: 4px solid var(--lime);
}

.admin-filters {
  padding: 14px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-filters label {
  background: #fff;
}

.registrations-table th {
  background: #101418;
  color: rgba(255, 255, 255, 0.84);
}

.registrations-table tbody tr:hover {
  background: #f8fbef;
}

.status-chip {
  text-transform: lowercase;
}

.status-accepted {
  background: var(--lime-soft);
  color: #315900;
}

.management-item {
  background: #fff;
}

.management-item mark {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: #315900;
  font-weight: 900;
}

.form-group-title {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 5px solid var(--lime);
  border-radius: 8px;
  background: #f7fafc;
}

.form-group-title strong {
  color: var(--ink);
  font-size: 1rem;
}

.form-group-title span {
  color: var(--muted);
  font-size: 0.92rem;
}

.event-management-form {
  gap: 18px;
}

.checkin-counters .dashboard-tile {
  min-height: 112px;
  border-top: 4px solid var(--lime);
}

.checkin-row {
  background: #fff;
  border-left: 6px solid #cfd7df;
}

.checkin-row:has(.checkin-checked_in) {
  border-left-color: var(--lime-strong);
}

.checkin-row:has(.checkin-absent) {
  border-left-color: #e5483f;
}

.checkin-main strong {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.checkin-actions .primary-btn,
.checkin-actions .secondary-btn {
  min-height: 50px;
  padding-inline: 18px;
}

.checkin-checked_in {
  background: var(--lime);
  color: var(--ink);
}

.checkin-not_checked_in {
  background: #e6ebef;
  color: #30363f;
}

.start-list-table .compact-input {
  width: 96px;
  text-align: center;
}

.notice {
  background: var(--lime-soft);
  border-color: rgba(105, 189, 0, 0.45);
}

@media (min-width: 1024px) {
  .fast-signup-flow {
    grid-template-columns: 1.35fr 0.9fr;
    grid-template-areas:
      "event submit"
      "category category";
    gap: 24px;
  }

  .fast-signup-step:first-child {
    grid-area: event;
  }

  .fast-category-step {
    grid-area: category;
  }

  .fast-submit-step {
    grid-area: submit;
  }
}

@media (max-width: 980px) {
  .action-grid {
    grid-template-columns: 1fr;
  }

  .action-section > .section-heading,
  .action-section > .action-grid {
    width: min(100% - 28px, 1180px);
  }

  .fast-signup-flow,
  .fast-category-grid,
  .rules-section {
    grid-template-columns: 1fr;
  }

  .partner-group-host_cities .partner-logo-grid,
  .partner-group-sponsors .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rules-toc {
    position: static;
  }

  .page-hero,
  .section,
  .placeholder-page,
  .admin-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .action-section {
    width: 100%;
  }

  .fast-signup-section {
    padding-inline: 14px;
  }

  .page-hero {
    padding: 48px 20px 64px;
  }

  .form-section {
    gap: 18px;
  }

  .admin-filters {
    padding: 12px;
  }

  .site-header nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-glow-separator::before {
    left: 12%;
    right: 12%;
    opacity: 0.36;
    filter: blur(10px);
  }

  .action-section {
    background-size: cover;
    background-position: center top;
  }

  .fast-signup-section {
    background-size: cover;
    background-position: center top;
  }

  .action-section::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.48) 100%);
  }

  .fast-signup-section::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.24) 0%, rgba(5, 5, 5, 0.5) 100%);
  }

  .image-hero img {
    width: 100%;
    height: auto;
  }

  .sms-layout,
  .sms-filters,
  .sms-test-grid {
    grid-template-columns: 1fr;
  }

  .sms-test-grid .secondary-btn,
  .sms-send-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    background:
      linear-gradient(180deg, #050607 0, #0b0e11 520px, var(--paper) 521px);
  }

  .site-header {
    background: rgba(6, 8, 11, 0.94);
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 92px;
  }

  .hero-actions,
  .admin-actions,
  .checkin-actions {
    width: 100%;
  }

  .action-card .primary-btn,
  .action-card .secondary-btn {
    width: 100%;
  }

  .fast-signup-panel {
    padding: 20px;
  }

  .fast-signup-header h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .fast-signup-step {
    padding: 16px;
  }

  .inline-registration-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-registration-summary .secondary-btn {
    width: 100%;
  }

  .fast-category-tile span {
    min-height: 108px;
  }

  .partner-group-host_cities .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-group-sponsors .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-card {
    min-height: 112px;
  }

  .partner-logo-frame {
    height: 76px;
    max-height: 76px;
  }

  .event-card {
    padding: 20px;
  }

  .category-card,
  .event-card,
  .step-card,
  .faq-item,
  .form-section,
  .admin-card,
  .checkin-row {
    padding: 18px;
  }

  .form-section h2 {
    font-size: clamp(1.55rem, 9vw, 2.4rem);
  }

  .admin-hero h1,
  .login-card h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .dashboard-tile {
    min-height: 86px;
  }

  .checkin-meta span {
    width: 100%;
    border-radius: 8px;
  }

  .registrations-table-wrap {
    margin-inline: -4px;
    width: calc(100% + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fast-inline-registration {
    transition: none;
  }
}

@media (max-width: 430px) {
  .partner-group-sponsors .partner-logo-grid {
    grid-template-columns: 1fr;
  }
}
