:root {
  --cll-bg: #080808; --cll-fg: #f4f4f3;
  --cll-blue: #2e8fd4; --cll-green: #34a447; --cll-orange: #e8842a;
  --cll-muted-1: #d6d6d6; --cll-muted-2: #bcbcbc; --cll-muted-3: #9a9a9a;
  --cll-muted-4: #8f8f8f; --cll-muted-5: #7d7d7d; --cll-muted-6: #6f6f6f;
  --cll-line: rgba(255,255,255,.07); --cll-line-2: rgba(255,255,255,.10);
  --cll-pad: 64px; --cll-sans: 'Inter', sans-serif; --cll-mono: 'Inter', sans-serif;
}
@media (max-width: 991px) { :root { --cll-pad: 40px; } }
@media (max-width: 600px) { :root { --cll-pad: 22px; } }

.cll-faq { font-family: var(--cll-sans); color: var(--cll-fg); -webkit-font-smoothing: antialiased; }
.cll-faq *, .cll-faq *::before, .cll-faq *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cll-faq ::selection { background: var(--cll-orange); color: var(--cll-bg); }
.cll-c-blue { color: var(--cll-blue); } .cll-c-green { color: var(--cll-green); } .cll-c-orange { color: var(--cll-orange); }

.cll-faq__list { padding: 8px var(--cll-pad) var(--cll-pad); }
.cll-faq__cat { padding-top: 48px; }
.cll-faq__cathead { display: flex; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--cll-line-2); padding-bottom: 20px; }
.cll-faq__num { font-family: var(--cll-mono); font-size: 14px; letter-spacing: .08em; }
.cll-faq__cattitle { font-weight: 800; font-size: 32px; letter-spacing: -.01em; }
.cll-faq__sub { font-size: 14px; color: var(--cll-muted-4); margin-left: auto; }

.cll-faq__item { border-bottom: 1px solid var(--cll-line); }

summary.cll-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 8px; cursor: pointer; list-style: none; transition: background .15s; }
summary.cll-q::-webkit-details-marker { display: none; }
summary.cll-q::marker { content: ""; }
.cll-q:hover { background: rgba(255, 255, 255, .04); }
.cll-q__label { font-weight: 600; font-size: 19px; }
.cll-q__icon { font-family: var(--cll-mono); font-size: 22px; flex-shrink: 0; line-height: 1; }
.cll-q__icon::before { content: "+"; }
.cll-faq__item[open] .cll-q__icon::before { content: "\2212"; }

.cll-a { display: flex; flex-direction: column; gap: 12px; padding: 0 8px 28px; max-width: 840px; }
.cll-a p { font-size: 15.5px; line-height: 1.6; color: #b8b8b8; }

@media (max-width: 600px) {
  .cll-faq__sub { display: none; }
  .cll-faq__cattitle { font-size: 26px; }
}

.cll-faq__controls { padding: 48px var(--cll-pad) 8px; }
.cll-faq__searchbar { display: flex; }
.cll-faq__input { flex: 1; min-width: 0; background: transparent; border: 1px solid rgba(255, 255, 255, .18); color: var(--cll-fg); font-family: var(--cll-mono); font-size: 13px; letter-spacing: .08em; padding: 18px 22px; outline: none; transition: border-color .15s; }
.cll-faq__input::placeholder { color: var(--cll-muted-6); }
.cll-faq__input:focus { border-color: var(--cll-orange); }

.cll-faq__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cll-chip { font-family: var(--cll-mono); font-size: 12px; letter-spacing: .08em; padding: 12px 18px; cursor: pointer; background: transparent; color: var(--cll-muted-2); border: 1px solid rgba(255, 255, 255, .18); font-weight: 400; transition: all .15s; }
.cll-chip:hover { border-color: rgba(255, 255, 255, .4); color: var(--cll-fg); }
.cll-chip.is-active { color: #0a0a0a; font-weight: 700; }
.cll-chip--blue.is-active   { background: var(--cll-blue);   border-color: var(--cll-blue); }
.cll-chip--green.is-active  { background: var(--cll-green);  border-color: var(--cll-green); }
.cll-chip--orange.is-active { background: var(--cll-orange); border-color: var(--cll-orange); }

.cll-faq__count { font-family: var(--cll-mono); font-size: 12px; letter-spacing: .08em; color: var(--cll-muted-4); margin-top: 16px; min-height: 14px; }
.cll-faq__empty { font-family: var(--cll-mono); font-size: 13px; letter-spacing: .08em; color: var(--cll-muted-4); text-align: center; padding: 64px 0; }
