:root {
  --cl-night: #02031a;
  --cl-night-2: #070a2a;
  --cl-panel: rgba(8, 12, 45, 0.9);
  --cl-panel-solid: #090e35;
  --cl-panel-soft: rgba(14, 21, 66, 0.76);
  --cl-cyan: #00e8ff;
  --cl-cyan-soft: #8cf7ff;
  --cl-magenta: #ff2bd6;
  --cl-violet: #7b3cff;
  --cl-fire: #ff8a24;
  --cl-white: #f8fbff;
  --cl-muted: #aab7d8;
  --cl-line: rgba(86, 221, 255, 0.24);
  --cl-success: #4dffd2;
  --cl-warning: #ffd166;
  --cl-danger: #ff7d9c;
  --cl-radius-lg: 26px;
  --cl-radius-md: 18px;
  --cl-radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #00b9d1 #030522;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #030522;
}

::-webkit-scrollbar-thumb {
  min-height: 54px;
  background: #00b9d1;
  border: 3px solid #030522;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cl-cyan);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cl-white);
  background: var(--cl-night);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

body::before {
  background: url("../images/claretiano-2026-poster.jpg") center 38% / cover no-repeat;
  opacity: 0.09;
  filter: blur(24px) saturate(1.25);
  transform: scale(1.08);
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 232, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 32%, rgba(255, 43, 214, 0.12), transparent 34%),
    rgba(2, 3, 26, 0.92);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.cl-list-shell {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.cl-list-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--cl-night);
  background: var(--cl-cyan-soft);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

.cl-list-skip:focus {
  transform: translateY(0);
}

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

.cl-list-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--cl-line);
  background: rgba(2, 3, 26, 0.86);
  backdrop-filter: blur(18px);
}

.cl-list-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cl-list-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cl-list-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(0, 232, 255, 0.2);
}

.cl-list-brand span {
  display: grid;
  line-height: 1.2;
}

.cl-list-brand strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.035em;
}

.cl-list-brand small {
  margin-top: 3px;
  color: var(--cl-muted);
  font-size: 0.67rem;
}

.cl-list-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cl-list-nav a {
  color: #dbe6ff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.cl-list-nav a:hover,
.cl-list-nav a:focus-visible {
  color: var(--cl-cyan-soft);
}

.cl-list-nav__cta {
  padding: 9px 16px;
  border: 1px solid rgba(0, 232, 255, 0.52);
  border-radius: 999px;
  background: rgba(0, 232, 255, 0.08);
}

.cl-list-main {
  min-height: calc(100vh - 76px);
}

.cl-list-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(86, 221, 255, 0.16);
}

.cl-list-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 232, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.cl-list-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
  min-height: 330px;
  padding-block: 64px;
}

.cl-list-hero__copy {
  max-width: 760px;
}

.cl-list-eyebrow,
.cl-list-section-label {
  margin: 0 0 10px;
  color: var(--cl-cyan-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cl-list-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  background: linear-gradient(105deg, #ffffff 0%, #bafaff 44%, #ff9aea 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.cl-list-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: #c4cfee;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

.cl-list-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #d9e4ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.cl-list-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cl-list-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.cl-list-dot--approved {
  color: var(--cl-success);
  background: currentColor;
}

.cl-list-dot--pending {
  color: var(--cl-warning);
  background: currentColor;
}

.cl-list-hero__date {
  width: 230px;
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(0, 232, 255, 0.34);
  border-radius: var(--cl-radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 232, 255, 0.18), transparent 52%),
    rgba(8, 12, 45, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 0 34px rgba(0, 232, 255, 0.11);
}

.cl-list-hero__date strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 4rem;
  line-height: 0.95;
  color: var(--cl-cyan-soft);
}

.cl-list-hero__date span {
  margin-top: 8px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cl-list-hero__date small {
  margin-top: 20px;
  padding-top: 16px;
  color: var(--cl-muted);
  border-top: 1px solid rgba(86, 221, 255, 0.2);
  font-size: 0.75rem;
}

.cl-list-content {
  display: grid;
  gap: 22px;
  padding-block: 30px 64px;
}

.cl-list-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cl-list-stats article {
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid rgba(86, 221, 255, 0.18);
  border-radius: var(--cl-radius-md);
  background: rgba(8, 12, 45, 0.7);
}

.cl-list-stats span {
  display: block;
  margin-bottom: 5px;
  color: var(--cl-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cl-list-stats strong {
  display: block;
  color: var(--cl-cyan-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.cl-list-stats .cl-list-stats__date {
  padding-top: 5px;
  color: #eef4ff;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.cl-list-panel {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--cl-line);
  border-radius: var(--cl-radius-lg);
  background: var(--cl-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.cl-list-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.cl-list-panel__head h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.05;
}

.cl-list-panel__head--results > p {
  max-width: 390px;
  margin: 0;
  color: var(--cl-muted);
  font-size: 0.78rem;
  text-align: right;
}

.cl-list-filters {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) repeat(4, minmax(132px, 0.75fr)) auto;
  align-items: end;
  gap: 14px;
}

.cl-list-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.cl-list-field label {
  color: #dce7ff;
  font-size: 0.76rem;
  font-weight: 800;
}

.cl-list-field input,
.cl-list-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: #f8fbff;
  border: 1px solid rgba(107, 151, 218, 0.38);
  border-radius: var(--cl-radius-sm);
  outline: none;
  background: #080d32;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cl-list-field input::placeholder {
  color: #7f8caf;
}

.cl-list-field input:hover,
.cl-list-field select:hover {
  border-color: rgba(0, 232, 255, 0.52);
}

.cl-list-field input:focus-visible,
.cl-list-field select:focus-visible {
  border-color: var(--cl-cyan);
  box-shadow: 0 0 0 3px rgba(0, 232, 255, 0.14);
}

.cl-list-button {
  min-height: 44px;
  padding: 10px 17px;
  color: #021126;
  border: 1px solid var(--cl-cyan);
  border-radius: var(--cl-radius-sm);
  background: linear-gradient(135deg, var(--cl-cyan), #7cf8ff);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cl-list-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0, 232, 255, 0.18);
}

.cl-list-button:focus-visible {
  outline: 3px solid rgba(140, 247, 255, 0.45);
  outline-offset: 3px;
}

.cl-list-button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.cl-list-button--ghost,
.cl-list-button--subtle {
  color: var(--cl-cyan-soft);
  background: rgba(0, 232, 255, 0.075);
}

.cl-list-button--subtle {
  min-width: 126px;
  color: #dbe6ff;
  border-color: rgba(107, 151, 218, 0.34);
  background: rgba(19, 28, 70, 0.66);
}

.cl-list-filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(86, 221, 255, 0.14);
}

.cl-list-filter-meta p {
  margin: 0;
  color: var(--cl-muted);
  font-size: 0.8rem;
}

.cl-list-query-notice {
  color: var(--cl-cyan-soft) !important;
  font-weight: 700;
  text-align: right;
}

.cl-list-state {
  min-height: 230px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  color: var(--cl-muted);
  text-align: center;
  border: 1px dashed rgba(86, 221, 255, 0.24);
  border-radius: var(--cl-radius-md);
  background: rgba(4, 8, 32, 0.48);
}

.cl-list-state strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.cl-list-state p {
  max-width: 540px;
  margin: 8px 0 0;
}

.cl-list-state .cl-list-button {
  margin-top: 18px;
}

.cl-list-state--error {
  border-color: rgba(255, 125, 156, 0.45);
  background: rgba(85, 18, 50, 0.18);
}

.cl-list-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 3px solid rgba(0, 232, 255, 0.2);
  border-top-color: var(--cl-cyan);
  border-radius: 50%;
  animation: clListSpin 760ms linear infinite;
}

@keyframes clListSpin {
  to {
    transform: rotate(360deg);
  }
}

.cl-list-table-wrap {
  overflow: auto;
  border: 1px solid rgba(86, 221, 255, 0.16);
  border-radius: var(--cl-radius-md);
}

.cl-list-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.cl-list-table th,
.cl-list-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(86, 221, 255, 0.11);
}

.cl-list-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #9baacc;
  background: #080d32;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cl-list-table tbody tr {
  background: rgba(8, 12, 45, 0.38);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.cl-list-table tbody tr:hover {
  background: rgba(21, 32, 82, 0.56);
}

.cl-list-table tbody tr:last-child td {
  border-bottom: 0;
}

.cl-list-name {
  display: grid;
  gap: 3px;
}

.cl-list-name strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.cl-list-name small,
.cl-list-muted {
  color: var(--cl-muted);
  font-size: 0.72rem;
}

.cl-list-fide {
  color: var(--cl-cyan-soft);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.cl-list-package {
  color: #dce7ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.cl-list-category {
  display: inline-flex;
  padding: 5px 9px;
  color: #eee8ff;
  border: 1px solid rgba(156, 111, 255, 0.34);
  border-radius: 999px;
  background: rgba(123, 60, 255, 0.12);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.cl-list-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.cl-list-status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.cl-list-status--approved {
  color: var(--cl-success);
  background: rgba(77, 255, 210, 0.07);
}

.cl-list-status--pending {
  color: var(--cl-warning);
  background: rgba(255, 209, 102, 0.07);
}

.cl-list-highlight {
  position: relative;
  background: rgba(0, 232, 255, 0.12) !important;
  box-shadow: inset 4px 0 0 var(--cl-cyan), inset 0 0 0 1px rgba(0, 232, 255, 0.35);
}

.cl-list-cards {
  display: none;
  gap: 12px;
}

.cl-list-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(86, 221, 255, 0.17);
  border-radius: var(--cl-radius-md);
  background: rgba(7, 12, 43, 0.72);
}

.cl-list-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cl-list-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cl-list-card__field {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cl-list-card__field--wide {
  grid-column: 1 / -1;
}

.cl-list-card__field span {
  color: #8796bb;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cl-list-card__field strong {
  overflow-wrap: anywhere;
  color: #eaf1ff;
  font-size: 0.82rem;
}

.cl-list-privacy-note {
  padding: 18px 20px;
  color: var(--cl-muted);
  border-left: 3px solid var(--cl-cyan);
  border-radius: 0 var(--cl-radius-sm) var(--cl-radius-sm) 0;
  background: rgba(0, 232, 255, 0.055);
  font-size: 0.8rem;
}

.cl-list-privacy-note strong {
  color: var(--cl-cyan-soft);
}

.cl-list-privacy-note p {
  margin: 4px 0 0;
}

.cl-list-footer {
  border-top: 1px solid var(--cl-line);
  background: rgba(2, 3, 26, 0.76);
}

.cl-list-footer .cl-list-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cl-muted);
  font-size: 0.75rem;
}

.cl-list-footer p {
  margin: 0;
}

.cl-list-footer a {
  color: var(--cl-cyan-soft);
  text-decoration: none;
}

.cl-list-footer a:hover,
.cl-list-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .cl-list-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-list-field--search {
    grid-column: 1 / -1;
  }

  .cl-list-button--subtle {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .cl-list-header__inner {
    min-height: 70px;
  }

  .cl-list-brand small,
  .cl-list-nav > a:not(.cl-list-nav__cta) {
    display: none;
  }

  .cl-list-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 48px;
  }

  .cl-list-hero__date {
    width: 100%;
    min-height: 0;
    grid-template-columns: auto auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    text-align: left;
  }

  .cl-list-hero__date strong {
    font-size: 2.5rem;
  }

  .cl-list-hero__date span,
  .cl-list-hero__date small {
    margin: 0;
  }

  .cl-list-hero__date small {
    padding: 0 0 0 16px;
    border-top: 0;
    border-left: 1px solid rgba(86, 221, 255, 0.2);
  }

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

  .cl-list-table-wrap {
    display: none;
  }

  .cl-list-cards {
    display: grid;
  }
}

@media (max-width: 620px) {
  .cl-list-shell {
    width: min(100% - 26px, 1220px);
  }

  .cl-list-brand strong {
    font-size: 0.92rem;
  }

  .cl-list-brand img {
    width: 40px;
    height: 40px;
  }

  .cl-list-nav__cta {
    padding: 8px 12px;
    font-size: 0.78rem !important;
  }

  .cl-list-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.15rem);
  }

  .cl-list-hero__date {
    grid-template-columns: auto 1fr;
  }

  .cl-list-hero__date small {
    grid-column: 1 / -1;
    padding: 11px 0 0;
    border-top: 1px solid rgba(86, 221, 255, 0.2);
    border-left: 0;
  }

  .cl-list-stats {
    gap: 9px;
  }

  .cl-list-stats article {
    padding: 14px;
  }

  .cl-list-stats strong {
    font-size: 1.65rem;
  }

  .cl-list-panel {
    padding: 18px 15px;
    border-radius: 20px;
  }

  .cl-list-panel__head,
  .cl-list-filter-meta,
  .cl-list-footer .cl-list-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .cl-list-panel__head--results > p,
  .cl-list-query-notice {
    text-align: left;
  }

  .cl-list-panel__head .cl-list-button {
    width: 100%;
  }

  .cl-list-filters {
    grid-template-columns: 1fr;
  }

  .cl-list-field--search {
    grid-column: auto;
  }

  .cl-list-button--subtle {
    width: 100%;
  }

  .cl-list-card__head {
    display: grid;
  }

  .cl-list-card__head .cl-list-status {
    justify-self: start;
  }

  .cl-list-footer .cl-list-shell {
    justify-content: center;
    padding-block: 22px;
  }
}

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