/* GTA VI access-mode picker — isolated cache-safe stylesheet. */
.nmg-access-mode-picker {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: oklch(0.14 0.005 240 / 0.55);
}

.nmg-access-mode-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
}

.nmg-access-mode-picker__label,
.nmg-access-mode-picker__summary-title {
  font-family: Geist Mono, ui-monospace, monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
}

.nmg-access-mode-picker__required,
.nmg-access-mode-picker__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  border: 1px solid oklch(0.88 0.22 130 / 0.35);
  border-radius: 9999px;
  background: oklch(0.88 0.22 130 / 0.12);
  font-family: Geist Mono, ui-monospace, monospace;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.nmg-access-mode-picker__hint {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: oklch(0.65 0.01 240);
}

.nmg-access-mode-picker__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.nmg-access-mode-picker__option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.nmg-access-mode-picker__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nmg-access-mode-picker__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: oklch(0.18 0.006 240 / 0.35);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.nmg-access-mode-picker__option:hover .nmg-access-mode-picker__card,
.nmg-access-mode-picker__input:focus-visible + .nmg-access-mode-picker__card {
  background: var(--card);
}

.nmg-access-mode-picker__option.is-selected .nmg-access-mode-picker__card,
.nmg-access-mode-picker__input:checked + .nmg-access-mode-picker__card {
  border-color: oklch(0.88 0.22 130 / 0.55);
  background: oklch(0.88 0.22 130 / 0.06);
}

.nmg-access-mode-picker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  color: oklch(0.68 0.01 240);
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nmg-access-mode-picker__option.is-selected .nmg-access-mode-picker__icon,
.nmg-access-mode-picker__input:checked + .nmg-access-mode-picker__card .nmg-access-mode-picker__icon {
  border-color: oklch(0.88 0.22 130 / 0.4);
  color: var(--primary);
}

.nmg-access-mode-picker__copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}

.nmg-access-mode-picker__title {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

.nmg-access-mode-picker__price {
  font-family: Geist Mono, ui-monospace, monospace;
  font-size: 0.6875rem;
  color: var(--primary);
}

.nmg-access-mode-picker__badge {
  margin-left: auto;
}

.nmg-access-mode-picker__indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border: 2px solid oklch(0.35 0.008 240);
  border-radius: 9999px;
  background: transparent;
  color: transparent;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nmg-access-mode-picker__option.is-selected .nmg-access-mode-picker__indicator,
.nmg-access-mode-picker__input:checked + .nmg-access-mode-picker__card .nmg-access-mode-picker__indicator {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 0 3px oklch(0.88 0.22 130 / 0.12);
}

.nmg-access-mode-picker__check {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2.5;
}

.nmg-access-mode-picker__summary {
  margin-top: 0.75rem;
  padding: 0.875rem;
  border: 1px solid oklch(0.88 0.22 130 / 0.2);
  border-radius: 0.5rem;
  background: oklch(0.88 0.22 130 / 0.045);
}

.nmg-access-mode-picker__summary-list {
  display: grid;
  gap: 0.375rem;
  margin: 0.625rem 0 0;
  padding: 0;
  list-style: none;
}

.nmg-access-mode-picker__summary-list li {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: oklch(0.78 0.01 240);
}

.nmg-access-mode-picker__summary-list li > span:first-child {
  color: var(--primary);
  font-weight: 700;
}

.nmg-access-mode-picker__summary[hidden] {
  display: none;
}
