/* Weft language selection lightbox */
.weft-language-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 8, 14, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.weft-language-card {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(245, 184, 65, .32);
  border-radius: 24px;
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(245,184,65,.12), transparent 45%),
    #191722;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  color: #edeae5;
  text-align: center;
}

.weft-language-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.weft-language-brand svg {
  width: 28px;
  height: 28px;
}

.weft-language-brand b {
  color: #f5b841;
}

.weft-language-kicker {
  margin-bottom: 10px;
  color: #f5b841;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.weft-language-card h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: clamp(32px, 7vw, 46px);
  line-height: 1;
  letter-spacing: -.035em;
}

.weft-language-card p {
  max-width: 38ch;
  margin: 16px auto 28px;
  color: #aaa4bb;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.weft-language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.weft-language-option {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #393448;
  border-radius: 16px;
  background: #211e2c;
  color: #edeae5;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.weft-language-option:hover,
.weft-language-option:focus-visible {
  transform: translateY(-2px);
  border-color: #f5b841;
  background: #292438;
  outline: none;
}

.weft-language-option strong,
.weft-language-option span {
  display: block;
}

.weft-language-option strong {
  margin-bottom: 7px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 21px;
}

.weft-language-option span {
  color: #9d97ae;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.weft-language-option.is-primary {
  border-color: #f5b841;
  background: #f5b841;
  color: #17151f;
}

.weft-language-option.is-primary span {
  color: #4c3b18;
}

.weft-language-footnote {
  margin: 20px 0 0 !important;
  font-size: 12px !important;
  color: #716b83 !important;
}

body.weft-language-locked {
  overflow: hidden;
}

@media (max-width: 560px) {
  .weft-language-options {
    grid-template-columns: 1fr;
  }

  .weft-language-option {
    min-height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weft-language-option {
    transition: none;
  }
}
