/**
 * Invisible Roles — vanilla presentation layer
 * Mirrors IRS React reference (gradients, glass, chips) without React/motion.
 */

/* Let the site starfield (animated-background) show through IR shells */
body.ir-landing-page,
body.ir-play-page,
body.ir-reveal-page {
  background: transparent !important;
  background-image: none !important;
}

body.ir-landing-page .app-container,
body.ir-play-page .app-container,
body.ir-reveal-page .app-container,
body.ir-landing-page .content-wrapper,
body.ir-play-page .content-wrapper,
body.ir-reveal-page .content-wrapper,
body.ir-landing-page main#main-content,
body.ir-play-page main#main-content,
body.ir-reveal-page main#main-content,
body.ir-landing-page footer.main-footer,
body.ir-play-page footer.main-footer,
body.ir-reveal-page footer.main-footer {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.ir-vanilla .policy-shell,
.ir-vanilla .fv-background,
.ir-vanilla .fv-wrapper,
.ir-reveal-page .policy-shell,
.ir-reveal-page .fv-background,
.ir-reveal-page .fv-wrapper,
.ir-play-page .policy-shell,
.ir-play-page .fv-background,
.ir-play-page .fv-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.ir-vanilla {
  --ir-cyan: #00d9ff;
  --ir-violet: #a855f7;
  --ir-orange: #ff6b35;
  --ir-glass: rgba(20, 25, 45, 0.55);
  --ir-border: rgba(125, 214, 255, 0.28);
}

@keyframes ir-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ir-animate-in {
  animation: ir-fade-up 0.55s ease-out both;
  text-align: center !important;
}

.ir-vanilla .ir-option-card.ir-animate-in {
  text-align: left !important;
}

.ir-animate-in-delay-1 { animation-delay: 0.08s; }
.ir-animate-in-delay-2 { animation-delay: 0.16s; }
.ir-animate-in-delay-3 { animation-delay: 0.24s; }

.ir-grad-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ir-cyan), var(--ir-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ir-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.95);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  backdrop-filter: blur(8px);
}

.ir-progress-wrap {
  max-width: 560px;
  margin: 0 auto 1rem;
}

.ir-progress-label {
  font-size: 0.82rem;
  color: rgba(226, 232, 255, 0.65);
  margin-bottom: 0.4rem;
  text-align: center;
}

.ir-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(125, 214, 255, 0.15);
}

.ir-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ir-cyan), var(--ir-violet));
  transition: width 0.35s ease;
}

.ir-glass-panel {
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  background: var(--ir-glass);
  border: 1px solid var(--ir-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.ir-question-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(249, 245, 255, 0.94);
  text-align: center;
  margin: 0;
}

@media (min-width: 640px) {
  .ir-question-text {
    font-size: 1.25rem;
  }
}

.ir-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* Scene answer cards — scoped so global button resets cannot strip glass styling */
#app .ir-vanilla .ir-options button.ir-option-card,
#app .ir-vanilla button.ir-option-card,
.ir-vanilla .ir-options .ir-option-card,
.ir-vanilla .ir-option-card {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 14px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.45;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  min-height: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.ir-vanilla .ir-options .ir-option-card:hover,
.ir-vanilla .ir-option-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 220, 255, 0.45);
}

.ir-vanilla .ir-options .ir-option-card:active,
.ir-vanilla .ir-option-card:active {
  transform: scale(0.995);
}

.ir-vanilla .ir-options .ir-option-card:focus-visible,
.ir-vanilla .ir-option-card:focus-visible {
  outline: 2px solid rgba(0, 215, 255, 0.65);
  outline-offset: 2px;
}

.ir-vanilla .ir-options .ir-option-card.is-selected,
.ir-vanilla .ir-option-card.is-selected,
.ir-vanilla .ir-options .ir-option-card.ir-choice-selected,
.ir-vanilla .ir-option-card.ir-choice-selected,
#app .ir-vanilla button.ir-option-card.is-selected {
  background: rgba(0, 220, 255, 0.12) !important;
  border-color: #00d7ff !important;
  box-shadow: 0 0 0 1px rgba(0, 215, 255, 0.35) !important;
}

.ir-vanilla .ir-option-card.is-advancing {
  border-color: #00d7ff !important;
  box-shadow: 0 0 0 1px rgba(0, 215, 255, 0.45), 0 6px 24px rgba(0, 215, 255, 0.18) !important;
}

.ir-vanilla .fv-section {
  overflow: visible;
  max-width: 100%;
}

.ir-option-letter {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 215, 255, 0.14);
  color: #00d7ff;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.ir-option-text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  white-space: normal;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}

.ir-result-summary-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(226, 232, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ir-result-summary-list li {
  margin-bottom: 0.25rem;
}

.ir-result-rank {
  color: rgba(125, 214, 255, 0.9);
  font-weight: 600;
}

.ir-result-summary-confidence {
  margin: 0.55rem 0 0;
  color: rgba(196, 181, 253, 0.92);
  font-size: 0.86rem;
}

/* Legacy aliases */
.ir-choice-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ir-choice-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 220, 255, 0.45);
}

.ir-choice-btn.ir-choice-selected,
.ir-choice-btn.is-selected {
  background: rgba(0, 220, 255, 0.12);
  border-color: #00d7ff;
  box-shadow: 0 0 0 1px rgba(0, 215, 255, 0.35);
}

/* Local dev: toggle Free vs Premium reveal preview */
#ir-tier-preview-bar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10050;
  /*display: flex for premium preview */
  display: none; 
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 16, 32, 0.92);
  border: 1px solid rgba(125, 214, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  font-family: inherit;
}

.ir-tier-preview-label {
  font-size: 0.72rem;
  color: rgba(200, 220, 255, 0.65);
  margin-right: 0.15rem;
  white-space: nowrap;
}

.ir-tier-preview-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 245, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ir-tier-preview-btn:hover {
  border-color: rgba(0, 220, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.ir-tier-preview-btn.is-active {
  border-color: #00d7ff;
  background: rgba(0, 220, 255, 0.14);
  color: #fff;
}

.ir-hub-back-wrap {
  text-align: center;
  margin-top: 3.25rem;
  padding-top: 1.75rem;
}

.ir-vanilla .ir-hub-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(200, 220, 255, 0.52);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  border-radius: 6px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.ir-vanilla .ir-hub-back:hover {
  color: rgba(125, 214, 255, 0.85);
  opacity: 1;
}

.ir-continue-wrap {
  max-width: 640px;
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: center;
}

.ir-continue-btn {
  min-width: 200px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  color: rgba(249, 245, 255, 0.96);
  background: linear-gradient(135deg, rgba(125, 214, 255, 0.38), rgba(155, 93, 255, 0.35));
  border: 2px solid rgba(125, 214, 255, 0.55);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.ir-continue-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ir-continue-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.2);
}

.ir-upsell-tier-intent {
  border-color: rgba(168, 85, 247, 0.55) !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(0, 217, 255, 0.08)) !important;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.25), 0 12px 40px rgba(0, 0, 0, 0.28);
}

.ir-choice-key {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #00d7ff;
  background: rgba(0, 215, 255, 0.14);
}

@media (max-width: 480px) {
  .ir-vanilla .ir-options {
    padding: 0 0.15rem;
  }

  .ir-vanilla .ir-option-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .ir-vanilla .ir-option-text {
    font-size: 0.94rem;
  }

  .ir-continue-btn {
    width: 100%;
    max-width: 100%;
  }
}

.ir-reveal-hero-icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.35), rgba(168, 85, 247, 0.35));
  border: 2px solid rgba(125, 214, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.ir-strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ir-strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ir-strength-card {
  padding: 1rem 0.85rem;
  border-radius: 0.85rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(249, 245, 255, 0.9);
  background: rgba(0, 217, 255, 0.06);
  border: 1px solid rgba(0, 217, 255, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ir-strength-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.35);
}

.ir-upsell-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 217, 255, 0.08));
  backdrop-filter: blur(12px);
}

.ir-dim-bars {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ir-dim-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ir-dim-label {
  font-size: 0.9rem;
  color: rgba(226, 232, 255, 0.88);
}

.ir-dim-bar {
  position: relative;
  height: 1.75rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(125, 214, 255, 0.18);
}

.ir-dim-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(125, 214, 255, 0.9), rgba(155, 93, 255, 0.9));
}

.ir-dim-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.ir-reveal-page .ir-dim-bars--qualitative .ir-dim-value,
.ir-reveal-page .ir-dim-bars--qualitative .ir-dim-bar-pct {
  display: none !important;
}

.ir-dim-qualitative-note {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(226, 232, 255, 0.72);
  text-align: center;
}

.ir-result-summary-list .ir-dim-band {
  margin-left: 0.25rem;
  vertical-align: middle;
}

/* Landing (hub intro) */
.ir-landing-hero-title {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.ir-landing-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(226, 232, 255, 0.9);
  margin: 0 auto 1.25rem;
  max-width: 640px;
}

.ir-landing-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .ir-landing-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.ir-landing-col {
  padding: 1.1rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(125, 214, 255, 0.22);
  background: rgba(20, 25, 45, 0.45);
  backdrop-filter: blur(10px);
}

.ir-landing-col h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(196, 181, 253, 0.95);
}

.ir-landing-col p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(226, 232, 255, 0.82);
}

.ir-landing-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 1.25rem;
}

.ir-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(226, 232, 255, 0.88);
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(125, 214, 255, 0.28);
}

.ir-stat-pill strong {
  color: rgba(249, 245, 255, 0.95);
  font-weight: 700;
}

.ir-tier-primary {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 214, 255, 0.45) 0%, rgba(155, 93, 255, 0.45) 100%);
  border: 2px solid rgba(125, 214, 255, 0.55);
  color: rgba(249, 245, 255, 0.98);
}

.ir-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .ir-tier-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ir-tier-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  text-align: left;
  border-radius: 1rem;
  cursor: pointer;
  color: rgba(249, 245, 255, 0.94);
  background: rgba(125, 214, 255, 0.06);
  border: 2px solid rgba(125, 214, 255, 0.28);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ir-tier-card:hover {
  border-color: rgba(0, 217, 255, 0.45);
  background: rgba(125, 214, 255, 0.1);
  transform: translateY(-2px);
}

.ir-tier-card-premium {
  border-color: rgba(168, 85, 247, 0.45);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(0, 217, 255, 0.06));
}

.ir-tier-card-premium:hover {
  border-color: rgba(168, 85, 247, 0.65);
}

.ir-tier-card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.ir-tier-card-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(226, 232, 255, 0.82);
}

.ir-tier-card-cta {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(125, 214, 255, 0.95);
}

/* Session scenario notes (S1–S5) + premium extensions on reveal */
.ir-session-reports {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.1rem;
  text-align: left;
}

.ir-session-reports-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(249, 245, 255, 0.95);
  margin: 0 0 1rem;
  text-align: center;
}

.ir-per-scenario-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ir-per-scenario-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(125, 214, 255, 0.18);
}

.ir-per-scenario-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(125, 214, 255, 0.95);
  margin: 0 0 0.35rem;
}

.ir-per-scenario-tier {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.88);
  margin: 0 0 0.65rem;
}

.ir-per-scenario-body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(226, 232, 255, 0.88);
  margin: 0;
}

.ir-premium-extensions-wrap .ir-glass-panel {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ir-section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.9);
  margin: 0 0 0.65rem;
}

.ir-archetype-hero {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ir-archetype-hero .ir-reveal-hero-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin: 0.35rem 0;
}

.ir-dim-band {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ir-dim-band--high {
  color: rgba(125, 214, 255, 0.95);
  background: rgba(125, 214, 255, 0.12);
  border: 1px solid rgba(125, 214, 255, 0.35);
}

.ir-dim-band--emerging {
  color: rgba(196, 181, 253, 0.95);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.ir-dim-band--background {
  color: rgba(226, 232, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ir-dim-fill--high {
  background: linear-gradient(90deg, #7dd6ff, #9b5dff);
}

.ir-dim-fill--emerging {
  background: linear-gradient(90deg, rgba(155, 93, 255, 0.85), rgba(125, 214, 255, 0.75));
}

.ir-dim-fill--background {
  background: rgba(155, 93, 255, 0.35);
}

.ir-match-teaser {
  text-align: center;
}

.ir-upsell-card .game-btn {
  margin-top: 0.25rem;
}

.ir-premium-locked-preview {
  position: relative;
  overflow: hidden;
}

.ir-premium-locked-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 32, 0.55) 100%);
  pointer-events: none;
}

.ir-locked-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ir-locked-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(226, 232, 255, 0.72);
  filter: blur(0.3px);
}

.ir-locked-icon {
  flex-shrink: 0;
  opacity: 0.85;
  font-size: 0.8rem;
}
