/* ============================================================================
   Xeno Executor — gate.css   (funnel: /skachat-xeno/, /safecheck/, /lua/)
   A single centred white card on the light surface, with a purple top rule.
   ========================================================================== */

.gate { max-width: 640px; margin: 0 auto; }
.gate__card {
  background: var(--sheet); border: 1px solid var(--line); border-top: 3px solid var(--brand);
  border-radius: var(--r-card); box-shadow: var(--shadow-hi); padding: 32px; text-align: center;
}
.gate__eyebrow {
  display: inline-block; font-family: var(--ff-code); font-size: 12px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--brand); background: var(--brand-soft);
  padding: 5px 12px; border-radius: var(--r-pill); margin: 0 0 16px;
}
.gate__title { font-size: clamp(21px, 4vw, 29px); margin: 0 0 10px; }
.gate__text { color: var(--dim); margin: 0 auto 22px; max-width: 48ch; }
.gate__text .gate__mono { color: var(--text); font-family: var(--ff-code); }

.gate__progress { height: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; margin: 0 0 10px; }
.gate__bar { display: block; height: 100%; width: 0; background: var(--brand); transition: width 1s linear; }
.gate__timer { font-family: var(--ff-code); font-size: 14px; color: var(--dim); margin: 0 0 20px; }
.gate__timer span { color: var(--brand); font-weight: 700; }

.gate__go { min-width: 240px; }
/* Locked until the 15s timer completes; JS removes .is-locked to reveal the link. */
.is-locked { opacity: .4; pointer-events: none; filter: grayscale(.5); }

/* Empty state when downloadUrl is null (the required "link is updating" scenario). */
.gate__hold { color: var(--dim); margin: 0 auto; max-width: 48ch; }
.gate__hold a { color: var(--brand); text-decoration: underline; }

.gate__info {
  margin: 24px 0 0; text-align: left; border-top: 1px solid var(--line); padding-top: 16px;
  display: grid; gap: 10px;
}
.gate__row { display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap; }
.gate__row dt { color: var(--dim); font-size: 14px; margin: 0; }
.gate__row dd { margin: 0; font-weight: 600; font-size: 14px; }
.gate__mono { font-family: var(--ff-code); }

.gate__subhead { font-size: 17px; margin: 28px 0 12px; text-align: left; }
.gate__perks { list-style: none; padding: 0; margin: 0; text-align: left; display: grid; gap: 6px; }
.gate__perks li { position: relative; padding-left: 24px; color: var(--dim); }
.gate__perks li::before { content: '✕'; position: absolute; left: 0; color: var(--brand); font-size: 12px; top: 4px; }
.gate__faq { margin-top: 24px; text-align: left; }

/* Ad slots — reserve height to avoid layout shift when the ad script fills them. */
.ad-slot--gate { margin: 24px auto 0; min-height: 90px; max-width: 640px; }
.ad-slot--gate:empty { min-height: 90px; }
